qt5-build.eclass: Drop obsolete in-source build workaround for >=5.14.2
authorAndreas Sturmlechner <asturm@gentoo.org>
Tue, 31 Mar 2020 12:21:16 +0000 (14:21 +0200)
committerAndreas Sturmlechner <asturm@gentoo.org>
Thu, 9 Apr 2020 21:36:27 +0000 (23:36 +0200)
Fixed upstream in 5.11.1.

See also: https://bugreports.qt.io/browse/QTBUG-37417
Upstream commit 67aa365d41ebfe082b4efcfd725e4d5f08be678c

qtbase forwarding header was introduced to fix bug 599636 in commit:
d82f92ed064996dfb187ef668d74ed5b05546b2d

Closes: https://bugs.gentoo.org/676948
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
eclass/qt5-build.eclass

index b5d0b6428d9e3424d8288147d343b6b90081bdd7..9a757ccedf2fd6da286f6ecefa26373a8d8b0b78 100644 (file)
@@ -104,10 +104,11 @@ EGIT_REPO_URI=(
 # @OUTPUT_VARIABLE
 # @DESCRIPTION:
 # Build directory for out-of-source builds.
-case ${QT5_BUILD_TYPE} in
-       live)    : ${QT5_BUILD_DIR:=${S}_build} ;;
-       release) : ${QT5_BUILD_DIR:=${S}} ;; # workaround for bug 497312
-esac
+if ver_test ${PV} -lt 5.14.2; then
+       : ${QT5_BUILD_DIR:=${S}} # workaround for bug 497312
+else
+       : ${QT5_BUILD_DIR:=${S}_build}
+fi
 
 IUSE="debug test"
 
@@ -658,7 +659,12 @@ qt5_base_configure() {
 
        # a forwarding header is no longer created since 5.8, causing the system
        # config to always be used. bug 599636
-       cp src/corelib/global/qconfig.h include/QtCore/ || die
+       # ${S}/include does not exist in live sources
+       local basedir="${S}/"
+       if ver_test ${PV} -lt 5.14.2 || [[ ${QT5_BUILD_TYPE} == live ]]; then
+               basedir=""
+       fi
+       cp src/corelib/global/qconfig.h "${basedir}"include/QtCore/ || die
 
        popd >/dev/null || die