03aa51ead2
option (broken upstream, no sign of a upcoming fix)
30 lines
983 B
Makefile
30 lines
983 B
Makefile
# $NetBSD: options.mk,v 1.20 2013/05/19 11:00:03 shattered Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.bacula
|
|
PKG_SUPPORTED_OPTIONS= ssl
|
|
PKG_OPTIONS_REQUIRED_GROUPS= database
|
|
PKG_OPTIONS_GROUP.database= catalog-sqlite3 catalog-pgsql catalog-mysql
|
|
PKG_SUGGESTED_OPTIONS= catalog-sqlite3
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mcatalog-sqlite3)
|
|
. include "../../databases/sqlite3/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-sqlite3=${BUILDLINK_PREFIX.sqlite3}
|
|
BACULA_DB= sqlite3
|
|
.elif !empty(PKG_OPTIONS:Mcatalog-pgsql)
|
|
. include "../../mk/pgsql.buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-postgresql=${PGSQL_PREFIX}
|
|
BACULA_DB= postgresql
|
|
.elif !empty(PKG_OPTIONS:Mcatalog-mysql)
|
|
. include "../../mk/mysql.buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-mysql=${PREFIX}
|
|
BACULA_DB= mysql
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mssl)
|
|
. include "../../security/openssl/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-openssl=${BUILDLINK_PREFIX.openssl}
|
|
.else
|
|
CONFIGURE_ARGS+= --without-openssl
|
|
.endif
|