| 1 | # Copyright 1999-2010 Gentoo Foundation |
1 | # Copyright 1999-2010 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.7 2011/01/22 20:28:53 reavertm Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.8 2011/01/31 14:09:01 scarabeus Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: autotools-utils.eclass |
5 | # @ECLASS: autotools-utils.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Maciej Mrozowski <reavertm@gentoo.org> |
7 | # Maciej Mrozowski <reavertm@gentoo.org> |
| 8 | # @BLURB: common ebuild functions for autotools-based packages |
8 | # @BLURB: common ebuild functions for autotools-based packages |
| … | |
… | |
| 81 | # @CODE |
81 | # @CODE |
| 82 | |
82 | |
| 83 | # Keep variable names synced with cmake-utils and the other way around! |
83 | # Keep variable names synced with cmake-utils and the other way around! |
| 84 | |
84 | |
| 85 | case ${EAPI:-0} in |
85 | case ${EAPI:-0} in |
| 86 | 2|3) ;; |
86 | 2|3|4) ;; |
| 87 | *) die "EAPI=${EAPI} is not supported" ;; |
87 | *) die "EAPI=${EAPI} is not supported" ;; |
| 88 | esac |
88 | esac |
| 89 | |
89 | |
| 90 | inherit autotools base |
90 | inherit autotools base |
| 91 | |
91 | |