summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWulf Krueger <philantrop@gentoo.org>2008-04-06 14:28:23 +0000
committerWulf Krueger <philantrop@gentoo.org>2008-04-06 14:28:23 +0000
commitead1f590c24558c6ce849cee2c379f606b2c24c9 (patch)
treea1d3090ca0887b60ae6790383709e2dfb82d9eb7 /eclass/kde.eclass
parentx86 stable, bug #216149, remove old (diff)
downloadhistorical-ead1f590c24558c6ce849cee2c379f606b2c24c9.tar.gz
historical-ead1f590c24558c6ce849cee2c379f606b2c24c9.tar.bz2
historical-ead1f590c24558c6ce849cee2c379f606b2c24c9.zip
Removed obsolete unsermake support and unconditionally enabled --disable-dependency-tracking.
Diffstat (limited to 'eclass/kde.eclass')
-rw-r--r--eclass/kde.eclass7
1 files changed, 3 insertions, 4 deletions
diff --git a/eclass/kde.eclass b/eclass/kde.eclass
index 87d5cb552e36..5e6bf2035524 100644
--- a/eclass/kde.eclass
+++ b/eclass/kde.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.207 2008/03/18 17:53:49 zlin Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.208 2008/04/06 14:28:23 philantrop Exp $
# @ECLASS: kde.eclass
# @MAINTAINER:
@@ -230,7 +230,6 @@ kde_src_compile() {
# things that should access the real homedir
[[ -d "$REALHOME/.ccache" ]] && ln -sf "$REALHOME/.ccache" "$HOME/"
- [[ -n "$UNSERMAKE" ]] && addwrite "/usr/kde/unsermake"
while [[ "$1" ]]; do
@@ -239,7 +238,7 @@ kde_src_compile() {
debug-print-section myconf
myconf="$myconf --with-x --enable-mitshm $(use_with xinerama) --with-qt-dir=${QTDIR} --enable-mt --with-qt-libraries=${QTDIR}/$(get_libdir)"
# calculate dependencies separately from compiling, enables ccache to work on kde compiles
- [[ -z "$UNSERMAKE" ]] && myconf="$myconf --disable-dependency-tracking"
+ myconf="$myconf --disable-dependency-tracking"
if use debug ; then
myconf="$myconf --enable-debug=full --with-debug"
else
@@ -266,7 +265,7 @@ kde_src_compile() {
# rebuild configure script, etc
# This can happen with e.g. a cvs snapshot
- if [[ ! -f "./configure" ]] || [[ -n "$UNSERMAKE" ]]; then
+ if [[ ! -f "./configure" ]]; then
# This is needed to fix building with autoconf 2.60.
# Many thanks to who preferred such a stupid check rather
# than a working arithmetic comparison.