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 790AF139086 for ; Fri, 23 Dec 2016 03:17:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0C298E0D06; Fri, 23 Dec 2016 03:17:24 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 D2E3CE0D06 for ; Fri, 23 Dec 2016 03:17:23 +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 C6F94341134 for ; Fri, 23 Dec 2016 03:17:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C154A24E2 for ; Fri, 23 Dec 2016 03:17:20 +0000 (UTC) From: "Sam Jorna" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam Jorna" Message-ID: <1482463024.f79ca92e4ed00c58a880b2932b81469b56b54a3b.wraeth@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/znc/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/znc/znc-1.6.4.ebuild X-VCS-Directories: net-irc/znc/ X-VCS-Committer: wraeth X-VCS-Committer-Name: Sam Jorna X-VCS-Revision: f79ca92e4ed00c58a880b2932b81469b56b54a3b X-VCS-Branch: master Date: Fri, 23 Dec 2016 03:17:20 +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: 5bc55772-a4d9-45d1-88f7-4a27ef489ef1 X-Archives-Hash: ec3aa1a36d381d78f14ed37b60ee1c80 commit: f79ca92e4ed00c58a880b2932b81469b56b54a3b Author: Alexey Sokolov google com> AuthorDate: Sun Dec 18 09:46:28 2016 +0000 Commit: Sam Jorna gentoo org> CommitDate: Fri Dec 23 03:17:04 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f79ca92e net-irc/znc: hide zlib and icu behind global USE-flags Closes: #3156 net-irc/znc/znc-1.6.4.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/net-irc/znc/znc-1.6.4.ebuild b/net-irc/znc/znc-1.6.4.ebuild index d7516ba..f8a3449 100644 --- a/net-irc/znc/znc-1.6.4.ebuild +++ b/net-irc/znc/znc-1.6.4.ebuild @@ -21,13 +21,12 @@ KEYWORDS="~amd64 ~arm ~x86" HOMEPAGE="http://znc.in" LICENSE="Apache-2.0" SLOT="0" -IUSE="daemon debug ipv6 libressl perl python ssl sasl tcl test" +IUSE="daemon debug ipv6 icu libressl perl python ssl sasl tcl test zlib" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" RDEPEND=" - dev-libs/icu:= - sys-libs/zlib + icu? ( dev-libs/icu:= ) perl? ( >=dev-lang/perl-5.10:= ) python? ( ${PYTHON_DEPS} ) sasl? ( >=dev-libs/cyrus-sasl-2 ) @@ -36,6 +35,7 @@ RDEPEND=" libressl? ( dev-libs/libressl:0= ) ) tcl? ( dev-lang/tcl:0= ) + zlib? ( sys-libs/zlib ) " DEPEND=" ${RDEPEND} @@ -67,12 +67,14 @@ src_configure() { econf \ --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" \ $(use_enable debug) \ + $(use_enable icu charset) \ $(use_enable ipv6) \ $(use_enable perl) \ $(use_enable python) \ $(use_enable sasl cyrus) \ $(use_enable ssl openssl) \ $(use_enable tcl) \ + $(use_enable zlib) \ $(use_with test gtest "${WORKDIR}/googletest-release-${GTEST_VER}") }