Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/emact/
Date: Sat, 29 Aug 2020 11:44:56
Message-Id: 1598701420.caca50e7b99518f3f4d10bdfb533a5a4a175b4a6.ulm@gentoo
1 commit: caca50e7b99518f3f4d10bdfb533a5a4a175b4a6
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 12 16:36:43 2020 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 29 11:43:40 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=caca50e7
7
8 app-editors/emact: Migrate from X to gui USE flag.
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
12
13 app-editors/emact/emact-2.58.0.ebuild | 10 +++++-----
14 1 file changed, 5 insertions(+), 5 deletions(-)
15
16 diff --git a/app-editors/emact/emact-2.58.0.ebuild b/app-editors/emact/emact-2.58.0.ebuild
17 index 9b91001721d..bf90ddb88e8 100644
18 --- a/app-editors/emact/emact-2.58.0.ebuild
19 +++ b/app-editors/emact/emact-2.58.0.ebuild
20 @@ -1,4 +1,4 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 +# Copyright 1999-2020 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=6
26 @@ -12,17 +12,17 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
27 LICENSE="GPL-2+ BSD"
28 SLOT="0"
29 KEYWORDS="amd64 x86"
30 -IUSE="X"
31 +IUSE="gui"
32
33 RDEPEND="sys-libs/ncurses:0=
34 - X? ( x11-libs/libX11 )"
35 + gui? ( x11-libs/libX11 )"
36 DEPEND="${RDEPEND}
37 virtual/pkgconfig
38 - X? ( x11-base/xorg-proto )"
39 + gui? ( x11-base/xorg-proto )"
40
41 src_configure() {
42 econf \
43 - $(use_with X x) \
44 + $(use_with gui x) \
45 LIBS="$("$(tc-getPKG_CONFIG)" --libs ncurses)"
46 }