summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Holzer <mholzer@gentoo.org>2003-06-12 20:05:15 +0000
committerMartin Holzer <mholzer@gentoo.org>2003-06-12 20:05:15 +0000
commite5a34ff249d9f0717937525b1c85cd0c6d59e348 (patch)
tree5b642c758e35e4a329e2b0abb6e29dd122aa9cea /net-analyzer
parentcleanup (diff)
downloadhistorical-e5a34ff249d9f0717937525b1c85cd0c6d59e348.tar.gz
historical-e5a34ff249d9f0717937525b1c85cd0c6d59e348.tar.bz2
historical-e5a34ff249d9f0717937525b1c85cd0c6d59e348.zip
cleanup
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/nmap/Manifest2
-rw-r--r--net-analyzer/nmap/nmap-3.10_alpha9.ebuild55
2 files changed, 0 insertions, 57 deletions
diff --git a/net-analyzer/nmap/Manifest b/net-analyzer/nmap/Manifest
index ccb975b47650..7731666bd42c 100644
--- a/net-analyzer/nmap/Manifest
+++ b/net-analyzer/nmap/Manifest
@@ -1,9 +1,7 @@
MD5 61c35b34027e1954266316a515c89fbf ChangeLog 4323
MD5 3cde9656f604318552895f65e4e5ab15 nmap-3.00.ebuild 1031
-MD5 a71ff79b0868e30258eb862a9c7f09d2 nmap-3.10_alpha9.ebuild 1209
MD5 dd0c1e5855906f5a8a0150cd770075c4 nmap-3.20.ebuild 1003
MD5 a8e66e3331103e04ccf2ead3ad3ce2b6 nmap-3.27.ebuild 1002
MD5 b974965bf7f0a11a9bbd7829b3f81e42 files/digest-nmap-3.00 58
-MD5 1f0a662a3a18d03cb613f893bcdfd09c files/digest-nmap-3.10_alpha9 65
MD5 a708f7f4c522d8a8115977eccfb6c9ef files/digest-nmap-3.20 62
MD5 4cc81212eef69222cc548cdea77aed43 files/digest-nmap-3.27 62
diff --git a/net-analyzer/nmap/nmap-3.10_alpha9.ebuild b/net-analyzer/nmap/nmap-3.10_alpha9.ebuild
deleted file mode 100644
index 2a06c8d486b7..000000000000
--- a/net-analyzer/nmap/nmap-3.10_alpha9.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# 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.10_alpha9.ebuild,v 1.3 2003/02/25 14:10:31 gmsoft Exp $
-
-inherit gcc
-
-IUSE="gtk gnome ipv6"
-
-MY_P="${P/_alpha/ALPHA}"
-S=${WORKDIR}/${MY_P}
-DESCRIPTION="Portscanner"
-SRC_URI="http://www.insecure.org/nmap/dist/${MY_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 hppa"
-
-src_compile() {
- # fix header
- if [ `gcc-major-version` -eq 3 ] ; then
- cp nbase/nbase.h nbase/nbase.h.old
- sed -e 's:char \*strcasestr://:' \
- nbase/nbase.h.old > nbase/nbase.h
- fi
-
- use ipv6 \
- && econf --enable-ipv6 \
- || econf
-
- use gtk \
- && make \
- || make nmap
-}
-
-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
-}