diff options
author | Dan Armak <danarmak@gentoo.org> | 2001-12-30 13:58:20 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2001-12-30 13:58:20 +0000 |
commit | 166205028ce32d4f0fb6b6e8a819b97c90c62002 (patch) | |
tree | 4808b1a6ecfe1e39ee245428b213b2ac0fed3313 /eclass/kde.eclass | |
parent | New portage release -- 1.8.1 (diff) | |
download | gentoo-2-166205028ce32d4f0fb6b6e8a819b97c90c62002.tar.gz gentoo-2-166205028ce32d4f0fb6b6e8a819b97c90c62002.tar.bz2 gentoo-2-166205028ce32d4f0fb6b6e8a819b97c90c62002.zip |
added backward compatibility for need-kdelibs(). old ebuilds that use it need it to unmerge.
Diffstat (limited to 'eclass/kde.eclass')
-rw-r--r-- | eclass/kde.eclass | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/eclass/kde.eclass b/eclass/kde.eclass index 37717712b6e8..0310f51b5ad2 100644 --- a/eclass/kde.eclass +++ b/eclass/kde.eclass @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Dan Armak <danarmak@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.26 2001/12/29 17:41:37 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.27 2001/12/30 13:58:20 danarmak Exp $ # The kde eclass is inherited by all kde-* eclasses. Few ebuilds inherit straight from here. inherit autoconf base || die ECLASS=kde @@ -161,7 +161,12 @@ qtver-from-kdever() { } - +# compat +need-kdelibs() { + echo "WARNING: need-kdelibs() called, where need-kde() is correct. +If this happens at the unmerging of an old ebuild, disregard; otherwise report." + need-kde $* +} |