diff options
author | Theo Chatzimichos <tampakrap@gentoo.org> | 2010-12-29 16:45:19 +0000 |
---|---|---|
committer | Theo Chatzimichos <tampakrap@gentoo.org> | 2010-12-29 16:45:19 +0000 |
commit | 0b027acbba1eaf3894b37658198183fe3861cbd2 (patch) | |
tree | 36440f7e5a83fc2f3bbd9d07bb6c0fed13ce4c89 /eclass | |
parent | Catch unpacking errors with die, fixes bug 338397 (diff) | |
download | historical-0b027acbba1eaf3894b37658198183fe3861cbd2.tar.gz historical-0b027acbba1eaf3894b37658198183fe3861cbd2.tar.bz2 historical-0b027acbba1eaf3894b37658198183fe3861cbd2.zip |
Add eclass support for KDEPIM 4.4.9
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde4-base.eclass | 4 | ||||
-rw-r--r-- | eclass/kde4-functions.eclass | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/eclass/kde4-base.eclass b/eclass/kde4-base.eclass index 2ba03d6c9171..0d9a1f7ca93c 100644 --- a/eclass/kde4-base.eclass +++ b/eclass/kde4-base.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-base.eclass,v 1.79 2010/12/06 10:17:04 tampakrap Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-base.eclass,v 1.80 2010/12/29 16:45:19 tampakrap Exp $ # @ECLASS: kde4-base.eclass # @MAINTAINER: @@ -537,7 +537,7 @@ case ${BUILD_TYPE} in # Unstable KDE SC releases SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" ;; - 4.4.6 | 4.4.7 | 4.4.8) + 4.4.6 | 4.4.7 | 4.4.8 | 4.4.9) # Only kdepim here SRC_URI="mirror://kde/stable/kdepim-${PV}/src/${_kmname_pv}.tar.bz2" ;; diff --git a/eclass/kde4-functions.eclass b/eclass/kde4-functions.eclass index c42c615d13b3..29ae9fa8874f 100644 --- a/eclass/kde4-functions.eclass +++ b/eclass/kde4-functions.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-functions.eclass,v 1.38 2010/12/06 10:17:04 tampakrap Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-functions.eclass,v 1.39 2010/12/29 16:45:19 tampakrap Exp $ inherit versionator @@ -374,9 +374,9 @@ add_kdebase_dep() { local use=${2:+,${2}} if [[ ${KDEBASE} = kde-base ]]; then - # FIXME remove hack when kdepim-4.4.{6,7} is gone + # FIXME remove hack when >kdepim-4.4.5 is gone local FIXME_PV - if [[ ${KMNAME} = kdepim || ${PN} = kdepim-runtime ]] && [[ ${PV} = 4.4.6* || ${PV} = 4.4.7* || ${PV} = 4.4.8* ]] && [[ ${1} = kdelibs || ${1} = kdepimlibs ]]; then + if [[ ${KMNAME} = kdepim || ${PN} = kdepim-runtime ]] && [[ ${PV} = 4.4.6* || ${PV} = 4.4.7* || ${PV} = 4.4.8* || ${PV} = 4.4.9* ]] && [[ ${1} = kdelibs || ${1} = kdepimlibs ]]; then FIXME_PV=4.4.5 else FIXME_PV=${PV} |