| 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.21 2004/07/07 16:14:02 agriffis 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 |
return $? |
| 37 |
} |
| 38 |
|
| 39 |
# Copy the newest available version of specified files over any old ones in the |
| 40 |
# source dir. This function shouldn't be called directly - use gnuconfig_update |
| 41 |
gnuconfig_do_update() { |
| 42 |
local startdir configsubs_dir target targetlist file |
| 43 |
|
| 44 |
if [[ ${1} == /* ]]; then |
| 45 |
startdir=${1%/} # remove possible trailing slash |
| 46 |
shift |
| 47 |
else |
| 48 |
startdir=${S} |
| 49 |
fi |
| 50 |
|
| 51 |
[ $# -eq 0 ] && die "do not call gnuconfig_do_update; use gnuconfig_update" |
| 52 |
|
| 53 |
configsubs_dir="$(gnuconfig_findnewest)" |
| 54 |
einfo "Using GNU config files from ${configsubs_dir}" |
| 55 |
for file in "$@" ; do |
| 56 |
if [ ! -r ${configsubs_dir}/${file} ] ; then |
| 57 |
eerror "Can't read ${configsubs_dir}/${file}, skipping.." |
| 58 |
continue |
| 59 |
fi |
| 60 |
targetlist=`find "${startdir}" -name "${file}"` |
| 61 |
if [ -n "$targetlist" ] ; then |
| 62 |
for target in $targetlist; do |
| 63 |
einfo " Updating ${target/$startdir\//}" |
| 64 |
cp -f ${configsubs_dir}/${file} "${target}" |
| 65 |
eend $? |
| 66 |
done |
| 67 |
else |
| 68 |
ewarn " No ${file} found in ${startdir}, skipping.." |
| 69 |
fi |
| 70 |
done |
| 71 |
|
| 72 |
return 0 |
| 73 |
} |
| 74 |
|
| 75 |
# this searches the standard locations for the newest config.{sub|guess}, and |
| 76 |
# returns the directory where they can be found. |
| 77 |
gnuconfig_findnewest() { |
| 78 |
local locations="/usr/share/gnuconfig/config.sub \ |
| 79 |
/usr/share/automake-1.8/config.sub \ |
| 80 |
/usr/share/automake-1.7/config.sub \ |
| 81 |
/usr/share/automake-1.6/config.sub \ |
| 82 |
/usr/share/automake-1.5/config.sub \ |
| 83 |
/usr/share/automake-1.4/config.sub" |
| 84 |
local lt_location="/usr/share/libtool/config.sub" |
| 85 |
|
| 86 |
[ -f "${lt_location}" ] && locations="${locations} ${lt_location}" |
| 87 |
|
| 88 |
grep -s '^timestamp' ${locations} | sort -n -t\' -k2 | tail -n 1 | sed 's,/config.sub:.*$,,' |
| 89 |
} |