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 97DF1139694 for ; Tue, 21 Feb 2017 22:45:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7C8721C09B; Tue, 21 Feb 2017 22:45:27 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 B842C21C09B for ; Tue, 21 Feb 2017 22:45:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 0DCC2340F43 for ; Tue, 21 Feb 2017 22:45:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 724F45001 for ; Tue, 21 Feb 2017 22:45:25 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1487717117.63c613a904bf9ba1a0ad4d749ff94023b0d5b53e.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/libtool/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/libtool/libtool-9999.ebuild X-VCS-Directories: sys-devel/libtool/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 63c613a904bf9ba1a0ad4d749ff94023b0d5b53e X-VCS-Branch: master Date: Tue, 21 Feb 2017 22:45:25 +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: 618737a6-bd5b-480d-a7fb-7e76abad535c X-Archives-Hash: 6ef0c14ca82884474d7f33a71561847d commit: 63c613a904bf9ba1a0ad4d749ff94023b0d5b53e Author: Mike Frysinger gentoo org> AuthorDate: Tue Feb 21 22:37:48 2017 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Tue Feb 21 22:45:17 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63c613a9 sys-devel/libtool: sync changes into live ebuild sys-devel/libtool/libtool-9999.ebuild | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/sys-devel/libtool/libtool-9999.ebuild b/sys-devel/libtool/libtool-9999.ebuild index e46a9feace..22a5d3c104 100644 --- a/sys-devel/libtool/libtool-9999.ebuild +++ b/sys-devel/libtool/libtool-9999.ebuild @@ -1,8 +1,7 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Id$ -EAPI=5 +EAPI="5" LIBTOOLIZE="true" #225559 WANT_LIBTOOL="none" @@ -27,7 +26,8 @@ IUSE="vanilla" # Pull in libltdl directly until we convert packages to the new dep. RDEPEND="sys-devel/gnuconfig >=sys-devel/autoconf-2.69 - >=sys-devel/automake-1.13" + >=sys-devel/automake-1.13 + dev-libs/libltdl:0" DEPEND="${RDEPEND} app-arch/xz-utils" [[ ${PV} == "9999" ]] && DEPEND+=" sys-apps/help2man" @@ -65,6 +65,10 @@ src_configure() { # cause problems for people who switch /bin/sh on the fly to other # shells, so just force libtool to use /bin/bash all the time. export CONFIG_SHELL=/bin/bash + + # Do not bother hardcoding the full path to sed. Just rely on $PATH. #574550 + export ac_cv_path_SED=$(basename "$(type -P sed)") + ECONF_SOURCE=${S} econf --disable-ltdl-install }