diff options
author | tobez <tobez@FreeBSD.org> | 2004-10-15 03:24:46 +0800 |
---|---|---|
committer | tobez <tobez@FreeBSD.org> | 2004-10-15 03:24:46 +0800 |
commit | ac699413fed8b32a0a939c9d7b5d4c2282c6dad0 (patch) | |
tree | d05f119f5bc4a1ea0951d7d5f1a7762532d8659f /dns | |
parent | 0c6176c5d24a3abf0e36bc03328f6b5cbb48be9a (diff) | |
download | freebsd-ports-graphics-ac699413fed8b32a0a939c9d7b5d4c2282c6dad0.tar.gz freebsd-ports-graphics-ac699413fed8b32a0a939c9d7b5d4c2282c6dad0.tar.zst freebsd-ports-graphics-ac699413fed8b32a0a939c9d7b5d4c2282c6dad0.zip |
Add p5-Net-DNS-ZoneCheck, a perl module to validate a DNS zone composed
of RR records.
Diffstat (limited to 'dns')
-rw-r--r-- | dns/Makefile | 1 | ||||
-rw-r--r-- | dns/p5-Net-DNS-ZoneCheck/Makefile | 26 | ||||
-rw-r--r-- | dns/p5-Net-DNS-ZoneCheck/distinfo | 2 | ||||
-rw-r--r-- | dns/p5-Net-DNS-ZoneCheck/pkg-descr | 3 | ||||
-rw-r--r-- | dns/p5-Net-DNS-ZoneCheck/pkg-plist | 7 |
5 files changed, 39 insertions, 0 deletions
diff --git a/dns/Makefile b/dns/Makefile index fc486f4ecd8..b85afa06565 100644 --- a/dns/Makefile +++ b/dns/Makefile @@ -56,6 +56,7 @@ SUBDIR += p5-DNS-ZoneParse SUBDIR += p5-Net-DNS SUBDIR += p5-Net-DNS-SEC + SUBDIR += p5-Net-DNS-ZoneCheck SUBDIR += p5-Net-DNS-ZoneFile SUBDIR += p5-Net-DNS-ZoneFile-Fast SUBDIR += p5-Net-Nslookup diff --git a/dns/p5-Net-DNS-ZoneCheck/Makefile b/dns/p5-Net-DNS-ZoneCheck/Makefile new file mode 100644 index 00000000000..b64bfa94c35 --- /dev/null +++ b/dns/p5-Net-DNS-ZoneCheck/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: dns/p5-Net-DNS-ZoneCheck +# Date created: 14 October 2004 +# Whom: Anton Berezin <tobez@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= Net-DNS-ZoneCheck +PORTVERSION= 0.01 +CATEGORIES= dns perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= Net +PKGNAMEPREFIX= p5- + +MAINTAINER= tobez@FreeBSD.org +COMMENT= Validate a DNS zone composed of Net::DNS::RR records + +BUILD_DEPENDS= ${SITE_PERL}/Regexp/Common.pm:${PORTSDIR}/textproc/p5-Regexp-Common \ + ${SITE_PERL}/${PERL_ARCH}/Net/DNS.pm:${PORTSDIR}/dns/p5-Net-DNS +RUN_DEPENDS= ${BUILD_DEPENDS} + +PERL_CONFIGURE= yes + +MAN3= Net::DNS::ZoneCheck.3 + +.include <bsd.port.mk> diff --git a/dns/p5-Net-DNS-ZoneCheck/distinfo b/dns/p5-Net-DNS-ZoneCheck/distinfo new file mode 100644 index 00000000000..74e63a7f8cd --- /dev/null +++ b/dns/p5-Net-DNS-ZoneCheck/distinfo @@ -0,0 +1,2 @@ +MD5 (Net-DNS-ZoneCheck-0.01.tar.gz) = 5447eaa45b4ee79fcaad822529a9d69b +SIZE (Net-DNS-ZoneCheck-0.01.tar.gz) = 8114 diff --git a/dns/p5-Net-DNS-ZoneCheck/pkg-descr b/dns/p5-Net-DNS-ZoneCheck/pkg-descr new file mode 100644 index 00000000000..88fdb2f759a --- /dev/null +++ b/dns/p5-Net-DNS-ZoneCheck/pkg-descr @@ -0,0 +1,3 @@ +This module validates DNS zones composed of Net::DNS::RR records. + +WWW: http://search.cpan.org/dist/Net-DNS-ZoneCheck diff --git a/dns/p5-Net-DNS-ZoneCheck/pkg-plist b/dns/p5-Net-DNS-ZoneCheck/pkg-plist new file mode 100644 index 00000000000..7bbb8514150 --- /dev/null +++ b/dns/p5-Net-DNS-ZoneCheck/pkg-plist @@ -0,0 +1,7 @@ +%%SITE_PERL%%/Net/DNS/ZoneCheck.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/DNS/ZoneCheck/.packlist +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/DNS/ZoneCheck 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/DNS 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/Net/DNS 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/Net 2>/dev/null || true |