pkgsrc/sysutils/bacula/options.mk
dmcmahill b7a5b91b8e Add the vendor patches which are available for this version of bacula.
These fix a handful of bugs the most serious being a potential data loss
bug.  Committed during the freeze since a data loss bug in backup
software is no good!

See http://marc.info/?l=bacula-announce&m=119109399004039&w=2 for
the announcement on the bacula-announce mailing list about this bug.
2008-07-10 13:54:56 +00:00

52 lines
1.8 KiB
Makefile

# $NetBSD: options.mk,v 1.11 2008/07/10 13:54:56 dmcmahill Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.bacula
PKG_SUPPORTED_OPTIONS= bacula-static python
PKG_OPTIONS_REQUIRED_GROUPS= database
PKG_OPTIONS_GROUP.database= catalog-sqlite catalog-sqlite3 catalog-pgsql catalog-mysql
PKG_SUGGESTED_OPTIONS= catalog-sqlite
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mcatalog-sqlite)
. include "../../databases/sqlite/buildlink3.mk"
CONFIGURE_ARGS+= --with-sqlite=${BUILDLINK_PREFIX.sqlite}
BACULA_DB= sqlite
.elif !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:Q}
BACULA_DB= postgresql
.elif !empty(PKG_OPTIONS:Mcatalog-mysql)
. include "../../mk/mysql.buildlink3.mk"
CONFIGURE_ARGS+= --with-mysql=${PREFIX:Q}
BACULA_DB= mysql
.endif
.if !empty(PKG_OPTIONS:Mpython)
CONFIGURE_ARGS+= --with-python=${LOCALBASE}/${PYINC}
. include "../../lang/python/application.mk"
. include "${PYPKGSRCDIR}/buildlink3.mk"
# we can't use REPLACE_INTERPRETER here because ./configure fills in the
# python path and the replace-interpreter stage happens before that.
SUBST_CLASSES+= python
SUBST_MESSAGE.python= Fixing Python interpreter path.
SUBST_STAGE.python= post-configure
SUBST_FILES.python= scripts/dvd-handler
SUBST_SED.python= -e '1s,^\#!.*,\#! ${PYTHONBIN},'
.endif
.if !empty(PKG_OPTIONS:Mbacula-static)
CONFIGURE_ARGS+= --enable-static-cons
CONFIGURE_ARGS+= --enable-static-dir
CONFIGURE_ARGS+= --enable-static-fd
CONFIGURE_ARGS+= --enable-static-sd
CONFIGURE_ARGS+= --enable-static-tools
PLIST_SUBST+= STATIC=
.else
PLIST_SUBST+= STATIC="@comment "
.endif