diff options
Diffstat (limited to 'eclass/kde-dist.eclass')
-rw-r--r-- | eclass/kde-dist.eclass | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/eclass/kde-dist.eclass b/eclass/kde-dist.eclass index 9f023057f78f..4d19d852e144 100644 --- a/eclass/kde-dist.eclass +++ b/eclass/kde-dist.eclass @@ -1,17 +1,24 @@ # 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-dist.eclass,v 1.12 2002/05/11 09:57:59 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde-dist.eclass,v 1.13 2002/07/12 21:40:42 danarmak Exp $ # This is the kde-dist eclass for >=2.2.1 kde base packages. Don't use for kdelibs though :-) # Don't use it for e.g. kdevelop, koffice because of their separate versionnig schemes. inherit kde-base kde.org ECLASS=kde-dist +INHERITED="$INHERITED $ECLASS" need-kde $PV +SLOT="${KDEMAJORVER}.${KDEMINORVER}" + +# 3.1 prereleases +[ "$PV" == "3.1_alpha1" ] && S=${WORKDIR}/${PN}-3.0.6 + DESCRIPTION="KDE ${PV} - " HOMEPAGE="http://www.kde.org/" myconf="$myconf --enable-final" LICENSE="GPL-2" + |