diff options
author | Ulrich Müller <ulm@gentoo.org> | 2020-01-12 17:35:23 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2020-08-29 13:43:40 +0200 |
commit | 33badc9c835dfa940a9abd1e22052310f6ef3136 (patch) | |
tree | 5d07336b1d8aeeac0e4764c9dc51d17e3ab729ae /app-editors/qemacs | |
parent | app-editors/jasspa-microemacs: Migrate from X to gui USE flag. (diff) | |
download | gentoo-33badc9c835dfa940a9abd1e22052310f6ef3136.tar.gz gentoo-33badc9c835dfa940a9abd1e22052310f6ef3136.tar.bz2 gentoo-33badc9c835dfa940a9abd1e22052310f6ef3136.zip |
app-editors/qemacs: Migrate from X to gui USE flag.
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'app-editors/qemacs')
-rw-r--r-- | app-editors/qemacs/qemacs-0.4.1_pre20170225.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app-editors/qemacs/qemacs-0.4.1_pre20170225.ebuild b/app-editors/qemacs/qemacs-0.4.1_pre20170225.ebuild index 33bd0f7ba89a..efbed2aa6c70 100644 --- a/app-editors/qemacs/qemacs-0.4.1_pre20170225.ebuild +++ b/app-editors/qemacs/qemacs-0.4.1_pre20170225.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -13,18 +13,18 @@ SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz" LICENSE="LGPL-2.1+ GPL-2+" SLOT="0" KEYWORDS="amd64 arm ~ppc x86" -IUSE="X png unicode xv" +IUSE="gui png unicode xv" RESTRICT="test" RDEPEND=" - X? ( x11-libs/libX11 + gui? ( x11-libs/libX11 x11-libs/libXext xv? ( x11-libs/libXv ) ) png? ( >=media-libs/libpng-1.2:0= )" DEPEND="${RDEPEND} >=app-text/texi2html-5 - X? ( x11-base/xorg-proto )" + gui? ( x11-base/xorg-proto )" S="${WORKDIR}/${PN}" @@ -45,7 +45,7 @@ src_configure() { --prefix=/usr \ --mandir=/usr/share/man \ --cc="$(tc-getCC)" \ - $(use_enable X x11) \ + $(use_enable gui x11) \ $(use_enable png) \ $(use_enable xv) || die } |