From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-974872-garchives=archives.gentoo.org@lists.gentoo.org> 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 2656A1396D0 for <garchives@archives.gentoo.org>; Sun, 24 Sep 2017 20:22:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 79639E0EA5; Sun, 24 Sep 2017 20:22:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 57572E0EA5 for <gentoo-commits@lists.gentoo.org>; Sun, 24 Sep 2017 20:22:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2B0DE33C1EB for <gentoo-commits@lists.gentoo.org>; Sun, 24 Sep 2017 20:22:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8401F83F7 for <gentoo-commits@lists.gentoo.org>; Sun, 24 Sep 2017 20:22:43 +0000 (UTC) From: "Thomas Deutschmann" <whissi@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" <whissi@gentoo.org> Message-ID: <1506284555.4316f287b3d0fa955df281fd9feb9708c5ff61ea.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/zeromq/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/zeromq/zeromq-4.2.2-r2.ebuild X-VCS-Directories: net-libs/zeromq/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 4316f287b3d0fa955df281fd9feb9708c5ff61ea X-VCS-Branch: master Date: Sun, 24 Sep 2017 20:22:43 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 43cf8def-dfed-47b4-a476-7dd040a6aaad X-Archives-Hash: 6dcfc36656b3bb75269e8f2150ebff6f commit: 4316f287b3d0fa955df281fd9feb9708c5ff61ea Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org> AuthorDate: Sun Sep 24 20:22:16 2017 +0000 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org> CommitDate: Sun Sep 24 20:22:35 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4316f287 net-libs/zeromq: Add "doc" USE flag Closes: https://bugs.gentoo.org/630726 Package-Manager: Portage-2.3.10, Repoman-2.3.3 net-libs/zeromq/zeromq-4.2.2-r2.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/net-libs/zeromq/zeromq-4.2.2-r2.ebuild b/net-libs/zeromq/zeromq-4.2.2-r2.ebuild index 5a7e6a8072b..18343274ddc 100644 --- a/net-libs/zeromq/zeromq-4.2.2-r2.ebuild +++ b/net-libs/zeromq/zeromq-4.2.2-r2.ebuild @@ -12,16 +12,18 @@ SRC_URI="https://github.com/zeromq/libzmq/releases/download/v${PV}/${P}.tar.gz" LICENSE="LGPL-3" SLOT="0/5" KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" -IUSE="pgm +sodium static-libs test unwind elibc_Darwin" +IUSE="doc pgm +sodium static-libs test unwind elibc_Darwin" RDEPEND=" !elibc_Darwin? ( unwind? ( sys-libs/libunwind ) ) sodium? ( dev-libs/libsodium:= ) pgm? ( =net-libs/openpgm-5.2.122 )" DEPEND="${RDEPEND} - app-text/asciidoc - app-text/xmlto !elibc_Darwin? ( sys-apps/util-linux ) + doc? ( + app-text/asciidoc + app-text/xmlto + ) pgm? ( virtual/pkgconfig )" PATCHES=( "${FILESDIR}"/${PN}-4.2.1-disable-experimental-zmq_poll-implementation.patch @@ -42,6 +44,7 @@ src_configure() { $(use_enable unwind libunwind) $(use_with sodium libsodium) $(use_with pgm) + $(use_with doc docs) ) econf "${myeconfargs[@]}" }