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 F4176138335 for ; Fri, 20 Jul 2018 19:03:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C7197E08ED; Fri, 20 Jul 2018 19:03:26 +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 9E36CE08D4 for ; Fri, 20 Jul 2018 19:03:26 +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 D1026335CDF for ; Fri, 20 Jul 2018 19:03:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2EBEB37A for ; Fri, 20 Jul 2018 19:03:23 +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: <1532113394.b200945e8476e0e3edbfdeff04e1315911f9604c.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: b200945e8476e0e3edbfdeff04e1315911f9604c X-VCS-Branch: master Date: Fri, 20 Jul 2018 19:03:23 +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-Archives-Salt: c0fe021f-caab-4fc4-9ec3-ed47fda48375 X-Archives-Hash: b72b5d673979ef19bdead555ca414e18 commit: b200945e8476e0e3edbfdeff04e1315911f9604c Author: Ulrich Müller gentoo org> AuthorDate: Fri Jul 20 19:02:03 2018 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri Jul 20 19:03:14 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b200945e app-editors/emact: Fix build failure with ncurses[tinfo]. Bug: https://bugs.gentoo.org/661098 Package-Manager: Portage-2.3.43, Repoman-2.3.10 app-editors/emact/emact-2.58.0.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app-editors/emact/emact-2.58.0.ebuild b/app-editors/emact/emact-2.58.0.ebuild index 6e0ffca331b..9b91001721d 100644 --- a/app-editors/emact/emact-2.58.0.ebuild +++ b/app-editors/emact/emact-2.58.0.ebuild @@ -3,6 +3,8 @@ EAPI=6 +inherit toolchain-funcs + DESCRIPTION="EmACT, a fork of Conroy's MicroEmacs" HOMEPAGE="http://www.eligis.com/emacs/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" @@ -15,10 +17,13 @@ IUSE="X" RDEPEND="sys-libs/ncurses:0= X? ( x11-libs/libX11 )" DEPEND="${RDEPEND} + virtual/pkgconfig X? ( x11-base/xorg-proto )" src_configure() { - econf $(use_with X x) + econf \ + $(use_with X x) \ + LIBS="$("$(tc-getPKG_CONFIG)" --libs ncurses)" } src_install() {