summaryrefslogtreecommitdiff
path: root/eclass/kde5-functions.eclass
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2017-12-31 18:43:03 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2018-01-13 18:16:55 +0100
commitb9addb045688bc8a09730fdde0b35238255b2a08 (patch)
tree7355d182645e7957a59eba39aa77d0f13d6c09bd /eclass/kde5-functions.eclass
parent89cc6c34b103b3478596be5f49a3abe1995a6d19 (diff)
downloadgentoo-b9addb045688bc8a09730fdde0b35238255b2a08.tar.gz
gentoo-b9addb045688bc8a09730fdde0b35238255b2a08.tar.xz
kde5-functions.eclass: add_qt_dep qtwebkit exception
Upstream stopped at 5.9.1 and releases are going to be independent from there on.
Diffstat (limited to 'eclass/kde5-functions.eclass')
-rw-r--r--eclass/kde5-functions.eclass8
1 files changed, 6 insertions, 2 deletions
diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
index d60d9d55101..3df54d51724 100644
--- a/eclass/kde5-functions.eclass
+++ b/eclass/kde5-functions.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# @ECLASS: kde5-functions.eclass
@@ -276,7 +276,11 @@ add_qt_dep() {
local slot=${4}
if [[ -z ${version} ]]; then
- version=${QT_MINIMAL}
+ if [[ ${1} = qtwebkit && ${QT_MINIMAL} = 5.9* ]]; then
+ version=5.9.1 # no more upstream release, need bug #624404
+ else
+ version=${QT_MINIMAL}
+ fi
fi
if [[ -z ${slot} ]]; then
slot="5"