diff options
Diffstat (limited to 'dns/totd')
-rw-r--r-- | dns/totd/Makefile | 21 | ||||
-rw-r--r-- | dns/totd/distinfo | 1 | ||||
-rw-r--r-- | dns/totd/files/patch-aa | 14 | ||||
-rw-r--r-- | dns/totd/files/totd.conf.sample | 6 | ||||
-rw-r--r-- | dns/totd/pkg-comment | 1 | ||||
-rw-r--r-- | dns/totd/pkg-deinstall | 16 | ||||
-rw-r--r-- | dns/totd/pkg-descr | 11 | ||||
-rw-r--r-- | dns/totd/pkg-install | 45 | ||||
-rw-r--r-- | dns/totd/pkg-plist | 2 |
9 files changed, 0 insertions, 117 deletions
diff --git a/dns/totd/Makefile b/dns/totd/Makefile deleted file mode 100644 index 9b9866e1a1c7..000000000000 --- a/dns/totd/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# New ports collection makefile for: totd -# Date created: 17 Nov 2000 -# Whom: Kris Kennaway <kris@FreeBSD.org> -# -# $FreeBSD$ - -PORTNAME= totd -PORTVERSION= 1.1.5 -CATEGORIES= net ipv6 -MASTER_SITES= ftp://ftp.pasta.cs.uit.no/pub/Vermicelli/ -DISTNAME= totd-1.1p5 -EXTRACT_SUFX= .tgz - -MAINTAINER= kris@FreeBSD.org - -GNU_CONFIGURE= YES - -post-install: - ${INSTALL_DATA} ${FILESDIR}/totd.conf.sample ${PREFIX}/etc - -.include <bsd.port.mk> diff --git a/dns/totd/distinfo b/dns/totd/distinfo deleted file mode 100644 index 3fe6b68ef6d9..000000000000 --- a/dns/totd/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (totd-1.1p5.tgz) = 54ad20e678285c1c288f6a5dc3e1c75f diff --git a/dns/totd/files/patch-aa b/dns/totd/files/patch-aa deleted file mode 100644 index 2a3cb92ea7c9..000000000000 --- a/dns/totd/files/patch-aa +++ /dev/null @@ -1,14 +0,0 @@ ---- config.h.in- Sun Apr 23 22:17:36 2000 -+++ config.h.in Sun Apr 23 22:17:45 2000 -@@ -33,9 +33,9 @@ - - /* security aware -- seteuid if tot doesn't need priveledge. */ - /* the user/group name to use ... i recommend to make account of tot */ --#define TOT_USER "tot" -+/*#define TOT_USER "tot"*/ - /* define loglevel if you need log for each root priv action */ --#define TOT_USER_LOGLVL LOG_INFO -+/*#define TOT_USER_LOGLVL LOG_INFO*/ - - /* if you use IPV6 */ - /*#define USE_INET6*/ diff --git a/dns/totd/files/totd.conf.sample b/dns/totd/files/totd.conf.sample deleted file mode 100644 index bec4e9f629e6..000000000000 --- a/dns/totd/files/totd.conf.sample +++ /dev/null @@ -1,6 +0,0 @@ -; $NetBSD: totd.conf.sample,v 1.1.1.1 1999/11/22 21:04:01 itojun Exp $ -; Totd sample configuration file -forwarder 192.168.0.1 port 5000 -forwarder 3ffe:2a00:100:3001::2 port 53 -prefix 3ffe:abcd:1234:9876:: -retry 300 diff --git a/dns/totd/pkg-comment b/dns/totd/pkg-comment deleted file mode 100644 index 46190ecbe187..000000000000 --- a/dns/totd/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -DNS proxy that supports IPv6 <==> IPv4 record translation diff --git a/dns/totd/pkg-deinstall b/dns/totd/pkg-deinstall deleted file mode 100644 index cc026d9a149b..000000000000 --- a/dns/totd/pkg-deinstall +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh -# $OpenBSD: DEINSTALL,v 1.1 2000/06/11 01:15:53 fgsch Exp $ -# -# Post-deinstallation cleanup of totd - -echo "" -echo "** To completely deinstall the totd package you need to perform this" -echo "** as root:" -echo "**" -echo "** rm -f /etc/totd.conf" -echo "**" -echo "** Be absolutly sure you want to completely remove the package before" -echo "** issuing this command." -echo "" - -exit 0 diff --git a/dns/totd/pkg-descr b/dns/totd/pkg-descr deleted file mode 100644 index dfac332d7f74..000000000000 --- a/dns/totd/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -Totd is a small DNS proxy nameserver that supports IPv6 only hosts/networks -that communicate with the IPv4 world using some translation mechanism. -Examples of such translation mechanisms currently in use are: - - * IPv6/IPv4 Network Address and Packet Translation (NAT-PT) - implemented e.g. by Cisco. - * Application level translators as the faithd implemented by - the KAME project (http://www.kame.net). See faithd(8) on - *BSD/Kame. - -WWW: http://www.vermicelli.pasta.cs.uit.no/ipv6/software.html diff --git a/dns/totd/pkg-install b/dns/totd/pkg-install deleted file mode 100644 index de1a95c9dfbf..000000000000 --- a/dns/totd/pkg-install +++ /dev/null @@ -1,45 +0,0 @@ -#! /bin/sh -# $OpenBSD: INSTALL,v 1.1 2000/06/11 01:15:53 fgsch Exp $ -# -# Post-installation setup of totd - based on majordomo INSTALL script -# from daniel@reichardt.ch - -set -e -PATH=/bin:/usr/bin:/sbin:/usr/sbin -PREFIX=${PKG_PREFIX:-/usr/local} - -do_install_configuration() -{ - echo -n "Let's see if there is already a configuration file... " - if [ -f /etc/totd.conf ]; then - echo "yes" - echo "Please compare your existing configuration with" - echo "${PREFIX}/share/totd/totd.conf.sample" - else - echo "no" - echo -n "Copying sample configuration file... " - install -o root -g wheel -m 644 ${PREFIX}/share/totd/totd.conf.sample \ - /etc/totd.conf - echo "ok" - echo "Please review new configuration /etc/totd.conf" - fi -} - -if [ $# -ne 2 ]; then - echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2 - exit 1 -fi - -case $2 in - PRE-INSTALL) - ;; - POST-INSTALL) - do_install_configuration - ;; - *) - echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2 - exit 1 - ;; -esac - -exit 0 diff --git a/dns/totd/pkg-plist b/dns/totd/pkg-plist deleted file mode 100644 index 19aba00423c7..000000000000 --- a/dns/totd/pkg-plist +++ /dev/null @@ -1,2 +0,0 @@ -sbin/totd -etc/totd.conf.sample |