--- /dev/null
+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
--- /dev/null
+# 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.*
+}