summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorDavide Pesavento <pesa@gentoo.org>2015-12-20 02:51:59 +0100
committerDavide Pesavento <pesa@gentoo.org>2015-12-20 02:51:59 +0100
commitf563c87e37651a4a999696579de9b30bb77ba80a (patch)
tree9c267140a90c1684cf475a36666636993aa832b4 /eclass
parentb2b87d777048f495c5e72fec1f22b1389d6b2d82 (diff)
downloadgentoo-f563c87e37651a4a999696579de9b30bb77ba80a.tar.gz
gentoo-f563c87e37651a4a999696579de9b30bb77ba80a.tar.xz
qt4-r2.eclass: ban for EAPI=6
Diffstat (limited to 'eclass')
-rw-r--r--eclass/qt4-r2.eclass8
1 files changed, 5 insertions, 3 deletions
diff --git a/eclass/qt4-r2.eclass b/eclass/qt4-r2.eclass
index 964233bf64c..5a95ba0ab47 100644
--- a/eclass/qt4-r2.eclass
+++ b/eclass/qt4-r2.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -8,11 +8,13 @@
# @BLURB: Eclass for Qt4-based packages, second edition.
# @DESCRIPTION:
# This eclass contains various functions that may be useful when
-# dealing with packages using Qt4 libraries. Requires EAPI=2 or later.
+# dealing with packages using Qt4 libraries. Supports only EAPIs
+# 2, 3, 4, and 5. Use qmake-utils.eclass in EAPI 6 and later.
case ${EAPI} in
2|3|4|5) : ;;
- *) die "qt4-r2.eclass: unsupported EAPI=${EAPI:-0}" ;;
+ 6) die "qt4-r2.eclass is banned in EAPI 6 and later" ;;
+ *) die "qt4-r2.eclass: unsupported EAPI=${EAPI:-0}" ;;
esac
inherit base eutils qmake-utils