mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-09 09:56:00 +01:00
32 lines
819 B
Bash
32 lines
819 B
Bash
# Copyright 1999-2006 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
inherit eutils
|
|
MY_P="${PN}-v${PV}"
|
|
DESCRIPTION="A tool designed to find vulnerabilities while browsing an application"
|
|
HOMEPAGE="http://code.google.com/p/proxystrike/"
|
|
SRC_URI="http://www.edge-security.com/soft/${MY_P}.tar.gz"
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="amd64 ~ppc x86"
|
|
IUSE="qt4"
|
|
RDEPEND="qt4? ( dev-python/PyQt4 )
|
|
dev-python/pyopenssl
|
|
dev-python/pycurl
|
|
dev-python/sip"
|
|
|
|
DEPEND="${RDEPEND}"
|
|
SLOT="0"
|
|
S="${WORKDIR}/ProxyStrike-v${PV}"
|
|
|
|
src_compile() {
|
|
elog "Nothing to compile"
|
|
}
|
|
|
|
src_install() {
|
|
dodir /usr/lib/${PN}
|
|
cp -R "${S}"/* "${D}"/usr/lib/${PN} || die "Copy files failed"
|
|
dobin "${FILESDIR}/${PN}-cli"
|
|
if use qt4; then dobin "${FILESDIR}/${PN}-gui"; fi
|
|
dodoc README CHANGELOG
|
|
}
|