2005-12-05 21:49:47 +01:00
|
|
|
# $NetBSD: options.mk,v 1.3 2005/12/05 20:50:56 rillig Exp $
|
2005-01-14 22:44:33 +01:00
|
|
|
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.honeyd
|
|
|
|
PKG_SUPPORTED_OPTIONS= python rrdtool
|
|
|
|
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
|
|
|
|
###
|
2005-04-20 16:34:31 +02:00
|
|
|
### Add python support
|
2005-01-14 22:44:33 +01:00
|
|
|
###
|
|
|
|
.if !empty(PKG_OPTIONS:Mpython)
|
|
|
|
. include "../../lang/python/extension.mk"
|
2005-12-05 21:49:47 +01:00
|
|
|
CONFIGURE_ENV+= _PATH_PYTHON=${PYTHONBIN:Q}
|
2005-01-14 22:44:33 +01:00
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --without-python
|
|
|
|
.endif
|
|
|
|
|
|
|
|
###
|
|
|
|
### Add RRDTool support
|
|
|
|
###
|
|
|
|
.if !empty(PKG_OPTIONS:Mrrdtool)
|
|
|
|
. include "../../databases/rrdtool/buildlink3.mk"
|
|
|
|
.endif
|