man-db: update to 2.9.4

This commit is contained in:
Juergen Daubert 2021-02-16 13:20:33 +01:00
parent d15299e2ea
commit 2deea97c5c
3 changed files with 25 additions and 24 deletions

View File

@ -15,12 +15,12 @@ lrwxrwxrwx root/root usr/bin/apropos -> whatis
-rwxr-xr-x root/root usr/bin/whatis
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/man-db/
-rwxr-xr-x root/root usr/lib/man-db/libman-2.9.3.so
-rwxr-xr-x root/root usr/lib/man-db/libman-2.9.4.so
-rwxr-xr-x root/root usr/lib/man-db/libman.la
lrwxrwxrwx root/root usr/lib/man-db/libman.so -> libman-2.9.3.so
-rwxr-xr-x root/root usr/lib/man-db/libmandb-2.9.3.so
lrwxrwxrwx root/root usr/lib/man-db/libman.so -> libman-2.9.4.so
-rwxr-xr-x root/root usr/lib/man-db/libmandb-2.9.4.so
-rwxr-xr-x root/root usr/lib/man-db/libmandb.la
lrwxrwxrwx root/root usr/lib/man-db/libmandb.so -> libmandb-2.9.3.so
lrwxrwxrwx root/root usr/lib/man-db/libmandb.so -> libmandb-2.9.4.so
drwxr-xr-x root/root usr/lib/man-db/man-db/
-rwxr-xr-x root/root usr/lib/man-db/man-db/globbing
-rwxr-xr-x root/root usr/lib/man-db/man-db/manconv

View File

@ -1,6 +1,6 @@
untrusted comment: verify with /etc/ports/core.pub
RWRJc1FUaeVeqtl6HvHFSTGajR56cK5XqZW5Tbaq67ZUZxSFOz6c72Ly76W2r8Kl+RMxb+Slstp+s18ndJRWSxxEpbhY1CjhYQE=
SHA256 (Pkgfile) = 3c0f38f1306b6072df79b10e9eb9c055936d2909fe095610301d8c4c64a7d6fd
SHA256 (.footprint) = 20df1c465c67db08dd1459805b04c3cd2a0607370dda9905b1769ece26d72f43
SHA256 (man-db-2.9.3.tar.xz) = fa5aa11ab0692daf737e76947f45669225db310b2801a5911bceb7551c5597b8
RWRJc1FUaeVeqjd/MNUXU+wp4f9IK0gpBihKYiegPYqtlREQeSPl+74KdxAp8Zh8dtxFA0A3f0D7NwOCPaKR+fT/Ity/+f2Ehgw=
SHA256 (Pkgfile) = c52b84c1b0c04668937a379ca5f7439cc5c313e413cb4284f080506c02ea644b
SHA256 (.footprint) = c15c148d1a1b494a97238ff1a8b23c1d263995c715cfc9dea8d5c6351d48c281
SHA256 (man-db-2.9.4.tar.xz) = b66c99edfad16ad928c889f87cf76380263c1609323c280b3a9e6963fdb16756
SHA256 (mandb.cron) = f2e9f1210bf6b7c3335cc6f3a9551651812428109ea8c4adc9cd5cf73461e0f1

View File

@ -4,28 +4,29 @@
# Depends on: zlib gdbm libpipeline
name=man-db
version=2.9.3
version=2.9.4
release=1
source=(http://download.savannah.gnu.org/releases/$name/$name-$version.tar.xz \
mandb.cron)
mandb.cron)
build() {
cd $name-$version
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib/$name \
--disable-setuid \
--disable-cache-owner \
--disable-nls \
--with-systemdtmpfilesdir=no \
--with-systemdsystemunitdir=no
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib/$name \
--disable-setuid \
--disable-cache-owner \
--disable-nls \
--with-systemdtmpfilesdir=no \
--with-systemdsystemunitdir=no
make
make DESTDIR=$PKG install
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
rm -r $PKG/usr/share/doc
install -d $PKG/var/cache/man
install -D -o root -g root -m 0755 $SRC/mandb.cron $PKG/etc/cron/daily/mandb
install -d $PKG/var/cache/man
install -D -o root -g root -m 0755 $SRC/mandb.cron $PKG/etc/cron/daily/mandb
}