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 9A8441381F4 for ; Sat, 23 Apr 2016 06:40:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 161EE21C05A; Sat, 23 Apr 2016 06:40:39 +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 AE5C121C05A for ; Sat, 23 Apr 2016 06:40:38 +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 6F0E1340CAA for ; Sat, 23 Apr 2016 06:40:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2A40815E7 for ; Sat, 23 Apr 2016 06:40:35 +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: <1461393627.e9a6b95c48c57f0cde265333351d638724d66a91.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/hfsplusutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/hfsplusutils/hfsplusutils-1.0.4-r1.ebuild X-VCS-Directories: sys-fs/hfsplusutils/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: e9a6b95c48c57f0cde265333351d638724d66a91 X-VCS-Branch: master Date: Sat, 23 Apr 2016 06:40:35 +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: 1db84840-1b50-4be7-a421-57736927be8e X-Archives-Hash: 9ac998fb77d5cdc488565bb918302620 commit: e9a6b95c48c57f0cde265333351d638724d66a91 Author: Mike Frysinger gentoo org> AuthorDate: Sat Apr 23 06:40:27 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Sat Apr 23 06:40:27 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9a6b95c sys-fs/hfsplusutils: add support for USE=static-libs sys-fs/hfsplusutils/hfsplusutils-1.0.4-r1.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sys-fs/hfsplusutils/hfsplusutils-1.0.4-r1.ebuild b/sys-fs/hfsplusutils/hfsplusutils-1.0.4-r1.ebuild index fd1d77c..71cc51b 100644 --- a/sys-fs/hfsplusutils/hfsplusutils-1.0.4-r1.ebuild +++ b/sys-fs/hfsplusutils/hfsplusutils-1.0.4-r1.ebuild @@ -13,7 +13,7 @@ SRC_URI="http://penguinppc.org/historical/hfsplus/${MY_P}.src.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="ppc ppc64 x86" -IUSE="" +IUSE="static-libs" DEPEND="app-arch/bzip2" RDEPEND="" @@ -33,7 +33,12 @@ src_prepare() { append-flags -fgnu89-inline } +src_configure() { + econf $(use_enable static-libs static) +} + src_install() { default + find "${ED}"/usr/ -name libhfsp.la -delete newman doc/man/hfsp.man hfsp.1 }