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