git: f8a35736fdba - main - www/bacula-web: Fix installation for complete freshly installed FreeBSD
Matthias Fechner
mfechner at FreeBSD.org
Sat Jul 17 07:56:21 UTC 2021
The branch main has been updated by mfechner:
URL: https://cgit.FreeBSD.org/ports/commit/?id=f8a35736fdbad9e42f9953c6b81982961c0f3b4b
commit f8a35736fdbad9e42f9953c6b81982961c0f3b4b
Author: Matthias Fechner <mfechner at FreeBSD.org>
AuthorDate: 2021-07-17 07:52:22 +0000
Commit: Matthias Fechner <mfechner at FreeBSD.org>
CommitDate: 2021-07-17 07:56:18 +0000
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.
---
www/bacula-web/Makefile | 4 ++--
1 file 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
More information about the dev-commits-ports-all
mailing list