aboutsummaryrefslogtreecommitdiff
path: root/dns/pdnsd
diff options
context:
space:
mode:
Diffstat (limited to 'dns/pdnsd')
-rw-r--r--dns/pdnsd/Makefile26
-rw-r--r--dns/pdnsd/distinfo1
-rw-r--r--dns/pdnsd/files/pdnsd.sh19
-rw-r--r--dns/pdnsd/pkg-comment1
-rw-r--r--dns/pdnsd/pkg-descr20
-rw-r--r--dns/pdnsd/pkg-install9
-rw-r--r--dns/pdnsd/pkg-message4
-rw-r--r--dns/pdnsd/pkg-plist5
8 files changed, 0 insertions, 85 deletions
diff --git a/dns/pdnsd/Makefile b/dns/pdnsd/Makefile
deleted file mode 100644
index 00762d690fb0..000000000000
--- a/dns/pdnsd/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-# New ports collection makefile for: pdnsd
-# Date Created: 27 Oct 2000
-# Whom: Roman Shterenzon <roman@xpert.com>
-#
-# $FreeBSD$
-#
-
-PORTNAME= pdnsd
-PORTVERSION= 1.1.1
-CATEGORIES= net
-MASTER_SITES= http://home.t-online.de/home/Moestl/
-
-MAINTAINER= roman@xpert.com
-
-GNU_CONFIGURE= yes
-CONFIGURE_ARGS= --with-cachedir=${PDNSDB}
-
-PDNSDB= /var/db/pdnsd
-
-post-install:
- @${MKDIR} ${PREFIX}/etc/rc.d
- @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/pdnsd.sh > ${PREFIX}/etc/rc.d/pdnsd.sh
- @${CHMOD} 750 ${PREFIX}/etc/rc.d/pdnsd.sh
- @${CAT} ${PKGMESSAGE}
-
-.include <bsd.port.mk>
diff --git a/dns/pdnsd/distinfo b/dns/pdnsd/distinfo
deleted file mode 100644
index b1b8e03c81fa..000000000000
--- a/dns/pdnsd/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (pdnsd-1.1.1.tar.gz) = e7468ab4f49a81f279e0132ae064aaa3
diff --git a/dns/pdnsd/files/pdnsd.sh b/dns/pdnsd/files/pdnsd.sh
deleted file mode 100644
index b5d6453eafd0..000000000000
--- a/dns/pdnsd/files/pdnsd.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-case $1 in
-start)
- if [ -x %%PREFIX%%/sbin/pdnsd -a -f %%PREFIX%%/etc/pdnsd.conf ]; then
- %%PREFIX%%/sbin/pdnsd -d
- echo -n ' pdnsd'
- fi
- ;;
-stop)
- killall pdnsd && echo -n ' pdnsd'
- ;;
-*)
- echo "Usage: `basename $0` {start|stop}" >&2
- exit 64
- ;;
-esac
-
-exit 0
diff --git a/dns/pdnsd/pkg-comment b/dns/pdnsd/pkg-comment
deleted file mode 100644
index 98cad6162dbb..000000000000
--- a/dns/pdnsd/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-Caching (permanently, writes to disk on exit) DNS proxy-server
diff --git a/dns/pdnsd/pkg-descr b/dns/pdnsd/pkg-descr
deleted file mode 100644
index 610db2a00fdb..000000000000
--- a/dns/pdnsd/pkg-descr
+++ /dev/null
@@ -1,20 +0,0 @@
-pdnsd is a proxy dns server with permanent caching (the cache contents are
-written to hard disk on exit) that is designed to cope with unreachable or
-down dns servers (for example in dial-in networking).
-pdnsd can be used with applications that do dns lookups, eg on startup, and
-can't be configured to change that behavior, to prevent the often minute-long
-hangs (or even crashes) that result from stalled dns queries. Some Netscape
-Navigator versions for Unix, for example, expose this behavior.
-pdnsd is configurable via a file and supports run-time configuration using the
-program pdnsd-ctl that comes with pdnsd. This allows you to set the status
-flags of servers that pdnsd knows (to influence which servers pdnsd will
-query), and the addition, deletion and invalidation of DNS records in pdnsd's
-cache.
-Parallel name server queries are supported. This is a technique that allows
-querying several servers at the same time so that very slow or unavailable
-servers will not block the answer for one timeout interval.
-Since version 1.0.0, pdnsd has full IPv6 support.
-
-WWW: http://home.t-online.de/home/Moestl/
-
-Roman Shterenzon <roman@xpert.com>
diff --git a/dns/pdnsd/pkg-install b/dns/pdnsd/pkg-install
deleted file mode 100644
index d852250d83d1..000000000000
--- a/dns/pdnsd/pkg-install
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-PDNSDB=/var/db/pdnsd
-
-mkdir -p ${PDNSDB}
-chown nobody ${PDNSDB}
-chmod 755 ${PDNSDB}
-dd if=/dev/zero of=${PDNSDB}/pdnsd.cache bs=1 count=4 >/dev/null 2>&1
-chown nobody ${PDNSDB}/pdnsd.cache
-chmod 640 ${PDNSDB}/pdnsd.cache
diff --git a/dns/pdnsd/pkg-message b/dns/pdnsd/pkg-message
deleted file mode 100644
index 913c9b537aa3..000000000000
--- a/dns/pdnsd/pkg-message
+++ /dev/null
@@ -1,4 +0,0 @@
-
-You'll need to manually copy ${PREFIX}/etc/pdnsd.conf.sample to
-${PREFIX}/etc/pdnsd.conf and modify it for your needs.
-
diff --git a/dns/pdnsd/pkg-plist b/dns/pdnsd/pkg-plist
deleted file mode 100644
index 9b6802dbc753..000000000000
--- a/dns/pdnsd/pkg-plist
+++ /dev/null
@@ -1,5 +0,0 @@
-etc/pdnsd.conf.sample
-etc/rc.d/pdnsd.sh
-sbin/pdnsd
-sbin/pdnsd-ctl
-@unexec rm -rf /var/db/pdnsd