summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorCaleb Tennis <caleb@gentoo.org>2004-07-27 15:52:25 +0000
committerCaleb Tennis <caleb@gentoo.org>2004-07-27 15:52:25 +0000
commit5d345b9b9b67b2c5e670e7a43d693bfade63635e (patch)
tree1bece6d7908209192486ef515cadf90f6c7a8501 /eclass
parentadd java_pkg_postinst to pkg_postinst (Manifest recommit) (diff)
downloadgentoo-2-5d345b9b9b67b2c5e670e7a43d693bfade63635e.tar.gz
gentoo-2-5d345b9b9b67b2c5e670e7a43d693bfade63635e.tar.bz2
gentoo-2-5d345b9b9b67b2c5e670e7a43d693bfade63635e.zip
Don't perform the optional arts switch unless we are in >=3.3
Diffstat (limited to 'eclass')
-rw-r--r--eclass/kde.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/kde.eclass b/eclass/kde.eclass
index 8cbcb74f4191..f050a4a1df49 100644
--- a/eclass/kde.eclass
+++ b/eclass/kde.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.100 2004/07/23 18:23:47 axxo Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.101 2004/07/27 15:52:25 caleb Exp $
#
# Author Dan Armak <danarmak@gentoo.org>
#
@@ -88,7 +88,7 @@ kde_src_compile() {
else
myconf="$myconf --disable-debug --without-debug"
fi
- myconf="$myconf `use_with arts`"
+ [ "$KDEMINORVER" -ge 3 ] && myconf="$myconf `use_with arts`"
debug-print "$FUNCNAME: myconf: set to ${myconf}"
;;
configure)