diff options
author | 2006-06-25 22:44:01 +0000 | |
---|---|---|
committer | 2006-06-25 22:44:01 +0000 | |
commit | ddf0ce50894982f2e6c637b247e7d922e6ea4999 (patch) | |
tree | 305378ced2f7f780641a55b53f2c9e89989a7046 /net-analyzer/nmap | |
parent | qt global USE flag no longer exists. Added local one for mico (needs treeclea... (diff) | |
download | gentoo-2-ddf0ce50894982f2e6c637b247e7d922e6ea4999.tar.gz gentoo-2-ddf0ce50894982f2e6c637b247e7d922e6ea4999.tar.bz2 gentoo-2-ddf0ce50894982f2e6c637b247e7d922e6ea4999.zip |
Version bump.
(Portage version: 2.1.1_pre1-r2)
Diffstat (limited to 'net-analyzer/nmap')
-rw-r--r-- | net-analyzer/nmap/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/nmap/files/digest-nmap-4.11 | 3 | ||||
-rw-r--r-- | net-analyzer/nmap/nmap-4.11.ebuild | 48 |
3 files changed, 57 insertions, 1 deletions
diff --git a/net-analyzer/nmap/ChangeLog b/net-analyzer/nmap/ChangeLog index e18fd22e66bb..16c7db996250 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.122 2006/06/16 18:53:05 spock Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.123 2006/06/25 22:44:01 spock Exp $ + +*nmap-4.11 (25 Jun 2006) + + 25 Jun 2006; Michał Januszewski <spock@gentoo.org> +nmap-4.11.ebuild: + Version bump (bug #137837). *nmap-4.10 (16 Jun 2006) diff --git a/net-analyzer/nmap/files/digest-nmap-4.11 b/net-analyzer/nmap/files/digest-nmap-4.11 new file mode 100644 index 000000000000..8fcc32422bda --- /dev/null +++ b/net-analyzer/nmap/files/digest-nmap-4.11 @@ -0,0 +1,3 @@ +MD5 69bdaa9995f32247b5da7c6b6c41df9b nmap-4.11.tar.bz2 2130457 +RMD160 efd9d6f8f34c30fcc985a0705d17a04c709a280a nmap-4.11.tar.bz2 2130457 +SHA256 780b770c011afabb2eaf88b375940b5d3dbb742837dacb144ccc3cfa8cb0907e nmap-4.11.tar.bz2 2130457 diff --git a/net-analyzer/nmap/nmap-4.11.ebuild b/net-analyzer/nmap/nmap-4.11.ebuild new file mode 100644 index 000000000000..5017095191e2 --- /dev/null +++ b/net-analyzer/nmap/nmap-4.11.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.11.ebuild,v 1.1 2006/06/25 22:44:01 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 +} |