diff options
author | Harri Nieminen <moikkis@gmail.com> | 2017-02-14 11:06:39 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-02-14 20:42:10 +0100 |
commit | 7aa2549e1e67e965ba211fa9788e40197b688ed4 (patch) | |
tree | bcf37586f6f52b165d79a077408f604eb010ce14 /x11-misc/bbkeys/bbkeys-0.9.1-r1.ebuild | |
parent | x11-misc/bbdate: EAPI bump 0 -> 6 (diff) | |
download | gentoo-7aa2549e1e67e965ba211fa9788e40197b688ed4.tar.gz gentoo-7aa2549e1e67e965ba211fa9788e40197b688ed4.tar.bz2 gentoo-7aa2549e1e67e965ba211fa9788e40197b688ed4.zip |
x11-misc/bbkeys: EAPI bump 0 -> 6
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/3967
Diffstat (limited to 'x11-misc/bbkeys/bbkeys-0.9.1-r1.ebuild')
-rw-r--r-- | x11-misc/bbkeys/bbkeys-0.9.1-r1.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/x11-misc/bbkeys/bbkeys-0.9.1-r1.ebuild b/x11-misc/bbkeys/bbkeys-0.9.1-r1.ebuild new file mode 100644 index 000000000000..c9f5279d7702 --- /dev/null +++ b/x11-misc/bbkeys/bbkeys-0.9.1-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="Use keyboard shortcuts in the blackbox wm" +HOMEPAGE="http://bbkeys.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND=">=x11-wm/blackbox-0.70.0" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_install() { + emake DESTDIR="${D}" install + rm -rf "${ED%/}"/usr/share/doc || die + einstalldocs + + echo PRELINK_PATH_MASK=\""${EPREFIX}"/usr/bin/bbkeys\" > "${T}"/99bbkeys || die + doenvd "${T}"/99bbkeys +} |