diff options
author | Dan Armak <danarmak@gentoo.org> | 2002-03-07 22:00:48 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2002-03-07 22:00:48 +0000 |
commit | 539a582ebe3e7a0e374469a2126359c2f0a2695c (patch) | |
tree | ebd64557896da1b2ff8f4a33fcef266bc666a9da /eclass | |
parent | new revision that closes bug #946. It uses some patches that enable it to wo... (diff) | |
download | historical-539a582ebe3e7a0e374469a2126359c2f0a2695c.tar.gz historical-539a582ebe3e7a0e374469a2126359c2f0a2695c.tar.bz2 historical-539a582ebe3e7a0e374469a2126359c2f0a2695c.zip |
add 3.0_rc1 kdelibs option to min-kde-ver() - makes rc1 ebuilds depend on the correct version of kdelibs
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/functions.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/functions.eclass b/eclass/functions.eclass index 7b2ab48c5f74..0abe01d670f1 100644 --- a/eclass/functions.eclass +++ b/eclass/functions.eclass @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Dan Armak <danarmak@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/eclass/functions.eclass,v 1.3 2002/02/14 20:29:37 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/functions.eclass,v 1.4 2002/03/07 22:00:48 danarmak Exp $ # This contains everything except things that modify ebuild variables and functions (e.g. $P, src_compile() etc.) ECLASS=functions @@ -140,7 +140,9 @@ min-kde-ver() { case $1 in 2*) selected_version="2.2.2-r2";; + 3.0_beta1) selected_version="3.0_beta1";; 3.0_beta2) selected_version="3.0_beta2";; + 3.0_rc1) selected_version="3.0_rc1";; 3*) selected_version="3.0";; *) echo "!!! error: $FUNCNAME() called with invalid parameter: \"$1\", please report bug" && exit 1;; esac |