| 1 |
vapier |
1.4 |
# Copyright 1999-2003 Gentoo Technologies, Inc. |
| 2 |
vapier |
1.2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
msterret |
1.12 |
# $Header: /home/cvsroot/gentoo-x86/eclass/gnuconfig.eclass,v 1.11 2003/07/12 09:29:29 kumba Exp $ |
| 4 |
vapier |
1.4 |
# |
| 5 |
wwoods |
1.1 |
# Author: Will Woods <wwoods@gentoo.org> |
| 6 |
vapier |
1.4 |
# |
| 7 |
msterret |
1.12 |
# This eclass is used to automatically update files that typically come with |
| 8 |
wwoods |
1.7 |
# 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 |
msterret |
1.12 |
# with the newest available versions chosen from the list of locations in |
| 17 |
wwoods |
1.7 |
# gnuconfig_findnewest(), below. |
| 18 |
wwoods |
1.1 |
|
| 19 |
|
|
ECLASS=gnuconfig |
| 20 |
|
|
INHERITED="$INHERITED $ECLASS" |
| 21 |
|
|
|
| 22 |
msterret |
1.12 |
newdepend "sys-devel/libtool |
| 23 |
|
|
sys-devel/gnuconfig" |
| 24 |
wwoods |
1.1 |
|
| 25 |
vapier |
1.6 |
DESCRIPTION="Based on the ${ECLASS} eclass" |
| 26 |
wwoods |
1.1 |
|
| 27 |
wwoods |
1.7 |
# Wrapper function for gnuconfig_do_update. If no arguments are given, update |
| 28 |
|
|
# config.sub and config.guess (old default behavior), otherwise update the |
| 29 |
msterret |
1.12 |
# named files. |
| 30 |
wwoods |
1.1 |
gnuconfig_update() { |
| 31 |
msterret |
1.12 |
if [ $# -gt 0 ] ; then |
| 32 |
|
|
gnuconfig_do_update $* |
| 33 |
wwoods |
1.7 |
else |
| 34 |
|
|
gnuconfig_do_update config.sub config.guess |
| 35 |
|
|
fi |
| 36 |
|
|
} |
| 37 |
|
|
|
| 38 |
|
|
# Copy the newest available version of specified files over any old ones in the |
| 39 |
|
|
# source dir. This function shouldn't be called directly - use gnuconfig_update |
| 40 |
|
|
gnuconfig_do_update() { |
| 41 |
|
|
local configsubs_dir="$(gnuconfig_findnewest)" |
| 42 |
|
|
local target targetlist file |
| 43 |
|
|
einfo "Using GNU config files from ${configsubs_dir}" |
| 44 |
msterret |
1.12 |
for file in $* ; do |
| 45 |
wwoods |
1.7 |
if [ ! -r ${configsubs_dir}/${file} ] ; then |
| 46 |
|
|
eerror "Can't read ${configsubs_dir}/${file}, skipping.." |
| 47 |
|
|
continue |
| 48 |
|
|
fi |
| 49 |
|
|
targetlist=`find ${S} -name "${file}"` |
| 50 |
|
|
if [ -n "$targetlist" ] ; then |
| 51 |
|
|
for target in $targetlist; do |
| 52 |
|
|
einfo "Updating ${target/$S\//}" |
| 53 |
|
|
cp -f ${configsubs_dir}/${file} ${target} |
| 54 |
|
|
eend $! |
| 55 |
|
|
done |
| 56 |
|
|
else |
| 57 |
|
|
ewarn "No ${file} found in ${S}, skipping.." |
| 58 |
|
|
fi |
| 59 |
|
|
done |
| 60 |
wwoods |
1.1 |
} |
| 61 |
|
|
|
| 62 |
|
|
# this searches the standard locations for the newest config.{sub|guess}, and |
| 63 |
|
|
# returns the directory where they can be found. |
| 64 |
|
|
gnuconfig_findnewest() { |
| 65 |
kumba |
1.11 |
local locations="/usr/share/gnuconfig/config.sub \ |
| 66 |
|
|
/usr/share/automake-1.6/config.sub \ |
| 67 |
wwoods |
1.1 |
/usr/share/automake-1.5/config.sub \ |
| 68 |
|
|
/usr/share/automake-1.4/config.sub \ |
| 69 |
|
|
/usr/share/libtool/config.sub" |
| 70 |
woodchip |
1.10 |
grep -s '^timestamp' ${locations} | sort -n -t\' -k2 | tail -n 1 | sed 's,/config.sub:.*$,,' |
| 71 |
wwoods |
1.1 |
} |