b4ccaaf138
**** 1.17 Jun 26, 2020 Recognise BIND private key accessed via symbolic link. **** 1.16 May 11, 2020 Improve testing of verify() functions. Rework code in Digest.pm SEC.xs code reduction. **** 1.15 February 3, 2020 Provide access to OpenSSL message digest implementations. **** 1.14 October 14, 2019 Improve exception capture in test scripts. Support more efficient algorithm mapping in Net::DNS. **** 1.13 May 6, 2019 Tweaks to resolve compilation errors with BoringSSL.
37 lines
1.2 KiB
Makefile
37 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.51 2020/09/07 14:30:22 wiz Exp $
|
|
|
|
DISTNAME= Net-DNS-SEC-1.17
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= security net perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Net/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://www.net-dns.org/
|
|
COMMENT= DNSSEC extension to Net::DNS Perl DNS Resolver Module
|
|
LICENSE= modified-bsd
|
|
|
|
DEPENDS+= p5-Digest-BubbleBabble>=0.01:../../security/p5-Digest-BubbleBabble
|
|
DEPENDS+= p5-Digest-SHA1>=2.04:../../security/p5-Digest-SHA1
|
|
DEPENDS+= p5-MIME-Base32-[0-9]*:../../converters/p5-MIME-Base32
|
|
DEPENDS+= p5-Net-DNS>=0.64:../../net/p5-Net-DNS
|
|
|
|
#BUILDLINK_API_DEPENDS.perl+= perl>=5.6.1
|
|
|
|
PERL5_PACKLIST= auto/Net/DNS/SEC/.packlist
|
|
|
|
REPLACE_PERL= demo/getkeyset demo/key2ds demo/make-signed-keyset
|
|
|
|
DOCSUBDIR= share/doc/${PKGBASE}
|
|
EGSUBDIR= share/examples/${PKGBASE}
|
|
|
|
INSTALLATION_DIRS+= ${DOCSUBDIR} ${EGSUBDIR}
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DESTDIR}${PREFIX}/${DOCSUBDIR}
|
|
.for f in getkeyset key2ds make-signed-keyset
|
|
${INSTALL_SCRIPT} ${WRKSRC}/demo/${f} ${DESTDIR}${PREFIX}/${EGSUBDIR}
|
|
.endfor
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|