0bf6f0f9d3
+ Fixed warning in Net::DNS::RR::AUTOLOAD with perl 5.005. + Implemented autoloading of the RR subclasses. This provides a good sized speed bump, particually for applications that are not persisant. + Cleaned up a few things with CERT RRs. + Removed use of $' from RR.pm for effciency reasons. As a result, for all RRs text following a ';' is considered a comment. This was originally only done in RR/SOA.pm. + Added method caching to AUTOLOAD subroutines. This should provide a modest speed bump. + The test suite has been greatly improved, though there is still more to be done in this regard. + Added support for DNAME resource records. + Fixed edge case for queries that have no name. + Tighted up the regular expression used in Net::DNS::Resolver::cname_addr()
29 lines
701 B
Makefile
29 lines
701 B
Makefile
# $OpenBSD: Makefile,v 1.10 2002/08/09 10:45:08 wilfried Exp $
|
|
|
|
COMMENT= 'module to interface the DNS resolver'
|
|
|
|
DISTNAME= Net-DNS-0.26
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= net perl5
|
|
|
|
HOMEPAGE= http://www.net-dns.org/
|
|
|
|
MAINTAINER= Peter Stromberg <wilfried@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Net/} \
|
|
${HOMEPAGE}/download/
|
|
|
|
BUILD_DEPENDS= :p5-MIME-Base64->=2.11:converters/p5-MIME-Base64 \
|
|
:p5-Digest-MD5->=2.12:security/p5-Digest-MD5 \
|
|
:p5-Digest-HMAC->=1.00:security/p5-Digest-HMAC
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
CONFIGURE_STYLE= perl
|
|
|
|
.include <bsd.port.mk>
|