summaryrefslogtreecommitdiff
path: root/security/honeyd/options.mk
diff options
context:
space:
mode:
Diffstat (limited to 'security/honeyd/options.mk')
-rw-r--r--security/honeyd/options.mk23
1 files changed, 23 insertions, 0 deletions
diff --git a/security/honeyd/options.mk b/security/honeyd/options.mk
new file mode 100644
index 00000000000..52587a7ec68
--- /dev/null
+++ b/security/honeyd/options.mk
@@ -0,0 +1,23 @@
+# $NetBSD: options.mk,v 1.1 2005/01/14 21:44:33 adrianp 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