5419bdd9a6
============= Some extracts from the git log: * Add new DNSKEY algorithms registered by IANA * Add AUTH checking over both UDP and TCP. [Fixes #80] * New queue dispatch * Clean out dead code, add tests to new code and add log entries. [Closes #89] * Log when an AS prefix is discarded * Add simple command-line tool to add domains to the dispatcher queue * Add callback functionality to logger * Perl 5.18 fix (hash key order randomization) * The authoritative servers for ARPA are the root servers, which caused problems for our parent-finding algorithm. Worked around by special -casing so that single-label names always return root as the parent. [Closes #92] * Make allowed maximum NSEC3 iterations a policy parameter * Detect DNSCurve-supporting nameservers * Significant improvements to glue checking * Fix for referral check under undelegated * More tests for new glue-checking code * Detect names in domains reserved by IANA (RFC 6761). [Closes #96] * Log messages for reserved ASs. [Closes #97]
66 lines
2.5 KiB
Makefile
66 lines
2.5 KiB
Makefile
# $NetBSD: Makefile,v 1.7 2014/02/03 12:45:26 pettai Exp $
|
|
|
|
DISTNAME= dotse-dnscheck-1.5.4-0-g352a15c
|
|
PKGNAME= dnscheck-1.5.4
|
|
CATEGORIES= net perl5
|
|
MASTER_SITES= -https://github.com/dotse/dnscheck/tarball/1.5.4
|
|
|
|
MAINTAINER= pettai@NetBSD.org
|
|
HOMEPAGE= https://github.com/dotse/dnscheck/
|
|
COMMENT= DNSCheck is a DNS quality checker
|
|
LICENSE= 2-clause-bsd
|
|
|
|
# If you're not able to download the distfile, try using
|
|
#FETCH_USING= curl # in mk.conf or on the command-line
|
|
|
|
DEPENDS+= p5-Net-DNS>=0.65:../../net/p5-Net-DNS
|
|
DEPENDS+= p5-Net-DNS-SEC>=0.16:../../security/p5-Net-DNS-SEC
|
|
DEPENDS+= p5-Net-IP>=1.25:../../net/p5-Net-IP
|
|
DEPENDS+= p5-TimeDate>=0.19:../../time/p5-TimeDate
|
|
DEPENDS+= p5-YAML-[0-9]*:../../textproc/p5-YAML
|
|
DEPENDS+= p5-Socket6>=0.19:../../net/p5-Socket6
|
|
DEPENDS+= p5-IO-Socket-INET6>=2.51:../../net/p5-IO-Socket-INET6
|
|
DEPENDS+= p5-Mail-RFC822-Address-[0-9]*:../../mail/p5-Mail-RFC822-Address
|
|
DEPENDS+= p5-DBI-[0-9]*:../../databases/p5-DBI
|
|
DEPENDS+= p5-DBD-mysql-[0-9]*:../../databases/p5-DBD-mysql
|
|
DEPENDS+= p5-Config-Any-[0-9]*:../../devel/p5-Config-Any
|
|
DEPENDS+= p5-File-ShareDir-[0-9]*:../../devel/p5-File-ShareDir
|
|
DEPENDS+= p5-File-ShareDir-Install-[0-9]*:../../devel/p5-File-ShareDir-Install
|
|
DEPENDS+= p5-File-Slurp-[0-9]*:../../devel/p5-File-Slurp
|
|
DEPENDS+= p5-JSON-XS-[0-9]*:../../converters/p5-JSON-XS
|
|
DEPENDS+= p5-MIME-Lite-[0-9]*:../../mail/p5-MIME-Lite
|
|
DEPENDS+= p5-Text-Template-[0-9]*:../../textproc/p5-Text-Template
|
|
|
|
REPLACE_PERL+= lib/DNSCheck.pm lib/DNSCheck/*.pm
|
|
REPLACE_PERL+= lib/DNSCheck/Lookup/*.pm lib/DNSCheck/Test/*.pm
|
|
REPLACE_PERL+= apps/dnscheck-enqueue apps/dnscheck-packetcheck
|
|
|
|
PERL5_PACKLIST= auto/DNSCheck/.packlist
|
|
BUILDLINK_API_DEPENDS.perl+= perl>=5.6.1
|
|
|
|
WRKSRC= ${WRKDIR}/dotse-dnscheck-006ca8d/engine
|
|
SYSCONFDIR= `${BASENAME} ${PKG_SYSCONFDIR}`
|
|
|
|
EGDIR= ${PREFIX}/share/examples/${PKGBASE}
|
|
#CONF_FILES= ${EGDIR}/config.yaml ${PKG_SYSCONFDIR}/${PKGBASE}/config.yaml
|
|
#CONF_FILES+= ${EGDIR}/policy.yaml ${PKG_SYSCONFDIR}/${PKGBASE}/policy.yaml
|
|
|
|
BUILD_DEFS+= IPV6_READY
|
|
|
|
SUBST_CLASSES+= paths
|
|
SUBST_STAGE.paths= pre-configure
|
|
SUBST_FILES.paths= lib/DNSCheck/Config.pm
|
|
SUBST_SED.paths+= -e s!@SYSCONFDIR@!${SYSCONFDIR}!g
|
|
|
|
INSTALLATION_DIRS= ${EGDIR}
|
|
OWN_DIRS= ${SYSCONFDIR}/${PKGBASE}
|
|
|
|
post-patch:
|
|
${RM} ${WRKSRC}/lib/DNSCheck/Config.pm.orig
|
|
|
|
#post-install:
|
|
# ${INSTALL_DATA} ${WRKSRC}/config.yaml ${DESTDIR}${EGDIR}/
|
|
# ${INSTALL_DATA} ${WRKSRC}/policy.yaml ${DESTDIR}${EGDIR}/
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|