blob: a7360f4d16668cb39178d5c7212ceab3cea2f855 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hydra/hydra-7.4.2.ebuild,v 1.7 2014/12/28 16:04:54 titanofold Exp $
EAPI=5
inherit eutils toolchain-funcs
DESCRIPTION="Advanced parallized login hacker"
HOMEPAGE="http://www.thc.org/thc-hydra/"
SRC_URI="http://freeworld.thc.org/releases/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="firebird gtk idn mysql ncp oracle pcre postgres ssl subversion"
RDEPEND="
dev-libs/openssl
firebird? ( dev-db/firebird )
gtk? (
dev-libs/atk
dev-libs/glib:2
x11-libs/gdk-pixbuf:2
x11-libs/gtk+:2
)
idn? ( net-dns/libidn )
mysql? ( virtual/mysql )
ncp? ( net-fs/ncpfs )
oracle? ( dev-db/oracle-instantclient-basic )
pcre? ( dev-libs/libpcre )
postgres? ( dev-db/postgresql )
ssl? ( >=net-libs/libssh-0.4.0 )
subversion? ( dev-vcs/subversion )
"
DEPEND="
${RDEPEND}
virtual/pkgconfig
"
src_prepare() {
# None of the settings in Makefile.unix are useful to us
: > Makefile.unix
sed -i \
-e 's:|| echo.*$::' \
-e '/\t-$(CC)/s:-::' \
-e '/^OPTS/{s|=|+=|;s| -O3||}' \
-e '/ -o /s:$(OPTS):& $(LDFLAGS):g' \
Makefile.am || die "sed failed"
}
src_configure() {
# Note: despite the naming convention, the top level script is not an
# autoconf-based script.
export OPTS="${CFLAGS}"
./configure \
--prefix=/usr \
--nostrip \
$(use gtk && echo --disable-xhydra) \
|| die "configure failed"
# It looks like all of these could be superfluous - reenable as needed
# sed -i \
# -e '/^XDEFINES=/s:=.*:=:' \
# -e '/^XLIBS=/s:=.*:=-lcrypto:' \
# -e '/^XLIBPATHS/s:=.*:=:' \
# -e '/^XIPATHS=/s:=.*:=:' \
# Makefile || die "pruning vars"
# if use ssl ; then
# sed -i \
# -e '/^XDEFINES=/s:=:=-DLIBOPENSSLNEW -DLIBSSH:' \
# -e '/^XLIBS=/s:$: -lssl -lssh:' \
# Makefile || die "adding ssl"
# fi
if use gtk ; then
cd hydra-gtk && \
econf || die "econf failed"
fi
}
src_compile() {
tc-export CC
emake
if use gtk ; then
cd hydra-gtk && \
emake
fi
}
src_install() {
dobin hydra pw-inspector
if use gtk ; then
dobin hydra-gtk/src/xhydra
fi
dodoc CHANGES README
}
|