blob: 9b9cc83397bf252d580073e21e21bcb6f39e75d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# $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"
###
### 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
|