diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-01-05 12:52:32 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-01-05 12:52:32 +0000 |
commit | 293a8952d0d19a18a3985a226464bfbaa8ad651d (patch) | |
tree | 42940b3fc41ce0c1e1cf5f3d92db0d47d44eb95e /net-analyzer | |
parent | sci-libs/djbfft: Drop old (diff) | |
download | gentoo-2-293a8952d0d19a18a3985a226464bfbaa8ad651d.tar.gz gentoo-2-293a8952d0d19a18a3985a226464bfbaa8ad651d.tar.bz2 gentoo-2-293a8952d0d19a18a3985a226464bfbaa8ad651d.zip |
net-analyzer/zmap: Version Bump, #534260
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/zmap/ChangeLog | 10 | ||||
-rw-r--r-- | net-analyzer/zmap/zmap-1.2.1.ebuild | 39 | ||||
-rw-r--r-- | net-analyzer/zmap/zmap-9999.ebuild | 5 |
3 files changed, 50 insertions, 4 deletions
diff --git a/net-analyzer/zmap/ChangeLog b/net-analyzer/zmap/ChangeLog index 0f864fa296ec..f92dfb2ac1de 100644 --- a/net-analyzer/zmap/ChangeLog +++ b/net-analyzer/zmap/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-analyzer/zmap -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/zmap/ChangeLog,v 1.7 2014/05/11 16:05:59 jlec Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/zmap/ChangeLog,v 1.8 2015/01/05 12:52:32 jlec Exp $ + +*zmap-1.2.1 (05 Jan 2015) + + 05 Jan 2015; Justin Lecher <jlec@gentoo.org> +zmap-1.2.1.ebuild, + zmap-9999.ebuild: + Version Bump, #534260 *zmap-1.2.0 (11 May 2014) diff --git a/net-analyzer/zmap/zmap-1.2.1.ebuild b/net-analyzer/zmap/zmap-1.2.1.ebuild new file mode 100644 index 000000000000..f502f812e253 --- /dev/null +++ b/net-analyzer/zmap/zmap-1.2.1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/zmap/zmap-1.2.1.ebuild,v 1.1 2015/01/05 12:52:32 jlec Exp $ + +EAPI=5 + +inherit cmake-utils fcaps + +DESCRIPTION="Fast network scanner designed for Internet-wide network surveys" +HOMEPAGE="https://zmap.io/" +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +SLOT="0" +LICENSE="Apache-2.0" +KEYWORDS=" ~amd64 ~x86" +IUSE="json redis" + +RDEPEND=" + dev-libs/gmp + net-libs/libpcap + json? ( dev-libs/json-c ) + redis? ( dev-libs/hiredis )" +DEPEND="${RDEPEND} + dev-util/gengetopt + sys-devel/flex + dev-util/byacc" + +src_configure() { + local mycmakeargs=( + -DENABLE_DEVELOPMENT=OFF + -DENABLE_HARDENING=OFF + -DWITH_WERROR=OFF + $(cmake-utils_use_with json) + $(cmake-utils_use_with redis) + ) + cmake-utils_src_configure +} + +FILECAPS=( cap_net_raw=ep usr/sbin/zmap ) diff --git a/net-analyzer/zmap/zmap-9999.ebuild b/net-analyzer/zmap/zmap-9999.ebuild index 725255118bf7..44287896f7b3 100644 --- a/net-analyzer/zmap/zmap-9999.ebuild +++ b/net-analyzer/zmap/zmap-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-analyzer/zmap/zmap-9999.ebuild,v 1.6 2014/05/11 16:05:59 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/zmap/zmap-9999.ebuild,v 1.7 2015/01/05 12:52:32 jlec Exp $ EAPI=5 @@ -31,6 +31,7 @@ src_configure() { local mycmakeargs=( -DENABLE_DEVELOPMENT=OFF -DENABLE_HARDENING=OFF + -DWITH_WERROR=OFF $(cmake-utils_use_with json) $(cmake-utils_use_with redis) ) |