summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Armak <danarmak@gentoo.org>2002-04-02 23:00:18 +0000
committerDan Armak <danarmak@gentoo.org>2002-04-02 23:00:18 +0000
commitf9dc249388bf3dee1e69084519b3171fdd973c6b (patch)
treea50d842ade2ac5d0d489256b63d3c2aad0e633d3 /eclass/kde.eclass
parentSpaces in optional dep listing (diff)
downloadgentoo-2-f9dc249388bf3dee1e69084519b3171fdd973c6b.tar.gz
gentoo-2-f9dc249388bf3dee1e69084519b3171fdd973c6b.tar.bz2
gentoo-2-f9dc249388bf3dee1e69084519b3171fdd973c6b.zip
changed --enable-debug to --enable-debug=full when $DEBUG is set
added --enable-final to all builds, hopefully will not cause problems
Diffstat (limited to 'eclass/kde.eclass')
-rw-r--r--eclass/kde.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/kde.eclass b/eclass/kde.eclass
index 8cd34f5468b6..6819e97e642c 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.46 2002/03/28 22:20:13 danarmak Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.47 2002/04/02 23:00:18 danarmak Exp $
# The kde eclass is inherited by all kde-* eclasses. Few ebuilds inherit straight from here.
inherit base kde-functions
ECLASS=kde
@@ -23,14 +23,14 @@ kde_src_compile() {
case $1 in
myconf)
debug-print-section myconf
- myconf="$myconf --host=${CHOST} --with-x --enable-mitshm --with-xinerama --with-qt-dir=${QTDIR}"
+ myconf="$myconf --host=${CHOST} --with-x --enable-mitshm --with-xinerama --with-qt-dir=${QTDIR} --enable-final"
case $KDEMAJORVER in
2) myconf="$myconf --prefix=${KDE2DIR}";;
3) myconf="$myconf --prefix=${KDE3DIR}";;
*) echo "!!! $ECLASS: $FUNCNAME: myconf: could not set --prefix based on \$KDEMAJOVER=\"$KDEMAJORVER\"" && exit 1;;
esac
use qtmt && myconf="$myconf --enable-mt"
- [ -n "$DEBUG" ] && myconf="$myconf --enable-debug --with-debug" || myconf="$myconf --disable-debug --without-debug"
+ [ -n "$DEBUG" ] && myconf="$myconf --enable-debug=full --with-debug" || myconf="$myconf --disable-debug --without-debug"
debug-print "$FUNCNAME: myconf: set to ${myconf}"
;;
configure)