| 1 | # Copyright 1999-2002 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
| 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.9 2003/02/28 09:15:04 vapier Exp $ |
|
|
4 | # |
| 3 | # Author: Martin Schlemmer <azarah@gentoo.org> |
5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
| 4 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.6 2002/10/25 19:55:52 vapier Exp $ |
6 | # |
| 5 | # The autotools eclass enables building of the apps that needs the latest autconf/automake. |
7 | # The autotools eclass enables building of the apps that needs the latest autconf/automake. |
| 6 | # |
8 | # |
| 7 | # NOTES: |
9 | # NOTES: |
| 8 | # |
10 | # |
| 9 | # This eclass was made to bridge the incompadibility problem of autoconf-2.13, |
11 | # This eclass was made to bridge the incompadibility problem of autoconf-2.13, |
| … | |
… | |
| 20 | # |
22 | # |
| 21 | # #<cut here> |
23 | # #<cut here> |
| 22 | # # Copyright 1999-2002 Gentoo Technologies, Inc. |
24 | # # Copyright 1999-2002 Gentoo Technologies, Inc. |
| 23 | # # Distributed under the terms of the GNU General Public License, v2 or later |
25 | # # Distributed under the terms of the GNU General Public License, v2 or later |
| 24 | # # Maintainer: John Doe <john@foo.com> |
26 | # # Maintainer: John Doe <john@foo.com> |
| 25 | # # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.6 2002/10/25 19:55:52 vapier Exp $ |
27 | # # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.9 2003/02/28 09:15:04 vapier Exp $ |
| 26 | # |
28 | # |
| 27 | # # If you need to set the versions different from in here, it *must* |
29 | # # If you need to set the versions different from in here, it *must* |
| 28 | # # be done before inherit.eclass is sourced |
30 | # # be done before inherit.eclass is sourced |
| 29 | # #ACONFVER=2.52f |
31 | # #ACONFVER=2.52f |
| 30 | # #AMAKEVER=1.5b |
32 | # #AMAKEVER=1.5b |
| … | |
… | |
| 86 | # ftp://alpha.gnu.org/gnu/automake/automake-${AMAKEVER}.tar.bz2" |
88 | # ftp://alpha.gnu.org/gnu/automake/automake-${AMAKEVER}.tar.bz2" |
| 87 | SRC_URI="ftp://ftp.gnu.org/gnu/autoconf/autoconf-${ACONFVER}.tar.bz2 |
89 | SRC_URI="ftp://ftp.gnu.org/gnu/autoconf/autoconf-${ACONFVER}.tar.bz2 |
| 88 | ftp://alpha.gnu.org/gnu/autoconf/autoconf-${ACONFVER}.tar.bz2 |
90 | ftp://alpha.gnu.org/gnu/autoconf/autoconf-${ACONFVER}.tar.bz2 |
| 89 | ftp://ftp.gnu.org/gnu/automake/automake-${AMAKEVER}.tar.bz2 |
91 | ftp://ftp.gnu.org/gnu/automake/automake-${AMAKEVER}.tar.bz2 |
| 90 | ftp://alpha.gnu.org/gnu/automake/automake-${AMAKEVER}.tar.bz2" |
92 | ftp://alpha.gnu.org/gnu/automake/automake-${AMAKEVER}.tar.bz2" |
| 91 | |
93 | |
| 92 | DEPEND="sys-devel/make |
94 | DEPEND="sys-devel/make |
| 93 | sys-devel/perl |
95 | sys-devel/perl |
| 94 | >=sys-devel/m4-1.4o-r2" |
96 | >=sys-devel/m4-1.4o-r2" |
| 95 | |
97 | |
| 96 | |
98 | |