mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-22 06:41:01 +02:00
zmap: initial ebuild
This commit is contained in:
parent
b00b6b5b41
commit
244a43ca78
4 changed files with 43 additions and 0 deletions
2
net-analyzer/zmap/Manifest
Normal file
2
net-analyzer/zmap/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
DIST zmap-1.0.2.tar.gz 73613 SHA256 438e423f2e533e415c7df5f9ac0388fe43eb1e71a820925e2c6e452a446df7a4 SHA512 5ab840f6fde44a46f4890d446769bb7c15309f89c43fd7ea8b6cd0c631b2b25e6ce78e869c35f2d2c42506072dfa9a35e6e6b01ead959903944c084e912f5a29 WHIRLPOOL beff14f7e6a3805358c750f104c7b369fe0f2c12a0ff0937823bdeb2eb44dde7cc4e57110804fce2e5c9d7d760aef8d23646e4fad9d5a336cbf5c0f029f9b53b
|
||||
EBUILD zmap-1.0.2.ebuild 631 SHA256 11bd5dc24411455039324fe3bf86805e8bf71fa5773183f6184d157df0c8f270 SHA512 d90d2c5aa17862c2c0d221538c3094d96d99aa2e66e52340f6d367bfe65a7e3921b44dfe81eb8e06a2c305bcf4297e1f7340a67efc311661899f57513705c671 WHIRLPOOL 48737363477444797b6f7db3df4af00662f9e5e39bc5b58252d1b1269c7f73d724485ab11a59671bd73b2f206dfeb9f43c1172a07308436a6772540db76f5a8e
|
||||
36
net-analyzer/zmap/zmap-1.0.2.ebuild
Normal file
36
net-analyzer/zmap/zmap-1.0.2.ebuild
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI=5
|
||||
inherit eutils
|
||||
|
||||
DESCRIPTION="The Internet Scanner"
|
||||
HOMEPAGE="https://zmap.io/index.html"
|
||||
SRC_URI="https://github.com/zmap/zmap/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="net-libs/libpcap"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/gengetopt"
|
||||
#libgmp3-dev
|
||||
|
||||
src_compile() {
|
||||
cd src
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dodoc AUTHORS CHANGELOG README
|
||||
cd src
|
||||
dosbin zmap
|
||||
doman zmap.1
|
||||
|
||||
insinto /etc/zmap
|
||||
doins ../conf/zmap.conf
|
||||
doins ../conf/blacklist.conf
|
||||
}
|
||||
|
|
@ -16,3 +16,6 @@
|
|||
~dev-util/xxd-1.10
|
||||
|
||||
~dev-util/kbuild-0.1.9998_pre20120806
|
||||
|
||||
# required by zmap
|
||||
~dev-util/gengetopt-2.22.6
|
||||
|
|
|
|||
|
|
@ -94,3 +94,5 @@ net-analyzer/nessus-plugins
|
|||
~net-analyzer/xplico-1.0.1
|
||||
~net-analyzer/xprobe-0.3
|
||||
=net-analyzer/zarp-2013*
|
||||
|
||||
~net-analyzer/zmap-1.0.2
|
||||
|
|
|
|||
Loading…
Reference in a new issue