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/jed/
Date: Sun, 30 Jan 2022 19:41:50
Message-Id: 1643571697.2560909040e8ee0e501be64e331955124aa5284a.ulm@gentoo
1 commit: 2560909040e8ee0e501be64e331955124aa5284a
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 30 19:39:52 2022 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 30 19:41:37 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25609090
7
8 app-editors/jed: Explicitly disable Xft if built without GUI
9
10 Closes: https://bugs.gentoo.org/832374
11 Package-Manager: Portage-3.0.30, Repoman-3.0.3
12 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
13
14 app-editors/jed/jed-0.99.19-r1.ebuild | 4 ++--
15 1 file changed, 2 insertions(+), 2 deletions(-)
16
17 diff --git a/app-editors/jed/jed-0.99.19-r1.ebuild b/app-editors/jed/jed-0.99.19-r1.ebuild
18 index 2eef627357ee..8b113486d5e2 100644
19 --- a/app-editors/jed/jed-0.99.19-r1.ebuild
20 +++ b/app-editors/jed/jed-0.99.19-r1.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 +# Copyright 1999-2022 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=7
27 @@ -40,7 +40,7 @@ src_prepare() {
28 src_configure() {
29 econf \
30 $(use_enable gpm) \
31 - $(use_enable xft) \
32 + $(usex gui $(use_enable xft) --disable-xft) \
33 JED_ROOT="${EPREFIX}"/usr/share/jed
34 }