git: 8c9f37735d96 - main - devel/qt6: do not depend on phonon

From: Tobias C. Berner <tcberner_at_FreeBSD.org>
Date: Sun, 03 Dec 2023 10:04:19 UTC
The branch main has been updated by tcberner:

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

commit 8c9f37735d961430c6187dffb93a3c000c1a4eb0
Author:     Tobias C. Berner <tcberner@FreeBSD.org>
AuthorDate: 2023-12-03 10:02:36 +0000
Commit:     Tobias C. Berner <tcberner@FreeBSD.org>
CommitDate: 2023-12-03 10:04:00 +0000

    devel/qt6: do not depend on phonon
    
    - phonon4 is living in qt.mk at the moment, but it should rather live in
      kde.mk
    - phonon4 does not install to ${QT_LIBDIR}, which is however, what qt.mk
      assumes, when contructing the qt-phonon4_PATH. So phonon4:run is
      pointing to an invalid location.
    
    Reported by:    fluffy
---
 devel/qt6/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/devel/qt6/Makefile b/devel/qt6/Makefile
index c4e795320e42..ad39cb20c43e 100644
--- a/devel/qt6/Makefile
+++ b/devel/qt6/Makefile
@@ -7,6 +7,6 @@ COMMENT=	Cross-platform application and UI framework (metaport)
 WWW=		https://www.qt.io/
 
 USES=		metaport qt:6
-USE_QT=		${_USE_QT_ALL:S/$/:run/}
+USE_QT=		${_USE_QT_ALL:Nphonon4:S/$/:run/}
 
 .include <bsd.port.mk>