23 lines
496 B
Makefile
23 lines
496 B
Makefile
# $NetBSD: options.mk,v 1.4 2019/11/04 21:12:53 rillig Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.honeyd
|
|
PKG_SUPPORTED_OPTIONS= python rrdtool
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### Add python support
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mpython)
|
|
. include "../../lang/python/extension.mk"
|
|
CONFIGURE_ENV+= _PATH_PYTHON=${PYTHONBIN:Q}
|
|
.else
|
|
CONFIGURE_ARGS+= --without-python
|
|
.endif
|
|
|
|
###
|
|
### Add RRDTool support
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mrrdtool)
|
|
. include "../../databases/rrdtool/buildlink3.mk"
|
|
.endif
|