mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-09 04:51:27 +02:00
added skipfish
This commit is contained in:
parent
2b59e95d91
commit
b5c3979573
2 changed files with 36 additions and 0 deletions
2
net-analyzer/skipfish/Manifest
Normal file
2
net-analyzer/skipfish/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
DIST skipfish-1.13b.tgz 170939 RMD160 d5f768f2e0b50180aa513c0ebd50c7c45fb1ffa3 SHA1 07ee17a71125b94691a92feca0eb108837512f0a SHA256 d6af4822091f2a10ac7a581415d63cbd45565f7c3f880c91708c867d2ccf2552
|
||||
EBUILD skipfish-1.13b.ebuild 801 RMD160 80f72bbe55768c358e530c62aca1cd67138e9e72 SHA1 86265109a20eb4cf457cc40aedcd221059318136 SHA256 530a666c4dc4ed1c7fc202a23faa412410ab462671494f17c4296f9f1b47e1e7
|
||||
34
net-analyzer/skipfish/skipfish-1.13b.ebuild
Normal file
34
net-analyzer/skipfish/skipfish-1.13b.ebuild
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI="2"
|
||||
|
||||
DESCRIPTION="A fully automated, active web application security reconnaissance tool"
|
||||
HOMEPAGE="http://code.google.com/p/skipfish/"
|
||||
SRC_URI="http://skipfish.googlecode.com/files/${P}.tgz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="net-dns/libidn
|
||||
dev-libs/openssl"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
S="${WORKDIR}"/$PN
|
||||
|
||||
src_prepare() {
|
||||
sed -i "s|-O3|$CFLAGS|g" Makefile || die 'sed failed'
|
||||
sed -i 's|"assets"|"/usr/share/skipfish/assets"|g' config.h || die 'sed failed'
|
||||
rm assets/COPYING
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin skipfish || die 'install failed'
|
||||
insinto /usr/share/skipfish
|
||||
doins -r assets
|
||||
doins -r dictionaries
|
||||
dodoc README dictionaries/README-FIRST
|
||||
}
|
||||
Loading…
Reference in a new issue