| 1 | # Copyright 1999-2011 Gentoo Foundation |
1 | # Copyright 1999-2012 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/emboss.eclass,v 1.2 2011/08/22 04:46:31 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/emboss.eclass,v 1.3 2012/09/27 16:35:41 axs Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: emboss.eclass |
5 | # @ECLASS: emboss.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # sci-biology@gentoo.org |
7 | # sci-biology@gentoo.org |
| 8 | # jlec@gentoo.org |
8 | # jlec@gentoo.org |
| … | |
… | |
| 43 | # @DEFAULT_UNSET |
43 | # @DEFAULT_UNSET |
| 44 | # @DESCRIPTION: |
44 | # @DESCRIPTION: |
| 45 | # Extra config options passed to econf, similar to EXTRA_ECONF. |
45 | # Extra config options passed to econf, similar to EXTRA_ECONF. |
| 46 | |
46 | |
| 47 | case ${EAPI:-0} in |
47 | case ${EAPI:-0} in |
| 48 | 4) ;; |
48 | 4|5) ;; |
| 49 | *) die "this eclass doesn't support < EAPI 4" ;; |
49 | *) die "this eclass doesn't support < EAPI 4" ;; |
| 50 | esac |
50 | esac |
| 51 | |
51 | |
| 52 | inherit autotools eutils |
52 | inherit autotools eutils |
| 53 | |
53 | |