diff options
author | Tim Biermann <tbier@posteo.de> | 2020-01-20 15:19:30 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2020-01-20 15:43:14 +0000 |
commit | 6b63ad0e5dfa0f47bfc0acf482b0c509807c5a61 (patch) | |
tree | d93271224d36d187acc3f86dcbce1cad93230a5a /nmap | |
parent | 13b213e07a79551a318767ab25ccdc9ef81d0cae (diff) | |
download | contrib-6b63ad0e5dfa0f47bfc0acf482b0c509807c5a61.tar.gz contrib-6b63ad0e5dfa0f47bfc0acf482b0c509807c5a61.tar.xz |
nmap: corrected mandir
Diffstat (limited to 'nmap')
-rw-r--r-- | nmap/.footprint | 10 | ||||
-rw-r--r-- | nmap/.signature | 6 | ||||
-rw-r--r-- | nmap/Pkgfile | 7 |
3 files changed, 11 insertions, 12 deletions
diff --git a/nmap/.footprint b/nmap/.footprint index 3ff791ef2..995948967 100644 --- a/nmap/.footprint +++ b/nmap/.footprint @@ -3,12 +3,12 @@ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/ncat -rwxr-xr-x root/root usr/bin/nmap -rwxr-xr-x root/root usr/bin/nping -drwxr-xr-x root/root usr/man/ -drwxr-xr-x root/root usr/man/man1/ --rw-r--r-- root/root usr/man/man1/ncat.1.gz --rw-r--r-- root/root usr/man/man1/nmap.1.gz --rw-r--r-- root/root usr/man/man1/nping.1.gz drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/ncat.1.gz +-rw-r--r-- root/root usr/share/man/man1/nmap.1.gz +-rw-r--r-- root/root usr/share/man/man1/nping.1.gz drwxr-xr-x root/root usr/share/ncat/ -rw-r--r-- root/root usr/share/ncat/ca-bundle.crt drwxr-xr-x root/root usr/share/nmap/ diff --git a/nmap/.signature b/nmap/.signature index cf1d5b1d9..9d221b427 100644 --- a/nmap/.signature +++ b/nmap/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF31jJJy51X2x4qd/+B77skTdB5Vo0R0Cw/duxQWrTacipESdRwEHnANAodpMh3XJEK0Q0NaZAyiu8GCJvTh1paAo= -SHA256 (Pkgfile) = 7367322e84d98b3db451fd9fc1fdad5bed68b722777310b88fc26fa750df8208 -SHA256 (.footprint) = 77b091559d6b7a13ceee05d8a23e2318d221dc542fb7446eec9afc5c937dc5cd +RWSagIOpLGJF30miX14Sf4nzDBt85QO8oU0eil5wSDwrlW+UAy+Odvv85xkPsRSzRXmZxTqXfhho1lc2iYNwla66APe6k88Gjgs= +SHA256 (Pkgfile) = 44502437f784b4241eac9a22dedb02a5f89bcb59f46b9b4bc63b5dcdb3e50247 +SHA256 (.footprint) = ddef1ccd0e62130d7a43a5cdc50575de55b84234723f7018c598586da6d25268 SHA256 (nmap-7.80.tar.bz2) = fcfa5a0e42099e12e4bf7a68ebe6fde05553383a682e816a7ec9256ab4773faa diff --git a/nmap/Pkgfile b/nmap/Pkgfile index 60db6145c..5169d04b2 100644 --- a/nmap/Pkgfile +++ b/nmap/Pkgfile @@ -6,13 +6,13 @@ name=nmap version=7.80 -release=1 -source=(http://nmap.org/dist/$name-$version.tar.bz2) +release=2 +source=(https://nmap.org/dist/$name-$version.tar.bz2) build () { cd $name-$version - ./configure --prefix=/usr --libexecdir=/usr/lib --mandir=/usr/man \ + ./configure --prefix=/usr --libexecdir=/usr/lib \ --with-libpcre=included --with-liblua=included \ --without-zenmap --without-ndiff --disable-nls \ --without-nmap-update @@ -21,5 +21,4 @@ build () { make DESTDIR=$PKG install rm -f $PKG/usr/share/nmap/nselib/data/psexec/README - } |