blob: 53137cf4260ef252630d8623d0edff65d5acf9b9 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-3.00.ebuild,v 1.6 2003/02/13 13:48:34 vapier Exp $
IUSE="gtk gnome ipv6"
S=${WORKDIR}/${P}
DESCRIPTION="Portscanner"
SRC_URI="http://www.insecure.org/nmap/dist/${P}.tgz"
HOMEPAGE="http://www.insecure.org/nmap/"
DEPEND="virtual/glibc
gtk? ( =x11-libs/gtk+-1.2* )"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc alpha"
src_compile() {
if [ `use ipv6` ]; then
econf --enable-ipv6 || die
else
econf || die
fi
use gtk && ( \
make || die
) || (
make nmap || die
)
}
src_install() {
local myinst
# If gnome does not exist on the system, there is no need for the gnome
# menu item.
use gnome || myinst="${myinst} deskdir=${S}"
make \
prefix=${D}/usr \
mandir=${D}/usr/share/man \
nmapdatadir=${D}/usr/share/nmap \
install || die
dodoc CHANGELOG COPYING HACKING README*
cd docs
dodoc *.txt
dohtml *.html
}
|