diff options
author | Gregorio Guidi <greg_g@gentoo.org> | 2005-08-24 22:54:14 +0000 |
---|---|---|
committer | Gregorio Guidi <greg_g@gentoo.org> | 2005-08-24 22:54:14 +0000 |
commit | 7aa087bddc4b9d70348f6ef5db523db5d2b68f07 (patch) | |
tree | 69517c3b5841af6bde3718733755757ef326a793 /eclass/kde-dist.eclass | |
parent | Restrict the visibility hack to kde 3.4.1. (diff) | |
download | historical-7aa087bddc4b9d70348f6ef5db523db5d2b68f07.tar.gz historical-7aa087bddc4b9d70348f6ef5db523db5d2b68f07.tar.bz2 historical-7aa087bddc4b9d70348f6ef5db523db5d2b68f07.zip |
Update for KDE 3.5.
Diffstat (limited to 'eclass/kde-dist.eclass')
-rw-r--r-- | eclass/kde-dist.eclass | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/eclass/kde-dist.eclass b/eclass/kde-dist.eclass index 14fd22cbcfa4..fd5e471898cc 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.67 2005/07/11 15:08:06 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde-dist.eclass,v 1.68 2005/08/24 22:54:14 greg_g Exp $ # # Author Dan Armak <danarmak@gentoo.org> # @@ -17,10 +17,8 @@ case "${PV}" in 2.2.2*) SRC_PATH="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_rc1) SRC_PATH="unstable/3.4.0-rc1/src/${PN}-3.4.0-rc1.tar.bz2" ;; 3.4.0) SRC_PATH="stable/3.4/src/${P}.tar.bz2" ;; + 3.5_alpha1) SRC_PATH="unstable/${PV/_/-}/src/${PN}-3.4.90.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" ;; @@ -31,10 +29,8 @@ debug-print "${ECLASS}: finished, SRC_URI=${SRC_URI}" 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_rc1" ] && S=${WORKDIR}/${PN}-3.4.0 +# 3.5 prereleases +[ "${PV}" == "3.5_alpha1" ] && S=${WORKDIR}/${PN}-3.4.90 DESCRIPTION="KDE ${PV} - " HOMEPAGE="http://www.kde.org/" |