mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-05 19:11:57 +02:00
added ppscan port scanner
This commit is contained in:
parent
fd0787736f
commit
8241260d23
2 changed files with 29 additions and 0 deletions
2
net-analyzer/ppscan/Manifest
Normal file
2
net-analyzer/ppscan/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
DIST ppscan-0.3.tar.gz 8046 RMD160 2e629301319a7a46b699aad05e7d0a0189000cca SHA1 c99d65a23bc08a0e31f3697ed3e35613d1ee589c SHA256 662c1cf506bf0d8bb74216f8ea2f0047e7c33238eb1860284b5d9c9fbb2ccc27
|
||||
EBUILD ppscan-0.3.ebuild 573 RMD160 ade01ae03869a77e5dd3fa33d72d4d17c718a482 SHA1 51c634da452ec83107ff99662e416964a5dc515b SHA256 ed6234ef3d2adc6a123480e32418fff41b5e7aa8bff1093b75038c3804fad773
|
||||
27
net-analyzer/ppscan/ppscan-0.3.ebuild
Normal file
27
net-analyzer/ppscan/ppscan-0.3.ebuild
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# Copyright 1999-2009 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI="2"
|
||||
|
||||
DESCRIPTION="port scanner with HTTP and FTP tunneling support"
|
||||
HOMEPAGE="http://aconole.brad-x.com/programs/"
|
||||
SRC_URI="http://www.packetstormsecurity.org/UNIX/scanners/ppscan-0.3.tar.gz"
|
||||
|
||||
LICENSE="public-domain"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="virtual/libc"
|
||||
RDEPEND="virtual/libc"
|
||||
|
||||
src_compile() {
|
||||
gcc -o ppscan ppscan.c -lpthread $CFLAGS || die "failed to compile"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin ppscan
|
||||
dodoc README
|
||||
prepall
|
||||
}
|
||||
Loading…
Reference in a new issue