mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-18 12:51:02 +02:00
fix for issue24
This commit is contained in:
parent
4dd15ae7fc
commit
7e04349f7e
2 changed files with 13 additions and 10 deletions
|
|
@ -1,2 +1,2 @@
|
|||
AUX wafp 62 SHA256 ca7c7d6c3c9d83cc09795e22bf1d3d09bc8da50c976c10669313e5db358278a3 SHA512 2fcf468be07ec122c78c2912d9be65120da24f96ae5e0d0d994e832594281175548878097ee4d9fae3e251ff3c64ff94dc0f160ba422152e1ab3b5abce04cddf WHIRLPOOL aa6a203e27db31733c20be0958ef49b0e5ece90fbbb404fc984b9a324a97365790d3b1b64c39c31a6a89bf66a9891d454172fd7fe5046f2fb07956cb3aae850f
|
||||
EBUILD wafp-9999.ebuild 708 SHA256 b699c5b266f4e42b6a8249b64434779f3ba57855733e3a8fea2e9f4362a011c7 SHA512 18bc906865a8edb9a82012b92fe5d480085dfb1c4e552b94ba4a74b46c4527fbb293df484a5bd1294afa0dd433510964c0ff08fc5271056bdaa42053eab934d4 WHIRLPOOL a3520ffbaa83b240a6d97008fe3a4b476711407ca8f26fd8f26ec2013176f60284b1c56c54cedad607f359e957b76c9fffeeab22340ae4d120a08131de8dedf3
|
||||
EBUILD wafp-9999.ebuild 838 SHA256 34946b8324c081a7d415109596692d0bf3ee167452950d38c006f08687ab8cc3 SHA512 c33a14a8ec7cc989ac78f1c306142dc7228ce7b228a718367873707c5359f888d4fe3ae43306815b791124c768e8a1f84469674692ebee018a29d8f3c2667249 WHIRLPOOL e138909741c7d7db33649aea68972b7b8ca999219424e8b355b9443aa9f188f15cf21ad40c31237762ec22d3b029b06c076d04709a5c1248caa4690ed4dd44c3
|
||||
|
|
|
|||
|
|
@ -1,13 +1,14 @@
|
|||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI="2"
|
||||
EAPI="4"
|
||||
|
||||
inherit subversion
|
||||
USE_RUBY="ruby18"
|
||||
inherit ruby-ng subversion
|
||||
|
||||
DESCRIPTION="A webapplication fingerprinter written in ruby"
|
||||
HOMEPAGE="http://mytty.org/wafp/"
|
||||
HOMEPAGE="http://code.google.com/p/webapplicationfingerprinter/"
|
||||
SRC_URI=""
|
||||
ESVN_REPO_URI="http://webapplicationfingerprinter.googlecode.com/svn/trunk/"
|
||||
|
||||
|
|
@ -16,15 +17,17 @@ SLOT="0"
|
|||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND=">=dev-ruby/sqlite3-1.3.6"
|
||||
ruby_add_rdepend "dev-ruby/sqlite3"
|
||||
|
||||
src_install() {
|
||||
rm LICENSE
|
||||
rm LICENSE || die
|
||||
dodoc CREDITS HOWTO README utils/README.generate_wafp_fingerprint\
|
||||
utils/SUBMIT_YOUR_FPS
|
||||
utils/SUBMIT_YOUR_FPS
|
||||
rm CREDITS HOWTO README utils/README.generate_wafp_fingerprint\
|
||||
utils/SUBMIT_YOUR_FPS
|
||||
utils/SUBMIT_YOUR_FPS || die
|
||||
exeinto /usr/share/$PN/utils
|
||||
doexe utils/*
|
||||
rm -rf utils || die
|
||||
insinto /usr/share/$PN
|
||||
doins -r *
|
||||
dobin "${FILESDIR}"/$PN
|
||||
|
|
|
|||
Loading…
Reference in a new issue