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 9627E138334 for ; Fri, 23 Nov 2018 17:25:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7916DE0880; Fri, 23 Nov 2018 17:25:33 +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 593F2E0880 for ; Fri, 23 Nov 2018 17:25:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 D60BF335CDA for ; Fri, 23 Nov 2018 17:25:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3C66343A for ; Fri, 23 Nov 2018 17:25:29 +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: <1542993912.91028af7c0b3f200076ab579f798c5826513eae4.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/fe/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/fe/fe-2.0.ebuild X-VCS-Directories: app-editors/fe/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 91028af7c0b3f200076ab579f798c5826513eae4 X-VCS-Branch: master Date: Fri, 23 Nov 2018 17:25:29 +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: 6a0a85fe-a1a3-4dba-8d8b-c20a811a6cb8 X-Archives-Hash: f6ccc0c3d94c7894a912fb3a59df1158 commit: 91028af7c0b3f200076ab579f798c5826513eae4 Author: Ulrich Müller gentoo org> AuthorDate: Fri Nov 23 17:23:55 2018 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri Nov 23 17:25:12 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91028af7 app-editors/fe: Fix compilation with ncurses[tinfo]. Closes: https://bugs.gentoo.org/671714 Package-Manager: Portage-2.3.51, Repoman-2.3.12 Signed-off-by: Ulrich Müller gentoo.org> app-editors/fe/fe-2.0.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app-editors/fe/fe-2.0.ebuild b/app-editors/fe/fe-2.0.ebuild index 9e1866c107c..ca6658d9407 100644 --- a/app-editors/fe/fe-2.0.ebuild +++ b/app-editors/fe/fe-2.0.ebuild @@ -3,6 +3,8 @@ EAPI=7 +inherit toolchain-funcs + DESCRIPTION="A small and easy to use folding editor" HOMEPAGE="http://www.moria.de/~michael/fe/" SRC_URI="http://www.moria.de/~michael/fe/${P}.tar.gz" @@ -15,11 +17,14 @@ IUSE="sendmail" RDEPEND="sys-libs/ncurses:0= sendmail? ( virtual/mta )" DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" PATCHES=("${FILESDIR}"/${PN}-1.8-makefile.patch) src_configure() { - econf $(use_enable sendmail) + econf \ + $(use_enable sendmail) \ + LIBS="$("$(tc-getPKG_CONFIG)" --libs ncurses)" } src_install() {