mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-01-20 07:05:38 +01:00
* Added wapiti, nice&useful web scanner
This commit is contained in:
parent
d853fd49ca
commit
aeab904ef6
2 changed files with 28 additions and 0 deletions
1
net-analyzer/wapiti/Manifest
Normal file
1
net-analyzer/wapiti/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
EBUILD wapiti-9999.ebuild 724 RMD160 57a855a2f79ef507abc0a5803ab85aab37d98da5 SHA1 5e5885c90d4700d34afde3d9431507b7f96b6f64 SHA256 1084e09bca06f67a6f2237a8287c3ebb329dff742c7b94dd8cc44e3f63fc9c23
|
||||
27
net-analyzer/wapiti/wapiti-9999.ebuild
Normal file
27
net-analyzer/wapiti/wapiti-9999.ebuild
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# Copyright 1999-2006 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
inherit distutils subversion
|
||||
DESCRIPTION="Web application security auditor"
|
||||
HOMEPAGE="http://wapiti.sourceforge.net/"
|
||||
ESVN_REPO_URI="https://wapiti.svn.sourceforge.net/svnroot/wapiti/trunk"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
KEYWORDS="~x86"
|
||||
IUSE=""
|
||||
SLOT="0"
|
||||
RDEPEND="dev-lang/python"
|
||||
|
||||
src_compile() {
|
||||
einfo "Nothing to compile"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dodir /usr/lib/
|
||||
# should be as simple as copying everything into the target...
|
||||
cp -pPR "${S}/src" "${D}usr/lib/${PN}" || die
|
||||
dosym "/usr/lib/${PN}/${PN}.py" "/usr/sbin/${PN}"
|
||||
chown -R root:0 "${D}"
|
||||
chmod +x "${D}/usr/lib/${PN}/${PN}.py"
|
||||
}
|
||||
Loading…
Reference in a new issue