diff options
author | markd <markd@pkgsrc.org> | 2022-04-25 02:45:44 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2022-04-25 02:45:44 +0000 |
commit | 96e1b90c18380b939eaec121fcc3acf90ed52631 (patch) | |
tree | 58e2c75853e0c303a51969992056fcc2930f4662 /x11/qt5-qtwebkit | |
parent | de8d0614096d817c68a491ff96875b8fda7717a2 (diff) | |
download | pkgsrc-96e1b90c18380b939eaec121fcc3acf90ed52631.tar.gz |
qt5-qtwebkit: Fix build of packages such as kdewebkit with cmake>=3.23
Diffstat (limited to 'x11/qt5-qtwebkit')
-rw-r--r-- | x11/qt5-qtwebkit/Makefile | 4 | ||||
-rw-r--r-- | x11/qt5-qtwebkit/distinfo | 3 | ||||
-rw-r--r-- | x11/qt5-qtwebkit/patches/patch-Source_Qt5WebKitConfig.cmake.in | 17 |
3 files changed, 21 insertions, 3 deletions
diff --git a/x11/qt5-qtwebkit/Makefile b/x11/qt5-qtwebkit/Makefile index 3cc5fbeec51..9c08d944971 100644 --- a/x11/qt5-qtwebkit/Makefile +++ b/x11/qt5-qtwebkit/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.96 2022/04/18 19:10:17 adam Exp $ +# $NetBSD: Makefile,v 1.97 2022/04/25 02:45:44 markd Exp $ QTWKVERSION= 5.212.0-alpha4 DISTNAME= qtwebkit-${QTWKVERSION} PKGNAME= qt5-qtwebkit-${QTWKVERSION:S/-/./} -PKGREVISION= 9 +PKGREVISION= 10 CATEGORIES= x11 www MASTER_SITES= ${MASTER_SITE_GITHUB:=qtwebkit/} GITHUB_PROJECT= qtwebkit diff --git a/x11/qt5-qtwebkit/distinfo b/x11/qt5-qtwebkit/distinfo index dc1a91846e1..0b04242e32d 100644 --- a/x11/qt5-qtwebkit/distinfo +++ b/x11/qt5-qtwebkit/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.27 2022/04/22 06:06:38 markd Exp $ +$NetBSD: distinfo,v 1.28 2022/04/25 02:45:44 markd Exp $ BLAKE2s (qtwebkit-5.212.0-alpha4.tar.xz) = 20858db08c7d297037d3ced34e441d4b657325c406b475e4e76dd367dc9c500c SHA512 (qtwebkit-5.212.0-alpha4.tar.xz) = 33f11270bd030599beff9c1983a6c5ff2d61f407cc8a6825f7f405d46f9184c720fc7f60c7359f08f828db96a2170092875066a0d5c0a21ff09bc48a2603fbf6 @@ -13,6 +13,7 @@ SHA1 (patch-Source_JavaScriptCore_generate-bytecode-files) = b58ca94781fcf7b9f6a SHA1 (patch-Source_JavaScriptCore_heap_MachineStackMarker.cpp) = 2b7dba0d0e87ed96c4d7de6ddb5833209cfe51b5 SHA1 (patch-Source_JavaScriptCore_jit_ThunkGenerators.cpp) = f0ca56e4b4060c0a8d756289d7c25d1ead6b07be SHA1 (patch-Source_JavaScriptCore_tools_CodeProfiling.cpp) = 94c139413eecb875bba98c7749bba24cfcc16632 +SHA1 (patch-Source_Qt5WebKitConfig.cmake.in) = 3a1346216b20853b73abf9b1756617d1e761cb94 SHA1 (patch-Source_ThirdParty_gtest_include_gtest_internal_gtest-port.h) = 1e4b8cffbd7ec0a6130a0ec2112023bed5c0b78e SHA1 (patch-Source_WTF_wtf_Assertions.cpp) = 15b8ac40e49cfec78d46de634fd6a1edde2d2a96 SHA1 (patch-Source_WTF_wtf_InlineASM.h) = 7ffc086a21f645112ad10296571464a1e15b8b44 diff --git a/x11/qt5-qtwebkit/patches/patch-Source_Qt5WebKitConfig.cmake.in b/x11/qt5-qtwebkit/patches/patch-Source_Qt5WebKitConfig.cmake.in new file mode 100644 index 00000000000..bb0784dd548 --- /dev/null +++ b/x11/qt5-qtwebkit/patches/patch-Source_Qt5WebKitConfig.cmake.in @@ -0,0 +1,17 @@ +$NetBSD: patch-Source_Qt5WebKitConfig.cmake.in,v 1.1 2022/04/25 02:45:44 markd Exp $ + +Fix build of packages such as kdewebkit with cmake>=3.23 + +--- Source/Qt5WebKitConfig.cmake.in.orig 2020-03-04 17:16:37.000000000 +0000 ++++ Source/Qt5WebKitConfig.cmake.in +@@ -4,6 +4,10 @@ + find_dependency_with_major_and_minor(Qt5Core @Qt5_VERSION_MAJOR@ @Qt5_VERSION_MINOR@) + find_dependency_with_major_and_minor(Qt5Gui @Qt5_VERSION_MAJOR@ @Qt5_VERSION_MINOR@) + find_dependency_with_major_and_minor(Qt5Network @Qt5_VERSION_MAJOR@ @Qt5_VERSION_MINOR@) ++find_dependency_with_major_and_minor(Qt5Sensors @Qt5_VERSION_MAJOR@ @Qt5_VERSION_MINOR@) ++find_dependency_with_major_and_minor(Qt5Positioning @Qt5_VERSION_MAJOR@ @Qt5_VERSION_MINOR@) ++find_dependency_with_major_and_minor(Qt5Quick @Qt5_VERSION_MAJOR@ @Qt5_VERSION_MINOR@) ++find_dependency_with_major_and_minor(Qt5WebChannel @Qt5_VERSION_MAJOR@ @Qt5_VERSION_MINOR@) + + include("${CMAKE_CURRENT_LIST_DIR}/WebKitTargets.cmake") + |