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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D2176138359 for ; Sat, 29 Aug 2020 11:44:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9368CE091B; Sat, 29 Aug 2020 11:44:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 79893E091D for ; Sat, 29 Aug 2020 11:44:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 445BC340C39 for ; Sat, 29 Aug 2020 11:44:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F103C335 for ; Sat, 29 Aug 2020 11:44:52 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1598701420.caca50e7b99518f3f4d10bdfb533a5a4a175b4a6.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/emact/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/emact/emact-2.58.0.ebuild X-VCS-Directories: app-editors/emact/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: caca50e7b99518f3f4d10bdfb533a5a4a175b4a6 X-VCS-Branch: master Date: Sat, 29 Aug 2020 11:44:52 +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: ccf70135-f8db-46db-96a7-6325a759f014 X-Archives-Hash: e63a047da9ec89ed38f40efa7a883ad4 commit: caca50e7b99518f3f4d10bdfb533a5a4a175b4a6 Author: Ulrich Müller gentoo org> AuthorDate: Sun Jan 12 16:36:43 2020 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Aug 29 11:43:40 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=caca50e7 app-editors/emact: Migrate from X to gui USE flag. Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Ulrich Müller gentoo.org> app-editors/emact/emact-2.58.0.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app-editors/emact/emact-2.58.0.ebuild b/app-editors/emact/emact-2.58.0.ebuild index 9b91001721d..bf90ddb88e8 100644 --- a/app-editors/emact/emact-2.58.0.ebuild +++ b/app-editors/emact/emact-2.58.0.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 @@ -12,17 +12,17 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2+ BSD" SLOT="0" KEYWORDS="amd64 x86" -IUSE="X" +IUSE="gui" RDEPEND="sys-libs/ncurses:0= - X? ( x11-libs/libX11 )" + gui? ( x11-libs/libX11 )" DEPEND="${RDEPEND} virtual/pkgconfig - X? ( x11-base/xorg-proto )" + gui? ( x11-base/xorg-proto )" src_configure() { econf \ - $(use_with X x) \ + $(use_with gui x) \ LIBS="$("$(tc-getPKG_CONFIG)" --libs ncurses)" }