mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-05 19:11:57 +02:00
39 lines
851 B
Bash
39 lines
851 B
Bash
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI=2
|
|
|
|
inherit eutils toolchain-funcs
|
|
|
|
DESCRIPTION="perform a rainbow table attack on password hashes"
|
|
HOMEPAGE="http://sourceforge.net/projects/rcracki/"
|
|
SRC_URI="mirror://sourceforge/rcracki/${PN}_${PV}_src.7z"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="dev-libs/openssl"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
S="${WORKDIR}/${PN}_${PV}_src"
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}/${PN}-share.patch"
|
|
sed -i "s#@@SHARE@@#/usr/share/${P}#g" ChainWalkContext.cpp || die
|
|
sed -i "s|-O3|$CXXFLAGS|" Makefile || die
|
|
sed -i "s|\$(LFLAGS)|$LDFLAGS|" Makefile || die
|
|
}
|
|
|
|
src_compile() {
|
|
# force only one Makejob
|
|
emake -j1 || die
|
|
}
|
|
|
|
src_install() {
|
|
dobin rcracki_mt || die
|
|
insinto "/usr/share/${P}"
|
|
doins charset.txt || die
|
|
}
|