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 | 8dc5554e102512af5ad7185feacb7f2c1cc7e536 (patch) | |
tree | d831964abe5e2a2d77ec0a07cdd9dc6da1e91345 /eclass | |
parent | Updated the SRC_URI, and also adjusted the ebuild so that a simple rename wil... (diff) | |
download | gentoo-2-8dc5554e102512af5ad7185feacb7f2c1cc7e536.tar.gz gentoo-2-8dc5554e102512af5ad7185feacb7f2c1cc7e536.tar.bz2 gentoo-2-8dc5554e102512af5ad7185feacb7f2c1cc7e536.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 ;; |