pkgsrc/net/p5-Net-DNS/Makefile
wen d65ddc042a Update to 0.69
Upstream changes:
**** 0.69 Dec 5, 2012

Feature added support for NID L32 L64 LP, RFC6742.

Feature rt.cpan.org #62030

	Parsing of BIND zone files implemented in Net::DNS::ZoneFile.
	This replaces and is backward compatible with the CPAN module
	of the same name.

Enhancement to simplify RR subtype template and recode packages.

Enhancement rt.cpan.org #75185

	Packet decoder returns index to end of decoded data.

	Added packet->reply() method.

Fix rt.cpan.org #79569

	AXFR not setting packet->answer_from.

Enhancement rt.cpan.org #18819

	Added support for Unicode and non-ASCII character encoding.

Feature integrate OPT as a header extension

	Treat extended rcodes and the DO flag like they are part of
	the packet header.

Fix rt.cpan.org #77444

	Support escaped characters according to RFC1035 in TXT rdata.

Fix rt.cpan.org #77304

	Fix resolver searchlist from registry setup on Win32.

Enhancement rt.cpan.org #67570

	Make wire2presentation two till eighteen times faster.
	A contribution from Matthew Horsfall

Fix rt.cpan.org #73366

	Remove existing TSIG when resigning with a new TSIG and give warning.

Fix rt.cpan.org #75330

	Also try nameserver without glue (as a last resort) when recursing.

Fix rt.cpan.org #74493

	Read correct resolver configuration in OS/2.
2012-12-06 13:09:04 +00:00

48 lines
1.3 KiB
Makefile

# $NetBSD: Makefile,v 1.49 2012/12/06 13:09:04 wen Exp $
DISTNAME= Net-DNS-0.69
PKGNAME= p5-${DISTNAME}
SVR4_PKGNAME= p5ndn
CATEGORIES= net perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Net/} \
http://www.net-dns.org/download/
MAINTAINER= heinz@NetBSD.org
HOMEPAGE= http://www.net-dns.org/
COMMENT= Perl5 module for DNS resolution
LICENSE= ${PERL5_LICENSE}
PKG_INSTALLATION_TYPES= overwrite pkgviews
BUILD_DEPENDS+= {p5-Test-Simple>=0.44,perl{,-thread}>=5.8.0}:../../devel/p5-Test-Simple
DEPENDS+= p5-Digest-HMAC>=1.0:../../security/p5-Digest-HMAC
DEPENDS+= p5-Digest-MD5>=2.12:../../security/p5-Digest-MD5
DEPENDS+= p5-MIME-Base64>=2.11:../../converters/p5-MIME-Base64
DEPENDS+= p5-Net-IP>=1.20:../../net/p5-Net-IP
PKG_OPTIONS_VAR= PKG_OPTIONS.p5-Net-DNS
PKG_SUPPORTED_OPTIONS= inet6 online-tests
PKG_SUGGESTED_OPTIONS= inet6
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Minet6)
DEPENDS+= p5-IO-Socket-INET6>=2.01:../../net/p5-IO-Socket-INET6
DEPENDS+= p5-Socket6-[0-9]*:../../net/p5-Socket6
MAKE_PARAMS+= --IPv6-tests
.else
MAKE_PARAMS+= --no-IPv6-tests
.endif
.if !empty(PKG_OPTIONS:Monline-tests)
MAKE_PARAMS+= --online-tests
.else
MAKE_PARAMS+= --no-online-tests
.endif
USE_LANGUAGES= c
PERL5_PACKLIST= auto/Net/DNS/.packlist
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"