Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/dhcpcd-ui/
Date: Sun, 07 Feb 2021 20:19:17
Message-Id: 1612729136.3aac8b1ccedc28c709cf8380e93411e77a210152.asturm@gentoo
1 commit: 3aac8b1ccedc28c709cf8380e93411e77a210152
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 7 20:09:18 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 7 20:18:56 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3aac8b1c
7
8 net-misc/dhcpcd-ui: Drop IUSE=gtk2
9
10 Bug: https://bugs.gentoo.org/769158
11 Package-Manager: Portage-3.0.14, Repoman-3.0.2
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 net-misc/dhcpcd-ui/dhcpcd-ui-0.7.8.ebuild | 15 +++++----------
15 1 file changed, 5 insertions(+), 10 deletions(-)
16
17 diff --git a/net-misc/dhcpcd-ui/dhcpcd-ui-0.7.8.ebuild b/net-misc/dhcpcd-ui/dhcpcd-ui-0.7.8.ebuild
18 index 755b2b779ad..c6399302fb9 100644
19 --- a/net-misc/dhcpcd-ui/dhcpcd-ui-0.7.8.ebuild
20 +++ b/net-misc/dhcpcd-ui/dhcpcd-ui-0.7.8.ebuild
21 @@ -12,7 +12,7 @@ SRC_URI="https://roy.marples.name/downloads/${PN%-ui}/${P}.tar.xz"
22 LICENSE="BSD-2"
23 SLOT="0"
24 KEYWORDS="~amd64 ~x86"
25 -IUSE="debug gtk gtk2 libnotify ncurses qt5"
26 +IUSE="debug gtk libnotify ncurses qt5"
27
28 REQUIRED_USE="libnotify? ( gtk )
29 qt5? ( !libnotify )"
30 @@ -24,12 +24,7 @@ DEPEND="
31 gtk? (
32 dev-libs/glib:2
33 x11-libs/gdk-pixbuf:2
34 - gtk2? (
35 - x11-libs/gtk+:2
36 - )
37 - !gtk2? (
38 - x11-libs/gtk+:3
39 - )
40 + x11-libs/gtk+:3
41 )
42 libnotify? ( x11-libs/libnotify )
43 ncurses? ( sys-libs/ncurses:0= )
44 @@ -40,16 +35,16 @@ DEPEND="
45 media-libs/mesa
46 )
47 "
48 -
49 RDEPEND="${DEPEND}
50 - >=net-misc/dhcpcd-6.4.4"
51 + >=net-misc/dhcpcd-6.4.4
52 +"
53
54 src_configure() {
55 local myeconfargs=(
56 --without-qt
57 $(use_enable debug)
58 $(use_enable libnotify notification)
59 - $(use_with gtk gtk $(usex gtk2 'gtk+-2.0' 'gtk+-3.0'))
60 + $(use_with gtk gtk 'gtk+-3.0')
61 $(use_with ncurses curses)
62 $(use_with qt5 qt)
63 )