diff options
author | Gregorio Guidi <greg_g@gentoo.org> | 2005-02-27 22:43:54 +0000 |
---|---|---|
committer | Gregorio Guidi <greg_g@gentoo.org> | 2005-02-27 22:43:54 +0000 |
commit | d743cb768e0e47bb7f0f7ebe44373cea39f01553 (patch) | |
tree | 4a8ac399af8cd3ccdffd65a8028a514a9b0fc5ed /eclass | |
parent | Install libs if available. Install all modules in TCL_MODS, same goes for DOCS. (diff) | |
download | gentoo-2-d743cb768e0e47bb7f0f7ebe44373cea39f01553.tar.gz gentoo-2-d743cb768e0e47bb7f0f7ebe44373cea39f01553.tar.bz2 gentoo-2-d743cb768e0e47bb7f0f7ebe44373cea39f01553.zip |
Updates for kde-3.4.0_rc1.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde-dist.eclass | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/eclass/kde-dist.eclass b/eclass/kde-dist.eclass index b04be6de0230..901d4d4b93e1 100644 --- a/eclass/kde-dist.eclass +++ b/eclass/kde-dist.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kde-dist.eclass,v 1.61 2005/02/04 21:21:15 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde-dist.eclass,v 1.62 2005/02/27 22:43:54 greg_g Exp $ # # Author Dan Armak <danarmak@gentoo.org> # @@ -19,8 +19,9 @@ case "$PV" in 2.2.2*) SRC_PATH="Attic/2.2.2/src/${P}.tar.bz2" ;; 3.2.0) SRC_PATH="stable/3.2/src/${P}.tar.bz2" ;; 3.3.0) SRC_PATH="stable/3.3/src/${P}.tar.bz2" ;; - 3.4.0_beta1) SRC_PATH="unstable/3.3.91/src/${PN}-3.3.91.tar.bz2" ;; - 3.4.0_beta2) SRC_PATH="unstable/3.3.92/src/${PN}-3.3.92.tar.bz2" ;; + 3.4.0_beta1) SRC_PATH="unstable/3.3.91/src/${PN}-3.3.91.tar.bz2" ;; + 3.4.0_beta2) SRC_PATH="unstable/3.3.92/src/${PN}-3.3.92.tar.bz2" ;; + 3.4.0_rc1) SRC_PATH="unstable/3.4.0-rc1/src/${PN}-3.4.0-rc1.tar.bz2" ;; 3*) SRC_PATH="stable/$PV/src/${P}.tar.bz2" ;; 5) SRC_URI="" # cvs ebuilds, no SRC_URI needed debug-print "$ECLASS: cvs detected" ;; @@ -29,11 +30,12 @@ esac [ -n "$SRC_PATH" ] && SRC_URI="$SRC_URI mirror://kde/$SRC_PATH" debug-print "$ECLASS: finished, SRC_URI=$SRC_URI" -need-kde $PV +need-kde ${PV} # 3.4 prereleases -[ "$PV" == "3.4.0_beta1" ] && S=${WORKDIR}/${PN}-3.3.91 -[ "$PV" == "3.4.0_beta2" ] && S=${WORKDIR}/${PN}-3.3.92 +[ "${PV}" == "3.4.0_beta1" ] && S=${WORKDIR}/${PN}-3.3.91 +[ "${PV}" == "3.4.0_beta2" ] && S=${WORKDIR}/${PN}-3.3.92 +[ "${PV}" == "3.4.0_rc1" ] && S=${WORKDIR}/${PN}-3.4.0 DESCRIPTION="KDE ${PV} - " HOMEPAGE="http://www.kde.org/" |