blob: d6f034c5e3def067c6da8b253ee86ddfd5262ccc (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/amap/amap-4.6.ebuild,v 1.3 2005/01/25 10:30:14 ka0ttic Exp $
inherit eutils
DESCRIPTION="A network scanning tool for pentesters"
HOMEPAGE="http://www.thc.org/releases.php"
SRC_URI="http://packetstormsecurity.nl/groups/thc/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ia64 ppc ppc64 sparc x86"
IUSE="ssl"
DEPEND="virtual/libc
dev-libs/libpcre
ssl? ( >=dev-libs/openssl-0.9.6j )"
src_unpack() {
unpack ${A}
cd ${S}
sed -i \
-e 's:/usr/local:/usr:' \
-e '/AMAP_APPDEF_PATH/s:/bin:/share/amap:' \
amap.h || die "sed amap.h failed"
rm -rf pcre-3.9
epatch ${FILESDIR}/${PV}-system-pcre.patch
}
src_compile() {
# has it's own stupid custom configure script
./configure || die "configure failed"
sed -i \
-e '/^XDEFINES=/s:=.*:=:' \
-e '/^XLIBS=/s:=.*:=:' \
-e '/^XLIBPATHS/s:=.*:=:' \
-e '/^XIPATHS=/s:=.*:=:' \
Makefile || die "pruning vars"
if use ssl ; then
sed -i \
-e '/^XDEFINES=/s:=:=-DOPENSSL:' \
-e '/^XLIBS=/s:=:=-lcrypto -lssl:' \
Makefile || die "adding ssl"
fi
emake OPT="${CFLAGS}" || die "emake failed"
}
src_install() {
dobin amap amapcrap || die "dobin failed"
insinto /usr/share/amap
doins appdefs.* || die "doins failed"
doman ${PN}.1
dodoc README TODO CHANGES
}
|