commit 944c9f7ae8c3c39d5be948465b2811c73a27816d Author: Juergen Daubert <jue@jue.li> Date: Tue May 22 12:53:49 2018 +0200 deadwood: removed diff --git a/deadwood/.footprint b/deadwood/.footprint deleted file mode 100644 index 4bd9fddd9..000000000 --- a/deadwood/.footprint +++ /dev/null @@ -1,15 +0,0 @@ -drwxr-xr-x root/root etc/ --rw-r--r-- root/root etc/dwood3rc -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/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/ -drwx------ nobody/root var/lib/deadwood/cache/ diff --git a/deadwood/.md5sum b/deadwood/.md5sum deleted file mode 100644 index 798eb5f59..000000000 --- a/deadwood/.md5sum +++ /dev/null @@ -1,3 +0,0 @@ -b2dd06eb5f3e6c621695bd5679a2d208 deadwood -3319233d9a0e6756f63153e73aed3578 deadwood-3.2.11.tar.xz -0a2d736d8043d5cae0c5e41d2110c6a9 dwood3rc diff --git a/deadwood/.signature b/deadwood/.signature deleted file mode 100644 index 7fe0bde5d..000000000 --- a/deadwood/.signature +++ /dev/null @@ -1,7 +0,0 @@ -untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/cfc2dwiAnS86Lvtribm9VRuMt5yDBwaArGXXTFalkm3y9a9Ntt0tMzR6CcwBrK1x68itxGEBMYIViRWWIP/+Q8= -SHA256 (Pkgfile) = 8445e4bee9a2ccc1b5acf95a7e2121d7a77f5a1d006c42abf7460df9df2c7d1f -SHA256 (.footprint) = c8d916f21b2796115656b1b5337f4fa2a9db6bd1bcc5afbafa5d85c54201dce6 -SHA256 (deadwood-3.2.11.tar.xz) = ceb124b3917cf24e8e16887c1c9cb67819b7f41013c3a6e723316d470099f104 -SHA256 (dwood3rc) = 358f8d6f195ecfa9823105233620be91a8a67da686322a41ea1f292069613216 -SHA256 (deadwood) = b50eb7d4de77dc16282f7c4d542a08ba3f706244ca71b164d58dcb8aac995eeb diff --git a/deadwood/Pkgfile b/deadwood/Pkgfile deleted file mode 100644 index 5fb51ea69..000000000 --- a/deadwood/Pkgfile +++ /dev/null @@ -1,22 +0,0 @@ -# Description: Fully recursive caching DNS resolver -# URL: http://www.maradns.org/deadwood -# Maintainer: Juergen Daubert, jue at crux dot nu - -name=deadwood -version=3.2.11 -release=1 -source=(http://maradns.samiam.org/deadwood/stable/$name-$version.tar.xz \ - dwood3rc deadwood) - -build () { - cd $name-$version - - make -C src FLAGS="$CFLAGS" - - 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/share/man/man1/deadwood.1 - install -m 644 $SRC/dwood3rc $PKG/etc - install -m 755 $SRC/deadwood $PKG/etc/rc.d -} diff --git a/deadwood/deadwood b/deadwood/deadwood deleted file mode 100644 index 48935aada..000000000 --- a/deadwood/deadwood +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/sh -# -# /etc/rc.d/deadwood: start/stop deadwood DNS resolver -# - -SSD=/sbin/start-stop-daemon -PROG=/usr/sbin/Deadwood -PID=/var/run/deadwood.pid -LOG=/var/log/deadwood.log - -case $1 in -start) - $SSD --start -bmC --pidfile $PID --exec $PROG >> $LOG 2>&1 - RETVAL=$? - ;; -stop) - $SSD --stop --remove-pidfile --retry 10 --pidfile $PID - RETVAL=$? - ;; -restart) - $0 stop - $0 start - ;; -status) - $SSD --status --pidfile $PID - case $? in - 0) echo "$PROG is running with pid $(cat $PID)" ;; - 1) echo "$PROG is not running but the pid file $PID exists" ;; - 3) echo "$PROG is not running" ;; - 4) echo "Unable to determine the program status" ;; - esac - ;; -*) - echo "usage: $0 [start|stop|restart|status]" - ;; -esac - -exit $RETVAL - -# End of file diff --git a/deadwood/dwood3rc b/deadwood/dwood3rc deleted file mode 100644 index 5b1f4777e..000000000 --- a/deadwood/dwood3rc +++ /dev/null @@ -1,12 +0,0 @@ -# -# /etc/deadwoodrc -# - - -bind_address="127.0.0.1" -chroot_dir = "/var/lib/deadwood" -cache_file = "cache/dw_cache" -maximum_cache_elements = 60000 -recursive_acl = "127.0.0.1/16" - -# End of file