diff options
author | Michael Januszewski <spock@gentoo.org> | 2006-04-25 14:31:42 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2006-04-25 14:31:42 +0000 |
commit | 700edf4c60f9c7651c60163bc6355148dbfebdf5 (patch) | |
tree | 0accaae9f07236c17a16f85af48634b62be174b6 /net-analyzer | |
parent | sci-mathematics/scilab-4.0 masked for further testing. (diff) | |
download | gentoo-2-700edf4c60f9c7651c60163bc6355148dbfebdf5.tar.gz gentoo-2-700edf4c60f9c7651c60163bc6355148dbfebdf5.tar.bz2 gentoo-2-700edf4c60f9c7651c60163bc6355148dbfebdf5.zip |
Version bump (bug #131131).
(Portage version: 2.1_pre9-r4)
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/nmap/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/nmap/files/digest-nmap-4.03 | 3 | ||||
-rw-r--r-- | net-analyzer/nmap/nmap-4.03.ebuild | 48 |
3 files changed, 57 insertions, 1 deletions
diff --git a/net-analyzer/nmap/ChangeLog b/net-analyzer/nmap/ChangeLog index 715317927a72..2b13fa9efc24 100644 --- a/net-analyzer/nmap/ChangeLog +++ b/net-analyzer/nmap/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/nmap # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.119 2006/03/21 10:31:24 herbs Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.120 2006/04/25 14:31:41 spock Exp $ + +*nmap-4.03 (25 Apr 2006) + + 25 Apr 2006; Michał Januszewski <spock@gentoo.org> +nmap-4.03.ebuild: + Version bump (bug #131131). 21 Mar 2006; Herbie Hopkins <herbs@gentoo.org> nmap-4.01.ebuild: Stable on amd64 wrt bug #126009. diff --git a/net-analyzer/nmap/files/digest-nmap-4.03 b/net-analyzer/nmap/files/digest-nmap-4.03 new file mode 100644 index 000000000000..693c9eb3609a --- /dev/null +++ b/net-analyzer/nmap/files/digest-nmap-4.03 @@ -0,0 +1,3 @@ +MD5 d2b841e97d81d0fac20d18cbeddfa54a nmap-4.03.tar.bz2 2123560 +RMD160 9750b91ce1339888e4d18fc08a5927b5c3d38973 nmap-4.03.tar.bz2 2123560 +SHA256 9692f249baeb4bbb9f81a666c733fb764b56550ed79fdd4056698cf470de4774 nmap-4.03.tar.bz2 2123560 diff --git a/net-analyzer/nmap/nmap-4.03.ebuild b/net-analyzer/nmap/nmap-4.03.ebuild new file mode 100644 index 000000000000..38bbfc00e20f --- /dev/null +++ b/net-analyzer/nmap/nmap-4.03.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-4.03.ebuild,v 1.1 2006/04/25 14:31:42 spock Exp $ + +inherit eutils flag-o-matic + +DESCRIPTION="A utility for network exploration or security auditing" +HOMEPAGE="http://www.insecure.org/nmap/" +SRC_URI="http://download.insecure.org/nmap/dist/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc-macos ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="gtk ssl" + +DEPEND="virtual/libc + dev-libs/libpcre + gtk? ( =x11-libs/gtk+-2* ) + ssl? ( dev-libs/openssl )" + +src_unpack() { + unpack ${A} + cd ${S} + sed 's:Icon=icon-network:Icon=nmap-logo-64.png:' -i nmapfe.desktop + echo ";" >> nmapfe.desktop + epatch ${FILESDIR}/nmap-shtool-nls.patch + epatch ${FILESDIR}/nmap-4.01-nostrip.patch +} + +src_compile() { + use ppc-macos && filter-flags -fstrict-aliasing -O2 + econf \ + $(use_with gtk nmapfe) \ + $(use_with ssl openssl) || die + emake -j1 || die +} + +src_install() { + einstall -j1 nmapdatadir=${D}/usr/share/nmap install || die + dodoc CHANGELOG HACKING INSTALL docs/README docs/*.txt + dohtml docs/*.html + + if use gtk; then + dodir /usr/share/pixmaps + insinto /usr/share/pixmaps + doins ${FILESDIR}/nmap-logo-64.png + fi +} |