Skip to content

Commit

Permalink
kde5-functions.eclass: Define KDE Plasma/Applications min KF5 deps
Browse files Browse the repository at this point in the history
To avoid unnecessary rebuilds.
  • Loading branch information
a17r committed Jun 10, 2018
1 parent 66cd226 commit d6bf8c7
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions eclass/kde5-functions.eclass
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,20 @@ case ${CATEGORY} in
[[ ${KDE_BUILD_TYPE} = live ]] && : ${FRAMEWORKS_MINIMAL:=9999}
;;
kde-plasma)
[[ ${PV} = 5.12.5* ]] && : ${QT_MINIMAL:=5.9.1}
if [[ ${PV} = 5.12.5* ]]; then
: ${FRAMEWORKS_MINIMAL:=5.43.0}
: ${QT_MINIMAL:=5.9.1}
fi
if [[ ${KDE_BUILD_TYPE} = live && ${PV} != 5.12* ]]; then
: ${FRAMEWORKS_MINIMAL:=9999}
: ${QT_MINIMAL:=5.10.1}
fi
;;
kde-apps)
[[ ${PV} = 17.12.3* ]] && : ${QT_MINIMAL:=5.9.1}
if [[ ${PV} = 17.12.3* ]]; then
: ${FRAMEWORKS_MINIMAL:=5.43.0}
: ${QT_MINIMAL:=5.9.1}
fi
[[ ${PV} = 18.04.2* ]] && : ${FRAMEWORKS_MINIMAL:=5.44.0}
if [[ ${KDE_BUILD_TYPE} = live || ${PV} = 18.04* ]]; then
: ${FRAMEWORKS_MINIMAL:=5.46.0}
Expand Down

0 comments on commit d6bf8c7

Please sign in to comment.