63 lines
1.6 KiB
Bash
63 lines
1.6 KiB
Bash
# Template file for 'man-pages'
|
|
pkgname=man-pages
|
|
version=6.05.01
|
|
revision=2
|
|
short_desc="Linux Documentation Project (LDP) manual pages"
|
|
maintainer="Enno Boland <gottox@voidlinux.org>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="https://www.kernel.org/doc/man-pages/index.html"
|
|
distfiles="${KERNEL_SITE}/docs/man-pages/man-pages-${version}.tar.xz"
|
|
checksum=b96ab6b44a688c91d1b572e52fece519e1cfd2bb4c33fe7014fc3fd1ef3f9cae
|
|
|
|
do_install() {
|
|
make install prefix=/usr DESTDIR=${DESTDIR}
|
|
|
|
# Remove dup manpages.
|
|
cd ${DESTDIR}/usr/share/man
|
|
# coreutils
|
|
rm -f man1/{chgrp,chmod,chown,cp,dir,dd}.1
|
|
rm -f man1/{df,dircolors,du,install,ln,ls}.1
|
|
rm -f man1/{mkdir,mkfifo,mknod,mv,rm,rmdir}.1
|
|
rm -f man1/{touch,vdir}.1
|
|
# shadow
|
|
rm -f man5/passwd.5
|
|
rm -f man3/getspnam.3
|
|
# diffutils
|
|
rm -f man1/diff.1
|
|
# xf86-input-mouse
|
|
rm -f man4/mouse.4
|
|
# tzdata
|
|
rm -f man5/tzfile.5
|
|
rm -f man8/zdump.8
|
|
rm -f man8/tzselect.8
|
|
rm -f man8/zic.8
|
|
# mdocml
|
|
rm -f man7/man.7
|
|
rm -f man7/mdoc.7
|
|
# openssl-devel
|
|
mv man3/rand.3 man3/glibc-rand.3
|
|
mv man3/err.3 man3/glibc-err.3
|
|
# Fix references to these manpages
|
|
sed -i -e "s|.so man3/rand.3|.so man3/glibc-rand.3|" \
|
|
-e "s|.so man3/err.3|.so man3/glibc-err.3|" man3/*
|
|
# Rename some glibc specific manpages
|
|
mv man1/{iconv.1,glibc-iconv.1}
|
|
mv man1/{ldd.1,glibc-ldd.1}
|
|
mv man1/{getent.1,glibc-getent.1}
|
|
|
|
if [ "$XBPS_TARGET_LIBC" = "glibc" ]; then
|
|
# libxcrypt-devel
|
|
rm -f man3/crypt.3
|
|
rm -f man3/crypt_r.3
|
|
fi
|
|
|
|
sed 's/^\.TH SYSLOG 2/.TH KLOGCTL 3/' man2/syslog.2 >man3/klogctl.3
|
|
}
|
|
|
|
man-pages-devel_package() {
|
|
short_desc+=" - development pages"
|
|
pkg_install() {
|
|
vmove usr/share/man/man[2-3]
|
|
}
|
|
}
|