5abef9be14
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
46 lines
1.5 KiB
Makefile
46 lines
1.5 KiB
Makefile
# $NetBSD: Makefile,v 1.14 2006/04/06 06:22:43 reed Exp $
|
|
#
|
|
|
|
DISTNAME= Net-DNS-SEC-0.12
|
|
PKGNAME= p5-${DISTNAME}
|
|
SVR4_PKGNAME= p5nds
|
|
PKGREVISION= 1
|
|
CATEGORIES= security net perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Net/}
|
|
|
|
MAINTAINER= heinz@NetBSD.org
|
|
HOMEPAGE= http://www.net-dns.org/
|
|
COMMENT= DNSSEC extension to Net::DNS Perl DNS Resolver Module
|
|
|
|
DEPENDS+= p5-Net-DNS>=0.44:../../net/p5-Net-DNS
|
|
DEPENDS+= p5-Crypt-OpenSSL-RSA>=0.19:../../security/p5-Crypt-OpenSSL-RSA
|
|
DEPENDS+= p5-Crypt-OpenSSL-Bignum>=0.03:../../security/p5-Crypt-OpenSSL-Bignum
|
|
DEPENDS+= p5-Crypt-OpenSSL-DSA>=0.10:../../security/p5-Crypt-OpenSSL-DSA
|
|
DEPENDS+= p5-Digest-SHA1>=2.04:../../security/p5-Digest-SHA1
|
|
DEPENDS+= p5-MIME-Base64-[0-9]*:../../converters/p5-MIME-Base64
|
|
DEPENDS+= p5-Digest-BubbleBabble>=0.01:../../security/p5-Digest-BubbleBabble
|
|
|
|
BUILDLINK_API_DEPENDS.perl+= perl>=5.6.1
|
|
|
|
PERL5_PACKLIST= auto/Net/DNS/SEC/.packlist
|
|
|
|
REPLACE_PERL= demo/getkeyset.pl demo/key2ds demo/make-signed-keyset
|
|
|
|
DOCSUBDIR= share/doc/${PKGBASE}
|
|
EGSUBDIR= share/examples/${PKGBASE}
|
|
|
|
INSTALLATION_DIRS+= ${DOCSUBDIR} ${EGSUBDIR}
|
|
|
|
SUBST_CLASSES+= p5nds
|
|
SUBST_STAGE.p5nds= post-install
|
|
SUBST_FILES.p5nds= demo/getkeyset.pl
|
|
SUBST_SED.p5nds= -e "1s,-I./blib/lib,,"
|
|
|
|
post-install:
|
|
@${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/${DOCSUBDIR}/
|
|
.for f in getkeyset.pl key2ds make-signed-keyset
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/demo/${f} ${PREFIX}/${EGSUBDIR}/
|
|
.endfor
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|