mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
kde5-functions.eclass: Let 9999 ebuilds depend on >=5.9999
Fixes bug 553492
This commit is contained in:
committed by
Michael Palimaka
parent
8eacd2ccfe
commit
2abcf55a42
@@ -188,7 +188,11 @@ add_kdeapps_dep() {
|
||||
version=${PV}
|
||||
elif [[ -z "${version}" ]] ; then
|
||||
# In KDE applications world, 5.9999 > yy.mm.x
|
||||
[[ ${PV} = 5.9999 ]] && version=5.9999 || version=${KDE_APPS_MINIMAL}
|
||||
if [[ ${PV} = 5.9999 || ${PV} = 9999 ]]; then
|
||||
version=5.9999
|
||||
else
|
||||
version=${KDE_APPS_MINIMAL}
|
||||
fi
|
||||
fi
|
||||
|
||||
_add_kdecategory_dep kde-apps "${1}" "${2}" "${version}"
|
||||
|
||||
Reference in New Issue
Block a user