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 7DA0A1388BF for ; Thu, 14 Jan 2016 18:43:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9EF4BE0785; Thu, 14 Jan 2016 18:43:24 +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 3BCCDE0785 for ; Thu, 14 Jan 2016 18:43:24 +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 ED0F133D3CF for ; Thu, 14 Jan 2016 18:43:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E6FCCFD for ; Thu, 14 Jan 2016 18:43:21 +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: <1452796954.522dd0168e6425c375a83dc9dc0b726400a99346.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/elfutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/elfutils/elfutils-0.165.ebuild X-VCS-Directories: dev-libs/elfutils/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 522dd0168e6425c375a83dc9dc0b726400a99346 X-VCS-Branch: master Date: Thu, 14 Jan 2016 18:43:21 +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: ec00b140-1809-414a-8921-75ce0df6f63b X-Archives-Hash: 22a00f88b036c6531dbdff53fa7e7bc7 commit: 522dd0168e6425c375a83dc9dc0b726400a99346 Author: Mike Frysinger gentoo org> AuthorDate: Thu Jan 14 18:42:34 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Thu Jan 14 18:42:34 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=522dd016 dev-libs/elfutils: make zlib mandatory #571608 Upstream no longer allows this to be disabled (even if there is a configure flag for it). dev-libs/elfutils/elfutils-0.165.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-libs/elfutils/elfutils-0.165.ebuild b/dev-libs/elfutils/elfutils-0.165.ebuild index 3ba03eb..5bf686f 100644 --- a/dev-libs/elfutils/elfutils-0.165.ebuild +++ b/dev-libs/elfutils/elfutils-0.165.ebuild @@ -13,12 +13,12 @@ SRC_URI="https://fedorahosted.org/releases/e/l/${PN}/${PV}/${P}.tar.bz2" LICENSE="GPL-2-with-exceptions" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux" -IUSE="bzip2 lzma nls static-libs test +threads +utils zlib" +IUSE="bzip2 lzma nls static-libs test +threads +utils" # This pkg does not actually seem to compile currently in a uClibc # environment (xrealloc errs), but we need to ensure that glibc never # gets pulled in as a dep since this package does not respect virtual/libc -RDEPEND="zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] ) +RDEPEND=">=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] bzip2? ( >=app-arch/bzip2-1.0.6-r4[${MULTILIB_USEDEP}] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1[${MULTILIB_USEDEP}] ) !dev-libs/libelf @@ -51,7 +51,7 @@ multilib_src_configure() { $(use_enable nls) \ $(use_enable threads thread-safety) \ --program-prefix="eu-" \ - $(use_with zlib) \ + --with-zlib \ $(use_with bzip2 bzlib) \ $(use_with lzma) }