diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2009-03-09 19:41:26 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2009-03-09 19:41:26 +0000 |
commit | aa31561cf695d9c038bc144b729479aba2508c5d (patch) | |
tree | bd351acbadebe142d97cc06a2ef910807565fe7f /eclass/kde4-functions.eclass | |
parent | Version bump. Per bug #256463. (diff) | |
download | historical-aa31561cf695d9c038bc144b729479aba2508c5d.tar.gz historical-aa31561cf695d9c038bc144b729479aba2508c5d.tar.bz2 historical-aa31561cf695d9c038bc144b729479aba2508c5d.zip |
Sync kde4 eclasses with kde-testing (review by scarabeus and jmbsvicetto).
Diffstat (limited to 'eclass/kde4-functions.eclass')
-rw-r--r-- | eclass/kde4-functions.eclass | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/eclass/kde4-functions.eclass b/eclass/kde4-functions.eclass index 5e25c9017b21..528b57fb5614 100644 --- a/eclass/kde4-functions.eclass +++ b/eclass/kde4-functions.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-functions.eclass,v 1.13 2009/03/01 11:44:09 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-functions.eclass,v 1.14 2009/03/09 19:41:26 scarabeus Exp $ # @ECLASS: kde4-functions.eclass # @MAINTAINER: @@ -12,10 +12,11 @@ # @ECLASS-VARIABLE: EAPI # @DESCRIPTION: -# By default kde eclass wants eapi 2 which might be redefinable. -case ${EAPI} in +# By default kde4 eclasses wants eapi 2 which might be redefinable to newer +# versions. +case ${EAPI:-0} in 2) : ;; - *) die "No way! EAPI older than 2 is not supported." ;; + *) die "No way! EAPI other than 2 is not supported for now." ;; esac # @ECLASS-VARIABLE: KDEBASE |