mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-22 06:41:01 +02:00
* Added svn version of proxystrike
This commit is contained in:
parent
4b771c0d67
commit
7e1e9ce1f3
2 changed files with 33 additions and 0 deletions
|
|
@ -2,3 +2,4 @@ AUX proxystrike-cli 60 RMD160 1ad72106b3ccca17e89f128518779b49e3b4364a SHA1 0621
|
|||
AUX proxystrike-gui 57 RMD160 efbf5d29e0adf45abbf063d781c7ab7b93a51fc3 SHA1 165ede06d100e315e59bd82b58b1d5b5aaab3e1d SHA256 4498bada7977e7f5e20dd3bda1feef4abcd782869db4ca676b51139cae5b65d2
|
||||
DIST proxystrike-v2.0.tar.gz 45677 RMD160 687ac2708c202cac2eb5014727460e30a9f57ff7 SHA1 a01855843a756e27fe12bafa7c1e633266cb786c SHA256 ebf4f7c9024ab41999cab8c4f69071db0c021dc5ef517b7a5d44591b9ef31a5b
|
||||
EBUILD proxystrike-2.0.ebuild 825 RMD160 9c25e89d3f1895e58550344d1b56e9bce6ac3e31 SHA1 7aa951530b49a28bca4770ef84ec3366c52ef9c7 SHA256 f1c2865a47bd442b38f02dc8e003817effcc448fde87aaa507590fc025bcc615
|
||||
EBUILD proxystrike-9999.ebuild 799 RMD160 c8ab9d3e250abde1b30ddb5a0cbe536e63b0047e SHA1 ecc1b6dc2ee466d6aa42b167f6fa29cf2c30affc SHA256 2c15d4bdedf43edc75520dd09f9de602a313515945ebb05d9a81e5827df06256
|
||||
|
|
|
|||
32
net-proxy/proxystrike/proxystrike-9999.ebuild
Normal file
32
net-proxy/proxystrike/proxystrike-9999.ebuild
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Copyright 1999-2006 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
inherit eutils subversion
|
||||
|
||||
MY_P="${PN}-v${PV}"
|
||||
DESCRIPTION="A tool designed to find vulnerabilities while browsing an application"
|
||||
HOMEPAGE="http://code.google.com/p/proxystrike/"
|
||||
ESVN_REPO_URI="http://proxystrike.googlecode.com/svn/trunk/"
|
||||
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"
|
||||
|
||||
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
|
||||
}
|
||||
Loading…
Reference in a new issue