added bob-the-butcher, distributed hash bruteforcer

This commit is contained in:
jensp 2010-02-04 18:52:42 +00:00
parent 27537902d9
commit 67804e0c5a
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,2 @@
DIST bob-the-butcher-0.7.1.tar.gz 272450 RMD160 b9ca92d0dc6d1d990db5c3cdc49fb4554a0f023c SHA1 d17a140796683c198fb762da80ca0cd3b8010e94 SHA256 8e5b5cd9dbc6d44ba2d7227a9394e95e0aec3658a717dc238f6a8330049dc772
EBUILD bob-the-butcher-0.7.1.ebuild 712 RMD160 2ccd194e7dd5d54b5b921a0946d1c8a2f6417492 SHA1 92b5a3e8fc2acc71a57e4b7e01b0ec63179475b0 SHA256 6f32459c6e33ac86169cd804d6c04688eb8b7e3c60cb936d79ae74c68364148e

View file

@ -0,0 +1,39 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
DESCRIPTION="a distributed password cracker"
HOMEPAGE="http://btb.banquise.net/"
SRC_URI="http://btb.banquise.net/bin/$P.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="sse2"
DEPEND="$RDEPEND"
RDEPEND="dev-libs/libevent"
src_configure() {
#TODO configure is pretty fscked up, it doesn't seem to respect CFLAGS and
# ignores our settings
local myconf
if use sse2; then
myconf="--enable-sse2"
else
myconf="--disable-sse2"
fi
econf ${myconf}
}
src_compile() {
CFLAGS="$CFLAGS" emake
}
src_install() {
DESTDIR="${D}" emake install
dodoc README NEWS TODO
}