Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 17 Jul 2021 07:56:21 GMT
From:      Matthias Fechner <mfechner@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: f8a35736fdba - main - www/bacula-web: Fix installation for complete freshly installed FreeBSD
Message-ID:  <202107170756.16H7uLBo010460@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by mfechner:

URL: https://cgit.FreeBSD.org/ports/commit/?id=f8a35736fdbad9e42f9953c6b81982961c0f3b4b

commit f8a35736fdbad9e42f9953c6b81982961c0f3b4b
Author:     Matthias Fechner <mfechner@FreeBSD.org>
AuthorDate: 2021-07-17 07:52:22 +0000
Commit:     Matthias Fechner <mfechner@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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202107170756.16H7uLBo010460>