1 |
# Copyright 1999-2004 Gentoo Technologies, Inc. |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
# $Header: /home/cvsroot/gentoo-x86/eclass/gnuconfig.eclass,v 1.15 2004/04/24 02:16:28 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 |
!bootstrap? ( sys-devel/libtool )" |
24 |
|
25 |
DESCRIPTION="Based on the ${ECLASS} eclass" |
26 |
|
27 |
# 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 |
# named files. |
30 |
gnuconfig_update() { |
31 |
if [ $# -gt 0 ] ; then |
32 |
gnuconfig_do_update "$@" |
33 |
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 |
[ $# -eq 0 ] && die "do not call gnuconfig_do_update(); use gnuconfig_update()" |
42 |
|
43 |
local configsubs_dir="$(gnuconfig_findnewest)" |
44 |
local target targetlist file |
45 |
einfo "Using GNU config files from ${configsubs_dir}" |
46 |
for file in "$@" ; do |
47 |
if [ ! -r ${configsubs_dir}/${file} ] ; then |
48 |
eerror "Can't read ${configsubs_dir}/${file}, skipping.." |
49 |
continue |
50 |
fi |
51 |
targetlist=`find ${S} -name "${file}"` |
52 |
if [ -n "$targetlist" ] ; then |
53 |
for target in $targetlist; do |
54 |
einfo " Updating ${target/$S\//}" |
55 |
cp -f ${configsubs_dir}/${file} ${target} |
56 |
eend $! |
57 |
done |
58 |
else |
59 |
ewarn " No ${file} found in ${S}, skipping.." |
60 |
fi |
61 |
done |
62 |
} |
63 |
|
64 |
# this searches the standard locations for the newest config.{sub|guess}, and |
65 |
# returns the directory where they can be found. |
66 |
gnuconfig_findnewest() { |
67 |
local locations="/usr/share/gnuconfig/config.sub \ |
68 |
/usr/share/automake-1.6/config.sub \ |
69 |
/usr/share/automake-1.5/config.sub \ |
70 |
/usr/share/automake-1.4/config.sub" |
71 |
local lt_location="/usr/share/libtool/config.sub" |
72 |
|
73 |
[ -f "${lt_location}" ] && locations="${locations} ${lt_location}" |
74 |
|
75 |
grep -s '^timestamp' ${locations} | sort -n -t\' -k2 | tail -n 1 | sed 's,/config.sub:.*$,,' |
76 |
} |