diff options
author | hubertf <hubertf@pkgsrc.org> | 1999-04-06 20:24:36 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 1999-04-06 20:24:36 +0000 |
commit | 78c7f1e1a3f1712ea7d667a0c5eb0b5982f06db3 (patch) | |
tree | 206ad1720d894dc728dd8ff39d3d3e61528dbe7b /net/dlint/Makefile | |
parent | d26334f9218550b4c19715b41445ce38164e5f5c (diff) | |
download | pkgsrc-78c7f1e1a3f1712ea7d667a0c5eb0b5982f06db3.tar.gz |
DNS-Lint: Internet Domain Name System (DNS) error checking utility
DNS administrators can use dlint to scan recursively through
the domain records of the fully-qualified zone to get a report
on any errors therein. You can scan a zone you own, or anyone
else's zone on the Internet. dlint talks directly to a primary or
secondary nameserver for the zone, to make sure it's working
with up-to-date information.
Diffstat (limited to 'net/dlint/Makefile')
-rw-r--r-- | net/dlint/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/net/dlint/Makefile b/net/dlint/Makefile new file mode 100644 index 00000000000..bab0af1fdb9 --- /dev/null +++ b/net/dlint/Makefile @@ -0,0 +1,26 @@ +# $NetBSD: Makefile,v 1.1.1.1 1999/04/06 20:24:36 hubertf Exp $ +# + +DISTNAME= dlint1.3.2 +PKGNAME= dlint-1.3.2 +CATEGORIES= net +MASTER_SITES= http://www.domtools.com/pub/ + +MAINTAINER= hubertf@netbsd.org +HOMEPAGE= http://www.domtools.com/dns/ + +USE_PERL5= YES +NO_BUILD= YES + +do-configure: + cd ${WRKSRC} ; \ + ${MV} digparse digparse.BAK ; \ + ${SED} \ + -e '/usr.bin.perl/s|/usr|${PREFIX}|g' \ + <digparse.BAK >digparse ; \ + ${MV} dlint dlint.BAK ; \ + ${SED} \ + -e 's|/usr/local|${PREFIX}|g' \ + <dlint.BAK >dlint + +.include "../../mk/bsd.pkg.mk" |