| 1 | # Copyright 1999-2002 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2005 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.62 2005/12/07 22:50:05 azarah Exp $ |
|
|
4 | # |
| 3 | # Author: Martin Schlemmer <azarah@gentoo.org> |
5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
| 4 | # $Header: /var/cvsroot/gentoo-x86/eclass/libtool.eclass,v 1.19 2002/12/28 18:17:05 azarah Exp $ |
6 | # |
| 5 | # This eclass patches ltmain.sh distributed with libtoolized packages with the |
7 | # This eclass patches ltmain.sh distributed with libtoolized packages with the |
| 6 | # relink and portage patch |
8 | # relink and portage patch among others |
| 7 | |
9 | |
| 8 | ECLASS=libtool |
|
|
| 9 | INHERITED="$INHERITED $ECLASS" |
|
|
| 10 | |
10 | |
| 11 | newdepend "!bootstrap? ( sys-devel/libtool )" |
11 | # 2004.09.25 rac |
|
|
12 | # i have verified that at least one package can use this eclass and |
|
|
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. |
| 12 | |
18 | |
| 13 | DESCRIPTION="Based on the ${ECLASS} eclass" |
19 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 14 | |
20 | |
| 15 | ELIBTOOL_VERSION=1.8.1 |
21 | ELIBTOOL_VERSION="2.0.2" |
|
|
22 | |
|
|
23 | ELT_PATCH_DIR="${PORTDIR}/eclass/ELT-patches" |
|
|
24 | ELT_APPLIED_PATCHES= |
|
|
25 | ELT_LTMAIN_SH= |
|
|
26 | |
|
|
27 | # |
|
|
28 | # Returns all the directories containing ltmain.sh |
|
|
29 | # |
|
|
30 | ELT_find_ltmain_sh() { |
|
|
31 | local x= |
|
|
32 | local dirlist= |
|
|
33 | |
|
|
34 | for x in $(find "${S}" -name 'ltmain.sh') ; do |
|
|
35 | dirlist="${dirlist} ${x%/*}" |
|
|
36 | done |
|
|
37 | |
|
|
38 | echo "${dirlist}" |
|
|
39 | } |
|
|
40 | |
|
|
41 | # |
|
|
42 | # See if we can apply $2 on $1, and if so, do it |
|
|
43 | # |
|
|
44 | ELT_try_and_apply_patch() { |
|
|
45 | local ret=0 |
|
|
46 | local file=$1 |
|
|
47 | local patch=$2 |
|
|
48 | |
|
|
49 | # We only support patchlevel of 0 - why worry if its static patches? |
|
|
50 | if patch -p0 --dry-run "${file}" "${patch}" &> "${T}/elibtool.log" ; then |
|
|
51 | einfo " Applying $(basename "$(dirname "${patch}")")-${patch##*/}.patch ..." |
|
|
52 | patch -p0 -g0 --no-backup-if-mismatch "${file}" "${patch}" \ |
|
|
53 | &> "${T}/elibtool.log" |
|
|
54 | ret=$? |
|
|
55 | export ELT_APPLIED_PATCHES="${ELT_APPLIED_PATCHES} ${patch##*/}" |
|
|
56 | else |
|
|
57 | ret=1 |
|
|
58 | fi |
|
|
59 | |
|
|
60 | return "${ret}" |
|
|
61 | } |
|
|
62 | |
|
|
63 | # |
|
|
64 | # Get string version of ltmain.sh or ltconfig (passed as $1) |
|
|
65 | # |
|
|
66 | ELT_libtool_version() { |
|
|
67 | local ltmain_sh=$1 |
|
|
68 | local version= |
|
|
69 | |
|
|
70 | version=$(eval $(grep -e '^[[:space:]]*VERSION=' "${ltmain_sh}"); \ |
|
|
71 | echo "${VERSION}") |
|
|
72 | [[ -z ${version} ]] && version="0" |
|
|
73 | |
|
|
74 | echo "${version}" |
|
|
75 | } |
|
|
76 | |
|
|
77 | # |
|
|
78 | # Run through the patches in $2 and see if any |
|
|
79 | # apply to $1 ... |
|
|
80 | # |
|
|
81 | ELT_walk_patches() { |
|
|
82 | local x= |
|
|
83 | local y= |
|
|
84 | local ret=1 |
|
|
85 | local file=$1 |
|
|
86 | local patch_set=$2 |
|
|
87 | local patch_dir= |
|
|
88 | local rem_int_dep=$3 |
|
|
89 | local version= |
|
|
90 | local ltmain_sh=$1 |
|
|
91 | |
|
|
92 | [[ ${file} == *"/configure" ]] && ltmain_sh=${ELT_LTMAIN_SH} |
|
|
93 | version=$(ELT_libtool_version "${ltmain_sh}") |
|
|
94 | |
|
|
95 | if [[ -n ${patch_set} ]] ; then |
|
|
96 | if [[ -d ${ELT_PATCH_DIR}/${patch_set} ]] ; then |
|
|
97 | patch_dir="${ELT_PATCH_DIR}/${patch_set}" |
|
|
98 | else |
|
|
99 | return "${ret}" |
|
|
100 | fi |
|
|
101 | |
|
|
102 | if [[ ${version} == "0" ]] ; then |
|
|
103 | eerror "Could not get VERSION for ${file##*/}!" |
|
|
104 | die "Could not get VERSION for ${file##*/}!" |
|
|
105 | fi |
|
|
106 | |
|
|
107 | # Go through the patches in reverse order (large to small) |
|
|
108 | for x in $(ls -d "${patch_dir}"/* 2> /dev/null | grep -v 'CVS' | sort -r) ; do |
|
|
109 | if [[ -n ${x} && -f ${x} ]] ; then |
|
|
110 | local ltver=$(VER_to_int "${version}") |
|
|
111 | local ptver=$(VER_to_int "${x##*/}") |
|
|
112 | |
|
|
113 | # If libtool version smaller than patch version, skip patch. |
|
|
114 | [[ ${ltver} -lt ${ptver} ]] && continue |
|
|
115 | # For --remove-internal-dep ... |
|
|
116 | if [[ -n ${rem_int_dep} ]] ; then |
|
|
117 | # For replace @REM_INT_DEP@ with what was passed |
|
|
118 | # to --remove-internal-dep |
|
|
119 | sed -e "s|@REM_INT_DEP@|${rem_int_dep}|g" ${x} > \ |
|
|
120 | "${T}/$$.rem_int_deps.patch" |
|
|
121 | |
|
|
122 | x="${T}/$$.rem_int_deps.patch" |
|
|
123 | fi |
|
|
124 | |
|
|
125 | if ELT_try_and_apply_patch "${file}" "${x}" ; then |
|
|
126 | ret=0 |
|
|
127 | break |
|
|
128 | fi |
|
|
129 | fi |
|
|
130 | done |
|
|
131 | fi |
|
|
132 | |
|
|
133 | return "${ret}" |
|
|
134 | } |
| 16 | |
135 | |
| 17 | elibtoolize() { |
136 | elibtoolize() { |
| 18 | |
|
|
| 19 | local x="" |
137 | local x= |
| 20 | local y="" |
138 | local y= |
| 21 | local dopatch="no" |
|
|
| 22 | local dotest="yes" |
|
|
| 23 | local dorelink="yes" |
|
|
| 24 | local dotmp="yes" |
|
|
| 25 | local doportage="yes" |
|
|
| 26 | local portage="no" |
139 | local do_portage="no" |
| 27 | local reversedeps="no" |
140 | local do_reversedeps="no" |
| 28 | local removeinternaldep="no" |
141 | local do_only_patches="no" |
|
|
142 | local do_uclibc="yes" |
| 29 | local deptoremove="" |
143 | local deptoremove= |
| 30 | local mylist="" |
144 | local my_dirlist= |
|
|
145 | local elt_patches="portage relink max_cmd_len sed test tmp" |
|
|
146 | local start_dir=${PWD} |
| 31 | |
147 | |
| 32 | mylist="$(find_ltmain)" |
148 | my_dirlist=$(ELT_find_ltmain_sh) |
| 33 | for x in ${*} |
149 | |
| 34 | do |
150 | for x in "$@" ; do |
| 35 | # Only apply portage patch, and dont "libtoolize --copy --force" |
151 | case "${x}" in |
| 36 | # if all patches fail. |
152 | "--portage") |
| 37 | if [ "${x}" = "--portage" ] |
153 | # Only apply portage patch, and don't |
| 38 | then |
154 | # 'libtoolize --copy --force' if all patches fail. |
| 39 | portage="yes" |
155 | do_portage="yes" |
| 40 | fi |
156 | ;; |
|
|
157 | "--reverse-deps") |
| 41 | # Apply the reverse-deps patch |
158 | # Apply the reverse-deps patch |
| 42 | # |
|
|
| 43 | # http://bugzilla.gnome.org/show_bug.cgi?id=75635 |
159 | # http://bugzilla.gnome.org/show_bug.cgi?id=75635 |
| 44 | if [ "${x}" = "--reverse-deps" ] |
|
|
| 45 | then |
|
|
| 46 | reversedeps="yes" |
160 | do_reversedeps="yes" |
| 47 | fi |
161 | elt_patches="${elt_patches} fix-relink" |
| 48 | if [ `echo ${x} | grep "^--remove-internal-dep="` ] |
162 | ;; |
| 49 | then |
163 | "--patch-only") |
| 50 | removeinternaldep="yes" |
164 | # Do not run libtoolize if none of the patches apply .. |
| 51 | deptoremove=`echo ${x} | sed -e 's/--remove-internal-dep=//'` |
165 | do_only_patches="yes" |
| 52 | fi |
166 | ;; |
|
|
167 | "^--remove-internal-dep="*) |
|
|
168 | # We will replace @REM_INT_DEP@ with what is needed |
|
|
169 | # in ELT_walk_patches() ... |
|
|
170 | deptoremove=$(echo "${x}" | sed -e 's|--remove-internal-dep=||') |
|
|
171 | |
|
|
172 | # Add the patch for this ... |
|
|
173 | [[ -n ${deptoremove} ]] && elt_patches="${elt_patches} rem-int-dep" |
|
|
174 | ;; |
|
|
175 | "--shallow") |
| 53 | # Only patch the ltmain.sh in ${S} |
176 | # Only patch the ltmain.sh in ${S} |
| 54 | if [ "${x}" = "--shallow" ] |
|
|
| 55 | then |
|
|
| 56 | if [ -f ${S}/ltmain.sh ] |
177 | if [[ -f ${S}/ltmain.sh ]] ; then |
| 57 | then |
|
|
| 58 | mylist="${S}" |
178 | my_dirlist=${S} |
| 59 | else |
179 | else |
| 60 | mylist="" |
180 | my_dirlist= |
| 61 | fi |
181 | fi |
| 62 | else |
182 | ;; |
| 63 | mylist="$(find_ltmain)" |
183 | "--no-uclibc") |
| 64 | fi |
184 | do_uclibc="no" |
|
|
185 | ;; |
|
|
186 | *) |
|
|
187 | eerror "Invalid elibtoolize option: ${x}" |
|
|
188 | die "elibtoolize called with ${x} ??" |
|
|
189 | esac |
| 65 | done |
190 | done |
| 66 | |
191 | |
|
|
192 | [[ ${do_uclibc} == "yes" ]] && \ |
|
|
193 | elt_patches="${elt_patches} uclibc-conf uclibc-ltconf" |
|
|
194 | |
|
|
195 | [[ ${CHOST} == *"-freebsd"* ]] && \ |
|
|
196 | elt_patches="${elt_patches} fbsd-conf" |
|
|
197 | |
|
|
198 | if useq ppc-macos ; then |
|
|
199 | local opts |
|
|
200 | [[ -f Makefile.am ]] && opts="--automake" |
|
|
201 | glibtoolize --copy --force ${opts} |
|
|
202 | |
|
|
203 | elt_patches="${elt_patches} darwin-ltconf darwin-ltmain" |
|
|
204 | fi |
|
|
205 | |
| 67 | for x in ${mylist} |
206 | for x in ${my_dirlist} ; do |
| 68 | do |
207 | local tmp=$(echo "${x}" | sed -e "s|${WORKDIR}||") |
|
|
208 | export ELT_APPLIED_PATCHES= |
|
|
209 | export ELT_LTMAIN_SH="${x}/ltmain.sh" |
|
|
210 | |
|
|
211 | [[ -f ${x}/.elibtoolized ]] && continue |
|
|
212 | |
| 69 | cd ${x} |
213 | cd ${x} |
| 70 | einfo "Working directory: ${x}..." |
214 | einfo "Running elibtoolize in: $(echo "/${tmp}" | sed -e 's|//|/|g; s|^/||')" |
| 71 | dopatch="yes" |
|
|
| 72 | dotest="yes" |
|
|
| 73 | dorelink="yes" |
|
|
| 74 | dotmp="yes" |
|
|
| 75 | doportage="yes" |
|
|
| 76 | |
215 | |
| 77 | for y in test_patch relink_patch tmp_patch portage_patch |
216 | for y in ${elt_patches} ; do |
| 78 | do |
217 | local ret=0 |
| 79 | if ! eval ${y} --test $>${T}/elibtool.log |
218 | |
| 80 | then |
219 | case "${y}" in |
|
|
220 | "rem-int-dep") |
|
|
221 | ELT_walk_patches "${x}/ltmain.sh" "${y}" "${deptoremove}" |
|
|
222 | ret=$? |
|
|
223 | ;; |
|
|
224 | "fix-relink") |
|
|
225 | # Do not apply if we do not have the relink patch applied ... |
|
|
226 | if [[ -n $(grep 'inst_prefix_dir' "${x}/ltmain.sh") ]] ; then |
|
|
227 | ELT_walk_patches "${x}/ltmain.sh" "${y}" |
|
|
228 | ret=$? |
|
|
229 | fi |
|
|
230 | ;; |
|
|
231 | "max_cmd_len") |
|
|
232 | # Do not apply if $max_cmd_len is not used ... |
|
|
233 | if [[ -n $(grep 'max_cmd_len' "${x}/ltmain.sh") ]] ; then |
|
|
234 | ELT_walk_patches "${x}/ltmain.sh" "${y}" |
|
|
235 | ret=$? |
|
|
236 | fi |
|
|
237 | ;; |
|
|
238 | "uclibc-conf") |
|
|
239 | if [[ -e ${x}/configure && \ |
|
|
240 | -n $(grep 'Transform linux' "${x}/configure") ]] ; then |
|
|
241 | ELT_walk_patches "${x}/configure" "${y}" |
|
|
242 | ret=$? |
|
|
243 | # ltmain.sh and co might be in a subdirectory ... |
|
|
244 | elif [[ ! -e ${x}/configure && -e ${x}/../configure && \ |
|
|
245 | -n $(grep 'Transform linux' "${x}/../configure") ]] ; then |
|
|
246 | ELT_walk_patches "${x}/../configure" "${y}" |
|
|
247 | ret=$? |
|
|
248 | fi |
|
|
249 | ;; |
|
|
250 | "uclibc-ltconf") |
|
|
251 | # Newer libtoolize clears ltconfig, as not used anymore |
|
|
252 | if [[ -s ${x}/ltconfig ]] ; then |
|
|
253 | ELT_walk_patches "${x}/ltconfig" "${y}" |
|
|
254 | ret=$? |
|
|
255 | fi |
|
|
256 | ;; |
|
|
257 | "fbsd-conf") |
|
|
258 | if [[ -e ${x}/configure && \ |
|
|
259 | -n $(grep 'version_type=freebsd-' "${x}/configure") ]] ; then |
|
|
260 | ELT_walk_patches "${x}/configure" "${y}" |
|
|
261 | ret=$? |
|
|
262 | # ltmain.sh and co might be in a subdirectory ... |
|
|
263 | elif [[ ! -e ${x}/configure && -e ${x}/../configure && \ |
|
|
264 | -n $(grep 'version_type=freebsd-' "${x}/../configure") ]] ; then |
|
|
265 | ELT_walk_patches "${x}/../configure" "${y}" |
|
|
266 | ret=$? |
|
|
267 | fi |
|
|
268 | ;; |
|
|
269 | "darwin-ltconf") |
|
|
270 | # Newer libtoolize clears ltconfig, as not used anymore |
|
|
271 | if [[ -s ${x}/ltconfig ]] ; then |
|
|
272 | ELT_walk_patches "${x}/ltconfig" "${y}" |
|
|
273 | ret=$? |
|
|
274 | fi |
|
|
275 | ;; |
|
|
276 | *) |
|
|
277 | ELT_walk_patches "${x}/ltmain.sh" "${y}" |
|
|
278 | ret=$? |
|
|
279 | ;; |
|
|
280 | esac |
|
|
281 | |
|
|
282 | if [[ ${ret} -ne 0 ]] ; then |
| 81 | case ${y} in |
283 | case ${y} in |
| 82 | test_patch) |
284 | "relink") |
| 83 | # non critical patch |
285 | local version=$(ELT_libtool_version "${x}/ltmain.sh") |
| 84 | dotest="no" |
286 | # Critical patch, but could be applied ... |
|
|
287 | # FIXME: Still need a patch for ltmain.sh > 1.4.0 |
|
|
288 | if [[ -z $(grep 'inst_prefix_dir' "${x}/ltmain.sh") && \ |
|
|
289 | $(VER_to_int "${version}") -ge $(VER_to_int "1.4.0") ]] ; then |
|
|
290 | ewarn " Could not apply relink.patch!" |
|
|
291 | fi |
| 85 | ;; |
292 | ;; |
| 86 | relink_patch) |
293 | "portage") |
| 87 | # critical patch, but could be applied |
294 | # Critical patch - for this one we abort, as it can really |
| 88 | if [ -z "$(grep -e "inst_prefix_dir" ltmain.sh)" ] && \ |
295 | # cause breakage without it applied! |
| 89 | [ "${portage}" = "no" ] |
296 | if [[ ${do_portage} == "yes" ]] ; then |
| 90 | then |
297 | # Stupid test to see if its already applied ... |
| 91 | dopatch="no" |
298 | if [[ -z $(grep 'We do not want portage' "${x}/ltmain.sh") ]] ; then |
|
|
299 | echo |
|
|
300 | eerror "Portage patch requested, but failed to apply!" |
|
|
301 | die "Portage patch requested, but failed to apply!" |
|
|
302 | fi |
|
|
303 | else |
|
|
304 | if [[ -n $(grep 'We do not want portage' "${x}/ltmain.sh") ]] ; then |
|
|
305 | # ewarn " Portage patch seems to be already applied." |
|
|
306 | # ewarn " Please verify that it is not needed." |
|
|
307 | : |
|
|
308 | else |
|
|
309 | local version=$( \ |
|
|
310 | eval $(grep -e '^[[:space:]]*VERSION=' "${x}/ltmain.sh"); \ |
|
|
311 | echo "${VERSION}") |
|
|
312 | |
|
|
313 | echo |
|
|
314 | eerror "Portage patch failed to apply (ltmain.sh version ${version})!" |
|
|
315 | die "Portage patch failed to apply!" |
|
|
316 | fi |
|
|
317 | # We do not want to run libtoolize ... |
|
|
318 | ELT_APPLIED_PATCHES="portage" |
| 92 | fi |
319 | fi |
| 93 | dorelink="no" |
|
|
| 94 | ;; |
320 | ;; |
| 95 | tmp_patch) |
321 | "uclibc-"*) |
| 96 | # non critical patch |
322 | [[ ${CHOST} == *"-uclibc" ]] && \ |
| 97 | dotmp="no" |
323 | ewarn " uClibc patch set '${y}' failed to apply!" |
| 98 | ;; |
324 | ;; |
| 99 | portage_patch) |
325 | "fbsd-"*) |
| 100 | # critical patch |
326 | if [[ ${CHOST} == *"-freebsd"* ]] ; then |
| 101 | if [ "${portage}" = "yes" ] |
327 | if [[ -z $(grep 'Handle Gentoo/FreeBSD as it was Linux' "${x}/configure") ]]; then |
| 102 | then |
328 | eerror " FreeBSD patch set '${y}' failed to apply!" |
| 103 | echo |
329 | die "FreeBSD patch set '${y}' failed to apply!" |
| 104 | eerror "Portage patch requested, but failed to apply!" |
|
|
| 105 | die |
330 | fi |
| 106 | fi |
331 | fi |
| 107 | dopatch="no" |
332 | ;; |
| 108 | doportage="no" |
333 | "darwin-"*) |
|
|
334 | useq ppc-macos && \ |
|
|
335 | ewarn " Darwin patch set '${y}' failed to apply!" |
| 109 | ;; |
336 | ;; |
| 110 | esac |
337 | esac |
| 111 | fi |
338 | fi |
| 112 | done |
339 | done |
| 113 | |
340 | |
| 114 | # Only apply portage patch ... I think if other can apply, they should. |
341 | if [[ -z ${ELT_APPLIED_PATCHES} ]] ; then |
| 115 | # if [ "${portage}" = "yes" ] |
342 | if [[ ${do_portage} == "no" && \ |
| 116 | # then |
343 | ${do_reversedeps} == "no" && \ |
| 117 | # dotest="no" |
344 | ${do_only_patches} == "no" && \ |
| 118 | # dorelink="no" |
345 | ${deptoremove} == "" ]] |
| 119 | # dotmp="no" |
|
|
| 120 | # fi |
|
|
| 121 | |
|
|
| 122 | for y in test_patch relink_patch tmp_patch portage_patch |
|
|
| 123 | do |
|
|
| 124 | if [ "${dopatch}" = "yes" ] |
|
|
| 125 | then |
346 | then |
| 126 | case ${y} in |
347 | ewarn "Cannot apply any patches, please file a bug about this" |
| 127 | test_patch) |
348 | break |
| 128 | if [ "${dotest}" = "no" ] |
349 | |
| 129 | then |
|
|
| 130 | continue |
|
|
| 131 | fi |
|
|
| 132 | ;; |
|
|
| 133 | relink_patch) |
|
|
| 134 | if [ "${dorelink}" = "no" ] |
|
|
| 135 | then |
|
|
| 136 | continue |
|
|
| 137 | fi |
|
|
| 138 | ;; |
|
|
| 139 | tmp_patch) |
|
|
| 140 | if [ "${dotmp}" = "no" ] |
|
|
| 141 | then |
|
|
| 142 | continue |
|
|
| 143 | fi |
|
|
| 144 | ;; |
|
|
| 145 | portage_patch) |
|
|
| 146 | if [ "${doportage}" = "no" ] |
|
|
| 147 | then |
|
|
| 148 | continue |
|
|
| 149 | fi |
|
|
| 150 | ;; |
|
|
| 151 | esac |
|
|
| 152 | |
|
|
| 153 | einfo "Applying libtool-${y/_patch/}.patch..." |
|
|
| 154 | eval ${y} $>${T}/elibtool.log |
|
|
| 155 | elif [ "${portage}" = "no" ] && [ "${reversedeps}" = "no" ] && [ "${removeinternaldep}" = "no" ] |
|
|
| 156 | then |
|
|
| 157 | # Sometimes ltmain.sh is in a subdirectory ... |
350 | # Sometimes ltmain.sh is in a subdirectory ... |
| 158 | if [ ! -f ${x}/configure.in -a ! -f ${x}/configure.ac ] |
351 | if [[ ! -f ${x}/configure.in && ! -f ${x}/configure.ac ]] ; then |
| 159 | then |
|
|
| 160 | if [ -f ${x}/../configure.in -o -f ${x}/../configure.ac ] |
352 | if [[ -f ${x}/../configure.in || -f ${x}/../configure.ac ]] ; then |
| 161 | then |
|
|
| 162 | cd ${x}/../ |
353 | cd "${x}"/../ |
| 163 | fi |
354 | fi |
| 164 | fi |
355 | fi |
| 165 | |
356 | |
|
|
357 | if type -p libtoolize &> /dev/null ; then |
| 166 | ewarn "Cannot apply any patch, running libtoolize..." |
358 | ewarn "Cannot apply any patches, running libtoolize..." |
| 167 | libtoolize --copy --force |
359 | libtoolize --copy --force |
|
|
360 | fi |
| 168 | cd ${x} |
361 | cd "${x}" |
| 169 | break |
362 | break |
| 170 | fi |
363 | fi |
| 171 | done |
|
|
| 172 | |
|
|
| 173 | if [ "${reversedeps}" = "yes" ] |
|
|
| 174 | then |
|
|
| 175 | if eval reversedeps_patch --test $>${T}/libtool.foo |
|
|
| 176 | then |
|
|
| 177 | einfo "Applying libtool-reverse-deps.patch..." |
|
|
| 178 | eval reversedeps_patch $>${T}/libtool.foo |
|
|
| 179 | else |
|
|
| 180 | ewarn "Not applying libtool-reverse-deps.patch..." |
|
|
| 181 | fi |
|
|
| 182 | fi |
364 | fi |
| 183 | |
365 | |
| 184 | if [ "${removeinternaldep}" = "yes" ] |
366 | [[ -f ${x}/libtool ]] && rm -f "${x}/libtool" |
| 185 | then |
367 | |
| 186 | if eval remove_internal_dep_patch $deptoremove --test $>${T}/libtool.foo |
368 | touch "${x}/.elibtoolized" |
| 187 | then |
|
|
| 188 | einfo "Applying remove-internal-dep.patch (removing $deptoremove)..." |
|
|
| 189 | eval remove_internal_dep_patch $deptoremove $>${T}/libtool.foo |
|
|
| 190 | else |
|
|
| 191 | ewarn "Not applying libtool-remove-internal-dep.patch..." |
|
|
| 192 | fi |
|
|
| 193 | fi |
|
|
| 194 | done |
369 | done |
| 195 | |
370 | |
| 196 | if [ -f libtool ] |
371 | cd "${start_dir}" |
| 197 | then |
372 | } |
| 198 | rm -f libtool |
373 | |
|
|
374 | uclibctoolize() { |
|
|
375 | ewarn "uclibctoolize() is depreciated, please just use elibtoolize()!" |
|
|
376 | elibtoolize |
|
|
377 | } |
|
|
378 | |
|
|
379 | darwintoolize() { |
|
|
380 | ewarn "darwintoolize() is depreciated, please just use elibtoolize()!" |
|
|
381 | elibtoolize |
|
|
382 | } |
|
|
383 | |
|
|
384 | # char *VER_major(string) |
|
|
385 | # |
|
|
386 | # Return the Major (X of X.Y.Z) version |
|
|
387 | # |
|
|
388 | VER_major() { |
|
|
389 | [[ -z $1 ]] && return 1 |
|
|
390 | |
|
|
391 | local VER=$@ |
|
|
392 | echo "${VER%%[^[:digit:]]*}" |
|
|
393 | } |
|
|
394 | |
|
|
395 | # char *VER_minor(string) |
|
|
396 | # |
|
|
397 | # Return the Minor (Y of X.Y.Z) version |
|
|
398 | # |
|
|
399 | VER_minor() { |
|
|
400 | [[ -z $1 ]] && return 1 |
|
|
401 | |
|
|
402 | local VER=$@ |
|
|
403 | VER=${VER#*.} |
|
|
404 | echo "${VER%%[^[:digit:]]*}" |
|
|
405 | } |
|
|
406 | |
|
|
407 | # char *VER_micro(string) |
|
|
408 | # |
|
|
409 | # Return the Micro (Z of X.Y.Z) version. |
|
|
410 | # |
|
|
411 | VER_micro() { |
|
|
412 | [[ -z $1 ]] && return 1 |
|
|
413 | |
|
|
414 | local VER=$@ |
|
|
415 | VER=${VER#*.*.} |
|
|
416 | echo "${VER%%[^[:digit:]]*}" |
|
|
417 | } |
|
|
418 | |
|
|
419 | # int VER_to_int(string) |
|
|
420 | # |
|
|
421 | # Convert a string type version (2.4.0) to an int (132096) |
|
|
422 | # for easy compairing or versions ... |
|
|
423 | # |
|
|
424 | VER_to_int() { |
|
|
425 | [[ -z $1 ]] && return 1 |
|
|
426 | |
|
|
427 | local VER_MAJOR=$(VER_major "$1") |
|
|
428 | local VER_MINOR=$(VER_minor "$1") |
|
|
429 | local VER_MICRO=$(VER_micro "$1") |
|
|
430 | local VER_int=$(( VER_MAJOR * 65536 + VER_MINOR * 256 + VER_MICRO )) |
|
|
431 | |
|
|
432 | # We make version 1.0.0 the minimum version we will handle as |
|
|
433 | # a sanity check ... if its less, we fail ... |
|
|
434 | if [[ ${VER_int} -ge 65536 ]] ; then |
|
|
435 | echo "${VER_int}" |
|
|
436 | return 0 |
| 199 | fi |
437 | fi |
| 200 | |
438 | |
| 201 | # We need to change the pwd back to $S, as we may be called in |
439 | echo 1 |
| 202 | # src_compile() |
440 | return 1 |
| 203 | cd ${S} |
|
|
| 204 | } |
441 | } |
| 205 | |
|
|
| 206 | # |
|
|
| 207 | # Returns all the directories containing ltmain.sh |
|
|
| 208 | # |
|
|
| 209 | find_ltmain() { |
|
|
| 210 | |
|
|
| 211 | local x="" |
|
|
| 212 | local dirlist="" |
|
|
| 213 | |
|
|
| 214 | for x in $(find ${S} -name 'ltmain.sh') |
|
|
| 215 | do |
|
|
| 216 | dirlist="${dirlist} ${x%/*}" |
|
|
| 217 | done |
|
|
| 218 | |
|
|
| 219 | echo "${dirlist}" |
|
|
| 220 | } |
|
|
| 221 | |
|
|
| 222 | # |
|
|
| 223 | # Various patches we want to apply. |
|
|
| 224 | # |
|
|
| 225 | # Contains: portage_patch |
|
|
| 226 | # relink_patch |
|
|
| 227 | # test_patch |
|
|
| 228 | # |
|
|
| 229 | portage_patch() { |
|
|
| 230 | |
|
|
| 231 | local opts="" |
|
|
| 232 | |
|
|
| 233 | if [ "${1}" = "--test" ] |
|
|
| 234 | then |
|
|
| 235 | opts="--force --dry-run" |
|
|
| 236 | fi |
|
|
| 237 | |
|
|
| 238 | patch ${opts} -p0 <<-"ENDPATCH" |
|
|
| 239 | --- ltmain.sh.orig Wed Apr 3 01:19:37 2002 |
|
|
| 240 | +++ ltmain.sh Sun May 26 19:50:52 2002 |
|
|
| 241 | @@ -3940,9 +3940,46 @@ |
|
|
| 242 | $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2 |
|
|
| 243 | exit 1 |
|
|
| 244 | fi |
|
|
| 245 | - newdependency_libs="$newdependency_libs $libdir/$name" |
|
|
| 246 | + # We do not want portage's install root ($D) present. Check only for |
|
|
| 247 | + # this if the .la is being installed. |
|
|
| 248 | + if test "$installed" = yes && test "$D"; then |
|
|
| 249 | + eval mynewdependency_lib="`echo "$libdir/$name" |sed -e "s:$D::g" -e 's://:/:g'`" |
|
|
| 250 | + else |
|
|
| 251 | + mynewdependency_lib="$libdir/$name" |
|
|
| 252 | + fi |
|
|
| 253 | + # Do not add duplicates |
|
|
| 254 | + if test "$mynewdependency_lib"; then |
|
|
| 255 | + if test -z "`echo $newdependency_libs |grep -e "$mynewdependency_lib"`"; then |
|
|
| 256 | + newdependency_libs="$newdependency_libs $mynewdependency_lib" |
|
|
| 257 | + fi |
|
|
| 258 | + fi |
|
|
| 259 | + ;; |
|
|
| 260 | + *) |
|
|
| 261 | + if test "$installed" = yes; then |
|
|
| 262 | + # Rather use S=WORKDIR if our version of portage supports it. |
|
|
| 263 | + # This is because some ebuild (gcc) do not use $S as buildroot. |
|
|
| 264 | + if test "$PWORKDIR"; then |
|
|
| 265 | + S="$PWORKDIR" |
|
|
| 266 | + fi |
|
|
| 267 | + # We do not want portage's build root ($S) present. |
|
|
| 268 | + if test -n "`echo $deplib |grep -e "$S"`" && test "$S"; then |
|
|
| 269 | + mynewdependency_lib="" |
|
|
| 270 | + # We do not want portage's install root ($D) present. |
|
|
| 271 | + elif test -n "`echo $deplib |grep -e "$D"`" && test "$D"; then |
|
|
| 272 | + eval mynewdependency_lib="`echo "$deplib" |sed -e "s:$D::g" -e 's://:/:g'`" |
|
|
| 273 | + else |
|
|
| 274 | + mynewdependency_lib="$deplib" |
|
|
| 275 | + fi |
|
|
| 276 | + else |
|
|
| 277 | + mynewdependency_lib="$deplib" |
|
|
| 278 | + fi |
|
|
| 279 | + # Do not add duplicates |
|
|
| 280 | + if test "$mynewdependency_lib"; then |
|
|
| 281 | + if test -z "`echo $newdependency_libs |grep -e "$mynewdependency_lib"`"; then |
|
|
| 282 | + newdependency_libs="$newdependency_libs $mynewdependency_lib" |
|
|
| 283 | + fi |
|
|
| 284 | + fi |
|
|
| 285 | ;; |
|
|
| 286 | - *) newdependency_libs="$newdependency_libs $deplib" ;; |
|
|
| 287 | esac |
|
|
| 288 | done |
|
|
| 289 | dependency_libs="$newdependency_libs" |
|
|
| 290 | @@ -3975,6 +4005,10 @@ |
|
|
| 291 | case $host,$output,$installed,$module,$dlname in |
|
|
| 292 | *cygwin*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;; |
|
|
| 293 | esac |
|
|
| 294 | + # Do not add duplicates |
|
|
| 295 | + if test "$installed" = yes && test "$D"; then |
|
|
| 296 | + install_libdir="`echo "$install_libdir" |sed -e "s:$D::g" -e 's://:/:g'`" |
|
|
| 297 | + fi |
|
|
| 298 | $echo > $output "\ |
|
|
| 299 | # $outputname - a libtool library file |
|
|
| 300 | # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP |
|
|
| 301 | ENDPATCH |
|
|
| 302 | } |
|
|
| 303 | |
|
|
| 304 | relink_patch() { |
|
|
| 305 | |
|
|
| 306 | local opts="" |
|
|
| 307 | local retval=0 |
|
|
| 308 | |
|
|
| 309 | if [ "${1}" = "--test" ] |
|
|
| 310 | then |
|
|
| 311 | opts="--force --dry-run" |
|
|
| 312 | fi |
|
|
| 313 | |
|
|
| 314 | patch ${opts} -p0 <<-"ENDPATCH" |
|
|
| 315 | --- ltmain.sh Sun Aug 12 18:08:05 2001 |
|
|
| 316 | +++ ltmain-relinkable.sh Tue Aug 28 18:55:13 2001 |
|
|
| 317 | @@ -827,6 +827,7 @@ |
|
|
| 318 | linker_flags= |
|
|
| 319 | dllsearchpath= |
|
|
| 320 | lib_search_path=`pwd` |
|
|
| 321 | + inst_prefix_dir= |
|
|
| 322 | |
|
|
| 323 | avoid_version=no |
|
|
| 324 | dlfiles= |
|
|
| 325 | @@ -959,6 +960,11 @@ |
|
|
| 326 | prev= |
|
|
| 327 | continue |
|
|
| 328 | ;; |
|
|
| 329 | + inst_prefix) |
|
|
| 330 | + inst_prefix_dir="$arg" |
|
|
| 331 | + prev= |
|
|
| 332 | + continue |
|
|
| 333 | + ;; |
|
|
| 334 | release) |
|
|
| 335 | release="-$arg" |
|
|
| 336 | prev= |
|
|
| 337 | @@ -1167,6 +1173,11 @@ |
|
|
| 338 | continue |
|
|
| 339 | ;; |
|
|
| 340 | |
|
|
| 341 | + -inst-prefix-dir) |
|
|
| 342 | + prev=inst_prefix |
|
|
| 343 | + continue |
|
|
| 344 | + ;; |
|
|
| 345 | + |
|
|
| 346 | # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* |
|
|
| 347 | # so, if we see these flags be careful not to treat them like -L |
|
|
| 348 | -L[A-Z][A-Z]*:*) |
|
|
| 349 | @@ -2231,7 +2242,16 @@ |
|
|
| 350 | if test "$hardcode_direct" = yes; then |
|
|
| 351 | add="$libdir/$linklib" |
|
|
| 352 | elif test "$hardcode_minus_L" = yes; then |
|
|
| 353 | - add_dir="-L$libdir" |
|
|
| 354 | + # Try looking first in the location we're being installed to. |
|
|
| 355 | + add_dir= |
|
|
| 356 | + if test -n "$inst_prefix_dir"; then |
|
|
| 357 | + case "$libdir" in |
|
|
| 358 | + [\\/]*) |
|
|
| 359 | + add_dir="-L$inst_prefix_dir$libdir" |
|
|
| 360 | + ;; |
|
|
| 361 | + esac |
|
|
| 362 | + fi |
|
|
| 363 | + add_dir="$add_dir -L$libdir" |
|
|
| 364 | add="-l$name" |
|
|
| 365 | elif test "$hardcode_shlibpath_var" = yes; then |
|
|
| 366 | case :$finalize_shlibpath: in |
|
|
| 367 | @@ -2241,7 +2261,16 @@ |
|
|
| 368 | add="-l$name" |
|
|
| 369 | else |
|
|
| 370 | # We cannot seem to hardcode it, guess we'll fake it. |
|
|
| 371 | - add_dir="-L$libdir" |
|
|
| 372 | + # Try looking first in the location we're being installed to. |
|
|
| 373 | + add_dir= |
|
|
| 374 | + if test -n "$inst_prefix_dir"; then |
|
|
| 375 | + case "$libdir" in |
|
|
| 376 | + [\\/]*) |
|
|
| 377 | + add_dir="-L$inst_prefix_dir$libdir" |
|
|
| 378 | + ;; |
|
|
| 379 | + esac |
|
|
| 380 | + fi |
|
|
| 381 | + add_dir="$add_dir -L$libdir" |
|
|
| 382 | add="-l$name" |
|
|
| 383 | fi |
|
|
| 384 | |
|
|
| 385 | @@ -4622,12 +4651,30 @@ |
|
|
| 386 | dir="$dir$objdir" |
|
|
| 387 | |
|
|
| 388 | if test -n "$relink_command"; then |
|
|
| 389 | + # Determine the prefix the user has applied to our future dir. |
|
|
| 390 | + inst_prefix_dir=`$echo "$destdir" | sed "s%$libdir\$%%"` |
|
|
| 391 | + |
|
|
| 392 | + # Don't allow the user to place us outside of our expected |
|
|
| 393 | + # location b/c this prevents finding dependent libraries that |
|
|
| 394 | + # are installed to the same prefix. |
|
|
| 395 | + if test "$inst_prefix_dir" = "$destdir"; then |
|
|
| 396 | + $echo "$modename: error: cannot install \`$file' to a directory not ending in $libdir" 1>&2 |
|
|
| 397 | + exit 1 |
|
|
| 398 | + fi |
|
|
| 399 | + |
|
|
| 400 | + if test -n "$inst_prefix_dir"; then |
|
|
| 401 | + # Stick the inst_prefix_dir data into the link command. |
|
|
| 402 | + relink_command=`$echo "$relink_command" | sed "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` |
|
|
| 403 | + else |
|
|
| 404 | + relink_command=`$echo "$relink_command" | sed "s%@inst_prefix_dir@%%"` |
|
|
| 405 | + fi |
|
|
| 406 | + |
|
|
| 407 | $echo "$modename: warning: relinking \`$file'" 1>&2 |
|
|
| 408 | $show "$relink_command" |
|
|
| 409 | if $run eval "$relink_command"; then : |
|
|
| 410 | else |
|
|
| 411 | $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2 |
|
|
| 412 | - continue |
|
|
| 413 | + exit 1 |
|
|
| 414 | fi |
|
|
| 415 | fi |
|
|
| 416 | |
|
|
| 417 | ENDPATCH |
|
|
| 418 | |
|
|
| 419 | retval=$? |
|
|
| 420 | |
|
|
| 421 | # This one dont apply clean to libtool-1.4.2a, so do it manually. |
|
|
| 422 | if [ "${1}" != "--test" ] && [ "${retval}" -eq 0 ] |
|
|
| 423 | then |
|
|
| 424 | cp ltmain.sh ltmain.sh.orig |
|
|
| 425 | sed -e 's:cd `pwd`; $SHELL $0 --mode=relink $libtool_args:cd `pwd`; $SHELL $0 --mode=relink $libtool_args @inst_prefix_dir@:' \ |
|
|
| 426 | ltmain.sh.orig > ltmain.sh |
|
|
| 427 | rm -f ltmain.sh.orig |
|
|
| 428 | fi |
|
|
| 429 | |
|
|
| 430 | return ${retval} |
|
|
| 431 | } |
|
|
| 432 | |
|
|
| 433 | tmp_patch() { |
|
|
| 434 | |
|
|
| 435 | local opts="" |
|
|
| 436 | |
|
|
| 437 | if [ "${1}" = "--test" ] |
|
|
| 438 | then |
|
|
| 439 | opts="--force --dry-run" |
|
|
| 440 | fi |
|
|
| 441 | |
|
|
| 442 | patch ${opts} -p0 <<-"ENDPATCH" |
|
|
| 443 | --- ltmain.sh Sun Aug 12 18:08:05 2001 |
|
|
| 444 | +++ ltmain-relinkable.sh Tue Aug 28 18:55:13 2001 |
|
|
| 445 | @@ -4782,7 +4829,11 @@ |
|
|
| 446 | if test "$finalize" = yes && test -z "$run"; then |
|
|
| 447 | tmpdir="/tmp" |
|
|
| 448 | test -n "$TMPDIR" && tmpdir="$TMPDIR" |
|
|
| 449 | - tmpdir="$tmpdir/libtool-$$" |
|
|
| 450 | + tmpdir=`mktemp -d $tmpdir/libtool-XXXXXX 2> /dev/null` |
|
|
| 451 | + if test $? = 0 ; then : |
|
|
| 452 | + else |
|
|
| 453 | + tmpdir="$tmpdir/libtool-$$" |
|
|
| 454 | + fi |
|
|
| 455 | if $mkdir -p "$tmpdir" && chmod 700 "$tmpdir"; then : |
|
|
| 456 | else |
|
|
| 457 | $echo "$modename: error: cannot create temporary directory \`$tmpdir'" 1>&2 |
|
|
| 458 | ENDPATCH |
|
|
| 459 | } |
|
|
| 460 | |
|
|
| 461 | test_patch() { |
|
|
| 462 | |
|
|
| 463 | local opts="" |
|
|
| 464 | |
|
|
| 465 | if [ "${1}" = "--test" ] |
|
|
| 466 | then |
|
|
| 467 | opts="--force --dry-run" |
|
|
| 468 | fi |
|
|
| 469 | |
|
|
| 470 | patch ${opts} -p0 <<-"ENDPATCH" |
|
|
| 471 | --- ./ltmain.sh Tue May 29 19:16:03 2001 |
|
|
| 472 | +++ ./ltmain.sh Tue May 29 21:26:50 2001 |
|
|
| 473 | @@ -459,7 +459,7 @@ |
|
|
| 474 | pic_mode=default |
|
|
| 475 | ;; |
|
|
| 476 | esac |
|
|
| 477 | - if test $pic_mode = no && test "$deplibs_check_method" != pass_all; then |
|
|
| 478 | + if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then |
|
|
| 479 | # non-PIC code in shared libraries is not supported |
|
|
| 480 | pic_mode=default |
|
|
| 481 | fi |
|
|
| 482 | @@ -1343,7 +1343,7 @@ |
|
|
| 483 | ;; |
|
|
| 484 | esac |
|
|
| 485 | for pass in $passes; do |
|
|
| 486 | - if test $linkmode = prog; then |
|
|
| 487 | + if test "$linkmode" = prog; then |
|
|
| 488 | # Determine which files to process |
|
|
| 489 | case $pass in |
|
|
| 490 | dlopen) |
|
|
| 491 | @@ -1360,11 +1360,11 @@ |
|
|
| 492 | found=no |
|
|
| 493 | case $deplib in |
|
|
| 494 | -l*) |
|
|
| 495 | - if test $linkmode = oldlib && test $linkmode = obj; then |
|
|
| 496 | + if test "$linkmode" = oldlib && test "$linkmode" = obj; then |
|
|
| 497 | $echo "$modename: warning: \`-l' is ignored for archives/objects: $deplib" 1>&2 |
|
|
| 498 | continue |
|
|
| 499 | fi |
|
|
| 500 | - if test $pass = conv; then |
|
|
| 501 | + if test "$pass" = conv; then |
|
|
| 502 | deplibs="$deplib $deplibs" |
|
|
| 503 | continue |
|
|
| 504 | fi |
|
|
| 505 | @@ -1384,7 +1384,7 @@ |
|
|
| 506 | finalize_deplibs="$deplib $finalize_deplibs" |
|
|
| 507 | else |
|
|
| 508 | deplibs="$deplib $deplibs" |
|
|
| 509 | - test $linkmode = lib && newdependency_libs="$deplib $newdependency_libs" |
|
|
| 510 | + test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" |
|
|
| 511 | fi |
|
|
| 512 | continue |
|
|
| 513 | fi |
|
|
| 514 | @@ -1393,16 +1393,16 @@ |
|
|
| 515 | case $linkmode in |
|
|
| 516 | lib) |
|
|
| 517 | deplibs="$deplib $deplibs" |
|
|
| 518 | - test $pass = conv && continue |
|
|
| 519 | + test "$pass" = conv && continue |
|
|
| 520 | newdependency_libs="$deplib $newdependency_libs" |
|
|
| 521 | newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'` |
|
|
| 522 | ;; |
|
|
| 523 | prog) |
|
|
| 524 | - if test $pass = conv; then |
|
|
| 525 | + if test "$pass" = conv; then |
|
|
| 526 | deplibs="$deplib $deplibs" |
|
|
| 527 | continue |
|
|
| 528 | fi |
|
|
| 529 | - if test $pass = scan; then |
|
|
| 530 | + if test "$pass" = scan; then |
|
|
| 531 | deplibs="$deplib $deplibs" |
|
|
| 532 | newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'` |
|
|
| 533 | else |
|
|
| 534 | @@ -1417,7 +1417,7 @@ |
|
|
| 535 | continue |
|
|
| 536 | ;; # -L |
|
|
| 537 | -R*) |
|
|
| 538 | - if test $pass = link; then |
|
|
| 539 | + if test "$pass" = link; then |
|
|
| 540 | dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'` |
|
|
| 541 | # Make sure the xrpath contains only unique directories. |
|
|
| 542 | case "$xrpath " in |
|
|
| 543 | @@ -1430,7 +1430,7 @@ |
|
|
| 544 | ;; |
|
|
| 545 | *.la) lib="$deplib" ;; |
|
|
| 546 | *.$libext) |
|
|
| 547 | - if test $pass = conv; then |
|
|
| 548 | + if test "$pass" = conv; then |
|
|
| 549 | deplibs="$deplib $deplibs" |
|
|
| 550 | continue |
|
|
| 551 | fi |
|
|
| 552 | @@ -1451,7 +1451,7 @@ |
|
|
| 553 | continue |
|
|
| 554 | ;; |
|
|
| 555 | prog) |
|
|
| 556 | - if test $pass != link; then |
|
|
| 557 | + if test "$pass" != link; then |
|
|
| 558 | deplibs="$deplib $deplibs" |
|
|
| 559 | else |
|
|
| 560 | compile_deplibs="$deplib $compile_deplibs" |
|
|
| 561 | @@ -1462,7 +1462,7 @@ |
|
|
| 562 | esac # linkmode |
|
|
| 563 | ;; # *.$libext |
|
|
| 564 | *.lo | *.$objext) |
|
|
| 565 | - if test $pass = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then |
|
|
| 566 | + if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then |
|
|
| 567 | # If there is no dlopen support or we're linking statically, |
|
|
| 568 | # we need to preload. |
|
|
| 569 | newdlprefiles="$newdlprefiles $deplib" |
|
|
| 570 | @@ -1512,13 +1512,13 @@ |
|
|
| 571 | |
|
|
| 572 | if test "$linkmode,$pass" = "lib,link" || |
|
|
| 573 | test "$linkmode,$pass" = "prog,scan" || |
|
|
| 574 | - { test $linkmode = oldlib && test $linkmode = obj; }; then |
|
|
| 575 | + { test "$linkmode" = oldlib && test "$linkmode" = obj; }; then |
|
|
| 576 | # Add dl[pre]opened files of deplib |
|
|
| 577 | test -n "$dlopen" && dlfiles="$dlfiles $dlopen" |
|
|
| 578 | test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen" |
|
|
| 579 | fi |
|
|
| 580 | |
|
|
| 581 | - if test $pass = conv; then |
|
|
| 582 | + if test "$pass" = conv; then |
|
|
| 583 | # Only check for convenience libraries |
|
|
| 584 | deplibs="$lib $deplibs" |
|
|
| 585 | if test -z "$libdir"; then |
|
|
| 586 | @@ -1537,7 +1537,7 @@ |
|
|
| 587 | esac |
|
|
| 588 | tmp_libs="$tmp_libs $deplib" |
|
|
| 589 | done |
|
|
| 590 | - elif test $linkmode != prog && test $linkmode != lib; then |
|
|
| 591 | + elif test "$linkmode" != prog && test "$linkmode" != lib; then |
|
|
| 592 | $echo "$modename: \`$lib' is not a convenience library" 1>&2 |
|
|
| 593 | exit 1 |
|
|
| 594 | fi |
|
|
| 595 | @@ -1555,7 +1555,7 @@ |
|
|
| 596 | fi |
|
|
| 597 | |
|
|
| 598 | # This library was specified with -dlopen. |
|
|
| 599 | - if test $pass = dlopen; then |
|
|
| 600 | + if test "$pass" = dlopen; then |
|
|
| 601 | if test -z "$libdir"; then |
|
|
| 602 | $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2 |
|
|
| 603 | exit 1 |
|
|
| 604 | @@ -1604,7 +1604,7 @@ |
|
|
| 605 | name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'` |
|
|
| 606 | |
|
|
| 607 | # This library was specified with -dlpreopen. |
|
|
| 608 | - if test $pass = dlpreopen; then |
|
|
| 609 | + if test "$pass" = dlpreopen; then |
|
|
| 610 | if test -z "$libdir"; then |
|
|
| 611 | $echo "$modename: cannot -dlpreopen a convenience library: \`$lib'" 1>&2 |
|
|
| 612 | exit 1 |
|
|
| 613 | @@ -1623,7 +1623,7 @@ |
|
|
| 614 | |
|
|
| 615 | if test -z "$libdir"; then |
|
|
| 616 | # Link the convenience library |
|
|
| 617 | - if test $linkmode = lib; then |
|
|
| 618 | + if test "$linkmode" = lib; then |
|
|
| 619 | deplibs="$dir/$old_library $deplibs" |
|
|
| 620 | elif test "$linkmode,$pass" = "prog,link"; then |
|
|
| 621 | compile_deplibs="$dir/$old_library $compile_deplibs" |
|
|
| 622 | @@ -1634,7 +1634,7 @@ |
|
|
| 623 | continue |
|
|
| 624 | fi |
|
|
| 625 | |
|
|
| 626 | - if test $linkmode = prog && test $pass != link; then |
|
|
| 627 | + if test "$linkmode" = prog && test "$pass" != link; then |
|
|
| 628 | newlib_search_path="$newlib_search_path $ladir" |
|
|
| 629 | deplibs="$lib $deplibs" |
|
|
| 630 | |
|
|
| 631 | @@ -1671,7 +1671,7 @@ |
|
|
| 632 | # Link against this shared library |
|
|
| 633 | |
|
|
| 634 | if test "$linkmode,$pass" = "prog,link" || |
|
|
| 635 | - { test $linkmode = lib && test $hardcode_into_libs = yes; }; then |
|
|
| 636 | + { test "$linkmode" = lib && test "$hardcode_into_libs" = yes; }; then |
|
|
| 637 | # Hardcode the library path. |
|
|
| 638 | # Skip directories that are in the system default run-time |
|
|
| 639 | # search path. |
|
|
| 640 | @@ -1693,7 +1693,7 @@ |
|
|
| 641 | esac |
|
|
| 642 | ;; |
|
|
| 643 | esac |
|
|
| 644 | - if test $linkmode = prog; then |
|
|
| 645 | + if test "$linkmode" = prog; then |
|
|
| 646 | # We need to hardcode the library path |
|
|
| 647 | if test -n "$shlibpath_var"; then |
|
|
| 648 | # Make sure the rpath contains only unique directories. |
|
|
| 649 | @@ -1777,7 +1777,7 @@ |
|
|
| 650 | linklib=$newlib |
|
|
| 651 | fi # test -n $old_archive_from_expsyms_cmds |
|
|
| 652 | |
|
|
| 653 | - if test $linkmode = prog || test "$mode" != relink; then |
|
|
| 654 | + if test "$linkmode" = prog || test "$mode" != relink; then |
|
|
| 655 | add_shlibpath= |
|
|
| 656 | add_dir= |
|
|
| 657 | add= |
|
|
| 658 | @@ -1826,7 +1826,7 @@ |
|
|
| 659 | *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;; |
|
|
| 660 | esac |
|
|
| 661 | fi |
|
|
| 662 | - if test $linkmode = prog; then |
|
|
| 663 | + if test "$linkmode" = prog; then |
|
|
| 664 | test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" |
|
|
| 665 | test -n "$add" && compile_deplibs="$add $compile_deplibs" |
|
|
| 666 | else |
|
|
| 667 | @@ -1843,7 +1843,7 @@ |
|
|
| 668 | fi |
|
|
| 669 | fi |
|
|
| 670 | |
|
|
| 671 | - if test $linkmode = prog || test "$mode" = relink; then |
|
|
| 672 | + if test "$linkmode" = prog || test "$mode" = relink; then |
|
|
| 673 | add_shlibpath= |
|
|
| 674 | add_dir= |
|
|
| 675 | add= |
|
|
| 676 | @@ -1865,7 +1865,7 @@ |
|
|
| 677 | add="-l$name" |
|
|
| 678 | fi |
|
|
| 679 | |
|
|
| 680 | - if test $linkmode = prog; then |
|
|
| 681 | + if test "$linkmode" = prog; then |
|
|
| 682 | test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" |
|
|
| 683 | test -n "$add" && finalize_deplibs="$add $finalize_deplibs" |
|
|
| 684 | else |
|
|
| 685 | @@ -1873,7 +1873,7 @@ |
|
|
| 686 | test -n "$add" && deplibs="$add $deplibs" |
|
|
| 687 | fi |
|
|
| 688 | fi |
|
|
| 689 | - elif test $linkmode = prog; then |
|
|
| 690 | + elif test "$linkmode" = prog; then |
|
|
| 691 | if test "$alldeplibs" = yes && |
|
|
| 692 | { test "$deplibs_check_method" = pass_all || |
|
|
| 693 | { test "$build_libtool_libs" = yes && |
|
|
| 694 | @@ -1932,9 +1932,9 @@ |
|
|
| 695 | fi |
|
|
| 696 | fi # link shared/static library? |
|
|
| 697 | |
|
|
| 698 | - if test $linkmode = lib; then |
|
|
| 699 | + if test "$linkmode" = lib; then |
|
|
| 700 | if test -n "$dependency_libs" && |
|
|
| 701 | - { test $hardcode_into_libs != yes || test $build_old_libs = yes || |
|
|
| 702 | + { test "$hardcode_into_libs" != yes || test $build_old_libs = yes || |
|
|
| 703 | test $link_static = yes; }; then |
|
|
| 704 | # Extract -R from dependency_libs |
|
|
| 705 | temp_deplibs= |
|
|
| 706 | @@ -1964,7 +1964,7 @@ |
|
|
| 707 | tmp_libs="$tmp_libs $deplib" |
|
|
| 708 | done |
|
|
| 709 | |
|
|
| 710 | - if test $link_all_deplibs != no; then |
|
|
| 711 | + if test "$link_all_deplibs" != no; then |
|
|
| 712 | # Add the search paths of all dependency libraries |
|
|
| 713 | for deplib in $dependency_libs; do |
|
|
| 714 | case $deplib in |
|
|
| 715 | @@ -2007,15 +2007,15 @@ |
|
|
| 716 | fi # link_all_deplibs != no |
|
|
| 717 | fi # linkmode = lib |
|
|
| 718 | done # for deplib in $libs |
|
|
| 719 | - if test $pass = dlpreopen; then |
|
|
| 720 | + if test "$pass" = dlpreopen; then |
|
|
| 721 | # Link the dlpreopened libraries before other libraries |
|
|
| 722 | for deplib in $save_deplibs; do |
|
|
| 723 | deplibs="$deplib $deplibs" |
|
|
| 724 | done |
|
|
| 725 | fi |
|
|
| 726 | - if test $pass != dlopen; then |
|
|
| 727 | - test $pass != scan && dependency_libs="$newdependency_libs" |
|
|
| 728 | - if test $pass != conv; then |
|
|
| 729 | + if test "$pass" != dlopen; then |
|
|
| 730 | + test "$pass" != scan && dependency_libs="$newdependency_libs" |
|
|
| 731 | + if test "$pass" != conv; then |
|
|
| 732 | # Make sure lib_search_path contains only unique directories. |
|
|
| 733 | lib_search_path= |
|
|
| 734 | for dir in $newlib_search_path; do |
|
|
| 735 | @@ -2073,7 +2073,7 @@ |
|
|
| 736 | deplibs= |
|
|
| 737 | fi |
|
|
| 738 | done # for pass |
|
|
| 739 | - if test $linkmode = prog; then |
|
|
| 740 | + if test "$linkmode" = prog; then |
|
|
| 741 | dlfiles="$newdlfiles" |
|
|
| 742 | dlprefiles="$newdlprefiles" |
|
|
| 743 | fi |
|
|
| 744 | @@ -2410,7 +2410,7 @@ |
|
|
| 745 | ;; |
|
|
| 746 | *) |
|
|
| 747 | # Add libc to deplibs on all other systems if necessary. |
|
|
| 748 | - if test $build_libtool_need_lc = "yes"; then |
|
|
| 749 | + if test "$build_libtool_need_lc" = "yes"; then |
|
|
| 750 | deplibs="$deplibs -lc" |
|
|
| 751 | fi |
|
|
| 752 | ;; |
|
|
| 753 | @@ -2683,7 +2683,7 @@ |
|
|
| 754 | |
|
|
| 755 | # Test again, we may have decided not to build it any more |
|
|
| 756 | if test "$build_libtool_libs" = yes; then |
|
|
| 757 | - if test $hardcode_into_libs = yes; then |
|
|
| 758 | + if test "$hardcode_into_libs" = yes; then |
|
|
| 759 | # Hardcode the library paths |
|
|
| 760 | hardcode_libdirs= |
|
|
| 761 | dep_rpath= |
|
|
| 762 | ENDPATCH |
|
|
| 763 | } |
|
|
| 764 | |
|
|
| 765 | reversedeps_patch() { |
|
|
| 766 | |
|
|
| 767 | local opts="" |
|
|
| 768 | |
|
|
| 769 | if [ "${1}" = "--test" ] |
|
|
| 770 | then |
|
|
| 771 | opts="--force --dry-run" |
|
|
| 772 | fi |
|
|
| 773 | |
|
|
| 774 | patch ${opts} -p0 <<-"ENDPATCH" |
|
|
| 775 | --- ltmain.sh.orig Sat Mar 23 22:48:45 2002 |
|
|
| 776 | +++ ltmain.sh Sat Mar 23 22:45:38 2002 |
|
|
| 777 | @@ -1553,6 +1553,8 @@ |
|
|
| 778 | convenience="$convenience $ladir/$objdir/$old_library" |
|
|
| 779 | old_convenience="$old_convenience $ladir/$objdir/$old_library" |
|
|
| 780 | tmp_libs= |
|
|
| 781 | + # PKGW |
|
|
| 782 | + dependency_libs= |
|
|
| 783 | for deplib in $dependency_libs; do |
|
|
| 784 | deplibs="$deplib $deplibs" |
|
|
| 785 | case "$tmp_libs " in |
|
|
| 786 | @@ -1668,6 +1670,8 @@ |
|
|
| 787 | fi |
|
|
| 788 | |
|
|
| 789 | tmp_libs= |
|
|
| 790 | + #PKGW |
|
|
| 791 | + dependency_libs= |
|
|
| 792 | for deplib in $dependency_libs; do |
|
|
| 793 | case $deplib in |
|
|
| 794 | -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test |
|
|
| 795 | @@ -2081,7 +2085,7 @@ |
|
|
| 796 | -L*) |
|
|
| 797 | case " $tmp_libs " in |
|
|
| 798 | *" $deplib "*) ;; |
|
|
| 799 | - *) tmp_libs="$tmp_libs $deplib" ;; |
|
|
| 800 | + *) tmp_libs="$deplib $tmp_libs" ;; |
|
|
| 801 | esac |
|
|
| 802 | ;; |
|
|
| 803 | *) tmp_libs="$tmp_libs $deplib" ;; |
|
|
| 804 | ENDPATCH |
|
|
| 805 | } |
|
|
| 806 | |
|
|
| 807 | remove_internal_dep_patch() { |
|
|
| 808 | local opts="" |
|
|
| 809 | |
|
|
| 810 | if [ "${2}" = "--test" ] |
|
|
| 811 | then |
|
|
| 812 | opts="--force --dry-run" |
|
|
| 813 | fi |
|
|
| 814 | |
|
|
| 815 | patch ${opts} -p0 <<-ENDPATCH |
|
|
| 816 | --- ltmain.sh.orig 2002-11-01 19:56:50.000000000 -0600 |
|
|
| 817 | +++ ltmain.sh 2002-11-01 19:57:03.000000000 -0600 |
|
|
| 818 | @@ -4551,6 +4551,8 @@ |
|
|
| 819 | if test "\$installed" = yes && test "\$D"; then |
|
|
| 820 | install_libdir="\`echo "\$install_libdir" |sed -e "s:\$D::g" -e 's://:/:g'\`" |
|
|
| 821 | fi |
|
|
| 822 | + # Removing $1 from dependency_libs in .la |
|
|
| 823 | + dependency_libs=\`echo \$dependency_libs | \$Xsed -e 's%\([^ ]*lib${1}\.\(so\|la\|a\)\)\|\(-l${1}\)%%g'\` |
|
|
| 824 | \$echo > \$output "\\ |
|
|
| 825 | # \$outputname - a libtool library file |
|
|
| 826 | # Generated by \$PROGRAM - GNU \$PACKAGE \$VERSION\$TIMESTAMP |
|
|
| 827 | ENDPATCH |
|
|
| 828 | } |
|
|
| 829 | |
|
|