commit: 91839540e97eb22f0ac218aa174b06a01870f3f5
Author: Davide Pesavento <pesa <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 23 02:02:29 2016 +0000
Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org>
CommitDate: Sat Jan 23 02:02:29 2016 +0000
URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=91839540
qt5-build.eclass: make gcc version check fatal starting with Qt 5.6
eclass/qt5-build.eclass | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
index a1ad3fb..72e60e9 100644
--- a/eclass/qt5-build.eclass
+++ b/eclass/qt5-build.eclass
@@ -133,15 +133,21 @@ EXPORT_FUNCTIONS src_unpack src_prepare src_configure
src_compile src_install sr
# @DESCRIPTION:
# Unpacks the sources.
qt5-build_src_unpack() {
+ local gcc_version_check_fatal=false
local min_gcc4_minor_version=5
+ if [[ ${QT5_MINOR_VERSION} -ge 6 ]]; then
+ gcc_version_check_fatal=true
+ fi
if [[ ${QT5_MINOR_VERSION} -ge 7 || ${PN} == qtwebengine ]]; then
min_gcc4_minor_version=7
fi
if [[ $(gcc-major-version) -lt 4 ]] || \
[[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt
${min_gcc4_minor_version} ]]; then
- ewarn
- ewarn "Using a GCC version lower than
4.${min_gcc4_minor_version} is not supported."
- ewarn
+ if ${gcc_version_check_fatal}; then
+ die "GCC version 4.${min_gcc4_minor_version} or later
is required to build this package"
+ else
+ ewarn "Using a GCC version lower than
4.${min_gcc4_minor_version} is not supported"
+ fi
fi
if [[ ${PN} == qtwebengine || ${PN} == qtwebkit ]]; then