diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-10-16 23:42:05 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-10-16 23:43:25 +0200 |
commit | ebdaf769a4570ffa4f8bfee2aa97638675c4d340 (patch) | |
tree | 1aed7557f0419097486481eb2628afc2a3d1e18c /eclass/kde5-functions.eclass | |
parent | dev-erlang/fast_tls: Bump version (diff) | |
download | gentoo-ebdaf769a4570ffa4f8bfee2aa97638675c4d340.tar.gz gentoo-ebdaf769a4570ffa4f8bfee2aa97638675c4d340.tar.bz2 gentoo-ebdaf769a4570ffa4f8bfee2aa97638675c4d340.zip |
kde5-functions.eclass: Fix KDE Plasma 5.13.5 QT_MINIMAL
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass/kde5-functions.eclass')
-rw-r--r-- | eclass/kde5-functions.eclass | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass index e921e30fa121..2551741637af 100644 --- a/eclass/kde5-functions.eclass +++ b/eclass/kde5-functions.eclass @@ -41,11 +41,15 @@ case ${CATEGORY} in : ${FRAMEWORKS_MINIMAL:=5.43.0} : ${QT_MINIMAL:=5.9.1} fi - if [[ ${PV} = 5.12* || ${PV} = 5.13.5 ]]; then + if [[ ${PV} = 5.12* ]]; then : ${FRAMEWORKS_MINIMAL:=5.46.0} : ${KDE_APPS_MINIMAL:=17.12.3} : ${QT_MINIMAL:=5.9.4} fi + if [[ ${PV} = 5.13.5 ]]; then + : ${FRAMEWORKS_MINIMAL:=5.46.0} + : ${KDE_APPS_MINIMAL:=17.12.3} + fi if [[ ${KDE_BUILD_TYPE} = live && ${PV} != 5.??.49* ]]; then : ${FRAMEWORKS_MINIMAL:=9999} fi |