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 92DF959CA3 for ; Mon, 7 Mar 2016 22:51:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A63D621C021; Mon, 7 Mar 2016 22:51:40 +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 3177121C021 for ; Mon, 7 Mar 2016 22:51:40 +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 046A1340A9F for ; Mon, 7 Mar 2016 22:51:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 733641607 for ; Mon, 7 Mar 2016 22:51:36 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1457389971.1d5e60b5e81a3b65f2c273a1c320a9e637c85618.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/s6/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/s6/s6-2.2.4.3.ebuild X-VCS-Directories: sys-apps/s6/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 1d5e60b5e81a3b65f2c273a1c320a9e637c85618 X-VCS-Branch: master Date: Mon, 7 Mar 2016 22:51:36 +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: 3b3dae70-06e9-447c-b84b-1070643a6b58 X-Archives-Hash: be8eb4c04f3926012e9484e06319abc6 commit: 1d5e60b5e81a3b65f2c273a1c320a9e637c85618 Author: Luis Ressel aixah de> AuthorDate: Sun Mar 6 22:14:03 2016 +0000 Commit: William Hubbs gentoo org> CommitDate: Mon Mar 7 22:32:51 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d5e60b5 sys-apps/s6: Add a static-libs USE flag libs6 is used by other packages such as s6-rc, so it'd be useful to be able to control the availability of libs6.a without depending on USE=static. sys-apps/s6/s6-2.2.4.3.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-apps/s6/s6-2.2.4.3.ebuild b/sys-apps/s6/s6-2.2.4.3.ebuild index 171342f..8aeee3a 100644 --- a/sys-apps/s6/s6-2.2.4.3.ebuild +++ b/sys-apps/s6/s6-2.2.4.3.ebuild @@ -13,7 +13,7 @@ SRC_URI="http://www.skarnet.org/software/${PN}/${P}.tar.gz" LICENSE="ISC" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="static" +IUSE="static static-libs" DEPEND=">=sys-devel/make-4.0 static? ( @@ -42,8 +42,8 @@ src_configure() { econf \ $(use_enable !static shared) \ + $(use_enable static-libs static) \ $(use_enable static allstatic) \ - $(use_enable static) \ --bindir=/bin \ --sbindir=/sbin \ --dynlibdir=/$(get_libdir) \