diff options
author | Dan Armak <danarmak@gentoo.org> | 2002-08-26 10:57:21 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2002-08-26 10:57:21 +0000 |
commit | a7d8a4a6b73520270732762c82888eb97a1eea19 (patch) | |
tree | f68b12ccfb720b3b7557ef8dcbec0fd82e0d1128 /eclass/kde.eclass | |
parent | More small fixes and cleanups (diff) | |
download | gentoo-2-a7d8a4a6b73520270732762c82888eb97a1eea19.tar.gz gentoo-2-a7d8a4a6b73520270732762c82888eb97a1eea19.tar.bz2 gentoo-2-a7d8a4a6b73520270732762c82888eb97a1eea19.zip |
replace the old fix with a very very simple 1-line one
Diffstat (limited to 'eclass/kde.eclass')
-rw-r--r-- | eclass/kde.eclass | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/eclass/kde.eclass b/eclass/kde.eclass index 5bae3bb0ea89..8e2951bce7c6 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.55 2002/08/26 10:07:10 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.56 2002/08/26 10:57:21 danarmak Exp $ # The kde eclass is inherited by all kde-* eclasses. Few ebuilds inherit straight from here. inherit base kde-functions ECLASS=kde @@ -39,6 +39,7 @@ kde_src_compile() { [ -z "$1" ] && kde_src_compile all cd ${S} + export kde_widgetdir="$KDEDIR/lib/kde3/plugins/designer" while [ "$1" ]; do @@ -56,21 +57,6 @@ kde_src_compile() { debug-print-section configure debug-print "$FUNCNAME::configure: myconf=$myconf" - # fix the infamous kde-widget problem group and other stuff - # by getting a new admin/ dir - if [ -d "$WORKDIR/admin-new" ]; then - - cd $S/admin - patch -p0 < $WORKDIR/admin-new/* - # stop make from regenerating stuff - touch -t 199001010000 acinclude.m4.in - cd $S - - # regenerate configure - rm -f configure configure.in config.h.in *.m4 - - fi - # This can happen with e.g. a cvs snapshot if [ ! -f "./configure" ]; then for x in Makefile.cvs admin/Makefile.common; do |