1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# Author: Martin Schlemmer <azarah@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.6 2002/10/25 19:55:52 vapier Exp $
# The autotools eclass enables building of the apps that needs the latest autconf/automake.
#
# NOTES:
#
# This eclass was made to bridge the incompadibility problem of autoconf-2.13,
# autoconf-2.5x and automake-1.4x, automake-1.5x. Most packages needs
# autoconf-2.13 and automake-1.4x, but cannot work with the latest versions
# of these packages due to incompadibility, thus when we have a package that
# needs the latest versions of automake and autoconf, it begins to get a
# problem.
#
#
# Commented Example:
#
# The following is a commented template for how to use this eclass:
#
# #<cut here>
# # Copyright 1999-2002 Gentoo Technologies, Inc.
# # Distributed under the terms of the GNU General Public License, v2 or later
# # Maintainer: John Doe <john@foo.com>
# # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.6 2002/10/25 19:55:52 vapier Exp $
#
# # If you need to set the versions different from in here, it *must*
# # be done before inherit.eclass is sourced
# #ACONFVER=2.52f
# #AMAKEVER=1.5b
#
# # Source inherit.eclass and inherit AutoTools
# . /usr/portage/eclass/inherit.eclass
# inherit autotools
#
# # This is pretty standard.
# S=${WORKDIR}/${P}
# DESCRIPTION="My Application"
#
# # Here you *NEED* to have $SRC_URI as a source url to include the automake
# # and autoconf source tarballs
# SRC_URI="${SRC_URI}
# http://download.foo.com/files/${P}.tar.gz"
#
# HOMEPAGE="http://www.foo.com/"
#
# # Here you *NEED* to have "$DEPEND" as an depend to include the dependancies
# # of automake and autoconf.
# DEPEND="${DEPEND}
# foo-libs/libfoo"
#
# src_compile() {
#
# # This will install automake and autoconf in a tempory directory and
# # setup the environment. Do not forget!!!!!!!
# install_autotools
#
# # Now like normal
# ./configure --host=${CHOST} \
# --prefix=/usr || die
# emake || die
# }
#
# src_install() {
#
# # Still pretty standard to how you would normally do it
# make DESTDIR=${D} install || die
# dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO
# }
# #<cut here>
#
ECLASS=autotools
INHERITED="$INHERITED $ECLASS"
#[ -z "$ACONFVER" ] && ACONFVER=2.52f
#[ -z "$AMAKEVER" ] && AMAKEVER=1.5b
[ -z "$ACONFVER" ] && die "!!! You need to set \$ACONFVER *before* inheriting the eclass !!!"
[ -z "$AMAKEVER" ] && die "!!! You need to set \$AMAKEVER *before* inheriting the eclass !!!"
DESCRIPTION="Based on the $ECLASS eclass"
#ASRC_URI="ftp://ftp.gnu.org/gnu/autoconf/autoconf-${ACONFVER}.tar.bz2
# ftp://alpha.gnu.org/gnu/autoconf/autoconf-${ACONFVER}.tar.bz2
# ftp://ftp.gnu.org/gnu/automake/automake-${AMAKEVER}.tar.bz2
# ftp://alpha.gnu.org/gnu/automake/automake-${AMAKEVER}.tar.bz2"
SRC_URI="ftp://ftp.gnu.org/gnu/autoconf/autoconf-${ACONFVER}.tar.bz2
ftp://alpha.gnu.org/gnu/autoconf/autoconf-${ACONFVER}.tar.bz2
ftp://ftp.gnu.org/gnu/automake/automake-${AMAKEVER}.tar.bz2
ftp://alpha.gnu.org/gnu/automake/automake-${AMAKEVER}.tar.bz2"
DEPEND="sys-devel/make
sys-devel/perl
>=sys-devel/m4-1.4o-r2"
AUTO_S="${WORKDIR}"
AUTO_D="${T}/autotools"
fetch_autotools() {
local y
for y in ${ASRC_URI}
do
if [ ! -e ${DISTDIR}/${y##*/} ]
then
echo ">>> Fetching ${y##*/}..."
echo
local x
local _SRC_URI
for x in ${GENTOO_MIRRORS}
do
_SRC_URI="${_SRC_URI} ${x}/distfiles/${y##*/}"
done
_SRC_URI="${_SRC_URI} `queryhost.sh "${SRC_URI}"`"
for x in ${_SRC_URI}
do
if [ ! -e ${DISTDIR}/${y##*/} ]
then
if [ "${y##*/}" = "${x##*/}" ]
then
echo ">>> Trying site ${x}..."
eval "${FETCHCOMMAND}"
fi
fi
done
if [ ! -e ${DISTDIR}/${y##*/} ]
then
echo '!!!'" Couldn't download ${y##*/} needed by autotools.eclass. Aborting."
exit 1
fi
echo
fi
done
}
unpack_autotools() {
cd ${AUTO_S}
local x
for x in ${ASRC_URI}
do
unpack ${x##*/} || die "!!! Could not unpack ${x##*/} needed by autotools !!!"
done
}
install_autoconf() {
cd ${AUTO_S}/autoconf-${ACONFVER} || die "!!! Failed to build autoconf !!!"
./configure --prefix=${AUTO_D} \
--infodir=${AUTO_D}/share/info \
--mandir=${AUTO_D}/share/man \
--target=${CHOST} || die "!!! Failed to configure autoconf !!!"
emake || die "!!! Failed to build autoconf !!!"
make install || die "!!! Failed to install autoconf !!!"
}
install_automake() {
cd ${AUTO_S}/automake-${AMAKEVER} || die "!!! Failed to build automake !!!"
./configure --prefix=${AUTO_D} \
--infodir=${AUTO_D}/share/info \
--mandir=${AUTO_D}/share/man \
--target=${CHOST} || die "!!! Failed to configure automake !!!"
emake || die "!!! Failed to build automake !!!"
make install || die "!!! Failed to install automake !!!"
}
install_autotools() {
if [ "${SRC_URI/autoconf/}" = "$SRC_URI" ] || [ "${SRC_URI/automake/}" = "$SRC_URI" ]
then
echo "!!! \$SRC_URI was not set properly !!! It needs to include \${SRC_URI}"
exit 1
fi
if [ "${DEPEND/make/}" = "$DEPEND" ] || [ "${DEPEND/perl/}" = "$DEPEND" ] || \
[ "${DEPEND/m4/}" = "$DEPEND" ]
then
echo "!!! \$DEPEND was not set properly !!! It needs to include \${DEPEND}"
exit 1
fi
mkdir -p ${AUTO_S}
mkdir -p ${AUTO_D}/{bin,etc,lib,include,share} \
|| die "!!! Could not create needed directories for autotools !!!"
# fetch_autotools
# unpack_autotools
install_autoconf
install_automake
export PATH=${AUTO_D}/bin:${PATH}
cd ${S}
ln -sf ${AUTO_D}/share/automake/depcomp ${S}/depcomp
}
|