diff --git a/iputils/.footprint b/iputils/.footprint index 4d0785d2..9f4e430e 100644 --- a/iputils/.footprint +++ b/iputils/.footprint @@ -4,16 +4,6 @@ drwxr-xr-x root/root bin/ drwxr-xr-x root/root sbin/ -rwxr-xr-x root/root sbin/arping drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/man/ -drwxr-xr-x root/root usr/man/man8/ --rw-r--r-- root/root usr/man/man8/arping.8.gz --rw-r--r-- root/root usr/man/man8/clockdiff.8.gz --rw-r--r-- root/root usr/man/man8/ping.8.gz -lrwxrwxrwx root/root usr/man/man8/ping6.8.gz -> ping.8.gz --rw-r--r-- root/root usr/man/man8/rarpd.8.gz --rw-r--r-- root/root usr/man/man8/rdisc.8.gz --rw-r--r-- root/root usr/man/man8/tracepath.8.gz --rw-r--r-- root/root usr/man/man8/traceroute6.8.gz drwxr-xr-x root/root usr/sbin/ -rwxr-xr-x root/root usr/sbin/clockdiff -rwxr-xr-x root/root usr/sbin/rarpd @@ -21,3 +11,14 @@ drwxr-xr-x root/root usr/sbin/ -rwxr-xr-x root/root usr/sbin/tracepath -rwxr-xr-x root/root usr/sbin/tracepath6 -rwsr-xr-x root/root usr/sbin/traceroute6 +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man8/ +-rw-r--r-- root/root usr/share/man/man8/arping.8.gz +-rw-r--r-- root/root usr/share/man/man8/clockdiff.8.gz +-rw-r--r-- root/root usr/share/man/man8/ping.8.gz +lrwxrwxrwx root/root usr/share/man/man8/ping6.8.gz -> ping.8.gz +-rw-r--r-- root/root usr/share/man/man8/rarpd.8.gz +-rw-r--r-- root/root usr/share/man/man8/rdisc.8.gz +-rw-r--r-- root/root usr/share/man/man8/tracepath.8.gz +-rw-r--r-- root/root usr/share/man/man8/traceroute6.8.gz diff --git a/iputils/Pkgfile b/iputils/Pkgfile index 71ba740a..f5677278 100644 --- a/iputils/Pkgfile +++ b/iputils/Pkgfile @@ -5,7 +5,7 @@ name=iputils version=s20121221 -release=1 +release=2 source=(http://www.skbuff.net/iputils/$name-$version.tar.bz2 http://crux.nu/files/distfiles/$name-man-$version.tar.xz) @@ -14,10 +14,10 @@ build() { make USE_GNUTLS=no CCOPTOPT="$CFLAGS" - install -d $PKG/{{s,}bin,usr/{man/man8,sbin}} + install -d $PKG/{{s,}bin,usr/{sbin,share/man/man8}} install ping{,6} $PKG/bin/ install arping $PKG/sbin/ install tracepath{,6} traceroute6 clockdiff rarpd rdisc $PKG/usr/sbin/ - cp -d $SRC/$name-man-$version/* $PKG/usr/man/man8 + cp -d $SRC/$name-man-$version/* $PKG/usr/share/man/man8 chmod u+s $PKG/bin/ping{,6} $PKG/usr/sbin/traceroute6 }