| 1 |
# Copyright 1999-2008 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.74 2008/04/22 22:38:22 vapier Exp $
|
| 4 |
#
|
| 5 |
# Maintainer: base-system@gentoo.org
|
| 6 |
#
|
| 7 |
# This eclass is for handling autotooled software packages that
|
| 8 |
# needs to regenerate their build scripts.
|
| 9 |
#
|
| 10 |
# NB: If you add anything, please comment it!
|
| 11 |
|
| 12 |
inherit eutils libtool
|
| 13 |
|
| 14 |
[[ -z ${WANT_AUTOCONF} ]] && WANT_AUTOCONF="latest"
|
| 15 |
[[ -z ${WANT_AUTOMAKE} ]] && WANT_AUTOMAKE="latest"
|
| 16 |
|
| 17 |
_automake_atom="sys-devel/automake"
|
| 18 |
_autoconf_atom="sys-devel/autoconf"
|
| 19 |
if [[ -n ${WANT_AUTOMAKE} ]]; then
|
| 20 |
case ${WANT_AUTOMAKE} in
|
| 21 |
none) _automake_atom="" ;; # some packages don't require automake at all
|
| 22 |
latest) _automake_atom="=sys-devel/automake-1.10*" ;;
|
| 23 |
*) _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" ;;
|
| 24 |
esac
|
| 25 |
[[ ${WANT_AUTOMAKE} == "latest" ]] && WANT_AUTOMAKE="1.10"
|
| 26 |
export WANT_AUTOMAKE
|
| 27 |
fi
|
| 28 |
|
| 29 |
if [[ -n ${WANT_AUTOCONF} ]] ; then
|
| 30 |
case ${WANT_AUTOCONF} in
|
| 31 |
none) _autoconf_atom="" ;; # some packages don't require autoconf at all
|
| 32 |
2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;;
|
| 33 |
latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.61" ;;
|
| 34 |
*) _autoconf_atom="INCORRECT-WANT_AUTOCONF-SETTING-IN-EBUILD" ;;
|
| 35 |
esac
|
| 36 |
[[ ${WANT_AUTOCONF} == "latest" ]] && WANT_AUTOCONF="2.5"
|
| 37 |
export WANT_AUTOCONF
|
| 38 |
fi
|
| 39 |
DEPEND="${_automake_atom}
|
| 40 |
${_autoconf_atom}
|
| 41 |
sys-devel/libtool"
|
| 42 |
RDEPEND=""
|
| 43 |
unset _automake_atom _autoconf_atom
|
| 44 |
|
| 45 |
# Variables:
|
| 46 |
#
|
| 47 |
# AT_M4DIR - Additional director(y|ies) aclocal should search
|
| 48 |
# AM_OPTS - Additional options to pass to automake during
|
| 49 |
# eautoreconf call.
|
| 50 |
# AT_NOELIBTOOLIZE - Don't run elibtoolize command if set to 'yes',
|
| 51 |
# useful when elibtoolize needs to be ran with
|
| 52 |
# particular options
|
| 53 |
|
| 54 |
# Functions:
|
| 55 |
#
|
| 56 |
# eautoreconf() - Should do a full autoreconf - normally what most people
|
| 57 |
# will be interested in. Also should handle additional
|
| 58 |
# directories specified by AC_CONFIG_SUBDIRS.
|
| 59 |
# eaclocal() - Runs aclocal. Respects AT_M4DIR for additional directories
|
| 60 |
# to search for macro's.
|
| 61 |
# _elibtoolize() - Runs libtoolize. Note the '_' prefix .. to not collide
|
| 62 |
# with elibtoolize() from libtool.eclass
|
| 63 |
# eautoconf - Runs autoconf.
|
| 64 |
# eautoheader - Runs autoheader.
|
| 65 |
# eautomake - Runs automake
|
| 66 |
#
|
| 67 |
|
| 68 |
# XXX: M4DIR should be deprecated
|
| 69 |
AT_M4DIR=${AT_M4DIR:-${M4DIR}}
|
| 70 |
AT_GNUCONF_UPDATE="no"
|
| 71 |
|
| 72 |
|
| 73 |
# This function mimes the behavior of autoreconf, but uses the different
|
| 74 |
# eauto* functions to run the tools. It doesn't accept parameters, but
|
| 75 |
# the directory with include files can be specified with AT_M4DIR variable.
|
| 76 |
eautoreconf() {
|
| 77 |
local pwd=$(pwd) x auxdir
|
| 78 |
|
| 79 |
if [[ -z ${AT_NO_RECURSIVE} ]]; then
|
| 80 |
# Take care of subdirs
|
| 81 |
for x in $(autotools_get_subdirs); do
|
| 82 |
if [[ -d ${x} ]] ; then
|
| 83 |
cd "${x}"
|
| 84 |
AT_NOELIBTOOLIZE="yes" eautoreconf
|
| 85 |
cd "${pwd}"
|
| 86 |
fi
|
| 87 |
done
|
| 88 |
fi
|
| 89 |
|
| 90 |
auxdir=$(autotools_get_auxdir)
|
| 91 |
|
| 92 |
einfo "Running eautoreconf in '$(pwd)' ..."
|
| 93 |
[[ -n ${auxdir} ]] && mkdir -p ${auxdir}
|
| 94 |
eaclocal
|
| 95 |
if ${LIBTOOLIZE:-libtoolize} -n --install >& /dev/null ; then
|
| 96 |
_elibtoolize --copy --force --install
|
| 97 |
else
|
| 98 |
_elibtoolize --copy --force
|
| 99 |
fi
|
| 100 |
eautoconf
|
| 101 |
eautoheader
|
| 102 |
FROM_EAUTORECONF="yes" eautomake ${AM_OPTS}
|
| 103 |
|
| 104 |
[[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0
|
| 105 |
|
| 106 |
# Call it here to prevent failures due to elibtoolize called _before_
|
| 107 |
# eautoreconf.
|
| 108 |
elibtoolize
|
| 109 |
|
| 110 |
return 0
|
| 111 |
}
|
| 112 |
|
| 113 |
# These functions runs the autotools using autotools_run_tool with the
|
| 114 |
# specified parametes. The name of the tool run is the same of the function
|
| 115 |
# without e prefix.
|
| 116 |
# They also force installing the support files for safety.
|
| 117 |
eaclocal() {
|
| 118 |
local aclocal_opts
|
| 119 |
|
| 120 |
local amflags_file
|
| 121 |
for amflags_file in GNUmakefile.am Makefile.am GNUmakefile.in Makefile.in ; do
|
| 122 |
[[ -e ${amflags_file} ]] || continue
|
| 123 |
aclocal_opts=$(sed -n '/^ACLOCAL_AMFLAGS[[:space:]]*=/s:[^=]*=::p' ${amflags_file})
|
| 124 |
eval aclocal_opts=\"${aclocal_opts}\"
|
| 125 |
break
|
| 126 |
done
|
| 127 |
|
| 128 |
if [[ -n ${AT_M4DIR} ]] ; then
|
| 129 |
for x in ${AT_M4DIR} ; do
|
| 130 |
case "${x}" in
|
| 131 |
"-I")
|
| 132 |
# We handle it below
|
| 133 |
;;
|
| 134 |
*)
|
| 135 |
[[ ! -d ${x} ]] && ewarn "eaclocal: '${x}' does not exist"
|
| 136 |
aclocal_opts="${aclocal_opts} -I ${x}"
|
| 137 |
;;
|
| 138 |
esac
|
| 139 |
done
|
| 140 |
fi
|
| 141 |
|
| 142 |
[[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \
|
| 143 |
autotools_run_tool aclocal "$@" ${aclocal_opts}
|
| 144 |
}
|
| 145 |
|
| 146 |
_elibtoolize() {
|
| 147 |
local opts
|
| 148 |
local lttest
|
| 149 |
|
| 150 |
# Check if we should run libtoolize (AM_PROG_LIBTOOL is an older macro,
|
| 151 |
# check for both it and the current AC_PROG_LIBTOOL)
|
| 152 |
lttest="$(autotools_check_macro "AC_PROG_LIBTOOL")$(autotools_check_macro "AM_PROG_LIBTOOL")"
|
| 153 |
[[ -n $lttest ]] || return 0
|
| 154 |
|
| 155 |
[[ -f GNUmakefile.am || -f Makefile.am ]] && opts="--automake"
|
| 156 |
|
| 157 |
[[ "${USERLAND}" == "Darwin" ]] && LIBTOOLIZE="glibtoolize"
|
| 158 |
autotools_run_tool ${LIBTOOLIZE:-libtoolize} "$@" ${opts}
|
| 159 |
|
| 160 |
# Need to rerun aclocal
|
| 161 |
eaclocal
|
| 162 |
}
|
| 163 |
|
| 164 |
eautoheader() {
|
| 165 |
# Check if we should run autoheader
|
| 166 |
[[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0
|
| 167 |
NO_FAIL=1 autotools_run_tool autoheader "$@"
|
| 168 |
}
|
| 169 |
|
| 170 |
eautoconf() {
|
| 171 |
if [[ ! -f configure.ac && ! -f configure.in ]] ; then
|
| 172 |
echo
|
| 173 |
eerror "No configure.{ac,in} present in '$(pwd | sed -e 's:.*/::')'!"
|
| 174 |
echo
|
| 175 |
die "No configure.{ac,in} present!"
|
| 176 |
fi
|
| 177 |
|
| 178 |
autotools_run_tool autoconf "$@"
|
| 179 |
}
|
| 180 |
|
| 181 |
eautomake() {
|
| 182 |
local extra_opts
|
| 183 |
local makefile_name
|
| 184 |
|
| 185 |
if [[ -f GNUmakefile.am ]]; then
|
| 186 |
makefile_name="GNUmakefile"
|
| 187 |
elif [[ -f Makefile.am ]]; then
|
| 188 |
makefile_name="Makefile"
|
| 189 |
else
|
| 190 |
return 0
|
| 191 |
fi
|
| 192 |
|
| 193 |
if [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name}.in ]]; then
|
| 194 |
local used_automake
|
| 195 |
local installed_automake
|
| 196 |
|
| 197 |
installed_automake=$(automake --version | head -n 1 | \
|
| 198 |
sed -e 's:.*(GNU automake) ::')
|
| 199 |
used_automake=$(head -n 1 < ${makefile_name}.in | \
|
| 200 |
sed -e 's:.*by automake \(.*\) from .*:\1:')
|
| 201 |
|
| 202 |
if [[ ${installed_automake} != ${used_automake} ]]; then
|
| 203 |
einfo "Automake used for the package (${used_automake}) differs from"
|
| 204 |
einfo "the installed version (${installed_automake})."
|
| 205 |
eautoreconf
|
| 206 |
return 0
|
| 207 |
fi
|
| 208 |
fi
|
| 209 |
|
| 210 |
[[ -f INSTALL && -f AUTHORS && -f ChangeLog && -f NEWS ]] \
|
| 211 |
|| extra_opts="${extra_opts} --foreign"
|
| 212 |
|
| 213 |
# --force-missing seems not to be recognized by some flavours of automake
|
| 214 |
autotools_run_tool automake --add-missing --copy ${extra_opts} "$@"
|
| 215 |
}
|
| 216 |
|
| 217 |
# Internal function to run an autotools' tool
|
| 218 |
autotools_run_tool() {
|
| 219 |
if [[ ${EBUILD_PHASE} != "unpack" ]]; then
|
| 220 |
ewarn "QA Warning: running $1 in ${EBUILD_PHASE} phase"
|
| 221 |
fi
|
| 222 |
|
| 223 |
local STDERR_TARGET="${T}/$$.out"
|
| 224 |
local ris
|
| 225 |
|
| 226 |
printf "***** $1 *****\n***** $*\n\n" > "${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/}"
|
| 227 |
|
| 228 |
ebegin "Running $@"
|
| 229 |
"$@" >> "${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/}" 2>&1
|
| 230 |
ris=$?
|
| 231 |
eend ${ris}
|
| 232 |
|
| 233 |
if [[ ${ris} != 0 && ${NO_FAIL} != 1 ]]; then
|
| 234 |
echo
|
| 235 |
eerror "Failed Running $1 !"
|
| 236 |
eerror
|
| 237 |
eerror "Include in your bugreport the contents of:"
|
| 238 |
eerror
|
| 239 |
eerror " ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/}"
|
| 240 |
echo
|
| 241 |
die "Failed Running $1 !"
|
| 242 |
fi
|
| 243 |
}
|
| 244 |
|
| 245 |
# Internal function to check for support
|
| 246 |
autotools_check_macro() {
|
| 247 |
[[ -f configure.ac || -f configure.in ]] && \
|
| 248 |
WANT_AUTOCONF="2.5" autoconf --trace=$1 2>/dev/null
|
| 249 |
return 0
|
| 250 |
}
|
| 251 |
|
| 252 |
# Internal function to get additional subdirs to configure
|
| 253 |
autotools_get_subdirs() {
|
| 254 |
local subdirs_scan_out
|
| 255 |
|
| 256 |
subdirs_scan_out=$(autotools_check_macro "AC_CONFIG_SUBDIRS")
|
| 257 |
[[ -n ${subdirs_scan_out} ]] || return 0
|
| 258 |
|
| 259 |
echo "${subdirs_scan_out}" | gawk \
|
| 260 |
'($0 !~ /^[[:space:]]*(#|dnl)/) {
|
| 261 |
if (match($0, /AC_CONFIG_SUBDIRS:(.*)$/, res))
|
| 262 |
print res[1]
|
| 263 |
}' | uniq
|
| 264 |
|
| 265 |
return 0
|
| 266 |
}
|
| 267 |
|
| 268 |
autotools_get_auxdir() {
|
| 269 |
local auxdir_scan_out
|
| 270 |
|
| 271 |
auxdir_scan_out=$(autotools_check_macro "AC_CONFIG_AUX_DIR")
|
| 272 |
[[ -n ${auxdir_scan_out} ]] || return 0
|
| 273 |
|
| 274 |
echo ${auxdir_scan_out} | gawk \
|
| 275 |
'($0 !~ /^[[:space:]]*(#|dnl)/) {
|
| 276 |
if (match($0, /AC_CONFIG_AUX_DIR:(.*)$/, res))
|
| 277 |
print res[1]
|
| 278 |
}' | uniq
|
| 279 |
|
| 280 |
return 0
|
| 281 |
}
|