23 lines
489 B
Makefile
23 lines
489 B
Makefile
# $NetBSD: options.mk,v 1.2 2005/04/20 14:34:31 wiz 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}
|
|
.else
|
|
CONFIGURE_ARGS+= --without-python
|
|
.endif
|
|
|
|
###
|
|
### Add RRDTool support
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mrrdtool)
|
|
. include "../../databases/rrdtool/buildlink3.mk"
|
|
.endif
|