| 1 | # Copyright 1999-2005 Gentoo Foundation |
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 $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/libtool.eclass,v 1.73 2006/06/04 13:25:56 exg Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # This eclass patches ltmain.sh distributed with libtoolized packages with the |
7 | # This eclass patches ltmain.sh distributed with libtoolized packages with the |
| 8 | # relink and portage patch among others |
8 | # relink and portage patch among others |
| … | |
… | |
| 18 | |
18 | |
| 19 | DESCRIPTION="Based on the ${ECLASS} eclass" |
19 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 20 | |
20 | |
| 21 | ELIBTOOL_VERSION="2.0.2" |
21 | ELIBTOOL_VERSION="2.0.2" |
| 22 | |
22 | |
| 23 | ELT_PATCH_DIR="${PORTDIR}/eclass/ELT-patches" |
23 | ELT_PATCH_DIR="${ECLASSDIR}/ELT-patches" |
| 24 | ELT_APPLIED_PATCHES= |
24 | ELT_APPLIED_PATCHES= |
| 25 | ELT_LTMAIN_SH= |
25 | ELT_LTMAIN_SH= |
| 26 | |
26 | |
| 27 | # |
27 | # |
| 28 | # Returns all the directories containing ltmain.sh |
28 | # Returns all the directories containing ltmain.sh |
| … | |
… | |
| 84 | local ret=1 |
84 | local ret=1 |
| 85 | local file=$1 |
85 | local file=$1 |
| 86 | local patch_set=$2 |
86 | local patch_set=$2 |
| 87 | local patch_dir= |
87 | local patch_dir= |
| 88 | local rem_int_dep=$3 |
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 | |
89 | |
| 95 | if [[ -n ${patch_set} ]] ; then |
90 | if [[ -n ${patch_set} ]] ; then |
| 96 | if [[ -d ${ELT_PATCH_DIR}/${patch_set} ]] ; then |
91 | if [[ -d ${ELT_PATCH_DIR}/${patch_set} ]] ; then |
| 97 | patch_dir="${ELT_PATCH_DIR}/${patch_set}" |
92 | patch_dir="${ELT_PATCH_DIR}/${patch_set}" |
| 98 | else |
93 | else |
| 99 | return "${ret}" |
94 | return "${ret}" |
| 100 | fi |
95 | fi |
| 101 | |
96 | |
| 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) |
97 | # 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 |
98 | for x in $(ls -d "${patch_dir}"/* 2> /dev/null | grep -v 'CVS' | sort -r) ; do |
| 109 | if [[ -n ${x} && -f ${x} ]] ; then |
99 | 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 ... |
100 | # For --remove-internal-dep ... |
| 116 | if [[ -n ${rem_int_dep} ]] ; then |
101 | if [[ -n ${rem_int_dep} ]] ; then |
| 117 | # For replace @REM_INT_DEP@ with what was passed |
102 | # For replace @REM_INT_DEP@ with what was passed |
| 118 | # to --remove-internal-dep |
103 | # to --remove-internal-dep |
| 119 | sed -e "s|@REM_INT_DEP@|${rem_int_dep}|g" ${x} > \ |
104 | sed -e "s|@REM_INT_DEP@|${rem_int_dep}|g" ${x} > \ |
| … | |
… | |
| 191 | |
176 | |
| 192 | [[ ${do_uclibc} == "yes" ]] && \ |
177 | [[ ${do_uclibc} == "yes" ]] && \ |
| 193 | elt_patches="${elt_patches} uclibc-conf uclibc-ltconf" |
178 | elt_patches="${elt_patches} uclibc-conf uclibc-ltconf" |
| 194 | |
179 | |
| 195 | [[ ${CHOST} == *"-freebsd"* ]] && \ |
180 | [[ ${CHOST} == *"-freebsd"* ]] && \ |
| 196 | elt_patches="${elt_patches} fbsd-conf" |
181 | elt_patches="${elt_patches} fbsd-conf fbsd-ltconf" |
| 197 | |
182 | |
| 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" |
183 | useq ppc-macos && elt_patches="${elt_patches} darwin-ltconf darwin-ltmain" |
| 204 | fi |
|
|
| 205 | |
184 | |
| 206 | for x in ${my_dirlist} ; do |
185 | for x in ${my_dirlist} ; do |
| 207 | local tmp=$(echo "${x}" | sed -e "s|${WORKDIR}||") |
186 | local tmp=$(echo "${x}" | sed -e "s|${WORKDIR}||") |
| 208 | export ELT_APPLIED_PATCHES= |
187 | export ELT_APPLIED_PATCHES= |
| 209 | export ELT_LTMAIN_SH="${x}/ltmain.sh" |
188 | export ELT_LTMAIN_SH="${x}/ltmain.sh" |
| … | |
… | |
| 215 | |
194 | |
| 216 | for y in ${elt_patches} ; do |
195 | for y in ${elt_patches} ; do |
| 217 | local ret=0 |
196 | local ret=0 |
| 218 | |
197 | |
| 219 | case "${y}" in |
198 | case "${y}" in |
|
|
199 | "portage") |
|
|
200 | # Stupid test to see if its already applied ... |
|
|
201 | if [[ -z $(grep 'We do not want portage' "${x}/ltmain.sh") ]] ; then |
|
|
202 | ELT_walk_patches "${x}/ltmain.sh" "${y}" |
|
|
203 | ret=$? |
|
|
204 | fi |
|
|
205 | ;; |
| 220 | "rem-int-dep") |
206 | "rem-int-dep") |
| 221 | ELT_walk_patches "${x}/ltmain.sh" "${y}" "${deptoremove}" |
207 | ELT_walk_patches "${x}/ltmain.sh" "${y}" "${deptoremove}" |
| 222 | ret=$? |
208 | ret=$? |
| 223 | ;; |
209 | ;; |
| 224 | "fix-relink") |
210 | "fix-relink") |
| … | |
… | |
| 261 | ret=$? |
247 | ret=$? |
| 262 | # ltmain.sh and co might be in a subdirectory ... |
248 | # ltmain.sh and co might be in a subdirectory ... |
| 263 | elif [[ ! -e ${x}/configure && -e ${x}/../configure && \ |
249 | elif [[ ! -e ${x}/configure && -e ${x}/../configure && \ |
| 264 | -n $(grep 'version_type=freebsd-' "${x}/../configure") ]] ; then |
250 | -n $(grep 'version_type=freebsd-' "${x}/../configure") ]] ; then |
| 265 | ELT_walk_patches "${x}/../configure" "${y}" |
251 | ELT_walk_patches "${x}/../configure" "${y}" |
|
|
252 | ret=$? |
|
|
253 | fi |
|
|
254 | ;; |
|
|
255 | "fbsd-ltconf") |
|
|
256 | if [[ -s ${x}/ltconfig ]] ; then |
|
|
257 | ELT_walk_patches "${x}/ltconfig" "${y}" |
| 266 | ret=$? |
258 | ret=$? |
| 267 | fi |
259 | fi |
| 268 | ;; |
260 | ;; |
| 269 | "darwin-ltconf") |
261 | "darwin-ltconf") |
| 270 | # Newer libtoolize clears ltconfig, as not used anymore |
262 | # Newer libtoolize clears ltconfig, as not used anymore |
| … | |
… | |
| 296 | if [[ ${do_portage} == "yes" ]] ; then |
288 | if [[ ${do_portage} == "yes" ]] ; then |
| 297 | # Stupid test to see if its already applied ... |
289 | # Stupid test to see if its already applied ... |
| 298 | if [[ -z $(grep 'We do not want portage' "${x}/ltmain.sh") ]] ; then |
290 | if [[ -z $(grep 'We do not want portage' "${x}/ltmain.sh") ]] ; then |
| 299 | echo |
291 | echo |
| 300 | eerror "Portage patch requested, but failed to apply!" |
292 | eerror "Portage patch requested, but failed to apply!" |
|
|
293 | eerror "Please bug azarah or vapier to add proper patch." |
| 301 | die "Portage patch requested, but failed to apply!" |
294 | die "Portage patch requested, but failed to apply!" |
| 302 | fi |
295 | fi |
| 303 | else |
296 | else |
| 304 | if [[ -n $(grep 'We do not want portage' "${x}/ltmain.sh") ]] ; then |
297 | if [[ -n $(grep 'We do not want portage' "${x}/ltmain.sh") ]] ; then |
| 305 | # ewarn " Portage patch seems to be already applied." |
298 | # ewarn " Portage patch seems to be already applied." |
| … | |
… | |
| 310 | eval $(grep -e '^[[:space:]]*VERSION=' "${x}/ltmain.sh"); \ |
303 | eval $(grep -e '^[[:space:]]*VERSION=' "${x}/ltmain.sh"); \ |
| 311 | echo "${VERSION}") |
304 | echo "${VERSION}") |
| 312 | |
305 | |
| 313 | echo |
306 | echo |
| 314 | eerror "Portage patch failed to apply (ltmain.sh version ${version})!" |
307 | eerror "Portage patch failed to apply (ltmain.sh version ${version})!" |
|
|
308 | eerror "Please bug azarah or vapier to add proper patch." |
| 315 | die "Portage patch failed to apply!" |
309 | die "Portage patch failed to apply!" |
| 316 | fi |
310 | fi |
| 317 | # We do not want to run libtoolize ... |
311 | # We do not want to run libtoolize ... |
| 318 | ELT_APPLIED_PATCHES="portage" |
312 | ELT_APPLIED_PATCHES="portage" |
| 319 | fi |
313 | fi |
| … | |
… | |
| 322 | [[ ${CHOST} == *"-uclibc" ]] && \ |
316 | [[ ${CHOST} == *"-uclibc" ]] && \ |
| 323 | ewarn " uClibc patch set '${y}' failed to apply!" |
317 | ewarn " uClibc patch set '${y}' failed to apply!" |
| 324 | ;; |
318 | ;; |
| 325 | "fbsd-"*) |
319 | "fbsd-"*) |
| 326 | if [[ ${CHOST} == *"-freebsd"* ]] ; then |
320 | if [[ ${CHOST} == *"-freebsd"* ]] ; then |
| 327 | if [[ -z $(grep 'Handle Gentoo/FreeBSD as it was Linux' "${x}/configure") ]]; then |
321 | if [[ -z $(grep 'Handle Gentoo/FreeBSD as it was Linux' \ |
|
|
322 | "${x}/configure" "${x}/../configure" 2>/dev/null) ]]; then |
| 328 | eerror " FreeBSD patch set '${y}' failed to apply!" |
323 | eerror " FreeBSD patch set '${y}' failed to apply!" |
| 329 | die "FreeBSD patch set '${y}' failed to apply!" |
324 | die "FreeBSD patch set '${y}' failed to apply!" |
| 330 | fi |
325 | fi |
| 331 | fi |
326 | fi |
| 332 | ;; |
327 | ;; |