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