| 1 | # Copyright 1999-2004 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2011 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/libtool.eclass,v 1.25 2004/02/11 19:33:14 azarah Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/libtool.eclass,v 1.94 2011/10/03 04:04:46 vapier Exp $ |
| 4 | # |
4 | |
| 5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
5 | # @ECLASS: libtool.eclass |
| 6 | # |
6 | # @MAINTAINER: |
|
|
7 | # base-system@gentoo.org |
|
|
8 | # @BLURB: quickly update bundled libtool code |
|
|
9 | # @DESCRIPTION: |
| 7 | # This eclass patches ltmain.sh distributed with libtoolized packages with the |
10 | # This eclass patches ltmain.sh distributed with libtoolized packages with the |
| 8 | # relink and portage patch among others |
11 | # relink and portage patch among others |
| 9 | |
12 | # |
| 10 | ECLASS="libtool" |
13 | # Note, this eclass does not require libtool as it only applies patches to |
| 11 | INHERITED="${INHERITED} ${ECLASS}" |
14 | # generated libtool files. We do not run the libtoolize program because that |
| 12 | |
15 | # requires a regeneration of the main autotool files in order to work properly. |
| 13 | newdepend "!bootstrap? ( sys-devel/libtool )" |
|
|
| 14 | |
16 | |
| 15 | DESCRIPTION="Based on the ${ECLASS} eclass" |
17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 16 | |
18 | |
| 17 | ELIBTOOL_VERSION="2.0.1" |
19 | inherit multilib toolchain-funcs |
| 18 | |
20 | |
| 19 | |
|
|
| 20 | ELT_PATCH_DIR="${PORTDIR}/eclass/ELT-patches" |
21 | ELT_PATCH_DIR="${ECLASSDIR}/ELT-patches" |
| 21 | ELT_APPLIED_PATCHES= |
|
|
| 22 | |
|
|
| 23 | # |
|
|
| 24 | # Returns all the directories containing ltmain.sh |
|
|
| 25 | # |
|
|
| 26 | ELT_find_ltmain_sh() { |
|
|
| 27 | local x= |
|
|
| 28 | local dirlist= |
|
|
| 29 | |
|
|
| 30 | for x in $(find "${S}" -name 'ltmain.sh') |
|
|
| 31 | do |
|
|
| 32 | dirlist="${dirlist} ${x%/*}" |
|
|
| 33 | done |
|
|
| 34 | |
|
|
| 35 | echo "${dirlist}" |
|
|
| 36 | } |
|
|
| 37 | |
22 | |
| 38 | # |
23 | # |
| 39 | # See if we can apply $2 on $1, and if so, do it |
24 | # See if we can apply $2 on $1, and if so, do it |
| 40 | # |
25 | # |
| 41 | ELT_try_and_apply_patch() { |
26 | ELT_try_and_apply_patch() { |
| 42 | local ret=0 |
27 | local ret=0 |
|
|
28 | local file=$1 |
| 43 | local patch="$2" |
29 | local patch=$2 |
|
|
30 | local src=$3 |
|
|
31 | local disp="${src} patch" |
|
|
32 | local log="${T}/elibtool.log" |
|
|
33 | |
|
|
34 | if [[ -z ${__ELT_NOTED_TMP} ]] ; then |
|
|
35 | __ELT_NOTED_TMP=true |
|
|
36 | printf 'temp patch: %s\n' "${patch}" > "${log}" |
|
|
37 | fi |
|
|
38 | printf '\nTrying %s\n' "${disp}" >> "${log}" |
| 44 | |
39 | |
| 45 | # We only support patchlevel of 0 - why worry if its static patches? |
40 | # We only support patchlevel of 0 - why worry if its static patches? |
| 46 | if patch -p0 --dry-run $1 < ${patch} &>${T}/elibtool.log |
41 | if patch -p0 --dry-run "${file}" "${patch}" >> "${log}" 2>&1 ; then |
| 47 | then |
42 | einfo " Applying ${disp} ..." |
| 48 | einfo " Applying $(basename "$(dirname "${patch}")")-${patch##*/}.patch..." |
43 | patch -p0 -g0 --no-backup-if-mismatch "${file}" "${patch}" >> "${log}" 2>&1 |
| 49 | patch -p0 $1 < ${patch} &>${T}/elibtool.log |
|
|
| 50 | ret=$? |
44 | ret=$? |
| 51 | export ELT_APPLIED_PATCHES="${ELT_APPLIED_PATCHES} ${patch##*/}" |
45 | export ELT_APPLIED_PATCHES="${ELT_APPLIED_PATCHES} ${src}" |
| 52 | else |
46 | else |
| 53 | ret=1 |
47 | ret=1 |
| 54 | fi |
48 | fi |
| 55 | |
49 | |
| 56 | return ${ret} |
50 | return "${ret}" |
|
|
51 | } |
|
|
52 | |
|
|
53 | # |
|
|
54 | # Get string version of ltmain.sh or ltconfig (passed as $1) |
|
|
55 | # |
|
|
56 | ELT_libtool_version() { |
|
|
57 | ( |
|
|
58 | unset VERSION |
|
|
59 | eval $(grep -e '^[[:space:]]*VERSION=' "$1") |
|
|
60 | echo "${VERSION:-0}" |
|
|
61 | ) |
| 57 | } |
62 | } |
| 58 | |
63 | |
| 59 | # |
64 | # |
| 60 | # Run through the patches in $2 and see if any |
65 | # Run through the patches in $2 and see if any |
| 61 | # apply to $1 ... |
66 | # apply to $1 ... |
| 62 | # |
67 | # |
| 63 | ELT_walk_patches() { |
68 | ELT_walk_patches() { |
| 64 | local x= |
69 | local patch tmp |
| 65 | local y= |
|
|
| 66 | local ret=1 |
70 | local ret=1 |
|
|
71 | local file=$1 |
| 67 | local patch_dir= |
72 | local patch_set=$2 |
| 68 | |
|
|
| 69 | if [ -n "$2" ] |
|
|
| 70 | then |
|
|
| 71 | if [ -d "${ELT_PATCH_DIR}/$2" ] |
|
|
| 72 | then |
|
|
| 73 | patch_dir="${ELT_PATCH_DIR}/$2" |
73 | local patch_dir="${ELT_PATCH_DIR}/${patch_set}" |
| 74 | else |
74 | local rem_int_dep=$3 |
| 75 | return ${ret} |
75 | |
|
|
76 | [[ -z ${patch_set} ]] && return 1 |
|
|
77 | [[ ! -d ${patch_dir} ]] && return 1 |
|
|
78 | |
|
|
79 | # Allow patches to use @GENTOO_LIBDIR@ replacements |
|
|
80 | local sed_args=( -e "s:@GENTOO_LIBDIR@:$(get_libdir):g" ) |
|
|
81 | if [[ -n ${rem_int_dep} ]] ; then |
|
|
82 | # replace @REM_INT_DEP@ with what was passed |
|
|
83 | # to --remove-internal-dep |
|
|
84 | sed_args+=( -e "s|@REM_INT_DEP@|${rem_int_dep}|g" ) |
|
|
85 | fi |
|
|
86 | |
|
|
87 | pushd "${ELT_PATCH_DIR}" >/dev/null || die |
|
|
88 | |
|
|
89 | # Go through the patches in reverse order (newer version to older) |
|
|
90 | for patch in $(find "${patch_set}" -maxdepth 1 -type f | LC_ALL=C sort -r) ; do |
|
|
91 | tmp="${T}/libtool-elt.patch" |
|
|
92 | sed "${sed_args[@]}" "${patch}" > "${tmp}" || die |
|
|
93 | if ELT_try_and_apply_patch "${file}" "${tmp}" "${patch}" ; then |
|
|
94 | # Break to unwind w/popd rather than return directly |
|
|
95 | ret=0 |
|
|
96 | break |
| 76 | fi |
97 | fi |
| 77 | |
|
|
| 78 | for x in $(ls -d "${patch_dir}"/* 2>/dev/null) |
|
|
| 79 | do |
|
|
| 80 | if [ -n "${x}" -a -f "${x}" ] |
|
|
| 81 | then |
|
|
| 82 | # For --remove-internal-dep ... |
|
|
| 83 | if [ -n "$3" ] |
|
|
| 84 | then |
|
|
| 85 | # For replace @REM_INT_DEP@ with what was passed |
|
|
| 86 | # to --remove-internal-dep |
|
|
| 87 | sed -e "s|@REM_INT_DEP@|$3|g" ${x} > \ |
|
|
| 88 | ${T}/$$.rem_int_deps.patch |
|
|
| 89 | |
|
|
| 90 | x="${T}/$$.rem_int_deps.patch" |
|
|
| 91 | fi |
|
|
| 92 | |
|
|
| 93 | if ELT_try_and_apply_patch "$1" "${x}" |
|
|
| 94 | then |
|
|
| 95 | ret=0 |
|
|
| 96 | break |
|
|
| 97 | fi |
|
|
| 98 | fi |
|
|
| 99 | done |
98 | done |
| 100 | fi |
|
|
| 101 | |
99 | |
|
|
100 | popd >/dev/null |
| 102 | return ${ret} |
101 | return ${ret} |
| 103 | } |
102 | } |
| 104 | |
103 | |
|
|
104 | # @FUNCTION: elibtoolize |
|
|
105 | # @USAGE: [dirs] [--portage] [--reverse-deps] [--patch-only] [--remove-internal-dep=xxx] [--shallow] [--no-uclibc] |
|
|
106 | # @DESCRIPTION: |
|
|
107 | # Apply a smorgasbord of patches to bundled libtool files. This function |
|
|
108 | # should always be safe to run. If no directories are specified, then |
|
|
109 | # ${S} will be searched for appropriate files. |
|
|
110 | # |
|
|
111 | # If the --shallow option is used, then only ${S}/ltmain.sh will be patched. |
|
|
112 | # |
|
|
113 | # The other options should be avoided in general unless you know what's going on. |
| 105 | elibtoolize() { |
114 | elibtoolize() { |
| 106 | local x= |
115 | local x |
| 107 | local y= |
|
|
| 108 | local do_portage="no" |
116 | local do_portage="no" |
| 109 | local do_reversedeps="no" |
117 | local do_reversedeps="no" |
| 110 | local do_only_patches="no" |
118 | local do_only_patches="no" |
|
|
119 | local do_uclibc="yes" |
| 111 | local deptoremove= |
120 | local deptoremove= |
| 112 | local my_dirlist= |
121 | local do_shallow="no" |
| 113 | local elt_patches="portage relink max_cmd_len sed test tmp" |
122 | local elt_patches="install-sh ltmain portage relink max_cmd_len sed test tmp cross as-needed" |
| 114 | |
123 | |
| 115 | my_dirlist="$(ELT_find_ltmain_sh)" |
124 | for x in "$@" ; do |
| 116 | |
|
|
| 117 | for x in $* |
|
|
| 118 | do |
|
|
| 119 | case "${x}" in |
125 | case ${x} in |
| 120 | "--portage") |
126 | --portage) |
| 121 | # Only apply portage patch, and don't |
127 | # Only apply portage patch, and don't |
| 122 | # 'libtoolize --copy --force' if all patches fail. |
128 | # 'libtoolize --copy --force' if all patches fail. |
| 123 | do_portage="yes" |
129 | do_portage="yes" |
| 124 | ;; |
130 | ;; |
| 125 | "--reverse-deps") |
131 | --reverse-deps) |
| 126 | # Apply the reverse-deps patch |
132 | # Apply the reverse-deps patch |
| 127 | # http://bugzilla.gnome.org/show_bug.cgi?id=75635 |
133 | # http://bugzilla.gnome.org/show_bug.cgi?id=75635 |
| 128 | do_reversedeps="yes" |
134 | do_reversedeps="yes" |
| 129 | elt_patches="${elt_patches} fix-relink" |
135 | elt_patches+=" fix-relink" |
| 130 | ;; |
136 | ;; |
| 131 | "--patch-only") |
137 | --patch-only) |
| 132 | # Do not run libtoolize if none of the patches apply .. |
138 | # Do not run libtoolize if none of the patches apply .. |
| 133 | do_only_patches="yes" |
139 | do_only_patches="yes" |
| 134 | ;; |
140 | ;; |
| 135 | "^--remove-internal-dep="*) |
141 | --remove-internal-dep=*) |
| 136 | # We will replace @REM_INT_DEP@ with what is needed |
142 | # We will replace @REM_INT_DEP@ with what is needed |
| 137 | # in ELT_walk_patches() ... |
143 | # in ELT_walk_patches() ... |
| 138 | deptoremove="$(echo "${x}" | sed -e 's|--remove-internal-dep=||')" |
144 | deptoremove=${x#--remove-internal-dep=} |
| 139 | |
145 | |
| 140 | # Add the patch for this ... |
146 | # Add the patch for this ... |
| 141 | [ -n "${deptoremove}" ] && elt_patches="${elt_patches} rem-int-dep" |
147 | [[ -n ${deptoremove} ]] && elt_patches+=" rem-int-dep" |
| 142 | ;; |
148 | ;; |
| 143 | "--shallow") |
149 | --shallow) |
| 144 | # Only patch the ltmain.sh in ${S} |
150 | # Only patch the ltmain.sh in ${S} |
| 145 | if [ -f "${S}/ltmain.sh" ] |
151 | do_shallow="yes" |
| 146 | then |
|
|
| 147 | my_dirlist="${S}" |
|
|
| 148 | else |
|
|
| 149 | my_dirlist= |
|
|
| 150 | fi |
|
|
| 151 | ;; |
152 | ;; |
|
|
153 | --no-uclibc) |
|
|
154 | do_uclibc="no" |
|
|
155 | ;; |
|
|
156 | *) |
|
|
157 | eerror "Invalid elibtoolize option: ${x}" |
|
|
158 | die "elibtoolize called with ${x} ??" |
| 152 | esac |
159 | esac |
| 153 | done |
160 | done |
| 154 | |
161 | |
| 155 | for x in ${my_dirlist} |
162 | [[ ${do_uclibc} == "yes" ]] && elt_patches+=" uclibc-conf uclibc-ltconf" |
| 156 | do |
163 | |
| 157 | local tmp="$(echo "${x}" | sed -e "s|${S}||")" |
164 | case ${CHOST} in |
|
|
165 | *-aix*) elt_patches+=" hardcode aixrtl aix-noundef" ;; #213277 |
|
|
166 | *-darwin*) elt_patches+=" darwin-ltconf darwin-ltmain darwin-conf" ;; |
|
|
167 | *-freebsd*) elt_patches+=" fbsd-conf fbsd-ltconf" ;; |
|
|
168 | *-hpux*) elt_patches+=" hpux-conf deplibs hc-flag-ld hardcode hardcode-relink relink-prog no-lc" ;; |
|
|
169 | *-irix*) elt_patches+=" irix-ltmain" ;; |
|
|
170 | *-mint*) elt_patches+=" mint-conf" ;; |
|
|
171 | esac |
|
|
172 | |
|
|
173 | if $(tc-getLD) --version 2>&1 | grep -qs 'GNU gold'; then |
|
|
174 | elt_patches+=" gold-conf" |
|
|
175 | fi |
|
|
176 | |
|
|
177 | # Reuse "$@" for dirs to patch |
|
|
178 | set -- |
|
|
179 | if [[ ${do_shallow} == "yes" ]] ; then |
|
|
180 | [[ -f ${S}/ltmain.sh ]] && set -- "${S}" |
|
|
181 | else |
|
|
182 | set -- $(find "${S}" -name ltmain.sh -printf '%h ') |
|
|
183 | fi |
|
|
184 | |
|
|
185 | local d p |
|
|
186 | for d in "$@" ; do |
| 158 | export ELT_APPLIED_PATCHES= |
187 | export ELT_APPLIED_PATCHES= |
| 159 | |
|
|
| 160 | cd ${x} |
|
|
| 161 | einfo "Patching \${S}$(echo "/${tmp}/ltmain.sh" | sed -e 's|//|/|g')..." |
|
|
| 162 | |
188 | |
|
|
189 | [[ -f ${d}/.elibtoolized ]] && continue |
|
|
190 | |
|
|
191 | einfo "Running elibtoolize in: ${d#${WORKDIR}/}/" |
|
|
192 | |
| 163 | for y in ${elt_patches} |
193 | for p in ${elt_patches} ; do |
| 164 | do |
|
|
| 165 | local ret=0 |
194 | local ret=0 |
| 166 | |
195 | |
| 167 | case "${y}" in |
196 | case ${p} in |
|
|
197 | portage) |
|
|
198 | # Stupid test to see if its already applied ... |
|
|
199 | if ! grep -qs 'We do not want portage' "${d}/ltmain.sh" ; then |
|
|
200 | ELT_walk_patches "${d}/ltmain.sh" "${p}" |
|
|
201 | ret=$? |
|
|
202 | fi |
|
|
203 | ;; |
| 168 | "rem-int-dep") |
204 | rem-int-dep) |
| 169 | ELT_walk_patches "${x}/ltmain.sh" "${y}" "${deptoremove}" |
205 | ELT_walk_patches "${d}/ltmain.sh" "${p}" "${deptoremove}" |
| 170 | ret=$? |
206 | ret=$? |
| 171 | ;; |
207 | ;; |
| 172 | "fix-relink") |
208 | fix-relink) |
| 173 | # Do not apply if we do not have the relink patch applied ... |
209 | # Do not apply if we do not have the relink patch applied ... |
| 174 | if [ -n "$(grep 'inst_prefix_dir' "${x}/ltmain.sh")" ] |
210 | if grep -qs 'inst_prefix_dir' "${d}/ltmain.sh" ; then |
| 175 | then |
|
|
| 176 | ELT_walk_patches "${x}/ltmain.sh" "${y}" |
211 | ELT_walk_patches "${d}/ltmain.sh" "${p}" |
| 177 | ret=$? |
212 | ret=$? |
| 178 | fi |
213 | fi |
| 179 | ;; |
214 | ;; |
| 180 | "max_cmd_len") |
215 | max_cmd_len) |
| 181 | # Do not apply if $max_cmd_len is not used ... |
216 | # Do not apply if $max_cmd_len is not used ... |
| 182 | if [ -n "$(grep 'max_cmd_len' "${x}/ltmain.sh")" ] |
217 | if grep -qs 'max_cmd_len' "${d}/ltmain.sh" ; then |
| 183 | then |
|
|
| 184 | ELT_walk_patches "${x}/ltmain.sh" "${y}" |
218 | ELT_walk_patches "${d}/ltmain.sh" "${p}" |
|
|
219 | ret=$? |
|
|
220 | fi |
|
|
221 | ;; |
|
|
222 | as-needed) |
|
|
223 | ELT_walk_patches "${d}/ltmain.sh" "${p}" |
|
|
224 | ret=$? |
|
|
225 | ;; |
|
|
226 | uclibc-conf) |
|
|
227 | if grep -qs 'Transform linux' "${d}/configure" ; then |
|
|
228 | ELT_walk_patches "${d}/configure" "${p}" |
|
|
229 | ret=$? |
|
|
230 | # ltmain.sh and co might be in a subdirectory ... |
|
|
231 | elif [[ ! -e ${d}/configure ]] && \ |
|
|
232 | grep -qs 'Transform linux' "${d}/../configure" ; then |
|
|
233 | ELT_walk_patches "${d}/../configure" "${p}" |
|
|
234 | ret=$? |
|
|
235 | fi |
|
|
236 | ;; |
|
|
237 | uclibc-ltconf) |
|
|
238 | # Newer libtoolize clears ltconfig, as not used anymore |
|
|
239 | if [[ -s ${d}/ltconfig ]] ; then |
|
|
240 | ELT_walk_patches "${d}/ltconfig" "${p}" |
|
|
241 | ret=$? |
|
|
242 | fi |
|
|
243 | ;; |
|
|
244 | fbsd-conf) |
|
|
245 | if grep -qs 'version_type=freebsd-' "${d}/configure" ; then |
|
|
246 | ELT_walk_patches "${d}/configure" "${p}" |
|
|
247 | ret=$? |
|
|
248 | # ltmain.sh and co might be in a subdirectory ... |
|
|
249 | elif [[ ! -e ${d}/configure ]] && \ |
|
|
250 | grep -qs 'version_type=freebsd-' "${d}/../configure" ; then |
|
|
251 | ELT_walk_patches "${d}/../configure" "${p}" |
|
|
252 | ret=$? |
|
|
253 | fi |
|
|
254 | ;; |
|
|
255 | fbsd-ltconf) |
|
|
256 | if [[ -s ${d}/ltconfig ]] ; then |
|
|
257 | ELT_walk_patches "${d}/ltconfig" "${p}" |
|
|
258 | ret=$? |
|
|
259 | fi |
|
|
260 | ;; |
|
|
261 | darwin-conf) |
|
|
262 | if grep -qs '&& echo \.so ||' "${d}/configure" ; then |
|
|
263 | ELT_walk_patches "${d}/configure" "${p}" |
|
|
264 | ret=$? |
|
|
265 | # ltmain.sh and co might be in a subdirectory ... |
|
|
266 | elif [[ ! -e ${d}/configure ]] && \ |
|
|
267 | grep -qs '&& echo \.so ||' "${d}/../configure" ; then |
|
|
268 | ELT_walk_patches "${d}/../configure" "${p}" |
|
|
269 | ret=$? |
|
|
270 | fi |
|
|
271 | ;; |
|
|
272 | darwin-ltconf) |
|
|
273 | # Newer libtoolize clears ltconfig, as not used anymore |
|
|
274 | if [[ -s ${d}/ltconfig ]] ; then |
|
|
275 | ELT_walk_patches "${d}/ltconfig" "${p}" |
|
|
276 | ret=$? |
|
|
277 | fi |
|
|
278 | ;; |
|
|
279 | darwin-ltmain) |
|
|
280 | # special case to avoid false positives (failing to apply |
|
|
281 | # ltmain.sh path message), newer libtools have this patch |
|
|
282 | # built in, so not much to patch around then |
|
|
283 | if [[ -e ${d}/ltmain.sh ]] && \ |
|
|
284 | ! grep -qs 'verstring="-compatibility_version' "${d}/ltmain.sh" ; then |
|
|
285 | ELT_walk_patches "${d}/ltmain.sh" "${p}" |
|
|
286 | ret=$? |
|
|
287 | fi |
|
|
288 | ;; |
|
|
289 | aixrtl|hpux-conf) |
|
|
290 | ret=1 |
|
|
291 | local subret=0 |
|
|
292 | # apply multiple patches as often as they match |
|
|
293 | while [[ $subret -eq 0 ]]; do |
|
|
294 | subret=1 |
|
|
295 | if [[ -e ${d}/configure ]]; then |
|
|
296 | ELT_walk_patches "${d}/configure" "${p}" |
|
|
297 | subret=$? |
|
|
298 | # ltmain.sh and co might be in a subdirectory ... |
|
|
299 | elif [[ ! -e ${d}/configure && -e ${d}/../configure ]] ; then |
|
|
300 | ELT_walk_patches "${d}/../configure" "${p}" |
|
|
301 | subret=$? |
|
|
302 | fi |
|
|
303 | if [[ $subret -eq 0 ]]; then |
|
|
304 | # have at least one patch succeeded. |
|
|
305 | ret=0 |
|
|
306 | fi |
|
|
307 | done |
|
|
308 | ;; |
|
|
309 | mint-conf|gold-conf) |
|
|
310 | ret=1 |
|
|
311 | local subret=1 |
|
|
312 | if [[ -e ${d}/configure ]]; then |
|
|
313 | ELT_walk_patches "${d}/configure" "${p}" |
|
|
314 | subret=$? |
|
|
315 | # ltmain.sh and co might be in a subdirectory ... |
|
|
316 | elif [[ -e ${d}/../configure ]] ; then |
|
|
317 | ELT_walk_patches "${d}/../configure" "${p}" |
|
|
318 | subret=$? |
|
|
319 | elif [[ -e ${d}/../../configure ]] ; then |
|
|
320 | ELT_walk_patches "${d}/../../configure" "${p}" |
|
|
321 | subret=$? |
|
|
322 | fi |
|
|
323 | if [[ $subret -eq 0 ]]; then |
|
|
324 | # have at least one patch succeeded. |
|
|
325 | ret=0 |
|
|
326 | fi |
|
|
327 | ;; |
|
|
328 | install-sh) |
|
|
329 | ELT_walk_patches "${d}/install-sh" "${p}" |
|
|
330 | ret=$? |
|
|
331 | ;; |
|
|
332 | cross) |
|
|
333 | if tc-is-cross-compiler ; then |
|
|
334 | ELT_walk_patches "${d}/ltmain.sh" "${p}" |
| 185 | ret=$? |
335 | ret=$? |
| 186 | fi |
336 | fi |
| 187 | ;; |
337 | ;; |
| 188 | *) |
338 | *) |
| 189 | ELT_walk_patches "${x}/ltmain.sh" "${y}" |
339 | ELT_walk_patches "${d}/ltmain.sh" "${p}" |
| 190 | ret=$? |
340 | ret=$? |
| 191 | ;; |
341 | ;; |
| 192 | esac |
342 | esac |
| 193 | |
343 | |
| 194 | if [ "${ret}" -ne 0 ] |
344 | if [[ ${ret} -ne 0 ]] ; then |
| 195 | then |
|
|
| 196 | case ${y} in |
345 | case ${p} in |
| 197 | "relink") |
346 | relink) |
|
|
347 | local version=$(ELT_libtool_version "${d}/ltmain.sh") |
| 198 | # Critical patch, but could be applied ... |
348 | # Critical patch, but could be applied ... |
|
|
349 | # FIXME: Still need a patch for ltmain.sh > 1.4.0 |
| 199 | if [ -z "$(grep 'inst_prefix_dir' "${x}/ltmain.sh")" ] |
350 | if ! grep -qs 'inst_prefix_dir' "${d}/ltmain.sh" && \ |
| 200 | then |
351 | [[ $(VER_to_int "${version}") -ge $(VER_to_int "1.4.0") ]] ; then |
| 201 | ewarn " Could not apply relink.patch!" |
352 | ewarn " Could not apply relink.patch!" |
| 202 | fi |
353 | fi |
| 203 | ;; |
354 | ;; |
| 204 | "portage") |
355 | portage) |
| 205 | # Critical patch - for this one we abort, as it can really |
356 | # Critical patch - for this one we abort, as it can really |
| 206 | # cause breakage without it applied! |
357 | # cause breakage without it applied! |
| 207 | if [ "${do_portage}" = "yes" ] |
358 | if [[ ${do_portage} == "yes" ]] ; then |
| 208 | then |
|
|
| 209 | # Stupid test to see if its already applied ... |
359 | # Stupid test to see if its already applied ... |
| 210 | if [ -z "$(grep 'We do not want portage' "${x}/ltmain.sh")" ] |
360 | if ! grep -qs 'We do not want portage' "${d}/ltmain.sh" ; then |
| 211 | then |
|
|
| 212 | echo |
361 | echo |
| 213 | eerror "Portage patch requested, but failed to apply!" |
362 | eerror "Portage patch requested, but failed to apply!" |
|
|
363 | eerror "Please file a bug report to add a proper patch." |
| 214 | die "Portage patch requested, but failed to apply!" |
364 | die "Portage patch requested, but failed to apply!" |
| 215 | fi |
365 | fi |
| 216 | else |
366 | else |
| 217 | ewarn " Could not apply portage.patch!" |
367 | if grep -qs 'We do not want portage' "${d}/ltmain.sh" ; then |
|
|
368 | # ewarn " Portage patch seems to be already applied." |
| 218 | ewarn " Please verify that it is not needed." |
369 | # ewarn " Please verify that it is not needed." |
|
|
370 | : |
|
|
371 | else |
|
|
372 | local version=$(ELT_libtool_version "${d}"/ltmain.sh) |
|
|
373 | echo |
|
|
374 | eerror "Portage patch failed to apply (ltmain.sh version ${version})!" |
|
|
375 | eerror "Please file a bug report to add a proper patch." |
|
|
376 | die "Portage patch failed to apply!" |
|
|
377 | fi |
|
|
378 | # We do not want to run libtoolize ... |
|
|
379 | ELT_APPLIED_PATCHES="portage" |
| 219 | fi |
380 | fi |
|
|
381 | ;; |
|
|
382 | uclibc-*) |
|
|
383 | [[ ${CHOST} == *-uclibc ]] && ewarn " uClibc patch set '${p}' failed to apply!" |
|
|
384 | ;; |
|
|
385 | fbsd-*) |
|
|
386 | if [[ ${CHOST} == *-freebsd* ]] ; then |
|
|
387 | if [[ -z $(grep 'Handle Gentoo/FreeBSD as it was Linux' \ |
|
|
388 | "${d}/configure" "${d}/../configure" 2>/dev/null) ]]; then |
|
|
389 | eerror " FreeBSD patch set '${p}' failed to apply!" |
|
|
390 | die "FreeBSD patch set '${p}' failed to apply!" |
|
|
391 | fi |
|
|
392 | fi |
|
|
393 | ;; |
|
|
394 | darwin-*) |
|
|
395 | [[ ${CHOST} == *"-darwin"* ]] && ewarn " Darwin patch set '${p}' failed to apply!" |
| 220 | ;; |
396 | ;; |
| 221 | esac |
397 | esac |
| 222 | fi |
398 | fi |
|
|
399 | done |
| 223 | |
400 | |
| 224 | if [ -z "${ELT_APPLIED_PATCHES}" ] |
401 | if [[ -z ${ELT_APPLIED_PATCHES} ]] ; then |
|
|
402 | if [[ ${do_portage} == "no" && \ |
|
|
403 | ${do_reversedeps} == "no" && \ |
|
|
404 | ${do_only_patches} == "no" && \ |
|
|
405 | ${deptoremove} == "" ]] |
| 225 | then |
406 | then |
| 226 | if [ "${do_portage}" = "no" -a \ |
407 | ewarn "Cannot apply any patches, please file a bug about this" |
| 227 | "${do_reversedeps}" = "no" -a \ |
|
|
| 228 | "${do_only_patches}" = "no" -a \ |
|
|
| 229 | "${deptoremove}" = "" ] |
|
|
| 230 | then |
|
|
| 231 | # Sometimes ltmain.sh is in a subdirectory ... |
|
|
| 232 | if [ ! -f ${x}/configure.in -a ! -f ${x}/configure.ac ] |
|
|
| 233 | then |
|
|
| 234 | if [ -f ${x}/../configure.in -o -f ${x}/../configure.ac ] |
|
|
| 235 | then |
|
|
| 236 | cd ${x}/../ |
|
|
| 237 | fi |
|
|
| 238 | fi |
|
|
| 239 | |
|
|
| 240 | if which libtoolize &>/dev/null |
|
|
| 241 | then |
|
|
| 242 | ewarn "Cannot apply any patch, running libtoolize..." |
|
|
| 243 | libtoolize --copy --force |
|
|
| 244 | fi |
|
|
| 245 | cd ${x} |
|
|
| 246 | break |
|
|
| 247 | fi |
408 | die |
| 248 | fi |
409 | fi |
| 249 | done |
410 | fi |
|
|
411 | |
|
|
412 | rm -f "${d}/libtool" |
|
|
413 | |
|
|
414 | > "${d}/.elibtoolized" |
| 250 | done |
415 | done |
| 251 | |
|
|
| 252 | if [ -f libtool ] |
|
|
| 253 | then |
|
|
| 254 | rm -f libtool |
|
|
| 255 | fi |
|
|
| 256 | |
|
|
| 257 | # We need to change the pwd back to $S, as we may be called in |
|
|
| 258 | # src_compile() |
|
|
| 259 | cd ${S} |
|
|
| 260 | } |
416 | } |
| 261 | |
417 | |
|
|
418 | uclibctoolize() { die "Use elibtoolize"; } |
|
|
419 | darwintoolize() { die "Use elibtoolize"; } |
|
|
420 | |
|
|
421 | # char *VER_major(string) |
|
|
422 | # |
|
|
423 | # Return the Major (X of X.Y.Z) version |
|
|
424 | # |
|
|
425 | VER_major() { |
|
|
426 | [[ -z $1 ]] && return 1 |
|
|
427 | |
|
|
428 | local VER=$@ |
|
|
429 | echo "${VER%%[^[:digit:]]*}" |
|
|
430 | } |
|
|
431 | |
|
|
432 | # char *VER_minor(string) |
|
|
433 | # |
|
|
434 | # Return the Minor (Y of X.Y.Z) version |
|
|
435 | # |
|
|
436 | VER_minor() { |
|
|
437 | [[ -z $1 ]] && return 1 |
|
|
438 | |
|
|
439 | local VER=$@ |
|
|
440 | VER=${VER#*.} |
|
|
441 | echo "${VER%%[^[:digit:]]*}" |
|
|
442 | } |
|
|
443 | |
|
|
444 | # char *VER_micro(string) |
|
|
445 | # |
|
|
446 | # Return the Micro (Z of X.Y.Z) version. |
|
|
447 | # |
|
|
448 | VER_micro() { |
|
|
449 | [[ -z $1 ]] && return 1 |
|
|
450 | |
|
|
451 | local VER=$@ |
|
|
452 | VER=${VER#*.*.} |
|
|
453 | echo "${VER%%[^[:digit:]]*}" |
|
|
454 | } |
|
|
455 | |
|
|
456 | # int VER_to_int(string) |
|
|
457 | # |
|
|
458 | # Convert a string type version (2.4.0) to an int (132096) |
|
|
459 | # for easy compairing or versions ... |
|
|
460 | # |
|
|
461 | VER_to_int() { |
|
|
462 | [[ -z $1 ]] && return 1 |
|
|
463 | |
|
|
464 | local VER_MAJOR=$(VER_major "$1") |
|
|
465 | local VER_MINOR=$(VER_minor "$1") |
|
|
466 | local VER_MICRO=$(VER_micro "$1") |
|
|
467 | local VER_int=$(( VER_MAJOR * 65536 + VER_MINOR * 256 + VER_MICRO )) |
|
|
468 | |
|
|
469 | # We make version 1.0.0 the minimum version we will handle as |
|
|
470 | # a sanity check ... if its less, we fail ... |
|
|
471 | if [[ ${VER_int} -ge 65536 ]] ; then |
|
|
472 | echo "${VER_int}" |
|
|
473 | return 0 |
|
|
474 | fi |
|
|
475 | |
|
|
476 | echo 1 |
|
|
477 | return 1 |
|
|
478 | } |