diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-04-29 07:25:58 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-04-29 07:25:58 +0000 |
commit | a670d536ff53d5f7cb89f49480ada40d3e9c0931 (patch) | |
tree | 535afcf65c459b03a87efd8dc68218c5d684703a | |
parent | 112a8e53c3569a82f3d46081a4e060d73a392420 (diff) | |
download | ports-a670d536ff53d5f7cb89f49480ada40d3e9c0931.tar.gz ports-a670d536ff53d5f7cb89f49480ada40d3e9c0931.zip |
[new port] : net/p5-DNS-Config Perl modules to manipulate DNS stuff
5-DNS-Config Perl modules to manipulate name service configurations.
Needed by (future new) ZoneMaster port (see below/later)
PR: ports/48562
Submitted by: Clement Laforet <sheepkiller@cultdeadsheep.org>
Notes
Notes:
svn path=/head/; revision=79854
-rw-r--r-- | dns/p5-DNS-Config/Makefile | 30 | ||||
-rw-r--r-- | dns/p5-DNS-Config/distinfo | 1 | ||||
-rw-r--r-- | dns/p5-DNS-Config/pkg-descr | 9 | ||||
-rw-r--r-- | dns/p5-DNS-Config/pkg-plist | 17 | ||||
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/p5-DNS-Config/Makefile | 30 | ||||
-rw-r--r-- | net/p5-DNS-Config/distinfo | 1 | ||||
-rw-r--r-- | net/p5-DNS-Config/pkg-descr | 9 | ||||
-rw-r--r-- | net/p5-DNS-Config/pkg-plist | 17 |
9 files changed, 115 insertions, 0 deletions
diff --git a/dns/p5-DNS-Config/Makefile b/dns/p5-DNS-Config/Makefile new file mode 100644 index 000000000000..5c90f44c1344 --- /dev/null +++ b/dns/p5-DNS-Config/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: p5-DNS-Config +# Date created: 22 February 2003 +# Whom: Clement Laforet <sheepkiller@cultdeadsheep.org> +# +# $FreeBSD$ +# + +PORTNAME= DNS-Config +PORTVERSION= 0.66 +PORTREVISION= 0 +CATEGORIES= net perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= DNS +PKGNAMEPREFIX= p5- + +MAINTAINER= sheepkiller@cultdeadsheep.org +COMMENT= DNS::Config is set of perl modules for name service configurations + +PERL_CONFIGURE= yes + +MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} + +DOCSDIR= ${PREFIX}/share/doc/p5-DNS-Zone +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} +.endif + +.include <bsd.port.mk> diff --git a/dns/p5-DNS-Config/distinfo b/dns/p5-DNS-Config/distinfo new file mode 100644 index 000000000000..af18b0b68f61 --- /dev/null +++ b/dns/p5-DNS-Config/distinfo @@ -0,0 +1 @@ +MD5 (DNS-Config-0.66.tar.gz) = 71309d67930fe356c860bbb96289c0d4 diff --git a/dns/p5-DNS-Config/pkg-descr b/dns/p5-DNS-Config/pkg-descr new file mode 100644 index 000000000000..e31bfeb62b2f --- /dev/null +++ b/dns/p5-DNS-Config/pkg-descr @@ -0,0 +1,9 @@ +DNS::Config is a collection of Perl modules which provide an +abstraction of name service zones as well as server specific +adaptors for concrete file representations. +The modules origin is the ZoneMaster project which make heavy +use of the module for comprehensive zone file management. Go to +http://www.zonemaster.org for further information. + +WWW: http://search.cpan.org/author/WOLF/ +Author: Andy Wolf <zonemaster@users.sourceforge.net> diff --git a/dns/p5-DNS-Config/pkg-plist b/dns/p5-DNS-Config/pkg-plist new file mode 100644 index 000000000000..f9faf437dddb --- /dev/null +++ b/dns/p5-DNS-Config/pkg-plist @@ -0,0 +1,17 @@ +lib/perl5/site_perl/%%PERL_VER%%/mach/auto/DNS-Config/.packlist +lib/perl5/site_perl/%%PERL_VER%%/DNS/Config.pm +lib/perl5/site_perl/%%PERL_VER%%/DNS/Config/Server.pm +lib/perl5/site_perl/%%PERL_VER%%/DNS/Config/File.pm +lib/perl5/site_perl/%%PERL_VER%%/DNS/Config/Statement.pm +lib/perl5/site_perl/%%PERL_VER%%/DNS/Config/File/Bind9.pm +lib/perl5/site_perl/%%PERL_VER%%/DNS/Config/File/Nsd.pm +lib/perl5/site_perl/%%PERL_VER%%/DNS/Config/Statement/Key.pm +lib/perl5/site_perl/%%PERL_VER%%/DNS/Config/Statement/Zone.pm +lib/perl5/site_perl/%%PERL_VER%%/DNS/Config/Statement/Options.pm +%%PORTDOCS%%share/doc/p5-DNS-Zone/README +@dirrm lib/perl5/site_perl/%%PERL_VER%%/mach/auto/DNS-Config +@dirrm lib/perl5/site_perl/%%PERL_VER%%/DNS/Config/File +@dirrm lib/perl5/site_perl/%%PERL_VER%%/DNS/Config/Statement +@dirrm lib/perl5/site_perl/%%PERL_VER%%/DNS/Config +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/DNS 2>/dev/null || true +%%PORTDOCS%%@dirrm share/doc/p5-DNS-Zone diff --git a/net/Makefile b/net/Makefile index 3a0764ec2ef5..9da1bf91025b 100644 --- a/net/Makefile +++ b/net/Makefile @@ -398,6 +398,7 @@ SUBDIR += p5-Archie SUBDIR += p5-BIND-Conf_Parser SUBDIR += p5-Cflow + SUBDIR += p5-DNS-Config SUBDIR += p5-EasyTCP SUBDIR += p5-File-Rsync SUBDIR += p5-Frontier-RPC diff --git a/net/p5-DNS-Config/Makefile b/net/p5-DNS-Config/Makefile new file mode 100644 index 000000000000..5c90f44c1344 --- /dev/null +++ b/net/p5-DNS-Config/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: p5-DNS-Config +# Date created: 22 February 2003 +# Whom: Clement Laforet <sheepkiller@cultdeadsheep.org> +# +# $FreeBSD$ +# + +PORTNAME= DNS-Config +PORTVERSION= 0.66 +PORTREVISION= 0 +CATEGORIES= net perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= DNS +PKGNAMEPREFIX= p5- + +MAINTAINER= sheepkiller@cultdeadsheep.org +COMMENT= DNS::Config is set of perl modules for name service configurations + +PERL_CONFIGURE= yes + +MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} + +DOCSDIR= ${PREFIX}/share/doc/p5-DNS-Zone +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} +.endif + +.include <bsd.port.mk> diff --git a/net/p5-DNS-Config/distinfo b/net/p5-DNS-Config/distinfo new file mode 100644 index 000000000000..af18b0b68f61 --- /dev/null +++ b/net/p5-DNS-Config/distinfo @@ -0,0 +1 @@ +MD5 (DNS-Config-0.66.tar.gz) = 71309d67930fe356c860bbb96289c0d4 diff --git a/net/p5-DNS-Config/pkg-descr b/net/p5-DNS-Config/pkg-descr new file mode 100644 index 000000000000..e31bfeb62b2f --- /dev/null +++ b/net/p5-DNS-Config/pkg-descr @@ -0,0 +1,9 @@ +DNS::Config is a collection of Perl modules which provide an +abstraction of name service zones as well as server specific +adaptors for concrete file representations. +The modules origin is the ZoneMaster project which make heavy +use of the module for comprehensive zone file management. Go to +http://www.zonemaster.org for further information. + +WWW: http://search.cpan.org/author/WOLF/ +Author: Andy Wolf <zonemaster@users.sourceforge.net> diff --git a/net/p5-DNS-Config/pkg-plist b/net/p5-DNS-Config/pkg-plist new file mode 100644 index 000000000000..f9faf437dddb --- /dev/null +++ b/net/p5-DNS-Config/pkg-plist @@ -0,0 +1,17 @@ +lib/perl5/site_perl/%%PERL_VER%%/mach/auto/DNS-Config/.packlist +lib/perl5/site_perl/%%PERL_VER%%/DNS/Config.pm +lib/perl5/site_perl/%%PERL_VER%%/DNS/Config/Server.pm +lib/perl5/site_perl/%%PERL_VER%%/DNS/Config/File.pm +lib/perl5/site_perl/%%PERL_VER%%/DNS/Config/Statement.pm +lib/perl5/site_perl/%%PERL_VER%%/DNS/Config/File/Bind9.pm +lib/perl5/site_perl/%%PERL_VER%%/DNS/Config/File/Nsd.pm +lib/perl5/site_perl/%%PERL_VER%%/DNS/Config/Statement/Key.pm +lib/perl5/site_perl/%%PERL_VER%%/DNS/Config/Statement/Zone.pm +lib/perl5/site_perl/%%PERL_VER%%/DNS/Config/Statement/Options.pm +%%PORTDOCS%%share/doc/p5-DNS-Zone/README +@dirrm lib/perl5/site_perl/%%PERL_VER%%/mach/auto/DNS-Config +@dirrm lib/perl5/site_perl/%%PERL_VER%%/DNS/Config/File +@dirrm lib/perl5/site_perl/%%PERL_VER%%/DNS/Config/Statement +@dirrm lib/perl5/site_perl/%%PERL_VER%%/DNS/Config +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/DNS 2>/dev/null || true +%%PORTDOCS%%@dirrm share/doc/p5-DNS-Zone |