arpwatch: update mandir

This commit is contained in:
Thomas Penteker 2017-08-21 00:09:39 +02:00
parent f4459bd680
commit 04c614ea39
3 changed files with 22 additions and 11 deletions

View File

@ -1,8 +1,15 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man8/
-r--r--r-- root/root usr/man/man8/arpsnmp.8.gz
-r--r--r-- root/root usr/man/man8/arpwatch.8.gz
drwxr-xr-x root/root usr/sbin/
drwxr-x--- root/root usr/sbin/
-rwxr-x--- root/root usr/sbin/arpsnmp
-rwxr-x--- root/root usr/sbin/arpwatch
drwxr-xr-x root/root usr/share/
drwxr-x--- root/root usr/share/arpwatch/
-r--r----- root/root usr/share/arpwatch/ethercodes.dat
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man8/
-r--r--r-- root/root usr/share/man/man8/arpsnmp.8.gz
-r--r--r-- root/root usr/share/man/man8/arpwatch.8.gz
drwxr-xr-x root/root usr/var/
drwxr-xr-x root/root usr/var/lib/
drwxr-x--- root/root usr/var/lib/arpwatch/
-rw-r----- root/root usr/var/lib/arpwatch/arp.dat (EMPTY)

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF32NdP0Ylox6216zmn374UqUp78BZzwkRVcBUfCHS9R+4uj4GI3gbOGSO3YRA/5Nf8ExmgdHBIPiXvaZnUJBmZAI=
SHA256 (Pkgfile) = e629308be3bc7cb967cc2986a16b4db2abd868df3688623cd851c77528313290
SHA256 (.footprint) = 701f5c040e565ef2852d17e7d287d94d5ceacd942169ab0ddf812c839ed7bbd2
RWSagIOpLGJF3wNc07yOR1RCNyiK/X1ZcHeuHfFJEyQ07Q4Bclp71IPjCAAlWmHBom1MbraIV1j9IX9TRuDnap1ZebiDQxCL0gM=
SHA256 (Pkgfile) = 4535f05f62dfbbedf9da01312b70cd412792d7215f905aad4536a02c387acf9d
SHA256 (.footprint) = 183ef268e2fee5f1a6d93771502767d783feb65c10c92b00f3af175895f98fe8
SHA256 (arpwatch-NG1.7.tar.bz2) = 92c4a3b312edb688747cbbeb8d1af7b5e1283a005acff8da599b0edd57025889

View File

@ -12,8 +12,12 @@ source=(http://freequaos.host.sk/arpwatch/arpwatch-NG$version.tar.bz2)
build() {
cd $name-NG$version
./configure --prefix=/usr
install -d -m 0755 $PKG/usr/{man/man8,sbin}
./configure --prefix=/usr --mandir=/usr/share/man
install -d $PKG/usr/{sbin,share/man/man8,sbin}
# prepend DESTDIR to some paths
sed -i '123,126{s/\$(/$(DESTDIR)$(/2}' Makefile
make && make DESTDIR=$PKG install
install -d -m 0755 $PKG/usr/sbin
}