summaryrefslogtreecommitdiff
path: root/net/icinga-base/options.mk
blob: 8b5e160c21d05d3f8e67d3cb9c9b7074f2c6875e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# $NetBSD: options.mk,v 1.1 2013/03/02 04:08:27 ryoon Exp $

PKG_OPTIONS_VAR=	PKG_OPTIONS.icinga-base
PKG_SUPPORTED_OPTIONS=	mysql pgsql
.include "../../mk/bsd.options.mk"

.if !empty(PKG_OPTIONS:Mmysql)
CONFIGURE_ARGS+=	--with-mysql-lib=${PREFIX}/lib/mysql		\
			--with-mysql-inc=${PREFIX}/include/mysql	\
			--with-mysql-xdata
.include "../../mk/mysql.buildlink3.mk"
.endif

.if !empty(PKG_OPTIONS:Mpgsql)
CONFIGURE_ARGS+=	--with-pgsql-lib=${PREFIX}/pgsql \
			--with-pgsql-inc=${PREFIX}/pgsql \
			--with-pgsql-xdata
.include "../../mk/pgsql.buildlink3.mk"
.endif