pkgsrc/databases/ipa_sdb/options.mk
rillig b4f1862849 databases: align variable assignments
pkglint -Wall -F --only aligned -r

No manual corrections.
2019-11-02 15:37:59 +00:00

35 lines
758 B
Makefile

# $NetBSD: options.mk,v 1.3 2019/11/02 15:38:01 rillig Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.ipa_sdb
PKG_SUPPORTED_OPTIONS= ipa-without-autorules ipa-without-limits \
ipa-without-rules ipa-without-thresholds
.include "../../mk/bsd.options.mk"
###
### Disable dynamic rules support
###
.if !empty(PKG_OPTIONS:Mipa-without-autorules)
CONFIGURE_ARGS+= --disable-autorules
.endif
###
### Disable limits support
###
.if !empty(PKG_OPTIONS:Mipa-without-limits)
CONFIGURE_ARGS+= --disable-limits
.endif
###
### Disable static rules support
###
.if !empty(PKG_OPTIONS:Mipa-without-rules)
CONFIGURE_ARGS+= --disable-rules
.endif
###
### Disable thresholds support
###
.if !empty(PKG_OPTIONS:Mipa-without-thresholds)
CONFIGURE_ARGS+= --disable-thresholds
.endif