ports/core (3.2): kmod: move man-pages to /usr/share/man
commit fca90f70e89936ed4204bfcf5258e949fcb21c96 Author: Fredrik Rinnestam <fredrik@crux.nu> Date: Sat Jul 25 23:12:34 2015 +0200 kmod: move man-pages to /usr/share/man diff --git a/kmod/.footprint b/kmod/.footprint index af0b572..0032633 100644 --- a/kmod/.footprint +++ b/kmod/.footprint @@ -22,17 +22,18 @@ drwxr-xr-x root/root usr/lib/ lrwxrwxrwx root/root usr/lib/libkmod.so -> ../../lib/libkmod.so.2.2.11 drwxr-xr-x root/root usr/lib/pkgconfig/ -rw-r--r-- root/root usr/lib/pkgconfig/libkmod.pc -drwxr-xr-x root/root usr/man/ -drwxr-xr-x root/root usr/man/man5/ --rw-r--r-- root/root usr/man/man5/depmod.d.5.gz --rw-r--r-- root/root usr/man/man5/modprobe.d.5.gz --rw-r--r-- root/root usr/man/man5/modules.dep.5.gz --rw-r--r-- root/root usr/man/man5/modules.dep.bin.5.gz -drwxr-xr-x root/root usr/man/man8/ --rw-r--r-- root/root usr/man/man8/depmod.8.gz --rw-r--r-- root/root usr/man/man8/insmod.8.gz --rw-r--r-- root/root usr/man/man8/kmod.8.gz --rw-r--r-- root/root usr/man/man8/lsmod.8.gz --rw-r--r-- root/root usr/man/man8/modinfo.8.gz --rw-r--r-- root/root usr/man/man8/modprobe.8.gz --rw-r--r-- root/root usr/man/man8/rmmod.8.gz +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man5/ +-rw-r--r-- root/root usr/share/man/man5/depmod.d.5.gz +-rw-r--r-- root/root usr/share/man/man5/modprobe.d.5.gz +-rw-r--r-- root/root usr/share/man/man5/modules.dep.5.gz +-rw-r--r-- root/root usr/share/man/man5/modules.dep.bin.5.gz +drwxr-xr-x root/root usr/share/man/man8/ +-rw-r--r-- root/root usr/share/man/man8/depmod.8.gz +-rw-r--r-- root/root usr/share/man/man8/insmod.8.gz +-rw-r--r-- root/root usr/share/man/man8/kmod.8.gz +-rw-r--r-- root/root usr/share/man/man8/lsmod.8.gz +-rw-r--r-- root/root usr/share/man/man8/modinfo.8.gz +-rw-r--r-- root/root usr/share/man/man8/modprobe.8.gz +-rw-r--r-- root/root usr/share/man/man8/rmmod.8.gz diff --git a/kmod/Pkgfile b/kmod/Pkgfile index 392b766..c3c7d75 100644 --- a/kmod/Pkgfile +++ b/kmod/Pkgfile @@ -4,7 +4,7 @@ name=kmod version=21 -release=1 +release=2 source=(https://www.kernel.org/pub/linux/utils/kernel/$name/$name-$version.tar.xz) build() { @@ -21,10 +21,10 @@ build() { install -d $PKG/etc/{modprobe,depmod}.d install -d $PKG/bin - install -d $PKG/usr/man/{man5,man8} + install -d $PKG/usr/share/man/{man5,man8} - install -m 0644 man/*.5 $PKG/usr/man/man5 - install -m 0644 man/*.8 $PKG/usr/man/man8 + install -m 0644 man/*.5 $PKG/usr/share/man/man5 + install -m 0644 man/*.8 $PKG/usr/share/man/man8 ln -s kmod $PKG/sbin/modinfo ln -s kmod $PKG/sbin/depmod @@ -35,5 +35,5 @@ build() { ln -s ../sbin/kmod $PKG/bin/lsmod # remove bash-completion stuff - rm -r $PKG/usr/share + rm -r $PKG/usr/share/bash-completion }
participants (1)
-
crux@crux.nu