diff options
Diffstat (limited to 'dns/h2n')
-rw-r--r-- | dns/h2n/Makefile | 26 | ||||
-rw-r--r-- | dns/h2n/distinfo | 1 | ||||
-rw-r--r-- | dns/h2n/files/Notes.FreeBSD | 5 | ||||
-rw-r--r-- | dns/h2n/files/patch-aa | 31 | ||||
-rw-r--r-- | dns/h2n/pkg-comment | 1 | ||||
-rw-r--r-- | dns/h2n/pkg-descr | 6 | ||||
-rw-r--r-- | dns/h2n/pkg-plist | 2 |
7 files changed, 0 insertions, 72 deletions
diff --git a/dns/h2n/Makefile b/dns/h2n/Makefile deleted file mode 100644 index de8bb03f9e8e..000000000000 --- a/dns/h2n/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -# New ports collection makefile for: h2n -# Date created: 27 Nov 1997 -# Whom: SADA Kenji <sada@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= h2n -PORTVERSION= 1.29 -CATEGORIES= net -MASTER_SITES= ftp://ftp.iij.ad.jp/pub/published/oreilly/nutshell/dnsbind/ \ - ftp://ftp.uu.net/published/oreilly/nutshell/dnsbind/ -DISTNAME= dns -EXTRACT_SUFX= .tar.Z - -MAINTAINER= sada@FreeBSD.org - -NO_BUILD= YES -NO_WRKSUBDIR= YES -RESTRICTED= "Never get an approval yet." - -do-install: - @${INSTALL_SCRIPT} ${WRKSRC}/h2n ${PREFIX}/bin - @${INSTALL_MAN} ${WRKSRC}/h2n.man ${PREFIX}/man/cat8/h2n.8 - -.include <bsd.port.mk> diff --git a/dns/h2n/distinfo b/dns/h2n/distinfo deleted file mode 100644 index 914884692638..000000000000 --- a/dns/h2n/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (dns.tar.Z) = 6a1c571901d82bb82c58f6b821d81df2 diff --git a/dns/h2n/files/Notes.FreeBSD b/dns/h2n/files/Notes.FreeBSD deleted file mode 100644 index c1db025297ad..000000000000 --- a/dns/h2n/files/Notes.FreeBSD +++ /dev/null @@ -1,5 +0,0 @@ -- Added an option: -a <address> . - It allows you to set the address of a domain in the SOA record. - It will adds a "IN A <address>" line to the SOA. - This is needed for sites that want a default address for a partial name - - say just yahoo.com instead of forcing users to always type www.yahoo.com. diff --git a/dns/h2n/files/patch-aa b/dns/h2n/files/patch-aa deleted file mode 100644 index 98e5c79874ae..000000000000 --- a/dns/h2n/files/patch-aa +++ /dev/null @@ -1,31 +0,0 @@ ---- h2n.orig Sun Apr 9 02:29:50 2000 -+++ h2n Sun Apr 9 02:32:19 2000 -@@ -20,6 +20,7 @@ - $dontdodomains = 0; - $Bootfile = "./named.boot"; - $Domain = ""; -+$DomainAddress = ""; - $Hostfile = "/etc/hosts"; - $Commentfile = ""; - $Commentfileread = 0; -@@ -395,6 +396,10 @@ - foreach $s (@Servers) { - print $file " IN NS $s\n"; - } -+ if ($DomainAddress ne "") { -+ print $file " IN A $DomainAddress"; -+ } -+ - print $file "\n"; - } - -@@ -628,6 +633,9 @@ - - } elsif ($option eq "-h"){ - $Host = $args[++$i]; -+ -+ } elsif ($option eq "-a"){ -+ $DomainAddress = $args[++$i]; - - } elsif ($option eq "-o"){ - if ( $args[++$i] !~ /^[:\d]*$/ diff --git a/dns/h2n/pkg-comment b/dns/h2n/pkg-comment deleted file mode 100644 index 247f8b8528bf..000000000000 --- a/dns/h2n/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Translate host table to name server file format diff --git a/dns/h2n/pkg-descr b/dns/h2n/pkg-descr deleted file mode 100644 index 9afa2e3bc415..000000000000 --- a/dns/h2n/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -h2n - Translate host table to name server file format - -This program is explained in "DNS and BIND" (NUTSHELL HANDBOOK). - -- SADA Kenji -sada@FreeBSD.ORG diff --git a/dns/h2n/pkg-plist b/dns/h2n/pkg-plist deleted file mode 100644 index 63c0c3a82ea7..000000000000 --- a/dns/h2n/pkg-plist +++ /dev/null @@ -1,2 +0,0 @@ -bin/h2n -man/cat8/h2n.8 |