pkgsrc/security/honeyd/options.mk

24 lines
494 B
Makefile
Raw Normal View History

# $NetBSD: options.mk,v 1.3 2005/12/05 20:50:56 rillig Exp $
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
###
.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