From: Victor Martinez Date: Wed, 29 Sep 2010 08:50:14 +0000 (+0000) Subject: nmap: initial import (verified compilation). X-Git-Url: http://gitweb/?a=commitdiff_plain;h=a7eef204af2d9ae6a1b83a37c2dcab660686bd1b;p=attic%2Fports%2Fopt-cross.git nmap: initial import (verified compilation). --- diff --git a/nmap/.footprint b/nmap/.footprint new file mode 100644 index 0000000..51e2c8e --- /dev/null +++ b/nmap/.footprint @@ -0,0 +1,16 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/nmap +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/nmap.1.gz +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/nmap/ +-rw-r--r-- root/root usr/share/nmap/nmap-mac-prefixes +-rw-r--r-- root/root usr/share/nmap/nmap-os-db +-rw-r--r-- root/root usr/share/nmap/nmap-protocols +-rw-r--r-- root/root usr/share/nmap/nmap-rpc +-rw-r--r-- root/root usr/share/nmap/nmap-service-probes +-rw-r--r-- root/root usr/share/nmap/nmap-services +-rw-r--r-- root/root usr/share/nmap/nmap.dtd +-rw-r--r-- root/root usr/share/nmap/nmap.xsl diff --git a/nmap/.md5sum b/nmap/.md5sum new file mode 100644 index 0000000..b7660b6 --- /dev/null +++ b/nmap/.md5sum @@ -0,0 +1 @@ +f77fa51d89ab27d35e5cd87bb086b858 nmap-5.21.tar.bz2 diff --git a/nmap/Pkgfile b/nmap/Pkgfile new file mode 100644 index 0000000..e638598 --- /dev/null +++ b/nmap/Pkgfile @@ -0,0 +1,36 @@ +# Description: Utility for network exploration or security auditing +# URL: http://nmap.org +# Packager: sten, nick dot steeves at shaw dot ca +# Maintainer: Thomas Penteker, tek at serverop dot de +# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org +# Depends on: openssl + +name=nmap +version=5.21 +release=1 +source=(http://nmap.org/dist/$name-$version.tar.bz2) + +build () { + cd $name-$version + echo "ac_cv_linux_vers=2" > config.cache + ./configure --build=$CHOST \ + --host=$CTARGET \ + --prefix=/usr \ + --disable-nls \ + --libexecdir=/usr/lib \ + --mandir=/usr/man \ + --with-openssl \ + --with-libdnet=included \ + --with-libpcre=included \ + --with-liblua=included \ + --with-libpcap=included \ + --with-pcap=linux \ + --without-liblua \ + --without-ndiff \ + --without-zenmap \ + --without-ncat \ + --cache-file=config.cache + make AR="$AR" RANLIB="$RANLIB" + make DESTDIR=$PKG install + rm -rf $PKG/usr/man/man1/zenmap.* +}