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 22D57158012 for ; Tue, 13 Sep 2022 17:21:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4272BE090F; Tue, 13 Sep 2022 17:21:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 2AD1BE090F for ; Tue, 13 Sep 2022 17:21:18 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 04AE7340D33 for ; Tue, 13 Sep 2022 17:21:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B30F45C7 for ; Tue, 13 Sep 2022 17:21:01 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1663089639.bcbf8f108f4029f5ebce2ea5dc32248a0bb419f0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/suite3270/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/suite3270/suite3270-4.2_p5-r1.ebuild net-misc/suite3270/suite3270-4.2_p5.ebuild X-VCS-Directories: net-misc/suite3270/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: bcbf8f108f4029f5ebce2ea5dc32248a0bb419f0 X-VCS-Branch: master Date: Tue, 13 Sep 2022 17:21:01 +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: 03238956-5d1d-4bae-a4a1-698baf8d442e X-Archives-Hash: 8667edd3755451902437a7858bcd9539 commit: bcbf8f108f4029f5ebce2ea5dc32248a0bb419f0 Author: Sam James gentoo org> AuthorDate: Tue Sep 13 17:20:39 2022 +0000 Commit: Sam James gentoo org> CommitDate: Tue Sep 13 17:20:39 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcbf8f10 net-misc/suite3270: flip back to USE=X font.eclass always adds USE=X, so we can't do USE=gui for now. Bug: https://bugs.gentoo.org/869986 Signed-off-by: Sam James gentoo.org> ...70-4.2_p5.ebuild => suite3270-4.2_p5-r1.ebuild} | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/net-misc/suite3270/suite3270-4.2_p5.ebuild b/net-misc/suite3270/suite3270-4.2_p5-r1.ebuild similarity index 85% rename from net-misc/suite3270/suite3270-4.2_p5.ebuild rename to net-misc/suite3270/suite3270-4.2_p5-r1.ebuild index 2c53ea248635..89288f125a7c 100644 --- a/net-misc/suite3270/suite3270-4.2_p5.ebuild +++ b/net-misc/suite3270/suite3270-4.2_p5-r1.ebuild @@ -21,10 +21,10 @@ SRC_URI="mirror://sourceforge/x3270/${MY_P}-src.tgz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~s390 ~sparc ~x86" -IUSE="cjk doc gui ncurses ssl tcl" +IUSE="X cjk doc ncurses ssl tcl" RDEPEND=" - gui? ( + X? ( x11-libs/libX11 x11-libs/libXaw x11-libs/libXmu @@ -39,10 +39,10 @@ RDEPEND=" " DEPEND=" ${RDEPEND} - gui? ( x11-base/xorg-proto ) + X? ( x11-base/xorg-proto ) " BDEPEND=" - gui? ( + X? ( app-text/rman x11-apps/bdftopcf >=x11-apps/mkfontscale-1.2.0 @@ -84,23 +84,23 @@ src_configure() { --enable-pr3287 \ $(use_enable ncurses c3270) \ $(use_enable tcl tcl3270) \ - $(use_enable gui x3270) \ - $(use_with gui x) \ - $(use_with gui fontdir "${FONTDIR}") + $(use_enable X x3270) \ + $(use_with X x) \ + $(use_with X fontdir "${FONTDIR}") } src_install() { - use gui && dodir "${FONTDIR}" + use X && dodir "${FONTDIR}" emake DESTDIR="${D}" install{,.man} - use gui && font_src_install + use X && font_src_install } pkg_postinst() { - use gui && font_pkg_postinst + use X && font_pkg_postinst } pkg_postrm() { - use gui && font_pkg_postrm + use X && font_pkg_postrm }