mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-11 09:43:40 +02:00
added wafp
This commit is contained in:
parent
34ff72215f
commit
489c03e3aa
3 changed files with 37 additions and 0 deletions
2
net-analyzer/wafp/Manifest
Normal file
2
net-analyzer/wafp/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
AUX wafp 60 RMD160 ed38e834254449b2c8dc40bce3694b55438eee50 SHA1 419aa32593253055aac46b2307d39fd3d5ee2ec2 SHA256 966ef7f3dde433a8ca7ad1da753ba90cef95c78067c1e9d5c36a300c93613cd7
|
||||
EBUILD wafp-9999.ebuild 705 RMD160 f8cebf3a0b532f58480da8f913f2ee0e755451e3 SHA1 1599d947f6b7fcac6cacb303885820a836ec63fb SHA256 3cf93ed1dc67ebd5f87e2de539ef46beaab85c1adaf4270ddd7039aa653c7e91
|
||||
4
net-analyzer/wafp/files/wafp
Normal file
4
net-analyzer/wafp/files/wafp
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
#!/bin/sh
|
||||
cd /usr/share/wafp
|
||||
ruby ./wafp.rb $@
|
||||
cd "$OLDPWD"
|
||||
31
net-analyzer/wafp/wafp-9999.ebuild
Normal file
31
net-analyzer/wafp/wafp-9999.ebuild
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI="2"
|
||||
|
||||
inherit subversion
|
||||
|
||||
DESCRIPTION="A webapplication fingerprinter written in ruby"
|
||||
HOMEPAGE="http://mytty.org/wafp/"
|
||||
SRC_URI=""
|
||||
ESVN_REPO_URI="http://webapplicationfingerprinter.googlecode.com/svn/trunk/"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="dev-ruby/sqlite3-ruby"
|
||||
|
||||
src_install() {
|
||||
rm LICENSE
|
||||
dodoc CREDITS HOWTO README utils/README.generate_wafp_fingerprint\
|
||||
utils/SUBMIT_YOUR_FPS
|
||||
rm CREDITS HOWTO README utils/README.generate_wafp_fingerprint\
|
||||
utils/SUBMIT_YOUR_FPS
|
||||
insinto /usr/share/$PN
|
||||
doins -r *
|
||||
dobin "${FILESDIR}"/$PN
|
||||
}
|
||||
Loading…
Reference in a new issue