diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-09-01 07:03:48 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-09-01 07:03:48 +0000 |
commit | eafa5f559b0ef35320077013dcd221188c5d11b9 (patch) | |
tree | 7644de1cff3133bd4735e12860ca67c331b5565e /dns | |
parent | d4bfb85f2946281ea4c885c5bc19d7efa733365d (diff) | |
download | ports-eafa5f559b0ef35320077013dcd221188c5d11b9.tar.gz ports-eafa5f559b0ef35320077013dcd221188c5d11b9.zip |
Notes
Diffstat (limited to 'dns')
-rw-r--r-- | dns/Makefile | 1 | ||||
-rw-r--r-- | dns/host/Makefile | 27 | ||||
-rw-r--r-- | dns/host/distinfo | 2 | ||||
-rw-r--r-- | dns/host/files/patch-Makefile | 84 | ||||
-rw-r--r-- | dns/host/pkg-descr | 1 |
5 files changed, 0 insertions, 115 deletions
diff --git a/dns/Makefile b/dns/Makefile index d19be1129329..c69a6837f5e2 100644 --- a/dns/Makefile +++ b/dns/Makefile @@ -57,7 +57,6 @@ SUBDIR += gresolver SUBDIR += h2n SUBDIR += hesiod - SUBDIR += host SUBDIR += idnkit SUBDIR += inadyn SUBDIR += ipcheck diff --git a/dns/host/Makefile b/dns/host/Makefile deleted file mode 100644 index be868fc59d2b..000000000000 --- a/dns/host/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# New ports collection makefile for: host -# Date created: 29 June 2001 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= host -PORTVERSION= 991529 -CATEGORIES= dns -MASTER_SITES= http://www.dtek.chalmers.se/~d3august/xt/ -DISTNAME= ${PORTNAME} -EXTRACT_SUFX= .tar.Z - -MAINTAINER= ports@FreeBSD.org -COMMENT= An utility to query DNS servers - -DEPRECATED= No more public distfiles -EXPIRATION_DATE= 2011-09-01 - -CONFLICTS= bind9-9.* bind9-sdb-* skalibs-* -NO_WRKSUBDIR= yes - -MAN1= host.1 -PLIST_FILES= bin/host - -.include <bsd.port.mk> diff --git a/dns/host/distinfo b/dns/host/distinfo deleted file mode 100644 index 893ab68fe193..000000000000 --- a/dns/host/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (host.tar.Z) = 1130e6870435f12b41db6eeae280ea8d1b4644887d5d030d98ac1b5a69576c6b -SIZE (host.tar.Z) = 184455 diff --git a/dns/host/files/patch-Makefile b/dns/host/files/patch-Makefile deleted file mode 100644 index 3bd8f73f691a..000000000000 --- a/dns/host/files/patch-Makefile +++ /dev/null @@ -1,84 +0,0 @@ - -$FreeBSD$ - ---- Makefile.orig Wed Mar 15 23:51:39 2000 -+++ Makefile Fri Jun 29 13:42:36 2001 -@@ -5,10 +5,10 @@ - # ---------------------------------------------------------------------- - - # This is where the host executable will go. --DESTBIN = /usr/local/bin -+DESTBIN = $(PREFIX)/bin - - # This is where the host manual page will go. --DESTMAN = /usr/local/man -+DESTMAN = $(PREFIX)/man - - BINDIR = $(DESTBIN) - MANDIR = $(DESTMAN)/man1 -@@ -82,16 +82,16 @@ - - COPTS = - COPTS = -O -DDEBUG --COPTS = -O -+COPTS = - --CFLAGS = $(COPTS) $(DEFS) -+#CFLAGS = $(COPTS) $(DEFS) - - # Select your favorite compiler. --CC = /usr/ucb/cc #if defined(solaris) && BSD --CC = /bin/cc -arch m68k -arch i386 #if defined(next) --CC = /bin/cc -Olimit 1000 #if defined(ultrix) --CC = /bin/cc --CC = cc -+CC ?= /usr/ucb/cc #if defined(solaris) && BSD -+CC ?= /bin/cc -arch m68k -arch i386 #if defined(next) -+CC ?= /bin/cc -Olimit 1000 #if defined(ultrix) -+CC ?= /bin/cc -+CC ?= cc - - # ---------------------------------------------------------------------- - # Linking definitions. -@@ -109,8 +109,8 @@ - - RES = -lsocket #if defined(SCO) && default - RES = --RES = ../../res/libresolv.a --RES = -lresolv -+#RES = ../../res/libresolv.a -+#RES = -lresolv - - COMPLIB = ../../compat/lib/lib44bsd.a - COMPLIB = -lnet -@@ -130,13 +130,13 @@ - # redefined by bind - CDEBUG = $(COPTS) $(CONFIGDEFS) - CDEFS = $(SYSDEFS) $(INCLUDES) --CFLAGS = $(CDEBUG) $(CDEFS) -+CFLAGS += $(CDEBUG) $(CDEFS) - - # ---------------------------------------------------------------------- - # Miscellaneous definitions. - # ---------------------------------------------------------------------- - --MAKE = make $(MFLAGS) -+MAKE += $(MFLAGS) - - # This assumes the BSD install. - INSTALL = install -c -@@ -183,11 +183,9 @@ - $(PROG): $(OBJS) - $(CC) $(LDFLAGS) -o $(PROG) $(OBJS) $(LIBRARIES) - --install: $(PROG) -- $(INSTALL) -m $(MODE) -o $(OWNER) -g $(GROUP) $(STRIP) $(PROG) $(BINDIR) -- --man: $(MANS) -- $(INSTALL) -m 444 host.1 $(MANDIR) -+install: $(PROG) $(MANS) -+ $(BSD_INSTALL_PROGRAM) $(PROG) $(BINDIR) -+ $(BSD_INSTALL_MAN) host.1 $(MANDIR) - - clean: - rm -f $(CLEANUP) *.o a.out core diff --git a/dns/host/pkg-descr b/dns/host/pkg-descr deleted file mode 100644 index d4981f617469..000000000000 --- a/dns/host/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -An utility to query DNS servers, similar to one found in the BIND distribution. |