25422078f4
* Added support for DiG 9.x (BIND 9.0.1) * Replaced internal digparse utility with digstd utility - you call digstd as if it were dig, it calls dig for you with right options for your version and returns results in a standard easy-to-parse format. * Added SRV record support (ala RFC 2052). * Added LOC record support (ala RFC 1876). * Minor speed improvement to axfr * Numerous bug fixes and support for different local host configurations * Updated HOWTOUSE and MANUAL documents PR: ports/53785 Submitted by: Rob Evers <rob@debank.tv> Maintainer timeout: 3 weeks
40 lines
874 B
Makefile
40 lines
874 B
Makefile
# New ports collection makefile for: domtools
|
|
# Date created: 12 Jun 1999
|
|
# Whom: alexp
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= domtools
|
|
PORTVERSION= 1.6.0
|
|
CATEGORIES= dns
|
|
MASTER_SITES= http://www.domtools.com/pub/ \
|
|
http://www.ussrback.com/UNIX/utilities/ \
|
|
http://packetstormsecurity.nl/UNIX/utilities/
|
|
DISTNAME= ${PORTNAME}${PORTVERSION}
|
|
|
|
MAINTAINER= veers@disturbed.net
|
|
COMMENT= Set of utilities for extracting information from DNS records
|
|
|
|
USE_PERL5= YES
|
|
|
|
NO_BUILD= YES
|
|
WRKSRC= ${WRKDIR}/domtools${PORTVERSION}/
|
|
|
|
MAKE_ENV+= PDEST=${PREFIX}
|
|
|
|
# XXX - patches/patch-aa modifies Makefile
|
|
# and so does the post-patch target
|
|
|
|
post-patch:
|
|
|
|
${MV} ${WRKSRC}/Makefile ${WRKSRC}/Makefile.old
|
|
${SED} -e 's#/usr/bin/perl#${PERL5}#' -e '/^PDEST=/d' \
|
|
< ${WRKSRC}/Makefile.old > ${WRKSRC}/Makefile
|
|
|
|
post-install:
|
|
|
|
${MKDIR} ${PREFIX}/domtools/lib/zonecache
|
|
|
|
.include <bsd.port.mk>
|