| 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.64 2007/01/19 23:39:29 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.66 2007/05/30 15:45:01 cardoe Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Diego Pettenò <flameeyes@gentoo.org> |
5 | # Maintainer: base-system@gentoo.org |
| 6 | # Enhancements: Martin Schlemmer <azarah@gentoo.org> |
|
|
| 7 | # |
6 | # |
| 8 | # This eclass is for handling autotooled software packages that |
7 | # This eclass is for handling autotooled software packages that |
| 9 | # needs to regenerate their build scripts. |
8 | # needs to regenerate their build scripts. |
| 10 | # |
9 | # |
| 11 | # NB: If you add anything, please comment it! |
10 | # NB: If you add anything, please comment it! |
| … | |
… | |
| 63 | # eautoconf - Runs autoconf. |
62 | # eautoconf - Runs autoconf. |
| 64 | # eautoheader - Runs autoheader. |
63 | # eautoheader - Runs autoheader. |
| 65 | # eautomake - Runs automake |
64 | # eautomake - Runs automake |
| 66 | # |
65 | # |
| 67 | |
66 | |
| 68 | # XXX: M4DIR should be depreciated |
67 | # XXX: M4DIR should be deprecated |
| 69 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
68 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
| 70 | AT_GNUCONF_UPDATE="no" |
69 | AT_GNUCONF_UPDATE="no" |
| 71 | |
70 | |
| 72 | |
71 | |
| 73 | # This function mimes the behavior of autoreconf, but uses the different |
72 | # This function mimes the behavior of autoreconf, but uses the different |