summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2011-03-22 17:20:50 +0000
committerMike Frysinger <vapier@gentoo.org>2011-03-22 17:20:50 +0000
commit9c50c0d95655a03f9c190befeaf79d007912f652 (patch)
treee2352fcc3c258cf59d28b44c5f79dc2e2c9f4de7 /eclass
parentInitial ebuild #357259 by Azamat H. Hackimov. (diff)
downloadhistorical-9c50c0d95655a03f9c190befeaf79d007912f652.tar.gz
historical-9c50c0d95655a03f9c190befeaf79d007912f652.tar.bz2
historical-9c50c0d95655a03f9c190befeaf79d007912f652.zip
allow EAPI=3 as this eclass works (ignoring prefix, but that's #336626)
Diffstat (limited to 'eclass')
-rw-r--r--eclass/games.eclass5
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/games.eclass b/eclass/games.eclass
index 4deff1a044f9..aae12a302a65 100644
--- a/eclass/games.eclass
+++ b/eclass/games.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/games.eclass,v 1.142 2010/08/31 17:04:48 nyhm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.143 2011/03/22 17:20:50 vapier Exp $
# devlist: {vapier,wolf31o2,mr_bones_}@gentoo.org -> games@gentoo.org
#
@@ -12,7 +12,8 @@ inherit base multilib toolchain-funcs eutils
case ${EAPI:-0} in
0|1) EXPORT_FUNCTIONS pkg_setup src_compile pkg_preinst pkg_postinst ;;
- 2) EXPORT_FUNCTIONS pkg_setup src_configure src_compile pkg_preinst pkg_postinst ;;
+ 2|3) EXPORT_FUNCTIONS pkg_setup src_configure src_compile pkg_preinst pkg_postinst ;;
+ *) die "no support for EAPI=${EAPI} yet" ;;
esac
DESCRIPTION="Based on the ${ECLASS} eclass"