summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Armak <danarmak@gentoo.org>2003-04-27 13:49:00 +0000
committerDan Armak <danarmak@gentoo.org>2003-04-27 13:49:00 +0000
commit55d7c65b4a1d2ec473d549b009947191ef0fca20 (patch)
treeef4ff55dbe904ec143d4bcd71d27bf86a4f06215 /eclass/kde-functions.eclass
parentchanges necessary for eclass cleanup. do not inherit kde.org, use a local SRC... (diff)
downloadgentoo-2-55d7c65b4a1d2ec473d549b009947191ef0fca20.tar.gz
gentoo-2-55d7c65b4a1d2ec473d549b009947191ef0fca20.tar.bz2
gentoo-2-55d7c65b4a1d2ec473d549b009947191ef0fca20.zip
I'm cleaning up the kde eclasses. It is a gradual process so that i can commit it into portage
piecemeal. <changeset #1> Done: - deprecated kde-base. it is now empty and does nothing except inheriting kde. apps should now inherit kde directly. the deps on glibc and gcc that kde-base added are not necessary because they are in all profiles' system packages lists anyway. - deprecated kde-pre, no ebuild was using it any longer. - deprecated kde.org. moved kde.org contents into kde-dist, since that's almost the only place kde.org was being inherited from. ebuilds that need changing: kdelibs, kdelibs-apidocs - stopped using newdepend /c. gcc and glibc are in the sysytem packages list in every profile anyway, and our other ebuilds don't really keep track of such deps. Changes done to ebuilds so far: - kdelibs: don't inherit kde.org. don't call newdepend /c. - kdelibs-apidocs: don't inherit kde.org
Diffstat (limited to 'eclass/kde-functions.eclass')
-rw-r--r--eclass/kde-functions.eclass8
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/kde-functions.eclass b/eclass/kde-functions.eclass
index 37a51ce22c37..3348668159fb 100644
--- a/eclass/kde-functions.eclass
+++ b/eclass/kde-functions.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/kde-functions.eclass,v 1.54 2003/04/08 17:48:12 danarmak Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/kde-functions.eclass,v 1.55 2003/04/27 13:49:00 danarmak Exp $
#
# Author Dan Armak <danarmak@gentoo.org>
#
@@ -59,7 +59,7 @@ need-kde() {
# ask for autotools
case "$KDEVER" in
- 2*)
+ 2*)
need-autoconf 2.1
need-automake 1.4
;;
@@ -83,7 +83,7 @@ need-kde() {
# do nothing
debug-print "$FUNCNAME: NEED_KDE_DONT_ADD_KDELIBS_DEP set, complying with request"
elif [ "${INHERITED//kde-dist}" != "$INHERITED" ]; then
- # if we're a kde-base package, we need an exact version of kdelibs
+ # if we're a kde-base package, we need an exact version of kdelibs
# to compile correctly.
# all kinds of special cases live here.
# goes to show this code is awfully inflexible, i guess.
@@ -98,7 +98,7 @@ need-kde() {
newdepend "~kde-base/kdelibs-${KDEVER}"
fi
else
- # everything else only needs a minimum version
+ # everything else only needs a minimum version
if [ "$KDEMAJORVER" == "2" ]; then
newdepend "=kde-base/kdelibs-2.2*"
else