blob: 52587a7ec68990f5e9f8ab5950b3a5fef6daad52 (
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.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
|