From 99b2c44c1425c7b2925846d4c44b2bf2f78dc786 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 8 Jul 2023 22:23:22 +0100 Subject: gentoo auto-resync : 08:07:2023 - 22:23:22 --- eclass/Manifest.gz | Bin 37985 -> 37983 bytes eclass/qt5-build.eclass | 58 ++++++++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 56 insertions(+), 2 deletions(-) (limited to 'eclass') diff --git a/eclass/Manifest.gz b/eclass/Manifest.gz index ef0e14143ce5..cf4059906562 100644 Binary files a/eclass/Manifest.gz and b/eclass/Manifest.gz differ diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 8779d5e93bc4..847c436651af 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -326,6 +326,25 @@ qt5-build_pkg_postrm() { ###### Public helpers ###### +# @FUNCTION: qt5_syncqt_version +# @DESCRIPTION: +# Wrapper for Qt5 syncqt.pl to sync header files for ${PV} (required to run if +# headers are added/removed by patching) +qt5_syncqt_version() { + if [[ ${PV} == *9999* ]]; then + return + fi + + local syncqt + if [[ ${PN} == qtcore ]]; then + syncqt=bin/syncqt.pl + else + syncqt=${QT5_BINDIR}/syncqt.pl + fi + + perl ${syncqt} -version ${PV} || die +} + # @FUNCTION: qt5_symlink_binary_to_path # @USAGE: [suffix] # @DESCRIPTION: @@ -720,9 +739,44 @@ qt5_tools_configure() { # allow the ebuild to override what we set here myqmakeargs=( "${qmakeargs[@]}" "${myqmakeargs[@]}" ) - mkdir -p "${QT5_BUILD_DIR}" || die + # out-of-source build quirks + case ${PN} in + qdoc) + # bug 676948 + qt5_tools_oos_quirk qtqdoc-config.pri src/qdoc + ;; + qtlocation) + # src/plugins/geoservices requires files that are only generated + # when qmake is run in the root directory. bug 633776 + qt5_tools_oos_quirk qtlocation-config.pri src/location + ;; + *) ;; + esac + + qt5_tools_oos_quirk qttools-config.pri +} + +# @FUNCTION: qt5_tools_oos_quirk +# @INTERNAL +# @USAGE: or +# @DESCRIPTION: +# Quirk for out-of-source builds. Runs qmake in root directory, copies +# generated pri from source to build dir . +# If no is given, is copied to ${QT5_BUILD_DIR}. +qt5_tools_oos_quirk() { + if [[ "$#" == 2 ]]; then + local source="${2}/${1}" + local dest="${QT5_BUILD_DIR}/${2}" + elif [[ "$#" == 1 ]]; then + local source="${1}" + local dest="${QT5_BUILD_DIR}" + else + die "${FUNCNAME[0]} must be passed either one or two arguments" + fi + + mkdir -p "${dest}" || die qt5_qmake "${QT5_BUILD_DIR}" - cp qttools-config.pri "${QT5_BUILD_DIR}" || die + cp "${source}" "${dest}" || die } # @FUNCTION: qt5_qmake_args -- cgit v1.2.3