From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 178D8158094 for ; Wed, 7 Sep 2022 14:30:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60111E0AAE; Wed, 7 Sep 2022 14:30:29 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 45042E0AAE for ; Wed, 7 Sep 2022 14:30:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3A539340D23 for ; Wed, 7 Sep 2022 14:30:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 496325C8 for ; Wed, 7 Sep 2022 14:30:25 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1662561011.97c208dd579e297989f4d98e7f5d3385193a9711.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/rxvt-unicode/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-terms/rxvt-unicode/rxvt-unicode-9.30.ebuild X-VCS-Directories: x11-terms/rxvt-unicode/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 97c208dd579e297989f4d98e7f5d3385193a9711 X-VCS-Branch: master Date: Wed, 7 Sep 2022 14:30:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6fcd7dd0-1ceb-45c9-b9f0-9ca166e7242a X-Archives-Hash: 9e01e5e29be6999bf469b682ca27407c commit: 97c208dd579e297989f4d98e7f5d3385193a9711 Author: Marek Szuba gentoo org> AuthorDate: Wed Sep 7 13:50:54 2022 +0000 Commit: Marek Szuba gentoo org> CommitDate: Wed Sep 7 14:30:11 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97c208dd x11-terms/rxvt-unicode: allow USE='perl -fading-colors' but print a warning Closes: https://bugs.gentoo.org/830329 Signed-off-by: Marek Szuba gentoo.org> x11-terms/rxvt-unicode/rxvt-unicode-9.30.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x11-terms/rxvt-unicode/rxvt-unicode-9.30.ebuild b/x11-terms/rxvt-unicode/rxvt-unicode-9.30.ebuild index 627d10b5c1db..86a4146c636a 100644 --- a/x11-terms/rxvt-unicode/rxvt-unicode-9.30.ebuild +++ b/x11-terms/rxvt-unicode/rxvt-unicode-9.30.ebuild @@ -18,9 +18,6 @@ KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86" IUSE="24-bit-color 256-color blink fading-colors +font-styles gdk-pixbuf iso14755 +mousewheel perl startup-notification unicode3 xft" -# Bug #830329 -REQUIRED_USE="perl? ( fading-colors )" - RDEPEND=">=sys-libs/ncurses-5.7-r6:= dev-libs/libptytty media-libs/fontconfig @@ -114,4 +111,7 @@ pkg_postinst() { ewarn "rebuild =${CATEGORY}/${PF} with USE=-24-bit-color (the default setting)." ewarn fi + if use perl && ! use fading-colors; then + ewarn "Note that some of the Perl plug-ins bundled with ${PN} will fail to load without USE=fading-colors" + fi }