summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-analyzer/nmap/nmap-3.00.ebuild')
-rw-r--r--net-analyzer/nmap/nmap-3.00.ebuild50
1 files changed, 0 insertions, 50 deletions
diff --git a/net-analyzer/nmap/nmap-3.00.ebuild b/net-analyzer/nmap/nmap-3.00.ebuild
deleted file mode 100644
index a9fc841a20a6..000000000000
--- a/net-analyzer/nmap/nmap-3.00.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2004 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.8 2004/01/20 19:52:13 spock 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
-}
-