Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/bbkeys/
Date: Tue, 14 Feb 2017 19:42:42
Message-Id: 1487101330.7aa2549e1e67e965ba211fa9788e40197b688ed4.soap@gentoo
1 commit: 7aa2549e1e67e965ba211fa9788e40197b688ed4
2 Author: Harri Nieminen <moikkis <AT> gmail <DOT> com>
3 AuthorDate: Tue Feb 14 09:06:39 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 14 19:42:10 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7aa2549e
7
8 x11-misc/bbkeys: EAPI bump 0 -> 6
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11 Closes: https://github.com/gentoo/gentoo/pull/3967
12
13 .../bbkeys/{bbkeys-0.9.1.ebuild => bbkeys-0.9.1-r1.ebuild} | 14 ++++++++------
14 1 file changed, 8 insertions(+), 6 deletions(-)
15
16 diff --git a/x11-misc/bbkeys/bbkeys-0.9.1.ebuild b/x11-misc/bbkeys/bbkeys-0.9.1-r1.ebuild
17 similarity index 61%
18 rename from x11-misc/bbkeys/bbkeys-0.9.1.ebuild
19 rename to x11-misc/bbkeys/bbkeys-0.9.1-r1.ebuild
20 index ccd84533b9..c9f5279d77 100644
21 --- a/x11-misc/bbkeys/bbkeys-0.9.1.ebuild
22 +++ b/x11-misc/bbkeys/bbkeys-0.9.1-r1.ebuild
23 @@ -1,7 +1,9 @@
24 -# Copyright 1999-2012 Gentoo Foundation
25 +# Copyright 1999-2017 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 # $Id$
28
29 +EAPI=6
30 +
31 DESCRIPTION="Use keyboard shortcuts in the blackbox wm"
32 HOMEPAGE="http://bbkeys.sourceforge.net"
33 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
34 @@ -16,10 +18,10 @@ DEPEND="${RDEPEND}
35 virtual/pkgconfig"
36
37 src_install() {
38 - emake DESTDIR="${D}" install || die
39 - rm -rf "${D}"/usr/share/doc
40 - dodoc AUTHORS BUGS ChangeLog NEWS README || die
41 + emake DESTDIR="${D}" install
42 + rm -rf "${ED%/}"/usr/share/doc || die
43 + einstalldocs
44
45 - echo PRELINK_PATH_MASK=/usr/bin/bbkeys > "${T}"/99bbkeys
46 - doenvd "${T}"/99bbkeys || die
47 + echo PRELINK_PATH_MASK=\""${EPREFIX}"/usr/bin/bbkeys\" > "${T}"/99bbkeys || die
48 + doenvd "${T}"/99bbkeys
49 }