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 | 55d7c65b4a1d2ec473d549b009947191ef0fca20 (patch) | |
tree | ef4ff55dbe904ec143d4bcd71d27bf86a4f06215 /eclass/kde-base.eclass | |
parent | changes necessary for eclass cleanup. do not inherit kde.org, use a local SRC... (diff) | |
download | gentoo-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-base.eclass')
-rw-r--r-- | eclass/kde-base.eclass | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/eclass/kde-base.eclass b/eclass/kde-base.eclass index 0c8c3c85c526..6c6ee7308d1f 100644 --- a/eclass/kde-base.eclass +++ b/eclass/kde-base.eclass @@ -1,17 +1,11 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kde-base.eclass,v 1.22 2003/02/28 09:15:04 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde-base.eclass,v 1.23 2003/04/27 13:49:00 danarmak Exp $ # # Author Dan Armak <danarmak@gentoo.org> # -# This is the kde ebuild for std. kde-dependant apps which follow configure/make/make install +# This was the kde ebuild for std. kde-dependant apps which follow configure/make/make install # procedures and have std. configure options. +# it is now deprecated; apps should inherit kde directly. inherit kde -ECLASS=kde-base -INHERITED="$INHERITED $ECLASS" - -newdepend /c - -DESCRIPTION="Based on the $ECLASS eclass" -HOMEPAGE="http://apps.kde.com/" |