From: Victor Martinez Date: Thu, 12 Nov 2015 15:54:32 +0000 (+0000) Subject: iputils: updated mandir X-Git-Url: http://gitweb/?a=commitdiff_plain;h=49c8c768b54e2096a4d642d2f6208274355c9fd5;p=crossrootfs.git iputils: updated mandir --- diff --git a/iputils/.footprint b/iputils/.footprint index 9e9a164..32d2594 100644 --- a/iputils/.footprint +++ b/iputils/.footprint @@ -3,17 +3,19 @@ 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 --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 drwxr-xr-x root/root usr/sbin/ -rwxr-xr-x root/root usr/sbin/clockdiff --rwxr-xr-x root/root usr/sbin/ipg -rwxr-xr-x root/root usr/sbin/rarpd -rwxr-xr-x root/root usr/sbin/rdisc -rwxr-xr-x root/root usr/sbin/tracepath +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 9d4f1ca..9810216 100644 --- a/iputils/Pkgfile +++ b/iputils/Pkgfile @@ -3,11 +3,11 @@ # Maintainer: CRUX System Team, core-ports at crux dot nu # Packager: Juergen Daubert, juergen dot daubert at t-online dot de # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu -# Depends on: sysfsutils libcap +# Depends on: sysfsutils openssl libcap 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) @@ -17,13 +17,11 @@ build() { -e 's/IPV6_TARGETS=*/IPV6_TARGETS=/' -i Makefile make CC="$CC" CFLAGS="$CFLAGS $CCOPT -I$CLFS/usr/include" USE_GNUTLS=no - - install -d $PKG/{{s,}bin,usr/{man/man8,sbin}} - install ping $PKG/bin - install arping $PKG/sbin - install tracepath clockdiff rarpd rdisc ipg $PKG/usr/sbin - cp -d $SRC/$name-man-$version/* $PKG/usr/man/man8 - rm $PKG/usr/man/man8/*6.* + install -d $PKG/{{s,}bin,usr/{sbin,share/man/man8}} + install ping $PKG/bin/ + install arping $PKG/sbin/ + install tracepath clockdiff rarpd rdisc $PKG/usr/sbin/ + cp -d $SRC/$name-man-$version/* $PKG/usr/share/man/man8 chmod u+s $PKG/bin/ping }