diff options
| author | Michael Palimaka <kensington@gentoo.org> | 2015-02-22 03:11:52 +1100 |
|---|---|---|
| committer | Michael Palimaka <kensington@gentoo.org> | 2015-02-22 03:11:52 +1100 |
| commit | 66cde7434f11707661aa91cfb95a32b06c860001 (patch) | |
| tree | fcb24fec45446c1ed12f610ffc5faef4af50fff9 /eclass/kde4-functions.eclass | |
| parent | 43576e2028f0908f92dd0fd4106aab62c412eba0 (diff) | |
| download | kde-66cde7434f11707661aa91cfb95a32b06c860001.tar.gz kde-66cde7434f11707661aa91cfb95a32b06c860001.tar.bz2 kde-66cde7434f11707661aa91cfb95a32b06c860001.zip | |
[eclass] Fix dep calculation for live ebuilds.
Diffstat (limited to 'eclass/kde4-functions.eclass')
| -rw-r--r-- | eclass/kde4-functions.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/kde4-functions.eclass b/eclass/kde4-functions.eclass index 2c66a3e0d61..ba681f749ce 100644 --- a/eclass/kde4-functions.eclass +++ b/eclass/kde4-functions.eclass @@ -327,10 +327,12 @@ add_kdebase_dep() { ver=${KDE_OVERRIDE_MINIMAL} elif [[ ${KDEBASE} != kde-base ]]; then ver=${KDE_MINIMAL} + elif [[ ${PV} == *.9999 ]]; then + ver=$(get_kde_version) # if building live version depend on the final release since there will # not be any more major development. this solves dep errors as not all # packages have kde-base live versions now - elif [[ ${PV} == *9999 || ${CATEGORY} == kde-apps ]]; then + elif [[ ${CATEGORY} == kde-apps ]]; then ver=4.14.3 else ver=${PV} |
