diff options
author | Heinrich Wendel <lanius@gentoo.org> | 2003-10-06 11:12:38 +0000 |
---|---|---|
committer | Heinrich Wendel <lanius@gentoo.org> | 2003-10-06 11:12:38 +0000 |
commit | 011184f7c38d1b7437f6226989071906738d5d8b (patch) | |
tree | 82a3a4cd5a43b30912936028470f7403289657fb /net-analyzer | |
parent | bump (diff) | |
download | historical-011184f7c38d1b7437f6226989071906738d5d8b.tar.gz historical-011184f7c38d1b7437f6226989071906738d5d8b.tar.bz2 historical-011184f7c38d1b7437f6226989071906738d5d8b.zip |
bump
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/nmap/Manifest | 4 | ||||
-rw-r--r-- | net-analyzer/nmap/files/digest-nmap-3.48 | 2 | ||||
-rw-r--r-- | net-analyzer/nmap/nmap-3.48.ebuild | 40 |
3 files changed, 44 insertions, 2 deletions
diff --git a/net-analyzer/nmap/Manifest b/net-analyzer/nmap/Manifest index a86ae80ffc85..49b9ed77ff41 100644 --- a/net-analyzer/nmap/Manifest +++ b/net-analyzer/nmap/Manifest @@ -1,7 +1,7 @@ -MD5 c1912a550930a902c40a011b89a0fcf9 ChangeLog 5444 +MD5 74aa24b754d240b1e69165c50c716a9e ChangeLog 5555 MD5 58fb86f7023cdee4e07dc1e3e4db4213 nmap-3.00.ebuild 1016 MD5 2f04e7324ecafb25c037d1bdf7f1cc71 nmap-3.45.ebuild 1003 -MD5 2f04e7324ecafb25c037d1bdf7f1cc71 nmap-3.48.ebuild 1003 +MD5 055ac8fa9cffca582f80480a775aeb59 nmap-3.48.ebuild 1003 MD5 f12c1ff4837f9b1b359488f3cacd8130 nmap-3.30.ebuild 1136 MD5 d46477d7825ac476a9c5f557fd0a7272 files/digest-nmap-3.48 133 MD5 b974965bf7f0a11a9bbd7829b3f81e42 files/digest-nmap-3.00 58 diff --git a/net-analyzer/nmap/files/digest-nmap-3.48 b/net-analyzer/nmap/files/digest-nmap-3.48 new file mode 100644 index 000000000000..bf01ccb2f996 --- /dev/null +++ b/net-analyzer/nmap/files/digest-nmap-3.48 @@ -0,0 +1,2 @@ +MD5 8c38559a863efd476c5b042123f1ee3a nmap-3.48.tar.bz2 1227663 +MD5 8b2d99c9ce76001cd3dcd91ef4bed9b7 nmap-3.20_statistics-1.diff 6323 diff --git a/net-analyzer/nmap/nmap-3.48.ebuild b/net-analyzer/nmap/nmap-3.48.ebuild new file mode 100644 index 000000000000..ea75b563652e --- /dev/null +++ b/net-analyzer/nmap/nmap-3.48.ebuild @@ -0,0 +1,40 @@ +# 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.48.ebuild,v 1.1 2003/10/06 11:12:33 lanius Exp $ + +inherit gcc eutils + +DESCRIPTION="utility for network exploration or security auditing" +SRC_URI="http://www.insecure.org/nmap/dist/${P}.tar.bz2 + http://www.packetstormsecurity.nl/UNIX/nmap/${PN}-3.20_statistics-1.diff" +HOMEPAGE="http://www.insecure.org/nmap/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64" +IUSE="gtk gnome" + +DEPEND="virtual/glibc + gtk? ( =x11-libs/gtk+-1.2* )" + +src_unpack() { + unpack ${P}.tar.bz2 + cd ${S} + epatch ${DISTDIR}/${PN}-3.20_statistics-1.diff +} + +src_compile() { + econf `use_with gtk nmapfe` || die + emake || die +} + +src_install() { + einstall \ + nmapdatadir=${D}/usr/share/nmap \ + install \ + || die + use gnome || rm -rf ${D}/usr/share/gnome/ + + dodoc CHANGELOG HACKING INSTALL docs/README docs/*.txt + dohtml docs/*.html +} |