1
0
forked from ports/contrib

nmap: adopted port

This commit is contained in:
Tim Biermann 2021-02-01 10:47:07 +00:00
parent 3ee1e49e37
commit 0a3feba3ec
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 16 additions and 12 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3xOQXlrPn83qTLsBaRL2uUOpN7v6F8/zCwFyTRm+CNG6jkx6KhbhJKwK4GfMN5qQfeokszO2Ht7bZykJUU8jkgo=
SHA256 (Pkgfile) = e7de0acd1ab037966d2fb088cdcf77fac563bd0f6499cad7d9181dbe6f21b8c6
RWSagIOpLGJF35skuSrkJC9kVSBgpVKxJMWNgB1b465ae+jMpUiO/O+Ro/CoZ4YsQovYiTvegNi7TB0KJFQwufPvimWY9B9JoAM=
SHA256 (Pkgfile) = 93c1d9b48f4cf6e4da3fc994207f7cabf22b2831029905af0aa9eab2d559db16
SHA256 (.footprint) = 16f28fe989730cea3ef7bc26c068ec63509c7f117d7f3b4cda63de1fcf2d167d
SHA256 (nmap-7.91.tar.bz2) = 18cc4b5070511c51eb243cdd2b0b30ff9b2c4dc4544c6312f75ce3a67a593300

View File

@ -1,7 +1,6 @@
# Description: Utility for network exploration or security auditing
# URL: https://nmap.org
# Maintainer: Thomas Penteker, tek at serverop dot de
# Packager: sten, nick dot steeves at shaw dot ca
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: libpcap
name=nmap
@ -11,13 +10,18 @@ source=(https://nmap.org/dist/$name-$version.tar.bz2)
build () {
cd $name-$version
./configure --prefix=/usr --libexecdir=/usr/lib \
--with-libpcre=included --with-liblua=included \
--without-zenmap --without-ndiff --disable-nls \
--without-nmap-update
cd $name-$version
make
make DESTDIR=$PKG install
find $PKG -iname '*readme*' -exec rm -fr '{}' \+
./configure --prefix=/usr \
--libexecdir=/usr/lib \
--with-libpcre=included \
--with-liblua=included \
--without-zenmap \
--without-ndiff \
--disable-nls \
--without-nmap-update
make
make DESTDIR=$PKG install
find $PKG -iname '*readme*' -exec rm -fr '{}' \+
}