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/iconbox/
Date: Tue, 24 Dec 2019 17:40:39
Message-Id: 1577209208.be43228a3392010218ad2acf1ba1478e89c3d9ae.soap@gentoo
1 commit: be43228a3392010218ad2acf1ba1478e89c3d9ae
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 24 17:40:08 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 24 17:40:08 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be43228a
7
8 x11-misc/iconbox: Port to EAPI 7
9
10 Package-Manager: Portage-2.3.82, Repoman-2.3.20
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 x11-misc/iconbox/iconbox-0.2.ebuild | 15 ++++++++-------
14 1 file changed, 8 insertions(+), 7 deletions(-)
15
16 diff --git a/x11-misc/iconbox/iconbox-0.2.ebuild b/x11-misc/iconbox/iconbox-0.2.ebuild
17 index 7a1b08baee6..5e38129b6e8 100644
18 --- a/x11-misc/iconbox/iconbox-0.2.ebuild
19 +++ b/x11-misc/iconbox/iconbox-0.2.ebuild
20 @@ -1,7 +1,7 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 +# Copyright 1999-2019 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=4
26 +EAPI=7
27
28 MY_P=${P/-/_}
29
30 @@ -12,16 +12,17 @@ SRC_URI="mirror://gentoo/${MY_P}.tar.gz"
31 LICENSE="GPL-2"
32 SLOT="0"
33 KEYWORDS="~amd64 ~ppc x86"
34 -IUSE=""
35
36 -RDEPEND="x11-libs/gtk+:2
37 - dev-perl/Gtk2"
38 -DEPEND="${RDEPEND}"
39 +RDEPEND="
40 + dev-lang/perl
41 + dev-perl/Gtk2
42 + x11-libs/gtk+:2"
43
44 src_compile() { :; }
45
46 src_install() {
47 dobin iconbox{,conf}
48 - dodoc Changelog README
49 +
50 + einstalldocs
51 doman *.1
52 }