preload: corrected mandir

This commit is contained in:
Tim Biermann 2020-01-20 15:28:00 +00:00
parent 399d582f8d
commit 273c269b36
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 10 additions and 11 deletions

View File

@ -3,11 +3,12 @@ drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/rc.d/
-rwxr-xr-x root/root etc/rc.d/preload
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/preload.8.gz
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/preload
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/preload.8.gz
drwxr-xr-x root/root var/
drwxr-xr-x root/root var/cache/
drwxr-xr-x root/root var/cache/preload/

View File

@ -1,7 +1,7 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3w7T0TrBsZXD5kTm4fA5oOnHkgl9R1SQuXLx7+MxEee52oW7z+wslgcxK2rojK6yx85UmZWKePIxh7Ara6WaQgQ=
SHA256 (Pkgfile) = 4c8e353a816c4eb1b8abe3485a1d250d0e6c435749f730f5cce5f178d29287bd
SHA256 (.footprint) = c881224f1a0f1fcdbf53acdcfcf9046a1171792a024a7b709dc46b2fc7804185
RWSagIOpLGJF3yjb90nGcMcpSdKVbHIzxWh03/S+fliJ/geCR0b323MQx6Uk5md05awvO6tONBDFGO2Yk3U/3aCpWtYz+T3IcA4=
SHA256 (Pkgfile) = 90295973f18831e48e67e37e2d51d17b7687bb823a1e9f310541d28f08339a63
SHA256 (.footprint) = f7d1a1f8bfbc6fd058ec38b56bd9036a1095a234bc4c08680994d849e8aa4276
SHA256 (preload-0.6.4.tar.gz) = d0a558e83cb29a51d9d96736ef39f4b4e55e43a589ad1aec594a048ca22f816b
SHA256 (rc.preload) = 37f4087cef6fac3a76b7749f5200842b3079c598ff09dd9f4f1e0a3b87488b40
SHA256 (preload-0.6.3-memcached-default.patch) = 6e7afdced2c174eae3c8c4ed348dc9597edfcb56d7e6d6135efd812daca0c16f

View File

@ -6,7 +6,7 @@
name=preload
version=0.6.4
release=2
release=3
source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz
rc.preload
$name-0.6.3-memcached-default.patch
@ -22,7 +22,6 @@ build() {
./configure \
--prefix=/usr \
--mandir=/usr/man \
--sysconfdir=/etc \
--localstatedir=/var
@ -31,12 +30,11 @@ build() {
rm -r $PKG/etc/{rc.d,logrotate.d,sysconfig}
rm -r $PKG/usr/share/doc
rmdir $PKG/usr/share
# preload.state is installed 0644 but changed to 0600 on first run,
# so we change the mode in the package to avoid rejmerge.
chmod 0600 $PKG/var/cache/preload/preload.state
# install services rc script
install -m 0755 -D $SRC/rc.preload $PKG/etc/rc.d/preload
}