diff options
author | eadler <eadler@FreeBSD.org> | 2013-03-18 03:54:32 +0800 |
---|---|---|
committer | eadler <eadler@FreeBSD.org> | 2013-03-18 03:54:32 +0800 |
commit | 58756fc3c483e64c2f187220d2cd44c3cb01fe68 (patch) | |
tree | 5fc310194ed401459fbfb2e2e2d7bc53eee5605b /dns | |
parent | 9835d8d38e653f53c6b5a484af08eb80fdc3841d (diff) | |
download | freebsd-ports-gnome-58756fc3c483e64c2f187220d2cd44c3cb01fe68.tar.gz freebsd-ports-gnome-58756fc3c483e64c2f187220d2cd44c3cb01fe68.tar.zst freebsd-ports-gnome-58756fc3c483e64c2f187220d2cd44c3cb01fe68.zip |
Remove dns/h2n: legally questionable and obsolete.
Approved by: portmgr (bapt)
Diffstat (limited to 'dns')
-rw-r--r-- | dns/Makefile | 1 | ||||
-rw-r--r-- | dns/h2n/Makefile | 28 | ||||
-rw-r--r-- | dns/h2n/distinfo | 2 | ||||
-rw-r--r-- | dns/h2n/files/Notes.FreeBSD | 5 | ||||
-rw-r--r-- | dns/h2n/files/patch-aa | 31 | ||||
-rw-r--r-- | dns/h2n/pkg-descr | 3 |
6 files changed, 0 insertions, 70 deletions
diff --git a/dns/Makefile b/dns/Makefile index bc02c42c2931..8b879e0891ae 100644 --- a/dns/Makefile +++ b/dns/Makefile @@ -56,7 +56,6 @@ SUBDIR += gdnsd SUBDIR += geta SUBDIR += ghtool - SUBDIR += h2n SUBDIR += hesiod SUBDIR += idnkit SUBDIR += idnkit2 diff --git a/dns/h2n/Makefile b/dns/h2n/Makefile deleted file mode 100644 index 2cc7469c8b96..000000000000 --- a/dns/h2n/Makefile +++ /dev/null @@ -1,28 +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= dns -MASTER_SITES= ftp://ftp.oreilly.com/published/oreilly/nutshell/dnsbind/ -DISTNAME= dns.3ed -EXTRACT_SUFX= .tar.Z - -MAINTAINER= ports@FreeBSD.org -COMMENT= Translate host table to name server file format - -NO_BUILD= YES -NO_WRKSUBDIR= YES -RESTRICTED= Never got an approval yet. - -PLIST_FILES= bin/h2n man/cat8/h2n.8 - -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 0703b1074137..000000000000 --- a/dns/h2n/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (dns.3ed.tar.Z) = b07e2ec5e1e74bb7c41a8517308eb32dc17fc9643c4798fa77dabff9f8cc0c6f -SIZE (dns.3ed.tar.Z) = 50383 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-descr b/dns/h2n/pkg-descr deleted file mode 100644 index 49265b141965..000000000000 --- a/dns/h2n/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -h2n - Translate host table to name server file format - -This program is explained in "DNS and BIND" (NUTSHELL HANDBOOK). |