9cc0c5e45d
pkglint -Wall -F --only aligned --only indent -r Manually excluded consolekit and dc-tools since pkglint didn't get the formatting correct.
43 lines
911 B
Makefile
43 lines
911 B
Makefile
# $NetBSD: options.mk,v 1.3 2019/11/04 21:28:47 rillig Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.ipa
|
|
PKG_SUPPORTED_OPTIONS= ipa-without-autorules \
|
|
ipa-without-limits ipa-without-rules \
|
|
ipa-without-sublimits 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 sublimits support
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mipa-without-sublimits)
|
|
CONFIGURE_ARGS+= --disable-sublimits
|
|
.endif
|
|
|
|
###
|
|
### Disable thresholds support
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mipa-without-thresholds)
|
|
CONFIGURE_ARGS+= --disable-thresholds
|
|
.endif
|