Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/rxvt-unicode/
Date: Wed, 07 Sep 2022 14:30:30
Message-Id: 1662561011.97c208dd579e297989f4d98e7f5d3385193a9711.marecki@gentoo
1 commit: 97c208dd579e297989f4d98e7f5d3385193a9711
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 7 13:50:54 2022 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 7 14:30:11 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97c208dd
7
8 x11-terms/rxvt-unicode: allow USE='perl -fading-colors' but print a warning
9
10 Closes: https://bugs.gentoo.org/830329
11 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
12
13 x11-terms/rxvt-unicode/rxvt-unicode-9.30.ebuild | 6 +++---
14 1 file changed, 3 insertions(+), 3 deletions(-)
15
16 diff --git a/x11-terms/rxvt-unicode/rxvt-unicode-9.30.ebuild b/x11-terms/rxvt-unicode/rxvt-unicode-9.30.ebuild
17 index 627d10b5c1db..86a4146c636a 100644
18 --- a/x11-terms/rxvt-unicode/rxvt-unicode-9.30.ebuild
19 +++ b/x11-terms/rxvt-unicode/rxvt-unicode-9.30.ebuild
20 @@ -18,9 +18,6 @@ KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
21 IUSE="24-bit-color 256-color blink fading-colors +font-styles gdk-pixbuf iso14755 +mousewheel
22 perl startup-notification unicode3 xft"
23
24 -# Bug #830329
25 -REQUIRED_USE="perl? ( fading-colors )"
26 -
27 RDEPEND=">=sys-libs/ncurses-5.7-r6:=
28 dev-libs/libptytty
29 media-libs/fontconfig
30 @@ -114,4 +111,7 @@ pkg_postinst() {
31 ewarn "rebuild =${CATEGORY}/${PF} with USE=-24-bit-color (the default setting)."
32 ewarn
33 fi
34 + if use perl && ! use fading-colors; then
35 + ewarn "Note that some of the Perl plug-ins bundled with ${PN} will fail to load without USE=fading-colors"
36 + fi
37 }