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 9FD4D1382C5 for ; Wed, 7 Feb 2018 22:27:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C258BE0AF4; Wed, 7 Feb 2018 22:27:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 8BD0EE0AF4 for ; Wed, 7 Feb 2018 22:27:31 +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 EC45C335C4E for ; Wed, 7 Feb 2018 22:27:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C8CC1DE for ; Wed, 7 Feb 2018 22:27:27 +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: <1518042338.c646da6efad8ea922cf6f47487c2907fd41cdaa5.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/zile/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/zile/zile-2.3.24-r2.ebuild app-editors/zile/zile-2.4.13.ebuild app-editors/zile/zile-2.4.14.ebuild X-VCS-Directories: app-editors/zile/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: c646da6efad8ea922cf6f47487c2907fd41cdaa5 X-VCS-Branch: master Date: Wed, 7 Feb 2018 22:27:27 +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: f53bc8b3-5524-423b-80ac-5e69174fa883 X-Archives-Hash: 80c3ce7af424478a9502fe766f712469 commit: c646da6efad8ea922cf6f47487c2907fd41cdaa5 Author: Ulrich Müller gentoo org> AuthorDate: Wed Feb 7 22:11:15 2018 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Wed Feb 7 22:25:38 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c646da6e app-editors/zile: Retrieve list of ncurses libs from pkg-config. Fixes build failure with sys-apps/ncurses[tinfo]. Closes: https://bugs.gentoo.org/646916 Package-Manager: Portage-2.3.24, Repoman-2.3.6 app-editors/zile/zile-2.3.24-r2.ebuild | 6 +++++- app-editors/zile/zile-2.4.13.ebuild | 6 +++++- app-editors/zile/zile-2.4.14.ebuild | 6 +++++- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/app-editors/zile/zile-2.3.24-r2.ebuild b/app-editors/zile/zile-2.3.24-r2.ebuild index ff2a5d21a82..bc74d29787a 100644 --- a/app-editors/zile/zile-2.3.24-r2.ebuild +++ b/app-editors/zile/zile-2.3.24-r2.ebuild @@ -3,6 +3,8 @@ EAPI=6 +inherit toolchain-funcs + DESCRIPTION="Zile is a small Emacs clone" HOMEPAGE="https://www.gnu.org/software/zile/" SRC_URI="mirror://gnu/zile/${P}.tar.gz" @@ -14,6 +16,7 @@ IUSE="test valgrind" RDEPEND="sys-libs/ncurses:0=" DEPEND="${RDEPEND} + virtual/pkgconfig test? ( valgrind? ( dev-util/valgrind ) )" PATCHES=("${FILESDIR}"/${P}-{userhome,gets}.patch) @@ -22,7 +25,8 @@ src_configure() { # --without-emacs to suppress tests for GNU Emacs #630652 econf \ --without-emacs \ - $(use test && use_with valgrind || echo "--without-valgrind") + $(use test && use_with valgrind || echo "--without-valgrind") \ + CURSES_LIB="$("$(tc-getPKG_CONFIG)" --libs ncurses)" } src_install() { diff --git a/app-editors/zile/zile-2.4.13.ebuild b/app-editors/zile/zile-2.4.13.ebuild index d7578b2406f..d6136b4f5a1 100644 --- a/app-editors/zile/zile-2.4.13.ebuild +++ b/app-editors/zile/zile-2.4.13.ebuild @@ -3,6 +3,8 @@ EAPI=6 +inherit toolchain-funcs + DESCRIPTION="Zile is a small Emacs clone" HOMEPAGE="https://www.gnu.org/software/zile/" SRC_URI="mirror://gnu/zile/${P}.tar.gz" @@ -17,6 +19,7 @@ RDEPEND=">=dev-libs/boehm-gc-7.2:= acl? ( virtual/acl )" DEPEND="${RDEPEND} + virtual/pkgconfig test? ( dev-lang/perl )" QA_AM_MAINTAINER_MODE=".*help2man.*" #450278 @@ -26,7 +29,8 @@ src_configure() { econf \ --docdir="${EPREFIX}"/usr/share/doc/${PF} \ --without-emacs \ - $(use_enable acl) + $(use_enable acl) \ + CURSES_LIB="$("$(tc-getPKG_CONFIG)" --libs ncurses)" } src_install() { diff --git a/app-editors/zile/zile-2.4.14.ebuild b/app-editors/zile/zile-2.4.14.ebuild index 3754cfad686..3438a470a0a 100644 --- a/app-editors/zile/zile-2.4.14.ebuild +++ b/app-editors/zile/zile-2.4.14.ebuild @@ -3,6 +3,8 @@ EAPI=6 +inherit toolchain-funcs + DESCRIPTION="Zile is a small Emacs clone" HOMEPAGE="https://www.gnu.org/software/zile/" SRC_URI="mirror://gnu/zile/${P}.tar.gz" @@ -17,6 +19,7 @@ RDEPEND=">=dev-libs/boehm-gc-7.2:= acl? ( virtual/acl )" DEPEND="${RDEPEND} + virtual/pkgconfig test? ( dev-lang/perl )" QA_AM_MAINTAINER_MODE=".*help2man.*" #450278 @@ -27,7 +30,8 @@ src_configure() { --docdir="${EPREFIX}"/usr/share/doc/${PF} \ --without-emacs \ --disable-valgrind-tests \ - $(use_enable acl) + $(use_enable acl) \ + CURSES_LIB="$("$(tc-getPKG_CONFIG)" --libs ncurses)" } src_install() {