diff options
author | Hannes Mehnert <hannes@gentoo.org> | 2002-11-05 00:07:46 +0000 |
---|---|---|
committer | Hannes Mehnert <hannes@gentoo.org> | 2002-11-05 00:07:46 +0000 |
commit | 3423f199cb3b49eac7786dbaf093e3592b4d12d8 (patch) | |
tree | b5ad8f8e74a8aca3b67cdb465a3e91e5813ab4ae /eclass | |
parent | kde-3.1_rc2, masked in package.mask (diff) | |
download | gentoo-2-3423f199cb3b49eac7786dbaf093e3592b4d12d8.tar.gz gentoo-2-3423f199cb3b49eac7786dbaf093e3592b4d12d8.tar.bz2 gentoo-2-3423f199cb3b49eac7786dbaf093e3592b4d12d8.zip |
kde-3.1_rc2
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde-dist.eclass | 5 | ||||
-rw-r--r-- | eclass/kde-functions.eclass | 3 | ||||
-rw-r--r-- | eclass/kde.org.eclass | 3 |
3 files changed, 7 insertions, 4 deletions
diff --git a/eclass/kde-dist.eclass b/eclass/kde-dist.eclass index c89e9c35c6d0..9a669e3891f1 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.27 2002/10/31 10:55:08 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde-dist.eclass,v 1.28 2002/11/05 00:07:46 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. @@ -16,12 +16,13 @@ need-kde $PV [ "$PV" == "3.1_beta1" ] && S=${WORKDIR}/${PN}-3.0.7 [ "$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 DESCRIPTION="KDE ${PV} - " HOMEPAGE="http://www.kde.org/" # doesn't work well for unstable versions -if [ "$PV" != "3.1_alpha1" -a "$PV" != "3.1_beta1" -a "$PV" != "3.1_beta2" -a "$PV" != "3.1_rc1" -a "$PV" != "5" ]; then +if [ "$PV" != "3.1_alpha1" -a "$PV" != "3.1_beta1" -a "$PV" != "3.1_beta2" -a "$PV" != "3.1_rc1" -a "$PV" != "3.1_rc2" -a "$PV" != "5" ]; then set_enable_final fi diff --git a/eclass/kde-functions.eclass b/eclass/kde-functions.eclass index df256646dd7a..05b8dedc63ef 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.39 2002/11/01 18:57:36 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde-functions.eclass,v 1.40 2002/11/05 00:07:46 hannes Exp $ # This contains everything except things that modify ebuild variables and functions (e.g. $P, src_compile() etc.) ECLASS=kde-functions @@ -287,6 +287,7 @@ min-kde-ver() { 3.1_beta1) selected_version="3.1_beta1";; 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.*) 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 e9ec3f9f0bb7..07252a1b53ca 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.19 2002/10/31 10:55:07 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde.org.eclass,v 1.20 2002/11/05 00:07:46 hannes Exp $ # Contains the locations of ftp.kde.org packages and their mirrors ECLASS=kde.org @@ -15,6 +15,7 @@ case "$PV" in 3.1_beta1) SRC_PATH="unstable/kde-3.1-beta1/src/${P//3.1_beta1/3.0.7}.tar.bz2" ;; 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*) 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" |