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 34262138330 for ; Mon, 19 Sep 2016 21:44:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D5CCE09AA; Mon, 19 Sep 2016 21:44:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E3086E09AA for ; Mon, 19 Sep 2016 21:44:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4E92B340B1F for ; Mon, 19 Sep 2016 21:44:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9A7572464 for ; Mon, 19 Sep 2016 21:44:40 +0000 (UTC) From: "Andreas Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Hüttel" Message-ID: <1474321473.bb12657fddf8b463de4bdd858b805b0eaa2aaf5a.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/perl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/perl/perl-5.24.0-r1.ebuild X-VCS-Directories: dev-lang/perl/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: bb12657fddf8b463de4bdd858b805b0eaa2aaf5a X-VCS-Branch: master Date: Mon, 19 Sep 2016 21:44:40 +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: f2d362d5-e3d7-4f8f-a02d-c7293294a20f X-Archives-Hash: 3575c12067e071318177c3dd27a9266e commit: bb12657fddf8b463de4bdd858b805b0eaa2aaf5a Author: Andreas K. Hüttel gentoo org> AuthorDate: Mon Sep 19 21:43:27 2016 +0000 Commit: Andreas Hüttel gentoo org> CommitDate: Mon Sep 19 21:44:33 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb12657f dev-lang/perl: Allow finetuning with EXTRA_ECONF, bug 558070 Package-Manager: portage-2.3.0 dev-lang/perl/perl-5.24.0-r1.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dev-lang/perl/perl-5.24.0-r1.ebuild b/dev-lang/perl/perl-5.24.0-r1.ebuild index e4d7ab2..20d0186 100644 --- a/dev-lang/perl/perl-5.24.0-r1.ebuild +++ b/dev-lang/perl/perl-5.24.0-r1.ebuild @@ -380,6 +380,10 @@ src_configure() { myconf -Dnoextensions="${disabled_extensions}" + [[ -n "${EXTRA_ECONF}" ]] && ewarn During Perl build, EXTRA_ECONF=${EXTRA_ECONF} + # allow fiddling via EXTRA_ECONF, bug 558070 + eval "local -a EXTRA_ECONF=(${EXTRA_ECONF})" + sh Configure \ -des \ -Duseshrplib \ @@ -419,7 +423,8 @@ src_configure() { -Dsh="${EPREFIX}"/bin/sh \ -Dtargetsh="${EPREFIX}"/bin/sh \ -Uusenm \ - "${myconf[@]}" || die "Unable to configure" + "${myconf[@]}" \ + "${EXTRA_ECONF[@]}" || die "Unable to configure" } src_test() {