pkgsrc-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[x11/qt5-qtdeclarative] missing pkg-config file in $PREFIX



Hi,

It seems that Qt5QmlModels.pc is not symlinked to $PREFIX from
$PREFIX/qt5, as for other Qt5*.pc files. This breaks e.g. this:

$ pkg-config --cflags --libs Qt5Quick.pc
Package Qt5QmlModels was not found in the pkg-config search path.
[...]

This small patch addresses this:

Index: x11/qt5-qtdeclarative/Makefile
===================================================================
RCS file: /cvsroot/pkgsrc/x11/qt5-qtdeclarative/Makefile,v
retrieving revision 1.82
diff -u -u -r1.82 Makefile
--- x11/qt5-qtdeclarative/Makefile	19 Nov 2024 22:46:11 -0000	1.82
+++ x11/qt5-qtdeclarative/Makefile	3 Apr 2025 12:28:27 -0000
@@ -1,5 +1,6 @@
 # $NetBSD: Makefile,v 1.82 2024/11/19 22:46:11 adam Exp $
 
+PKGREVISION=	1
 DISTNAME=	qtdeclarative-everywhere-opensource-src-${QTVERSION}
 PKGNAME=	qt5-qtdeclarative-${QTVERSION}
 COMMENT=	Qt5 module for declarative framework
@@ -12,7 +13,8 @@
 .include "../../x11/qt5-qtbase/Makefile.common"
 
 post-install:
-.for i in Qt5Qml.pc Qt5Quick.pc Qt5QuickTest.pc Qt5QuickWidgets.pc
+.for i in Qt5Qml.pc Qt5QmlModels.pc Qt5Quick.pc Qt5QuickTest.pc \
+	Qt5QuickWidgets.pc
 	cd ${DESTDIR}${PREFIX}/lib/pkgconfig && \
 	${LN} -f -s ${QTPREFIX}/lib/pkgconfig/${i} ${i}
 .endfor
Index: x11/qt5-qtdeclarative/PLIST
===================================================================
RCS file: /cvsroot/pkgsrc/x11/qt5-qtdeclarative/PLIST,v
retrieving revision 1.18
diff -u -u -r1.18 PLIST
--- x11/qt5-qtdeclarative/PLIST	18 Apr 2022 11:18:16 -0000	1.18
+++ x11/qt5-qtdeclarative/PLIST	3 Apr 2025 12:28:27 -0000
@@ -1,5 +1,6 @@
 @comment $NetBSD: PLIST,v 1.18 2022/04/18 11:18:16 adam Exp $
 lib/pkgconfig/Qt5Qml.pc
+lib/pkgconfig/Qt5QmlModels.pc
 lib/pkgconfig/Qt5Quick.pc
 lib/pkgconfig/Qt5QuickTest.pc
 lib/pkgconfig/Qt5QuickWidgets.pc
--
Cheers,
Anthony


Home | Main Index | Thread Index | Old Index