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 F36221382DE for ; Sat, 2 Jul 2016 08:12:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0AEFFE0B25; Sat, 2 Jul 2016 08:12: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 A77CFE0B25 for ; Sat, 2 Jul 2016 08:12:38 +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 1A73B340DE7 for ; Sat, 2 Jul 2016 08:12:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6FC04243D for ; Sat, 2 Jul 2016 08:12:32 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1467447145.1d1a6caf59e111590af7aff4ff18df644edb8fd9.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/libarchive/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/libarchive/libarchive-3.1.2-r5.ebuild X-VCS-Directories: app-arch/libarchive/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 1d1a6caf59e111590af7aff4ff18df644edb8fd9 X-VCS-Branch: master Date: Sat, 2 Jul 2016 08:12:32 +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: 93a1f8ad-cb3e-4508-80f1-9f65ec4b3a01 X-Archives-Hash: 29218300e9fe594c74cf41f59927c355 commit: 1d1a6caf59e111590af7aff4ff18df644edb8fd9 Author: Fabian Groffen gentoo org> AuthorDate: Sat Jul 2 08:12:14 2016 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sat Jul 2 08:12:25 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d1a6caf app-arch/libarchive: fix compilation on OSX, it needs acl enabled Package-Manager: portage-2.2.28 app-arch/libarchive/libarchive-3.1.2-r5.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app-arch/libarchive/libarchive-3.1.2-r5.ebuild b/app-arch/libarchive/libarchive-3.1.2-r5.ebuild index f968413..7d43f90 100644 --- a/app-arch/libarchive/libarchive-3.1.2-r5.ebuild +++ b/app-arch/libarchive/libarchive-3.1.2-r5.ebuild @@ -48,10 +48,13 @@ multilib_src_configure() { export ac_cv_header_ext2fs_ext2_fs_h=$(usex e2fsprogs) #354923 local myconf=() + # acl: libarchive has tight integration with OSX, disabling acl + # breaks the code for it knows it is there and assumes hence is + # enabled myconf=( $(use_enable static-libs static) $(use_enable xattr) - $(use_enable acl) + $([[ ${CHOST} != *-darwin* ]] && use_enable acl) $(use_with zlib) $(use_with bzip2 bz2lib) $(use_with iconv)