pentoo-overlay/net-analyzer/w3af/w3af-9999.ebuild

59 lines
1.5 KiB
Bash

# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/w3af/w3af-1.0_rc3-r2.ebuild,v 1.1 2010/10/27 20:54:28 hwoarang Exp $
EAPI=2
PYTHON_USE_WITH="sqlite"
PYTHON_DEPEND="2"
inherit multilib python versionator subversion
MY_P=${PN}-"$(replace_version_separator 2 '-')"
DESCRIPTION="Web Application Attack and Audit Framework"
HOMEPAGE="http://w3af.sourceforge.net/"
ESVN_REPO_URI="https://w3af.svn.sourceforge.net/svnroot/w3af/trunk"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="doc gtk"
RDEPEND=">=dev-python/fpconst-0.7.2
dev-python/nltk
dev-python/pyopenssl
dev-python/pysvn
dev-python/python-cluster
dev-python/pyyaml
dev-python/simplejson
dev-python/soappy
>=net-analyzer/scapy-2
dev-python/lxml
dev-python/pybloomfiltermmap
gtk? ( dev-python/pygraphviz
>dev-python/pygtk-2.0
dev-python/pygtksourceview )"
DEPEND=""
S=${WORKDIR}/${PN}
src_prepare(){
rm -r extlib/{cluster,fpconst-0.7.2,SOAPpy,yaml} || die
rm readme/{GPL,INSTALL} || die
}
src_install() {
insinto /usr/$(get_libdir)/w3af
doins -r core extlib locales plugins profiles scripts tools w3af_console || die
use gtk && doins w3af_gui || die
fperms +x /usr/$(get_libdir)/w3af/w3af_{gui,console} || die
dobin "${FILESDIR}"/w3af_console || die
if use gtk ; then
dobin "${FILESDIR}"/w3af_gui || die
fi
#use flag doc is here because doc is bigger than 3 Mb
if use doc ; then
insinto /usr/share/doc/${PF}/
doins -r readme/* || die
fi
}