summaryrefslogtreecommitdiff
path: root/eclass
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
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')
-rw-r--r--eclass/kde-dist.eclass3
-rw-r--r--eclass/kde-i18n.eclass4
-rw-r--r--eclass/kde.eclass6
-rw-r--r--eclass/koffice-i18n.eclass3
4 files changed, 6 insertions, 10 deletions
diff --git a/eclass/kde-dist.eclass b/eclass/kde-dist.eclass
index fb2b51a748fe..fe6422ca4aeb 100644
--- a/eclass/kde-dist.eclass
+++ b/eclass/kde-dist.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-dist.eclass,v 1.7 2002/01/04 12:06:28 danarmak Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/kde-dist.eclass,v 1.8 2002/04/02 23:00:18 danarmak Exp $
# This is the kde-dist eclass for >=2.2.1 kde base packages. Don't use for kdelibs though :-)
# Don't use it for e.g. kdevelop, koffice because of their separate versionnig schemes.
inherit kde-base kde.org
@@ -12,4 +12,3 @@ need-kde $PV
DESCRIPTION="KDE ${PV} - "
HOMEPAGE="http://www.kde.org/"
-myconf="$myconf --enable-final"
diff --git a/eclass/kde-i18n.eclass b/eclass/kde-i18n.eclass
index 98151ffd0b62..7848ee64f4af 100644
--- a/eclass/kde-i18n.eclass
+++ b/eclass/kde-i18n.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-i18n.eclass,v 1.12 2002/02/18 18:29:19 danarmak Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/kde-i18n.eclass,v 1.13 2002/04/02 23:00:18 danarmak Exp $
inherit kde kde.org
ECLASS=kde-i18n
@@ -11,8 +11,6 @@ HOMEPAGE="http://www.kde.org/"
need-kde ${PV}
-myconf="$myconf --enable-final"
-
SRC_URI="$SRC_URI http://www.ibiblio.org/gentoo/distfiles/kde-i18n-gentoo.patch"
kde-i18n_src_unpack() {
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)
diff --git a/eclass/koffice-i18n.eclass b/eclass/koffice-i18n.eclass
index 78c26bea5f79..c3d98e1a0c95 100644
--- a/eclass/koffice-i18n.eclass
+++ b/eclass/koffice-i18n.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/koffice-i18n.eclass,v 1.5 2002/01/04 12:06:28 danarmak Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/koffice-i18n.eclass,v 1.6 2002/04/02 23:00:18 danarmak Exp $
inherit kde
ECLASS=koffice-i18n
@@ -21,4 +21,3 @@ HOMEPAGE="http://www.koffice.org/"
DEPEND=">=app-office/koffice-${PV}"
-myconf="$myconf --enable-final"