# This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # DESCR # Makefile # PLIST # distinfo # hacks.mk # echo x - DESCR sed 's/^X//' >DESCR << 'END-of-DESCR' XHost is a very powerful DNS query and testing command-line tool. Major Xdifferences with the ancient version of the program with the same name Xthat's included in the BIND-4 and BIND-8 distributions: X X - Major overhaul of the entire code including rigid error checking, X and verbose error messages. Several sections have been rewritten X from scratch. Documentation has been added. Syntax extended. X - It is now possible to do recursive listings into delegated zones. X - Maintain resource record statistics and host count during zone listings. X - Check for various extraneous conditions during zone listings. X - Check for illegal domain names containing invalid characters. X - Verify that certain domain names represent canonical host names. X - Perform ttl consistency checking during zone listings. X - Exploit multiple server addresses if available. X - Option to exploit only primary server for zone transfers. X - Option to exclude info from names that do not reside in a zone. X - Implement timeout handling during connect and read. X - Write resource record output to optional log file. X - Special MB tracing by recursively expanding MR and MG records. X - Special mode to check SOA records at each nameserver for a zone. X - Special mode to check reverse mappings of host addresses. X - Configurable default options in HOST_DEFAULTS environment variable. X - Implement new resource record types from RFCs 1183, 1348, 1664, 1712, X 1876 and 1886. Basic experimental NSAP support as defined in RFC 1637. END-of-DESCR echo x - Makefile sed 's/^X//' >Makefile << 'END-of-Makefile' X# $NetBSD: Makefile,v 1.11 2005/03/30 20:06:59 reed Exp $ X XDISTNAME= host-20070128 XCATEGORIES= net XMASTER_SITES= ftp://ftp.weird.com/pub/local/ X XMAINTAINER= tech-pkg@NetBSD.org XHOMEPAGE= http://www.weird.com/~woods/projects/host.html XCOMMENT= Powerful DNS query and testing tool X XNO_CONFIGURE = yes X XMAKEFILE= Makefile.BSD X XMAKE_FLAGS+= MANDIR=${PREFIX}/${PKGMANDIR} X XMAKE_FLAGS+= __NetBSD__=1 X X.include "../../mk/bsd.pkg.mk" END-of-Makefile echo x - PLIST sed 's/^X//' >PLIST << 'END-of-PLIST' X@comment $NetBSD: PLIST,v 1.3 2005/04/16 12:44:49 wiz Exp $ Xbin/host Xbin/mxlookup Xbin/nscheck Xbin/rblookup Xman/cat1/host.0 Xman/man1/host.1 END-of-PLIST echo x - distinfo sed 's/^X//' >distinfo << 'END-of-distinfo' X$NetBSD: distinfo,v 1.7 2005/04/16 12:44:49 wiz Exp $ X XSHA1 (host-20070128.tar.gz) = 2e4522259b98f963c46ff7462942edd4a01e381c XRMD160 (host-20070128.tar.gz) = 955635175ee12882d59a10756d16af44ec62f9e7 XSize (host-20070128.tar.gz) = 152347 bytes END-of-distinfo echo x - hacks.mk sed 's/^X//' >hacks.mk << 'END-of-hacks.mk' X# $NetBSD: hacks.mk,v 1.1 2005/11/08 13:45:22 tv Exp $ X X### X### Need a real resolver on Interix. X### X.if ${OPSYS} == "Interix" XBUILDLINK_PASSTHRU_DIRS+= /usr/local/include/bind /usr/local/lib/bind XCPPFLAGS+= -I/usr/local/include/bind XLDFLAGS+= -L/usr/local/lib/bind XLIBS+= -lbind -ldb X.endif END-of-hacks.mk exit .