| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2007 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.eclass,v 1.67 2007/09/17 23:15:51 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.68 2007/09/18 13:25:38 vapier Exp $ |
| 4 | # |
4 | # |
| 5 | # Maintainer: base-system@gentoo.org |
5 | # Maintainer: base-system@gentoo.org |
| 6 | # |
6 | # |
| 7 | # This eclass is for handling autotooled software packages that |
7 | # This eclass is for handling autotooled software packages that |
| 8 | # needs to regenerate their build scripts. |
8 | # needs to regenerate their build scripts. |
| … | |
… | |
| 29 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
29 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
| 30 | case ${WANT_AUTOCONF} in |
30 | case ${WANT_AUTOCONF} in |
| 31 | none) _autoconf_atom="" ;; # some packages don't require autoconf at all |
31 | none) _autoconf_atom="" ;; # some packages don't require autoconf at all |
| 32 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
32 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
| 33 | latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.61" ;; |
33 | latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.61" ;; |
| 34 | *) _autoconf_atom=">=sys-devel/autoconf-FAIL" ;; |
34 | *) _autoconf_atom="INCORRECT-WANT_AUTOCONF-SETTING-IN-EBUILD" ;; |
| 35 | esac |
35 | esac |
| 36 | [[ ${WANT_AUTOCONF} == "latest" ]] && WANT_AUTOCONF="2.5" |
36 | [[ ${WANT_AUTOCONF} == "latest" ]] && WANT_AUTOCONF="2.5" |
| 37 | export WANT_AUTOCONF |
37 | export WANT_AUTOCONF |
| 38 | fi |
38 | fi |
| 39 | DEPEND="${_automake_atom} |
39 | DEPEND="${_automake_atom} |