inetutils: move man-pages to /usr/share/man

This commit is contained in:
Fredrik Rinnestam 2015-07-25 23:25:22 +02:00
parent 32568e8350
commit 325d9c8a86
2 changed files with 12 additions and 12 deletions

View File

@ -11,14 +11,15 @@ drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/ftp
-rwxr-xr-x root/root usr/bin/telnet
-rwsr-xr-x root/root usr/bin/traceroute
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/ftp.1.gz
-rw-r--r-- root/root usr/man/man1/hostname.1.gz
-rw-r--r-- root/root usr/man/man1/ifconfig.1.gz
-rw-r--r-- root/root usr/man/man1/telnet.1.gz
-rw-r--r-- root/root usr/man/man1/traceroute.1.gz
drwxr-xr-x root/root usr/man/man8/
-rw-r--r-- root/root usr/man/man8/inetd.8.gz
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/inetd
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/ftp.1.gz
-rw-r--r-- root/root usr/share/man/man1/hostname.1.gz
-rw-r--r-- root/root usr/share/man/man1/ifconfig.1.gz
-rw-r--r-- root/root usr/share/man/man1/telnet.1.gz
-rw-r--r-- root/root usr/share/man/man1/traceroute.1.gz
drwxr-xr-x root/root usr/share/man/man8/
-rw-r--r-- root/root usr/share/man/man8/inetd.8.gz

View File

@ -5,7 +5,7 @@
name=inetutils
version=1.9.4
release=2
release=3
source=(http://ftp.gnu.org/gnu/inetutils/inetutils-$version.tar.gz \
inetd.conf inetd)
@ -14,7 +14,6 @@ build() {
./configure --prefix=/usr \
--libexecdir=/usr/sbin \
--mandir=/usr/man \
--localstatedir=/var \
--sysconfdir=/etc \
--disable-{servers,clients} \
@ -31,5 +30,5 @@ build() {
install -m 644 $SRC/inetd.conf $PKG/etc
install -m 755 $SRC/inetd $PKG/etc/rc.d
rm -r $PKG/usr/share
rm -r $PKG/usr/share/info
}