| 1 |
# Copyright 1999-2004 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/gnuconfig.eclass,v 1.19 2004/06/25 00:39:48 vapier Exp $
|
| 4 |
#
|
| 5 |
# Author: Will Woods <wwoods@gentoo.org>
|
| 6 |
#
|
| 7 |
# This eclass is used to automatically update files that typically come with
|
| 8 |
# automake to the newest version available on the system. The most common use
|
| 9 |
# of this is to update config.guess and config.sub when configure dies from
|
| 10 |
# misguessing your canonical system name (CHOST). It can also be used to update
|
| 11 |
# other files that come with automake, e.g. depcomp, mkinstalldirs, etc.
|
| 12 |
#
|
| 13 |
# usage: gnuconfig_update [file1 file2 ...]
|
| 14 |
# if called without arguments, config.guess and config.sub will be updated.
|
| 15 |
# All files in the source tree ($S) with the given name(s) will be replaced
|
| 16 |
# with the newest available versions chosen from the list of locations in
|
| 17 |
# gnuconfig_findnewest(), below.
|
| 18 |
|
| 19 |
ECLASS=gnuconfig
|
| 20 |
INHERITED="$INHERITED $ECLASS"
|
| 21 |
|
| 22 |
DEPEND="sys-devel/gnuconfig"
|
| 23 |
|
| 24 |
DESCRIPTION="Based on the ${ECLASS} eclass"
|
| 25 |
|
| 26 |
# Wrapper function for gnuconfig_do_update. If no arguments are given, update
|
| 27 |
# config.sub and config.guess (old default behavior), otherwise update the
|
| 28 |
# named files.
|
| 29 |
gnuconfig_update() {
|
| 30 |
if [ $# -gt 0 ] ; then
|
| 31 |
gnuconfig_do_update "$@"
|
| 32 |
else
|
| 33 |
gnuconfig_do_update config.sub config.guess
|
| 34 |
fi
|
| 35 |
}
|
| 36 |
|
| 37 |
# Copy the newest available version of specified files over any old ones in the
|
| 38 |
# source dir. This function shouldn't be called directly - use gnuconfig_update
|
| 39 |
gnuconfig_do_update() {
|
| 40 |
[ $# -eq 0 ] && die "do not call gnuconfig_do_update(); use gnuconfig_update()"
|
| 41 |
|
| 42 |
local configsubs_dir="$(gnuconfig_findnewest)"
|
| 43 |
local target targetlist file
|
| 44 |
einfo "Using GNU config files from ${configsubs_dir}"
|
| 45 |
for file in "$@" ; do
|
| 46 |
if [ ! -r ${configsubs_dir}/${file} ] ; then
|
| 47 |
eerror "Can't read ${configsubs_dir}/${file}, skipping.."
|
| 48 |
continue
|
| 49 |
fi
|
| 50 |
targetlist=`find ${S} -name "${file}"`
|
| 51 |
if [ -n "$targetlist" ] ; then
|
| 52 |
for target in $targetlist; do
|
| 53 |
einfo " Updating ${target/$S\//}"
|
| 54 |
cp -f ${configsubs_dir}/${file} ${target}
|
| 55 |
eend $?
|
| 56 |
done
|
| 57 |
else
|
| 58 |
ewarn " No ${file} found in ${S}, skipping.."
|
| 59 |
fi
|
| 60 |
done
|
| 61 |
}
|
| 62 |
|
| 63 |
# this searches the standard locations for the newest config.{sub|guess}, and
|
| 64 |
# returns the directory where they can be found.
|
| 65 |
gnuconfig_findnewest() {
|
| 66 |
local locations="/usr/share/gnuconfig/config.sub \
|
| 67 |
/usr/share/automake-1.8/config.sub \
|
| 68 |
/usr/share/automake-1.7/config.sub \
|
| 69 |
/usr/share/automake-1.6/config.sub \
|
| 70 |
/usr/share/automake-1.5/config.sub \
|
| 71 |
/usr/share/automake-1.4/config.sub"
|
| 72 |
local lt_location="/usr/share/libtool/config.sub"
|
| 73 |
|
| 74 |
[ -f "${lt_location}" ] && locations="${locations} ${lt_location}"
|
| 75 |
|
| 76 |
grep -s '^timestamp' ${locations} | sort -n -t\' -k2 | tail -n 1 | sed 's,/config.sub:.*$,,'
|
| 77 |
}
|