pkgsrc-wip/opendnssec/options.mk
Fredrik Pettai 080dd0640f OpenDNSSEC 1.1:
* Performance improvements for large zones
* Clarification to the KSK rollover process
* Partial auditing of large zones
* Improved registrar support (EPP client plugin)
2010-05-09 19:07:53 +00:00

26 lines
621 B
Makefile

# $NetBSD: options.mk,v 1.7 2010/05/09 19:07:53 pettai Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.opendnssec
PKG_SUPPORTED_OPTIONS= auditor softhsm
PKG_SUGGESTED_OPTIONS= auditor softhsm
.include "../../mk/bsd.options.mk"
###
### Kasp Auditor
###
.if !empty(PKG_OPTIONS:Mauditor)
.include "../../lang/ruby/buildlink3.mk"
DEPENDS+= rubygems:../../misc/rubygems
DEPENDS+= ${RUBY_PKGPREFIX}-dnsruby>=1.46:../../net/ruby-dnsruby
.else
CONFIGURE_ARGS+= --disable-auditor
.endif
###
### SoftHSM
###
.if !empty(PKG_OPTIONS:Msofthsm)
DEPENDS+= softhsm:../../security/softhsm
.include "../../security/softhsm/buildlink3.mk"
.endif