x11-drivers/xf86-input-wacom: arm stable wrt bug #704592
[gentoo.git] / eclass / gnuconfig.eclass
1 # Copyright 1999-2012 Gentoo Foundation
2 # Distributed under the terms of the GNU General Public License v2
3 #
4 # THIS ECLASS IS DEAD: It has been integrated into portage
5 #
6 # Author: Will Woods <wwoods@gentoo.org>
7 #
8 # This eclass is used to automatically update files that typically come with
9 # automake to the newest version available on the system. The most common use
10 # of this is to update config.guess and config.sub when configure dies from
11 # misguessing your canonical system name (CHOST). It can also be used to update
12 # other files that come with automake, e.g. depcomp, mkinstalldirs, etc.
13 #
14 # usage: gnuconfig_update [file1 file2 ...]
15 # if called without arguments, config.guess and config.sub will be updated.
16 # All files in the source tree ($S) with the given name(s) will be replaced
17 # with the newest available versions chosen from the list of locations in
18 # gnuconfig_findnewest(), below.
19 #
20 # gnuconfig_update should generally be called from src_unpack()
21
22
23 DEPEND="sys-devel/gnuconfig"
24
25 # Wrapper function for gnuconfig_do_update. If no arguments are given, update
26 # config.sub and config.guess (old default behavior), otherwise update the
27 # named files.
28 gnuconfig_update() {
29
30 # hmm some packages (like binutils gcc glibc) still use this ...
31 #       echo
32 #       ewarn "QA Notice: Please stop using me, portage updates files for you."
33 #       echo
34
35         local startdir  # declared here ... used in gnuconfig_do_update
36
37         if [[ $1 == /* ]] ; then
38                 startdir=$1
39                 shift
40         else
41                 startdir=${S}
42         fi
43
44         if [[ $# -gt 0 ]] ; then
45                 gnuconfig_do_update "$@"
46         else
47                 gnuconfig_do_update config.sub config.guess
48         fi
49
50         return $?
51 }
52
53 # Copy the newest available version of specified files over any old ones in the
54 # source dir. This function shouldn't be called directly - use gnuconfig_update
55 #
56 # Note that since bash using dynamic scoping, startdir is available here from
57 # the gnuconfig_update function
58 gnuconfig_do_update() {
59         local configsubs_dir target targetlist file
60
61         [[ $# -eq 0 ]] && die "do not call gnuconfig_do_update; use gnuconfig_update"
62
63         configsubs_dir=$(gnuconfig_findnewest)
64         einfo "Using GNU config files from ${configsubs_dir}"
65         for file in "$@" ; do
66                 if [[ ! -r ${configsubs_dir}/${file} ]] ; then
67                         eerror "Can't read ${configsubs_dir}/${file}, skipping.."
68                         continue
69                 fi
70                 targetlist=$(find "${startdir}" -name "${file}")
71                 if [[ -n ${targetlist} ]] ; then
72                         for target in ${targetlist} ; do
73                                 [[ -L ${target} ]] && rm -f "${target}"
74                                 einfo "  Updating ${target/$startdir\//}"
75                                 cp -f "${configsubs_dir}/${file}" "${target}"
76                                 eend $?
77                         done
78                 else
79                         ewarn "  No ${file} found in ${startdir}, skipping ..."
80                 fi
81         done
82
83         return 0
84 }
85
86 # this searches the standard locations for the newest config.{sub|guess}, and
87 # returns the directory where they can be found.
88 gnuconfig_findnewest() {
89         local locations=(
90                 "${EPREFIX}"/usr/share/misc/config.sub
91                 "${EPREFIX}"/usr/share/gnuconfig/config.sub
92                 "${EPREFIX}"/usr/share/automake*/config.sub
93                 "${EPREFIX}"/usr/share/libtool/config.sub
94         )
95         grep -s '^timestamp' "${locations[@]}" | \
96                 sort -r -n -t\' -k2 | \
97                 sed -n '1{s,/config.sub:.*$,,;p;q}'
98 }