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

This commit is contained in:
Juergen Daubert 2016-11-22 14:19:22 +01:00
parent 9062ba6912
commit 09089fc06b
3 changed files with 10 additions and 9 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/deadwood
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/deadwood.1.gz
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/Deadwood
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/deadwood.1.gz
drwxr-xr-x root/root var/
drwxr-xr-x root/root var/lib/
drwxr-xr-x root/root var/lib/deadwood/

View File

@ -1,7 +1,7 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/QYw07Nv4TO12eH0CxYxZ8igK2G7cb3OUG0ukJ/DUFM0fjdQWHzG4ihWzs1NX9vBKkv/upL4Hc0WKmQVSwdzKAs=
SHA256 (Pkgfile) = 381882fc21b93e02dbfcc1023bf3d0d52aa9c2eac4304fd3c12d596cdd0bddc5
SHA256 (.footprint) = 43e4182e2269c19162352f00d1a1c412736be0c0a786fb0b89d466b745fec65e
RWSE3ohX2g5d/ejVRuLcHPUWGaQolGzOoEq1qh7rLKhHqgzchDMITJWrM4jE/OPbaG9DfFIs0DEQgtwj/2AloAepkBDHQHlIlQw=
SHA256 (Pkgfile) = a8b870af23282ed1cdf4aa457c6760f1de9ebebc1052e0158b43a53c8b51275f
SHA256 (.footprint) = c8d916f21b2796115656b1b5337f4fa2a9db6bd1bcc5afbafa5d85c54201dce6
SHA256 (deadwood-3.2.09.tar.xz) = 0a3bf9f3976712e390c92f241606fbd7efbe761631ff7c19414ca0227cebf367
SHA256 (dwood3rc) = 358f8d6f195ecfa9823105233620be91a8a67da686322a41ea1f292069613216
SHA256 (deadwood) = b50eb7d4de77dc16282f7c4d542a08ba3f706244ca71b164d58dcb8aac995eeb

View File

@ -4,7 +4,7 @@
name=deadwood
version=3.2.09
release=1
release=2
source=(http://maradns.samiam.org/deadwood/stable/$name-$version.tar.xz \
dwood3rc deadwood)
@ -13,10 +13,10 @@ build () {
make -C src FLAGS="$CFLAGS"
install -d $PKG/{usr/sbin,usr/man/man1,etc/rc.d,var/lib/deadwood}
install -d $PKG/{usr/sbin,usr/share/man/man1,etc/rc.d,var/lib/deadwood}
install -d -m 700 -o nobody $PKG/var/lib/deadwood/cache
install -m 755 src/Deadwood $PKG/usr/sbin
install -m 644 doc/Deadwood.1 $PKG/usr/man/man1/deadwood.1
install -m 644 doc/Deadwood.1 $PKG/usr/share/man/man1/deadwood.1
install -m 644 $SRC/dwood3rc $PKG/etc
install -m 755 $SRC/deadwood $PKG/etc/rc.d
}