git: 451c5e6736c1 - main - irc/quassel: switch to using WebEngine by default

From: Tobias C. Berner <tcberner_at_FreeBSD.org>
Date: Wed, 13 Sep 2023 11:16:31 UTC
The branch main has been updated by tcberner:

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

commit 451c5e6736c18066110aa82b1fbafccaf62571b9
Author:     Tobias C. Berner <tcberner@FreeBSD.org>
AuthorDate: 2023-09-13 11:02:05 +0000
Commit:     Tobias C. Berner <tcberner@FreeBSD.org>
CommitDate: 2023-09-13 11:16:13 +0000

    irc/quassel: switch to using WebEngine by default
    
    Qt5Webkit will be removed at the end of the year.
    
    See: commit e8e65e7574de0b374caaa3da0ba6a26a67103e62
    
        www/qt5-webkit: mark for deletion
    
        Qt upstream switched to QtWebEngine quite a while ago, and the maintenance
        of QtWebKit was carried out by a separate person.
        Unfortunately, no release or updates have been pushed in the recent
        years.
    
        Note: there is a fork [1] of the used fork [2], that might be viable for people that
        really still need to rely on Qt5Webkit.
    
        [1] https://github.com/movableink/webkit/
        [2] https://github.com/qtwebkit/qtwebkit
---
 irc/quassel/Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/irc/quassel/Makefile b/irc/quassel/Makefile
index 621ee83773b3..6693aef46ccd 100644
--- a/irc/quassel/Makefile
+++ b/irc/quassel/Makefile
@@ -1,6 +1,6 @@
 PORTNAME=	quassel
 DISTVERSION=	0.14.0
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	irc
 MASTER_SITES=	https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/releases/download/${DISTVERSION}/
 
@@ -36,7 +36,7 @@ OPTIONS_SUB=		yes
 
 CLIENT_DESC=		Quassel client (for use with core)
 CLIENT_CMAKE_BOOL=	WANT_QTCLIENT
-CLIENT_USE=		qt=dbus,gui,multimedia,phonon4,webkit,widgets
+CLIENT_USE=		qt=dbus,gui,multimedia,phonon4,webengine,widgets
 CLIENT_LIB_DEPENDS=	libdbusmenu-qt5.so:devel/libdbusmenu-qt@qt5
 CLIENT_PREVENTS=	CORE
 CLIENT_PREVENTS_MSG=	Quassel core server should be installed via irc/quassel-core port
@@ -54,7 +54,7 @@ CORE_PREVENTS=		CLIENT MONO KDE SPELL
 
 MONO_DESC=		Quassel standalone (monolithic binary: core+client combined)
 MONO_CMAKE_BOOL=	WANT_MONO
-MONO_USE=		qt=dbus,gui,multimedia,phonon4,script,sql,webkit,widgets
+MONO_USE=		qt=dbus,gui,multimedia,phonon4,script,sql,webengine,widgets
 MONO_LIB_DEPENDS=	libdbusmenu-qt5.so:devel/libdbusmenu-qt@qt5
 MONO_PREVENTS=		CORE
 MONO_PREVENTS_MSG=	Quassel core server should be installed via irc/quassel-core port