diff options
author | Rick Farina <zerochaos@gentoo.org> | 2015-03-19 20:45:13 +0000 |
---|---|---|
committer | Rick Farina <zerochaos@gentoo.org> | 2015-03-19 20:45:13 +0000 |
commit | 1c62af28fdc7dba1523f4637c350da4520d3d28c (patch) | |
tree | 9f37e8dee65208ee62da2fd4cf4564815528f71d /net-libs/libbtbb | |
parent | add working site for lokigames (diff) | |
download | gentoo-2-1c62af28fdc7dba1523f4637c350da4520d3d28c.tar.gz gentoo-2-1c62af28fdc7dba1523f4637c350da4520d3d28c.tar.bz2 gentoo-2-1c62af28fdc7dba1523f4637c350da4520d3d28c.zip |
make pcap properly optional
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key DD11F94A)
Diffstat (limited to 'net-libs/libbtbb')
-rw-r--r-- | net-libs/libbtbb/ChangeLog | 7 | ||||
-rw-r--r-- | net-libs/libbtbb/libbtbb-9999.ebuild | 13 |
2 files changed, 12 insertions, 8 deletions
diff --git a/net-libs/libbtbb/ChangeLog b/net-libs/libbtbb/ChangeLog index bc01b0aa5fd1..c8e0734fe873 100644 --- a/net-libs/libbtbb/ChangeLog +++ b/net-libs/libbtbb/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-libs/libbtbb -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libbtbb/ChangeLog,v 1.18 2014/11/01 18:25:38 zerochaos Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libbtbb/ChangeLog,v 1.19 2015/03/19 20:45:13 zerochaos Exp $ + + 19 Mar 2015; Rick Farina <zerochaos@gentoo.org> libbtbb-9999.ebuild: + make pcap properly optional *libbtbb-2014.02.4 (01 Nov 2014) diff --git a/net-libs/libbtbb/libbtbb-9999.ebuild b/net-libs/libbtbb/libbtbb-9999.ebuild index 1528fa5ed7db..96c377557ec0 100644 --- a/net-libs/libbtbb/libbtbb-9999.ebuild +++ b/net-libs/libbtbb/libbtbb-9999.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libbtbb/libbtbb-9999.ebuild,v 1.13 2014/11/01 18:25:38 zerochaos Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libbtbb/libbtbb-9999.ebuild,v 1.14 2015/03/19 20:45:13 zerochaos Exp $ EAPI=5 @@ -26,7 +26,7 @@ SLOT="0/${PV}" IUSE="+pcap +wireshark-plugins" RDEPEND=" - net-libs/libpcap + pcap? ( net-libs/libpcap ) wireshark-plugins? ( >=net-analyzer/wireshark-1.8.3-r1:= ) @@ -66,9 +66,10 @@ src_configure() { CMAKE_USE_DIR="${S}" BUILD_DIR="${S}"_build local mycmakeargs=( - -DDISABLE_PYTHON=true - -DPACKAGE_MANAGER=true - $(cmake-utils_use pcap PCAPDUMP) + -DDISABLE_PYTHON=true + -DPACKAGE_MANAGER=true + $(cmake-utils_use pcap PCAPDUMP) + $(cmake-utils_use pcap USE_PCAP) ) cmake-utils_src_configure |