From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id AB8B71399E1 for ; Wed, 2 Sep 2015 16:30:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A663D141F7; Wed, 2 Sep 2015 16:30:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EEAAF141F7 for ; Wed, 2 Sep 2015 16:30:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BD1E5340873 for ; Wed, 2 Sep 2015 16:30:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 18DF6185 for ; Wed, 2 Sep 2015 16:30:40 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1441211435.3992c082d53442fd2d2dd8981e7e0ddfc74552d3.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/cabextract/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/cabextract/cabextract-1.6.ebuild X-VCS-Directories: app-arch/cabextract/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 3992c082d53442fd2d2dd8981e7e0ddfc74552d3 X-VCS-Branch: master Date: Wed, 2 Sep 2015 16:30: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: 46f201b4-31b6-4e2d-9768-6136293062e7 X-Archives-Hash: 052a651e587e9f1c344e1f88138b089f commit: 3992c082d53442fd2d2dd8981e7e0ddfc74552d3 Author: Justin Lecher gentoo org> AuthorDate: Wed Sep 2 16:13:07 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Sep 2 16:30:35 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3992c082 app-arch/cabextract: Move export to local scope Package-Manager: portage-2.2.20.1 Signed-off-by: Justin Lecher gentoo.org> app-arch/cabextract/cabextract-1.6.ebuild | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/app-arch/cabextract/cabextract-1.6.ebuild b/app-arch/cabextract/cabextract-1.6.ebuild index a56604b..f9c458b 100644 --- a/app-arch/cabextract/cabextract-1.6.ebuild +++ b/app-arch/cabextract/cabextract-1.6.ebuild @@ -3,6 +3,7 @@ # $Id$ EAPI=5 + inherit toolchain-funcs DESCRIPTION="Extracts files from Microsoft cabinet archive files" @@ -16,17 +17,19 @@ IUSE="extras" RDEPEND="extras? ( dev-lang/perl )" -# the code attempts to set up a fnmatch replacement, but then fails to code -# it properly leading to undefined references to rpl_fnmatch(). This may be -# removed in the future if building still works by setting "yes" to "no". -export ac_cv_func_fnmatch_works=yes +src_prepare() { + # the code attempts to set up a fnmatch replacement, but then fails to code + # it properly leading to undefined references to rpl_fnmatch(). This may be + # removed in the future if building still works by setting "yes" to "no". + export ac_cv_func_fnmatch_works=yes +} src_compile() { emake AR="$(tc-getAR)" } src_install() { - emake DESTDIR="${D}" install + default dodoc AUTHORS ChangeLog INSTALL NEWS README TODO doc/magic dohtml doc/wince_cab_format.html if use extras; then