diff options
author | Dan Armak <danarmak@gentoo.org> | 2002-09-07 20:09:57 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2002-09-07 20:09:57 +0000 |
commit | 4405e1f37a696cd0ae9e84b2bf0decd247a2ae37 (patch) | |
tree | f629dc5f73ed1087f1d9e42e0fdff3f7eb342a2b /eclass/kde.eclass | |
parent | removed ld.so from packages.cdimage (diff) | |
download | gentoo-2-4405e1f37a696cd0ae9e84b2bf0decd247a2ae37.tar.gz gentoo-2-4405e1f37a696cd0ae9e84b2bf0decd247a2ae37.tar.bz2 gentoo-2-4405e1f37a696cd0ae9e84b2bf0decd247a2ae37.zip |
use autoconf 2.13 for kde-base 3.0.x ebuilds. add KDE_REMOVE_DIR function that removes a subdir of a module and prevents its being compiled.
Diffstat (limited to 'eclass/kde.eclass')
-rw-r--r-- | eclass/kde.eclass | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/eclass/kde.eclass b/eclass/kde.eclass index 8e2951bce7c6..fdb6418e3c1b 100644 --- a/eclass/kde.eclass +++ b/eclass/kde.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.eclass,v 1.56 2002/08/26 10:57:21 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.57 2002/09/07 20:09:57 danarmak Exp $ # The kde eclass is inherited by all kde-* eclasses. Few ebuilds inherit straight from here. inherit base kde-functions ECLASS=kde @@ -56,7 +56,10 @@ kde_src_compile() { configure) debug-print-section configure debug-print "$FUNCNAME::configure: myconf=$myconf" - + + [ -n "$KDE_REMOVE_DIR" ] && kde_remove_dir $KDE_REMOVE_DIR + + # rebuild configure script, etc # This can happen with e.g. a cvs snapshot if [ ! -f "./configure" ]; then for x in Makefile.cvs admin/Makefile.common; do |