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/qemacs/
Date: Sat, 29 Aug 2020 11:44:56
Message-Id: 1598701420.33badc9c835dfa940a9abd1e22052310f6ef3136.ulm@gentoo
1 commit: 33badc9c835dfa940a9abd1e22052310f6ef3136
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 12 16:35:23 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=33badc9c
7
8 app-editors/qemacs: 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/qemacs/qemacs-0.4.1_pre20170225.ebuild | 10 +++++-----
14 1 file changed, 5 insertions(+), 5 deletions(-)
15
16 diff --git a/app-editors/qemacs/qemacs-0.4.1_pre20170225.ebuild b/app-editors/qemacs/qemacs-0.4.1_pre20170225.ebuild
17 index 33bd0f7ba89..efbed2aa6c7 100644
18 --- a/app-editors/qemacs/qemacs-0.4.1_pre20170225.ebuild
19 +++ b/app-editors/qemacs/qemacs-0.4.1_pre20170225.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 @@ -13,18 +13,18 @@ SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz"
27 LICENSE="LGPL-2.1+ GPL-2+"
28 SLOT="0"
29 KEYWORDS="amd64 arm ~ppc x86"
30 -IUSE="X png unicode xv"
31 +IUSE="gui png unicode xv"
32 RESTRICT="test"
33
34 RDEPEND="
35 - X? ( x11-libs/libX11
36 + gui? ( x11-libs/libX11
37 x11-libs/libXext
38 xv? ( x11-libs/libXv ) )
39 png? ( >=media-libs/libpng-1.2:0= )"
40
41 DEPEND="${RDEPEND}
42 >=app-text/texi2html-5
43 - X? ( x11-base/xorg-proto )"
44 + gui? ( x11-base/xorg-proto )"
45
46 S="${WORKDIR}/${PN}"
47
48 @@ -45,7 +45,7 @@ src_configure() {
49 --prefix=/usr \
50 --mandir=/usr/share/man \
51 --cc="$(tc-getCC)" \
52 - $(use_enable X x11) \
53 + $(use_enable gui x11) \
54 $(use_enable png) \
55 $(use_enable xv) || die
56 }