diff options
author | Matthias Fechner <mfechner@FreeBSD.org> | 2021-07-17 07:52:22 +0000 |
---|---|---|
committer | Matthias Fechner <mfechner@FreeBSD.org> | 2021-07-17 07:56:18 +0000 |
commit | f8a35736fdbad9e42f9953c6b81982961c0f3b4b (patch) | |
tree | 75e4c5cbc917c56aa59236d43e2af382f6992e92 | |
parent | c55715a46b48193c337f0df7895b4c8716c70cf5 (diff) | |
download | ports-f8a35736fdbad9e42f9953c6b81982961c0f3b4b.tar.gz ports-f8a35736fdbad9e42f9953c6b81982961c0f3b4b.zip |
www/bacula-web: Fix installation for complete freshly installed FreeBSD
If you install bacula-web without any special options set
it is using by standard sqlite3 for the database.
But this is not available with the standard options defined.
Install by default all 3 options (mysql, pgsql, sqlite).
The user can remove database support if required by compiling the
package with required options set.
But we should not block users using pkg to install the package
by using another database then pgsql.
-rw-r--r-- | www/bacula-web/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/bacula-web/Makefile b/www/bacula-web/Makefile index da33bab90a4b..f1fe22020865 100644 --- a/www/bacula-web/Makefile +++ b/www/bacula-web/Makefile @@ -3,7 +3,7 @@ PORTNAME= bacula-web DISTVERSIONPREFIX= v DISTVERSION= 8.4.2 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= www sysutils PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} @@ -23,7 +23,7 @@ NO_ARCH= yes SUB_FILES= pkg-message OPTIONS_DEFINE= MYSQL PGSQL SQLITE -OPTIONS_DEFAULT= PGSQL +OPTIONS_DEFAULT= MYSQL PGSQL SQLITE SQLITE_USES= sqlite |