diff --git a/net-analyzer/wapiti/Manifest b/net-analyzer/wapiti/Manifest new file mode 100644 index 000000000..873a707cc --- /dev/null +++ b/net-analyzer/wapiti/Manifest @@ -0,0 +1 @@ +EBUILD wapiti-9999.ebuild 724 RMD160 57a855a2f79ef507abc0a5803ab85aab37d98da5 SHA1 5e5885c90d4700d34afde3d9431507b7f96b6f64 SHA256 1084e09bca06f67a6f2237a8287c3ebb329dff742c7b94dd8cc44e3f63fc9c23 diff --git a/net-analyzer/wapiti/wapiti-9999.ebuild b/net-analyzer/wapiti/wapiti-9999.ebuild new file mode 100644 index 000000000..776f23810 --- /dev/null +++ b/net-analyzer/wapiti/wapiti-9999.ebuild @@ -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" +}