dirb: new ebuild, v2.22

This commit is contained in:
Anton Bolshakov 2015-07-19 07:06:05 +00:00
parent 432bbc075e
commit b8327fad14
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,2 @@
DIST dirb222.tar.gz 2052323 SHA256 f3748ade231ca211a01acbec31cc6a3b576f6c56c906d73329d7dbb79f60fc2c SHA512 57305160b11be9d48b44ece5848a102ab7a493a7ac30a44c31339fd7ca659866521ba621dc0639dc28bf21c3b5315390b934441590dac7d5b463e68df4b80b81 WHIRLPOOL f7e9866cc4d03b2c339eefc3970718afee18034e6018d56b6a677acc77414fdb991cd44ce7c65ad528dfc3b05a9e4a68e88f38aa25c5a347eabb61f007bb0225
EBUILD dirb-2.22.ebuild 681 SHA256 d5d0cd5414755f5c054177489480e335d066998e7c23586e30bc7c7e1e91db86 SHA512 2adfbe59a12b5b97242a4f4f9a1045739913a0c84d4f324d96e95af44cada4cb7734d2a6ec6a1fbdd78b6f5d769c2eaa65ad6852cb4a5f86ba1e3025320be960 WHIRLPOOL 24d6e6299e0c55f96ddfe0cb25fc66a8e91851ff0ef13060bc9bc852771e541108707647f868d2124b30b530d56d3fe8a5b3b52d66b7de52ed6632b08e849602

View file

@ -0,0 +1,34 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit eutils
MY_P="${PN}${PV/./}"
DESCRIPTION="A Web Content Scanner to look for existing/hidden content"
HOMEPAGE="http://dirb.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
S="${WORKDIR}/${MY_P}"
src_prepare() {
chmod u+x "${S}"/configure || die
}
src_install() {
dobin dirb
newbin gendict gendict_dirb
dobin web2dic/html2dic
insinto /usr/share/dict/dirb-wordlists
doins -r wordlists/*
dodoc README.txt docs/CHANGES.txt docs/GENDICT.TXT docs/TRICKS.txt
}