blob: 43f74b29a6498a85f7e6f9f6d10519783d39e5ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/johntheripper/johntheripper-1.7.3.1.ebuild,v 1.2 2009/03/03 13:54:27 pva Exp $
inherit eutils flag-o-matic toolchain-funcs pax-utils
JUMBO='all-3'
MPI='mpi8-small'
MY_PN="${PN/theripper/}"
MY_P="${MY_PN/theripper/}-${PV}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="fast password cracker"
HOMEPAGE="http://www.openwall.com/john/"
SRC_URI="http://www.openwall.com/john/g/${MY_P}.tar.gz
!minimal? ( ftp://ftp.openwall.com/john/contrib/historical/${MY_P}-${JUMBO}.diff.gz )
mpi? ( http://bindshell.net/tools/johntheripper/${MY_P}-${MPI}.patch.gz )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
EAPI=1
IUSE="mmx altivec sse2 custom-cflags -minimal -mpi"
# Seems a bit fussy with other MPI implementations.
RDEPEND="!minimal? ( >=dev-libs/openssl-0.9.7 )
mpi? ( sys-cluster/openmpi )"
DEPEND="${RDEPEND}"
get_target() {
if use x86 ; then
if use sse2 ; then
echo "linux-x86-sse2"
elif use mmx ; then
echo "linux-x86-mmx"
else
echo "linux-x86-any"
fi
elif use alpha ; then
echo "linux-alpha"
elif use sparc; then
echo "linux-sparc"
elif use amd64; then
echo "linux-x86-64"
elif use ppc64; then
if use altivec; then
echo "linux-ppc32-altivec"
else
echo "linux-ppc64"
fi
# linux-ppc64-altivec is slightly slower than linux-ppc32-altivec for most hash types.
# as per the Makefile comments
elif use ppc; then
if use altivec; then
echo "linux-ppc32-altivec"
else
echo "linux-ppc32"
fi
else
echo "generic"
fi
}
#pkg_setup() {
# if use mpi && built_with_use sys-cluster/mpich2 threads; then
# die 'cannot work with sys-cluster/mpich2 USE=threads'
# #http://bindshell.net/tools/johntheripper/
# fi
#}
src_unpack() {
unpack ${A}
cd "${S}"
PATCHLIST=""
if use mpi ; then
epatch "${WORKDIR}"/${MY_P}-${MPI}.patch
# avoid the conflict on JOHN_VERSION until a better compromise is made
sed -i 's/_mpi"/"/' src/params.h
fi
if ! use minimal ; then
epatch "${WORKDIR}"/${MY_P}-${JUMBO}.diff
PATCHLIST=stackdef.S
fi
PATCHLIST="${PATCHLIST} params.h mkdir-sandbox"
cd "${S}/src"
for p in ${PATCHLIST}; do
epatch "${FILESDIR}/${P}-${p}.patch"
done
sed -i "s/LDFLAGS *= */override LDFLAGS += /" Makefile
}
src_compile() {
cd "${S}/src"
use custom-cflags || strip-flags
append-flags -fno-PIC -fno-PIE
append-ldflags -nopie
CPP=$(tc-getCXX) CC=$(tc-getCC) AS=$(tc-getCC) LD=$(tc-getCC)
use mpi && CPP=mpicxx CC=mpicc AS=mpicc LD=mpicc
emake \
CPP=${CPP} CC=${CC} AS=${AS} LD=${LD} \
CFLAGS="-c -Wall ${CFLAGS} -DJOHN_SYSTEMWIDE \
-DJOHN_SYSTEMWIDE_HOME=\"\\\"/etc/john\\\"\"" \
LDFLAGS="${LDFLAGS}" \
OPT_NORMAL="" \
$(get_target) \
|| die "make failed"
}
src_test() {
cd "${S}/run"
if [ -f /etc/john/john.conf -o -f /etc/john/john.ini ]; then
# This requires that MPI is actually 100% online on your system, which might not
# be the case, depending on which MPI implementation you are using.
#if use mpi ; then
# mpirun -np 2 ./john --test || die 'self test failed'
#else
./john --test || die 'self test failed'
else
ewarn "selftest requires /etc/john/john.conf or /etc/john/john.ini"
fi
}
src_install() {
# executables
dosbin run/john
newsbin run/mailer john-mailer
pax-mark -m "${D}"/usr/sbin/john
dosym john /usr/sbin/unafs
dosym john /usr/sbin/unique
dosym john /usr/sbin/unshadow
# jumbo-patch additions
if ! use minimal ; then
dosym john /usr/sbin/undrop
# >=all-4
#dosbin run/calc_stat
#dosbin run/genmkvpwd
#dosbin run/mkvcalcproba
insinto /etc/john
# >=all-4
#doins run/genincstats.rb run/stats
doins run/netscreen.py run/sap_prepare.pl
fi
#newsbin src/bench john-bench
# config files
insinto /etc/john
doins run/john.conf
doins run/*.chr run/password.lst
# documentation
dodoc doc/*
}
|