diff options
author | Dan Armak <danarmak@gentoo.org> | 2003-04-27 13:49:00 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2003-04-27 13:49:00 +0000 |
commit | f3dd149e34c2c27bbe532eac700a0b9ebcda5776 (patch) | |
tree | 9b5b4454c1b8edea8c34f6c65b778b320ddd8df0 /eclass/kde-functions.eclass | |
parent | changes necessary for eclass cleanup. do not inherit kde.org, use a local SRC... (diff) | |
download | historical-f3dd149e34c2c27bbe532eac700a0b9ebcda5776.tar.gz historical-f3dd149e34c2c27bbe532eac700a0b9ebcda5776.tar.bz2 historical-f3dd149e34c2c27bbe532eac700a0b9ebcda5776.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.eclass | 8 |
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 |