diff options
author | 2002-11-12 19:52:44 +0000 | |
---|---|---|
committer | 2002-11-12 19:52:44 +0000 | |
commit | 690799142694d6b8bc02bcd888e4db4f84f218b5 (patch) | |
tree | 31ddedcddbec44e8cdaa8c2e06778986e5ca00a6 /eclass | |
parent | GAH! Apparently some people assume this file is exactly right, and (diff) | |
download | gentoo-2-690799142694d6b8bc02bcd888e4db4f84f218b5.tar.gz gentoo-2-690799142694d6b8bc02bcd888e4db4f84f218b5.tar.bz2 gentoo-2-690799142694d6b8bc02bcd888e4db4f84f218b5.zip |
added support for kde-3.1_rc3
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde-dist.eclass | 3 | ||||
-rw-r--r-- | eclass/kde-functions.eclass | 3 | ||||
-rw-r--r-- | eclass/kde.org.eclass | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/eclass/kde-dist.eclass b/eclass/kde-dist.eclass index 5a0824b48fa6..5a173603fe82 100644 --- a/eclass/kde-dist.eclass +++ b/eclass/kde-dist.eclass @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # Author Dan Armak <danarmak@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/eclass/kde-dist.eclass,v 1.29 2002/11/09 21:40:11 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde-dist.eclass,v 1.30 2002/11/12 19:52:44 hannes Exp $ # This is the kde-dist eclass for >=2.2.1 kde base packages. Don't use for kdelibs though :-) # Don't use it for e.g. kdevelop, koffice because of their separate versionnig schemes. @@ -17,6 +17,7 @@ need-kde $PV [ "$PV" == "3.1_beta2" ] && S=${WORKDIR}/${PN}-3.0.8 [ "$PV" == "3.1_rc1" ] && S=${WORKDIR}/${PN}-3.0.9 [ "$PV" == "3.1_rc2" ] && S=${WORKDIR}/${PN}-3.0.98 +[ "$PV" == "3.1_rc3" ] && S=${WORKDIR}/${PN}-3.0.99 DESCRIPTION="KDE ${PV} - " HOMEPAGE="http://www.kde.org/" diff --git a/eclass/kde-functions.eclass b/eclass/kde-functions.eclass index 8ebf627bb3ca..80fee88164b3 100644 --- a/eclass/kde-functions.eclass +++ b/eclass/kde-functions.eclass @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # Author Dan Armak <danarmak@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/eclass/kde-functions.eclass,v 1.41 2002/11/05 03:13:07 hannes Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde-functions.eclass,v 1.42 2002/11/12 19:52:44 hannes Exp $ # This contains everything except things that modify ebuild variables and functions (e.g. $P, src_compile() etc.) ECLASS=kde-functions @@ -289,6 +289,7 @@ min-kde-ver() { 3.1_beta2) selected_version="3.1_beta2";; 3.1_rc1) selected_version="3.1_rc1";; 3.1_rc2) selected_version="3.1_rc2";; + 3.1_rc3) selected_version="3.1_rc3";; 3.1.*) selected_version="3.1";; 3*) selected_version="3.0";; 5) selected_version="5";; diff --git a/eclass/kde.org.eclass b/eclass/kde.org.eclass index 07252a1b53ca..dac5e7cd22c1 100644 --- a/eclass/kde.org.eclass +++ b/eclass/kde.org.eclass @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # Author Dan Armak <danarmak@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/eclass/kde.org.eclass,v 1.20 2002/11/05 00:07:46 hannes Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde.org.eclass,v 1.21 2002/11/12 19:52:44 hannes Exp $ # Contains the locations of ftp.kde.org packages and their mirrors ECLASS=kde.org @@ -16,6 +16,7 @@ case "$PV" in 3.1_beta2) SRC_PATH="unstable/kde-3.1-beta2/src/${P//3.1_beta2/3.0.8}.tar.bz2" ;; 3.1_rc1) SRC_PATH="unstable/kde-3.1-rc1/src/${P//3.1_rc1/3.0.9}.tar.bz2" ;; 3.1_rc2) SRC_PATH="unstable/kde-3.1-rc2/src/${P//3.1_rc2/3.0.98}.tar.bz2" ;; + 3.1_rc3) SRC_PATH="unstable/kde-3.1-rc3/src/${P//3.1_rc3/3.0.99}.tar.bz2" ;; 3*) SRC_PATH="stable/$PV/src/${P}.tar.bz2" ;; 5) SRC_URI="" # cvs ebuilds, no SRC_URI needed debug-print "$ECLASS: finished, cvs detected, SRC_URI=$SRC_URI" |