| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2004 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/multilib.eclass,v 1.23 2005/02/28 22:34:36 eradicator Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.31 2005/08/08 20:07:43 kito Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Jeremy Huddleston <eradicator@gentoo.org> |
5 | # Author: Jeremy Huddleston <eradicator@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # This eclass is for all functions pertaining to handling multilib. |
7 | # This eclass is for all functions pertaining to handling multilib. |
| 8 | # configurations. |
8 | # configurations. |
| 9 | |
9 | |
| 10 | ECLASS=multilib |
|
|
| 11 | INHERITED="$INHERITED $ECLASS" |
|
|
| 12 | |
10 | |
| 13 | DESCRIPTION="Based on the ${ECLASS} eclass" |
11 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 14 | |
12 | |
| 15 | # has_multilib_profile: |
13 | # has_multilib_profile: |
| 16 | # Return true if the current profile is a multilib profile and lists more than |
14 | # Return true if the current profile is a multilib profile and lists more than |
| … | |
… | |
| 84 | # |
82 | # |
| 85 | # Example: |
83 | # Example: |
| 86 | # create_ml_includes /usr/include/asm __sparc__:/usr/include/asm-sparc __sparc64__:/usr/include/asm-sparc64 |
84 | # create_ml_includes /usr/include/asm __sparc__:/usr/include/asm-sparc __sparc64__:/usr/include/asm-sparc64 |
| 87 | # create_ml_includes /usr/include/asm __i386__:/usr/include/asm-i386 __x86_64__:/usr/include/asm-x86_64 |
85 | # create_ml_includes /usr/include/asm __i386__:/usr/include/asm-i386 __x86_64__:/usr/include/asm-x86_64 |
| 88 | |
86 | |
|
|
87 | # get_libname [version] |
|
|
88 | # returns libname with proper suffix {.so,.dylib} and optionally supplied version |
|
|
89 | # for ELF/MACH-O shared objects |
|
|
90 | # |
|
|
91 | # Example: |
|
|
92 | # get_libname libfoo ${PV} |
|
|
93 | # Returns: libfoo.so.${PV} (ELF) || libfoo.${PV}.dylib (MACH) |
|
|
94 | |
| 89 | ### END DOCUMENTATION ### |
95 | ### END DOCUMENTATION ### |
| 90 | |
96 | |
| 91 | # Defaults: |
97 | # Defaults: |
| 92 | export MULTILIB_ABIS=${MULTILIB_ABIS:-"default"} |
98 | export MULTILIB_ABIS=${MULTILIB_ABIS:-"default"} |
| 93 | export DEFAULT_ABI=${DEFAULT_ABI:-"default"} |
99 | export DEFAULT_ABI=${DEFAULT_ABI:-"default"} |
|
|
100 | # This causes econf to set --libdir=/usr/lib where it didn't before |
| 94 | export ABI=${ABI:-"default"} |
101 | #export ABI=${ABI:-"default"} |
| 95 | export CFLAGS_default |
102 | export CFLAGS_default |
| 96 | export LDFLAGS_default |
103 | export LDFLAGS_default |
| 97 | export CHOST_default=${CHOST_default:-${CHOST}} |
104 | export CHOST_default=${CHOST_default:-${CHOST}} |
| 98 | export LIBDIR_default=${CONF_LIBDIR:-"lib"} |
105 | export LIBDIR_default=${CONF_LIBDIR:-"lib"} |
| 99 | export CDEFINE_default="__unix__" |
106 | export CDEFINE_default="__unix__" |
| … | |
… | |
| 187 | } |
194 | } |
| 188 | |
195 | |
| 189 | get_abi_CFLAGS() { get_abi_var CFLAGS "${@}"; } |
196 | get_abi_CFLAGS() { get_abi_var CFLAGS "${@}"; } |
| 190 | get_abi_LDFLAGS() { get_abi_var LDFLAGS "${@}"; } |
197 | get_abi_LDFLAGS() { get_abi_var LDFLAGS "${@}"; } |
| 191 | get_abi_CHOST() { get_abi_var CHOST "${@}"; } |
198 | get_abi_CHOST() { get_abi_var CHOST "${@}"; } |
| 192 | get_abi_CTARGET_ALIASES() { get_abi_var CTARGET_ALIASES "${@}"; } |
199 | get_abi_FAKE_TARGETS() { get_abi_var FAKE_TARGETS "${@}"; } |
| 193 | get_abi_CDEFINE() { get_abi_var CDEFINE "${@}"; } |
200 | get_abi_CDEFINE() { get_abi_var CDEFINE "${@}"; } |
| 194 | get_abi_LIBDIR() { get_abi_var LIBDIR "${@}"; } |
201 | get_abi_LIBDIR() { get_abi_var LIBDIR "${@}"; } |
| 195 | |
202 | |
| 196 | # Return a list of the ABIs we want to install for with |
203 | # Return a list of the ABIs we want to install for with |
| 197 | # the last one in the list being the default. |
204 | # the last one in the list being the default. |
| 198 | get_install_abis() { |
205 | get_install_abis() { |
| 199 | local order="" |
206 | local order="" |
| 200 | |
207 | |
| 201 | if [ -z "${MULTILIB_ABIS}" ]; then |
208 | if [ -z "${MULTILIB_ABIS}" ]; then |
| 202 | echo "default" |
209 | echo "default" |
| 203 | return 0 |
210 | return 0 |
| 204 | fi |
211 | fi |
| 205 | |
212 | |
| 206 | if hasq multilib-pkg-force ${RESTRICT} || |
213 | if hasq multilib-pkg-force ${RESTRICT} || |
| 207 | { hasq multilib-pkg ${FEATURES} && hasq multilib-pkg ${RESTRICT}; }; then |
214 | { hasq multilib-pkg ${FEATURES} && hasq multilib-pkg ${RESTRICT}; }; then |
| 208 | for x in ${MULTILIB_ABIS}; do |
215 | for x in ${MULTILIB_ABIS}; do |
| 209 | if [ "${x}" != "${DEFAULT_ABI}" ]; then |
216 | if [ "${x}" != "${DEFAULT_ABI}" ]; then |
| 210 | hasq ${x} ${ABI_DENY} || ordera="${ordera} ${x}" |
217 | hasq ${x} ${ABI_DENY} || ordera="${ordera} ${x}" |
| 211 | fi |
218 | fi |
| … | |
… | |
| 280 | # if we're in the last (or only) run through src_{unpack,compile,install} |
287 | # if we're in the last (or only) run through src_{unpack,compile,install} |
| 281 | is_final_abi() { |
288 | is_final_abi() { |
| 282 | has_multilib_profile || return 0 |
289 | has_multilib_profile || return 0 |
| 283 | local ALL_ABIS=$(get_install_abis) |
290 | local ALL_ABIS=$(get_install_abis) |
| 284 | local LAST_ABI=${ALL_ABIS/* /} |
291 | local LAST_ABI=${ALL_ABIS/* /} |
| 285 | [[ "${LAST_ABI}" == "${ABI}" ]] |
292 | [[ ${LAST_ABI} == ${ABI} ]] |
| 286 | } |
293 | } |
| 287 | |
294 | |
| 288 | # echo the number of ABIs we will be installing for |
295 | # echo the number of ABIs we will be installing for |
| 289 | number_abis() { |
296 | number_abis() { |
| 290 | get_install_abis | wc -w |
297 | get_install_abis | wc -w |
| … | |
… | |
| 304 | if [[ -z "${MULTILIB_ABIS}" ]]; then |
311 | if [[ -z "${MULTILIB_ABIS}" ]]; then |
| 305 | echo ${incdir} |
312 | echo ${incdir} |
| 306 | return 0 |
313 | return 0 |
| 307 | fi |
314 | fi |
| 308 | |
315 | |
| 309 | local abi=${ABI:-${DEFAULT_ABI}} |
316 | local abi=${ABI-${DEFAULT_ABI}} |
| 310 | if [[ ${#} -gt 0 ]]; then |
317 | if [[ ${#} -gt 0 ]]; then |
| 311 | abi=${1} |
318 | abi=${1} |
| 312 | shift |
319 | shift |
| 313 | fi |
320 | fi |
| 314 | |
321 | |
| … | |
… | |
| 402 | if [[ ${sym::1} == "!" ]]; then |
409 | if [[ ${sym::1} == "!" ]]; then |
| 403 | echo "#ifndef ${sym:1}" |
410 | echo "#ifndef ${sym:1}" |
| 404 | else |
411 | else |
| 405 | echo "#ifdef ${sym}" |
412 | echo "#ifdef ${sym}" |
| 406 | fi |
413 | fi |
| 407 | echo "#include \"$(create_ml_includes-relative_between ${dest}/$(dirname ${file}) ${dir}/${file})\"" |
414 | echo "#include <$(create_ml_includes-absolute ${dir}/${file})>" |
| 408 | echo "#endif /* ${sym} */" |
415 | echo "#endif /* ${sym} */" |
| 409 | echo "" |
416 | echo "" |
| 410 | fi |
417 | fi |
| 411 | done |
418 | done |
| 412 | |
419 | |
| … | |
… | |
| 414 | } > ${D}/${dest}/${file} |
421 | } > ${D}/${dest}/${file} |
| 415 | done |
422 | done |
| 416 | } |
423 | } |
| 417 | |
424 | |
| 418 | # Helper function for create_ml_includes |
425 | # Helper function for create_ml_includes |
| 419 | create_ml_includes-relative_between() { |
426 | create_ml_includes-absolute() { |
| 420 | local src="$(create_ml_includes-tidy_path ${1})" |
|
|
| 421 | local dst="$(create_ml_includes-tidy_path ${2})" |
427 | local dst="$(create_ml_includes-tidy_path ${1})" |
| 422 | |
428 | |
| 423 | src=(${src//\// }) |
|
|
| 424 | dst=(${dst//\// }) |
429 | dst=(${dst//\// }) |
| 425 | |
430 | |
| 426 | local i |
431 | local i |
| 427 | for ((i=0; i<${#src[*]}; i++)); do |
432 | for ((i=0; i<${#dst[*]}; i++)); do |
| 428 | [ "${dst[i]}" != "${src[i]}" ] && break |
433 | [ "${dst[i]}" == "include" ] && break |
| 429 | done |
434 | done |
| 430 | |
435 | |
| 431 | local common=$i |
436 | local strip_upto=$i |
| 432 | |
437 | |
| 433 | for ((i=${#src[*]}; i>common; i--)); do |
|
|
| 434 | echo -n ../ |
|
|
| 435 | done |
|
|
| 436 | |
|
|
| 437 | for ((i=common; i<${#dst[*]}-1; i++)); do |
438 | for ((i=strip_upto+1; i<${#dst[*]}-1; i++)); do |
| 438 | echo -n ${dst[i]}/ |
439 | echo -n ${dst[i]}/ |
| 439 | done |
440 | done |
| 440 | |
441 | |
| 441 | echo -n ${dst[i]} |
442 | echo -n ${dst[i]} |
| 442 | } |
443 | } |
| … | |
… | |
| 468 | # Remove trailing .. |
469 | # Remove trailing .. |
| 469 | [ "${removed##*/}" = ".." ] && removed=${removed%/*/*} |
470 | [ "${removed##*/}" = ".." ] && removed=${removed%/*/*} |
| 470 | |
471 | |
| 471 | # Remove trailing / |
472 | # Remove trailing / |
| 472 | [ "${removed##*/}" = "" ] && removed=${removed%/*} |
473 | [ "${removed##*/}" = "" ] && removed=${removed%/*} |
| 473 | |
474 | |
| 474 | echo ${removed} |
475 | echo ${removed} |
| 475 | fi |
476 | fi |
| 476 | } |
477 | } |
| 477 | |
478 | |
| 478 | # Helper function for create_ml_includes |
479 | # Helper function for create_ml_includes |
| … | |
… | |
| 528 | done |
529 | done |
| 529 | echo "Shouldn't be here -- create_ml_includes-sym_for_dir ${1} ${@}" |
530 | echo "Shouldn't be here -- create_ml_includes-sym_for_dir ${1} ${@}" |
| 530 | # exit because we'll likely be called from a subshell |
531 | # exit because we'll likely be called from a subshell |
| 531 | exit 1 |
532 | exit 1 |
| 532 | } |
533 | } |
|
|
534 | |
|
|
535 | get_libname() { |
|
|
536 | local ver=$1 |
|
|
537 | if use userland_Darwin ; then |
|
|
538 | if [ -z ${ver} ] ; then |
|
|
539 | echo ".dylib" |
|
|
540 | else |
|
|
541 | echo ".${ver}.dylib" |
|
|
542 | fi |
|
|
543 | else |
|
|
544 | if [ -z ${ver} ] ; then |
|
|
545 | echo ".so" |
|
|
546 | else |
|
|
547 | echo ".so.${ver}" |
|
|
548 | fi |
|
|
549 | fi |
|
|
550 | } |
|
|
551 | |