summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorJonathan Callen <en.ABCD@gmail.com>2009-09-03 04:11:26 -0400
committerJonathan Callen <en.ABCD@gmail.com>2009-09-03 04:11:26 -0400
commita080b192243e9f8de45eabed01b5276a28e21f8d (patch)
tree873482963e9417e9ff87d7c73edf729f65f987ca /eclass
parent275b84bece67b9ecc5f104a6fbaf62427ac2888e (diff)
downloadkde-a080b192243e9f8de45eabed01b5276a28e21f8d.tar.gz
kde-a080b192243e9f8de45eabed01b5276a28e21f8d.tar.bz2
kde-a080b192243e9f8de45eabed01b5276a28e21f8d.zip
Fix libknotificationitem removal
Diffstat (limited to 'eclass')
-rw-r--r--eclass/kde4-base.eclass7
1 files changed, 5 insertions, 2 deletions
diff --git a/eclass/kde4-base.eclass b/eclass/kde4-base.eclass
index 235110fe644..c51c6022e21 100644
--- a/eclass/kde4-base.eclass
+++ b/eclass/kde4-base.eclass
@@ -232,8 +232,11 @@ kdecommondepend="
if [[ ${PN} != kdelibs ]]; then
if [[ ${KDEBASE} = kde-base ]]; then
# All SLOT=4.3 and any SLOT=4.4 where PV < 4.3.66; only kde-base/
- [[ ${PN} != libknotificationitem ]] && slot_is_at_least 4.3 ${SLOT} && \
- [[ ${_pvn} < 4.3.66 || ${_pvn} == 4.3.9999 ]] && local libknotificationitem_required=1
+ if [[ ${PN} != libknotificationitem ]]; then
+ if [[ ${SLOT} == 4.3 ]] || [[ ${SLOT} == 4.4 ]] && [[ ${PV} < 4.3.66 ]]; then
+ local libknotificationitem_required=1
+ fi
+ fi
kdecommondepend+="
kdeprefix? ( >=kde-base/kdelibs${_pv}[kdeprefix] )
!kdeprefix? ( >=kde-base/kdelibs${_pvn}[-kdeprefix] )