summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorDan Armak <danarmak@gentoo.org>2002-01-16 20:45:37 +0000
committerDan Armak <danarmak@gentoo.org>2002-01-16 20:45:37 +0000
commit517777190e7618ae93bcd4ed3d195e97083480ab (patch)
tree35ca4bd004b001548841e5a19c402d8163f6dd8c /eclass
parentnew version; removed older (diff)
downloadgentoo-2-517777190e7618ae93bcd4ed3d195e97083480ab.tar.gz
gentoo-2-517777190e7618ae93bcd4ed3d195e97083480ab.tar.bz2
gentoo-2-517777190e7618ae93bcd4ed3d195e97083480ab.zip
i just returned from my forced ofline period of 3 days and found out that there are lots of kde problems. for starters
i've hunted down this typo which set KDEDIR to /usr/kde/3 instead of /usr/kde/2, or didn't set KDEDIR at all (ouch!) - terribly sorry! I'll try to fix everything as fast as i can, hopefully by tomorrow evening all but some relatively obscure issues will be worked out.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/kde-dirs.eclass10
1 files changed, 7 insertions, 3 deletions
diff --git a/eclass/kde-dirs.eclass b/eclass/kde-dirs.eclass
index 92ee9ab5904b..dfc9e4be0561 100644
--- a/eclass/kde-dirs.eclass
+++ b/eclass/kde-dirs.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-dirs.eclass,v 1.1 2002/01/10 20:41:29 danarmak Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/kde-dirs.eclass,v 1.2 2002/01/16 20:45:37 danarmak Exp $
# The kde eclass is inherited by all kde-* eclasses. Few ebuilds inherit straight from here.
ECLASS=kde-dirs
@@ -28,8 +28,8 @@ set-kdedir() {
[ -z "$KDE2DIR" ] && export KDE2DIR="/usr/kde/2"
[ -z "$KDE3DIR" ] && export KDE3DIR="/usr/kde/3"
# not defined at all by default
- [ -z "$KDE2LIBSDIR" ] && export KDE2LIBSDIR="$KDE2DIR"
- [ -z "$KDE3LIBSDIR" ] && export KDE2LIBSDIR="$KDE3DIR"
+ [ -z "$KDE2LIBSDIR" ] && export KDE2LIBSDIR="$KDE2DIR"
+ [ -z "$KDE3LIBSDIR" ] && export KDE3LIBSDIR="$KDE3DIR"
local KDEVER
KDEVER=$1
@@ -48,6 +48,10 @@ set-kdedir() {
3) export KDEDIR=${KDE3LIBSDIR};;
esac
+ echo in set-kdedir, info:
+ echo "KDEDIR=$KDEDIR; KDE2DIR=$KDE2DIR; KDE3DIR=$KDE3DIR"
+ echo "KDE2LIBSDIR=$KDE2LIBSDIR KDE3LIBSDIR=$KDE3LIBSDIR; KDEMAJORVER=$KDEMAJORVER; KDEVER=$KDEVER"
+
debug-print "$FUNCNAME: result: KDEDIR=$KDEDIR"
}