summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2016-07-02 18:25:38 +0000
committerJustin Lecher <jlec@gentoo.org>2016-07-02 18:35:28 +0000
commitdc24c0d40f3fe073368ea22fa0c68849c6e34ece (patch)
tree431bbe14d8395e855717349a635f4c883eb9b729 /net-analyzer/zmap/zmap-1.2.0.ebuild
parentapp-crypt/gentoo-keys: Bump for new updated expiry dates (diff)
downloadgentoo-dc24c0d40f3fe073368ea22fa0c68849c6e34ece.tar.gz
gentoo-dc24c0d40f3fe073368ea22fa0c68849c6e34ece.tar.bz2
gentoo-dc24c0d40f3fe073368ea22fa0c68849c6e34ece.zip
net-analyzer/zmap: Always require json-c
Drop old Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=585104 Package-Manager: portage-2.3.0 Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'net-analyzer/zmap/zmap-1.2.0.ebuild')
-rw-r--r--net-analyzer/zmap/zmap-1.2.0.ebuild38
1 files changed, 0 insertions, 38 deletions
diff --git a/net-analyzer/zmap/zmap-1.2.0.ebuild b/net-analyzer/zmap/zmap-1.2.0.ebuild
deleted file mode 100644
index 6b0059940854..000000000000
--- a/net-analyzer/zmap/zmap-1.2.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-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:0
- 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
- $(cmake-utils_use_with json)
- $(cmake-utils_use_with redis)
- )
- cmake-utils_src_configure
-}
-
-FILECAPS=( cap_net_raw=ep usr/sbin/zmap )