diff options
author | Dan Armak <danarmak@gentoo.org> | 2002-03-29 16:26:20 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2002-03-29 16:26:20 +0000 |
commit | fb4be4ee3de7d05de159ffa35ed5e7fb1afbf3d8 (patch) | |
tree | 872ac85db3c210bfd0a13392d30f7cdbbeaddc85 /eclass | |
parent | Updated the SRC_URI, and also adjusted the ebuild so that a simple rename wil... (diff) | |
download | historical-fb4be4ee3de7d05de159ffa35ed5e7fb1afbf3d8.tar.gz historical-fb4be4ee3de7d05de159ffa35ed5e7fb1afbf3d8.tar.bz2 historical-fb4be4ee3de7d05de159ffa35ed5e7fb1afbf3d8.zip |
flip side of yesterday's kde3-cvs/autoconf trouble: add an autoconf-2.1 and automake-1.4 request to
all
kde2 apps, fixing e.g. kmerlin, mosfet
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde-functions.eclass | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/eclass/kde-functions.eclass b/eclass/kde-functions.eclass index f99f74925cd3..b5888bf488d7 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 or later # Author Dan Armak <danarmak@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/eclass/kde-functions.eclass,v 1.2 2002/03/28 22:20:13 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde-functions.eclass,v 1.3 2002/03/29 16:26:20 danarmak Exp $ # This contains everything except things that modify ebuild variables and functions (e.g. $P, src_compile() etc.) ECLASS=kde-functions @@ -28,9 +28,14 @@ set-kdedir() { debug-print-function $FUNCNAME $* - # something's wrong with my writing an if for this case "$1" in + 2*) + debug-print "$FUNCNAME: requesting autoconf-2.1, automake-1.4 for kde version 2*" + export WANT_AUTOCONF_2_1=1 + export WANT_AUTOMAKE_1_4=1 + ;; 3*) + debug-print "$FUNCNAME: requesting autoconf-2.5, automake-1.4 for kde version 3*" export WANT_AUTOCONF_2_5=1 export WANT_AUTOMAKE_1_4=1 ;; |