| 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.5 2005/01/12 22:39:44 eradicator Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.14 2005/01/18 04:56:03 eradicator 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. |
| … | |
… | |
| 10 | ECLASS=multilib |
10 | ECLASS=multilib |
| 11 | INHERITED="$INHERITED $ECLASS" |
11 | INHERITED="$INHERITED $ECLASS" |
| 12 | |
12 | |
| 13 | DESCRIPTION="Based on the ${ECLASS} eclass" |
13 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 14 | |
14 | |
| 15 | DEPEND="!build? ( sys-apps/sed sys-apps/findutils sys-apps/coreutils )" |
15 | # has_multilib_profile: |
|
|
16 | # Return true if the current profile is a multilib profile. You might |
|
|
17 | # want to use this like 'use multilib || has_multilib_profile' until |
|
|
18 | # all profiles utilizing the 'multilib' use flag are removed from portage |
|
|
19 | |
|
|
20 | # is_final_abi: |
|
|
21 | # Return true if ${ABI} is the final abi to be installed (and thus we are |
|
|
22 | # on our last run through a src_* function. |
|
|
23 | |
|
|
24 | # number_abis: |
|
|
25 | # echo the number of ABIs we will be installing for |
|
|
26 | |
|
|
27 | # get_abi_order: |
|
|
28 | # Return a list of the ABIs we want to install for with |
|
|
29 | # the last one in the list being the default. |
|
|
30 | |
|
|
31 | # get_all_libdir: |
|
|
32 | # Returns a list of all the libdirs used by this profile. This includes |
|
|
33 | # those that might not be touched by the current ebuild and always includes |
|
|
34 | # "lib". |
|
|
35 | |
|
|
36 | # get_libdir: |
|
|
37 | # Returns the libdir for the selected ABI. This is backwards compatible |
|
|
38 | # and simply calls get_abi_LIBDIR() on newer profiles. You should use this |
|
|
39 | # to determine where to install shared objects (ex: /usr/$(get_libdir)) |
|
|
40 | |
|
|
41 | # get_abi_var <VAR> [<ABI>]: |
|
|
42 | # returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
|
|
43 | # |
|
|
44 | # get_abi_CFLAGS: |
|
|
45 | # get_abi_CDEFINE: |
|
|
46 | # get_abi_LIBDIR: |
|
|
47 | # Aliases for 'get_abi_var CFLAGS', etc. |
|
|
48 | |
|
|
49 | # get_ml_incdir [<include dir> [<ABI>]] |
|
|
50 | # include dir defaults to /usr/include |
|
|
51 | # ABI defaults to ${ABI} or ${DEFAULT_ABI} |
|
|
52 | # |
|
|
53 | # If a multilib include dir is associated with the passed include dir, then |
|
|
54 | # we return it, otherwise, we just echo back the include dir. This is |
|
|
55 | # neccessary when a built script greps header files rather than testing them |
|
|
56 | # via #include (like perl) to figure out features. |
|
|
57 | |
|
|
58 | # prep_ml_includes: |
|
|
59 | # Some includes (include/asm, glibc, etc) are ABI dependent. In this case, |
|
|
60 | # We can install them in different locations for each ABI and create a common |
|
|
61 | # header which includes the right one based on CDEFINE_${ABI}. If your |
|
|
62 | # package installs ABI-specific headers, just add 'prep_ml_includes' to the |
|
|
63 | # end of your src_install(). It takes a list of directories that include |
|
|
64 | # files are installed in (default is /usr/include if none are passed). |
|
|
65 | # |
|
|
66 | # Example: |
|
|
67 | # src_install() { |
|
|
68 | # ... |
|
|
69 | # prep_ml_includes /usr/qt/3/include |
|
|
70 | # } |
|
|
71 | |
|
|
72 | # create_ml_includes <include dir> <symbol 1>:<dir 1> [<symbol 2>:<dir 2> ...] |
|
|
73 | # If you need more control than prep_ml_includes can offer (like linux-headers |
|
|
74 | # for the asm-* dirs, then use create_ml_includes. The firs argument is the |
|
|
75 | # common dir. The remaining args are of the form <symbol>:<dir> where |
|
|
76 | # <symbol> is what is put in the #ifdef for choosing that dir. |
|
|
77 | # |
|
|
78 | # Ideas for this code came from debian's sparc-linux headers package. |
|
|
79 | # |
|
|
80 | # Example: |
|
|
81 | # create_ml_includes /usr/include/asm __sparc__:/usr/include/asm-sparc __sparc64__:/usr/include/asm-sparc64 |
|
|
82 | # create_ml_includes /usr/include/asm __i386__:/usr/include/asm-i386 __x86_64__:/usr/include/asm-x86_64 |
|
|
83 | |
|
|
84 | ### END DOCUMENTATION ### |
|
|
85 | |
|
|
86 | # has_multilib_profile() |
|
|
87 | # Return true if |
|
|
88 | has_multilib_profile() { |
|
|
89 | [ -n "${MULTILIB_ABIS}" ] |
|
|
90 | } |
| 16 | |
91 | |
| 17 | # This function simply returns the desired lib directory. With portage |
92 | # This function simply returns the desired lib directory. With portage |
| 18 | # 2.0.51, we now have support for installing libraries to lib32/lib64 |
93 | # 2.0.51, we now have support for installing libraries to lib32/lib64 |
| 19 | # to accomidate the needs of multilib systems. It's no longer a good idea |
94 | # to accomidate the needs of multilib systems. It's no longer a good idea |
| 20 | # to assume all libraries will end up in lib. Replace any (sane) instances |
95 | # to assume all libraries will end up in lib. Replace any (sane) instances |
| … | |
… | |
| 152 | get_all_libdirs() { |
227 | get_all_libdirs() { |
| 153 | local libdirs="lib" |
228 | local libdirs="lib" |
| 154 | local abi |
229 | local abi |
| 155 | local dir |
230 | local dir |
| 156 | |
231 | |
| 157 | if [ -n "${MULTILIB_ABIS}" ]; then |
232 | if has_multilib_profile; then |
| 158 | for abi in ${MULTILIB_ABIS}; do |
233 | for abi in ${MULTILIB_ABIS}; do |
| 159 | [ "$(get_abi_LIBDIR ${abi})" != "lib" ] && libdirs="${libdirs} $(get_abi_LIBDIR ${abi})" |
234 | [ "$(get_abi_LIBDIR ${abi})" != "lib" ] && libdirs="${libdirs} $(get_abi_LIBDIR ${abi})" |
| 160 | done |
235 | done |
| 161 | elif [ -n "${CONF_LIBDIR}" ]; then |
236 | elif [ -n "${CONF_LIBDIR}" ]; then |
| 162 | for dir in ${CONF_LIBDIR} ${CONF_MULTILIBDIR:=lib32}; do |
237 | for dir in ${CONF_LIBDIR} ${CONF_MULTILIBDIR:=lib32}; do |
| … | |
… | |
| 169 | |
244 | |
| 170 | # Return true if ${ABI} is the last ABI on our list (or if we're not |
245 | # Return true if ${ABI} is the last ABI on our list (or if we're not |
| 171 | # using the new multilib configuration. This can be used to determine |
246 | # using the new multilib configuration. This can be used to determine |
| 172 | # if we're in the last (or only) run through src_{unpack,compile,install} |
247 | # if we're in the last (or only) run through src_{unpack,compile,install} |
| 173 | is_final_abi() { |
248 | is_final_abi() { |
| 174 | [ -z "${ABI}" ] && return 0 |
249 | ! has_multilib_profile && return 0 |
| 175 | local ALL_ABIS=$(get_abi_order) |
250 | local ALL_ABIS=$(get_abi_order) |
| 176 | local LAST_ABI=${ALL_ABIS/* /} |
251 | local LAST_ABI=${ALL_ABIS/* /} |
| 177 | [ "${LAST_ABI}" = "${ABI}" ] |
252 | [ "${LAST_ABI}" = "${ABI}" ] |
| 178 | } |
253 | } |
| 179 | |
254 | |
| 180 | # echo the number of ABIs we will be installing for |
255 | # echo the number of ABIs we will be installing for |
| 181 | number_abis() { |
256 | number_abis() { |
| 182 | get_abi_order | wc -w |
257 | get_abi_order | wc -w |
|
|
258 | } |
|
|
259 | |
|
|
260 | # get_ml_incdir [<include dir> [<ABI>]] |
|
|
261 | # include dir defaults to /usr/include |
|
|
262 | # ABI defaults to ${ABI} or ${DEFAULT_ABI} |
|
|
263 | get_ml_incdir() { |
|
|
264 | local dir=/usr/include |
|
|
265 | |
|
|
266 | if [[ ${#} -gt 0 ]]; then |
|
|
267 | incdir=${1} |
|
|
268 | shift |
|
|
269 | fi |
|
|
270 | |
|
|
271 | if [[ -z "${MULTILIB_ABIS}" ]]; then |
|
|
272 | echo ${incdir} |
|
|
273 | return 0 |
|
|
274 | fi |
|
|
275 | |
|
|
276 | local abi=${ABI:-${DEFAULT_ABI}} |
|
|
277 | if [[ ${#} -gt 0 ]]; then |
|
|
278 | abi=${1} |
|
|
279 | shift |
|
|
280 | fi |
|
|
281 | |
|
|
282 | if [[ -d "${dir}/gentoo-multilib/${abi}" ]]; then |
|
|
283 | echo ${dir}/gentoo-multilib/${abi} |
|
|
284 | else |
|
|
285 | echo ${dir} |
|
|
286 | fi |
| 183 | } |
287 | } |
| 184 | |
288 | |
| 185 | # prep_ml_includes: |
289 | # prep_ml_includes: |
| 186 | # |
290 | # |
| 187 | # Some includes (include/asm, glibc, etc) are ABI dependent. In this case, |
291 | # Some includes (include/asm, glibc, etc) are ABI dependent. In this case, |
| … | |
… | |
| 196 | # ... |
300 | # ... |
| 197 | # prep_ml_includes /usr/qt/3/include |
301 | # prep_ml_includes /usr/qt/3/include |
| 198 | # } |
302 | # } |
| 199 | |
303 | |
| 200 | prep_ml_includes() { |
304 | prep_ml_includes() { |
| 201 | local dirs |
|
|
| 202 | if [ ${#} -eq 0 ]; then |
|
|
| 203 | dirs="/usr/include" |
|
|
| 204 | else |
|
|
| 205 | dirs="${@}" |
|
|
| 206 | fi |
|
|
| 207 | |
|
|
| 208 | if [ $(number_abis) -gt 1 ]; then |
305 | if [ $(number_abis) -gt 1 ]; then |
| 209 | local dir |
306 | local dir |
|
|
307 | local dirs |
|
|
308 | local base |
|
|
309 | |
|
|
310 | if [ ${#} -eq 0 ]; then |
|
|
311 | dirs="/usr/include" |
|
|
312 | else |
|
|
313 | dirs="${@}" |
|
|
314 | fi |
|
|
315 | |
| 210 | for dir in ${dirs}; do |
316 | for dir in ${dirs}; do |
|
|
317 | base=${T}/gentoo-multilib/${dir}/gentoo-multilib |
|
|
318 | mkdir -p ${base} |
|
|
319 | [ -d ${base}/${ABI} ] && rm -rf ${base}/${ABI} |
| 211 | mv ${D}/${dir} ${D}/${dir}.${ABI} |
320 | mv ${D}/${dir} ${base}/${ABI} |
| 212 | done |
321 | done |
| 213 | |
322 | |
| 214 | if is_final_abi; then |
323 | if is_final_abi; then |
|
|
324 | base=${T}/gentoo-multilib |
|
|
325 | pushd ${base} |
|
|
326 | find . | cpio -pmd --no-preserve-owner ${D} |
|
|
327 | popd |
|
|
328 | |
| 215 | for dir in ${dirs}; do |
329 | for dir in ${dirs}; do |
| 216 | local args="${dir}" |
330 | local args=${dir} |
| 217 | local abi |
331 | local abi |
| 218 | for abi in $(get_abi_order); do |
332 | for abi in $(get_abi_order); do |
| 219 | args="${args} $(get_abi_CDEFINE ${abi}):${dir}.${abi}" |
333 | args="${args} $(get_abi_CDEFINE ${abi}):${dir}/gentoo-multilib/${abi}" |
| 220 | done |
334 | done |
| 221 | create_ml_includes ${args} |
335 | create_ml_includes ${args} |
| 222 | done |
336 | done |
| 223 | fi |
337 | fi |
| 224 | fi |
338 | fi |
| … | |
… | |
| 294 | |
408 | |
| 295 | # Helper function for create_ml_includes |
409 | # Helper function for create_ml_includes |
| 296 | create_ml_includes-tidy_path() { |
410 | create_ml_includes-tidy_path() { |
| 297 | local removed="${1}" |
411 | local removed="${1}" |
| 298 | |
412 | |
| 299 | if [ -n "${1}" ]; then |
413 | if [ -n "${removed}" ]; then |
| 300 | # Remove multiple slashes |
414 | # Remove multiple slashes |
| 301 | while [ "${removed}" != "${removed/\/\//\/}" ]; do |
415 | while [ "${removed}" != "${removed/\/\//\/}" ]; do |
| 302 | removed=${removed/\/\//\/} |
416 | removed=${removed/\/\//\/} |
| 303 | done |
417 | done |
| 304 | |
418 | |
| … | |
… | |
| 307 | removed=${removed//\/.\//\/} |
421 | removed=${removed//\/.\//\/} |
| 308 | done |
422 | done |
| 309 | [ "${removed##*/}" = "." ] && removed=${removed%/*} |
423 | [ "${removed##*/}" = "." ] && removed=${removed%/*} |
| 310 | |
424 | |
| 311 | # Removed .. directories |
425 | # Removed .. directories |
| 312 | # I wonder if there's a non-trivial bashism for this one... |
426 | while [ "${removed}" != "${removed//\/..\/}" ]; do |
| 313 | while [ "${removed}" != "$(echo ${removed} | sed -e 's:[^/]*/\.\./::')" ]; do |
427 | local p1="${removed%%\/..\/*}" |
| 314 | removed=$(echo ${removed} | sed -e 's:[^/]*/\.\./::') |
428 | local p2="${removed#*\/..\/}" |
|
|
429 | |
|
|
430 | removed="${p1%\/*}/${p2}" |
| 315 | done |
431 | done |
| 316 | |
432 | |
| 317 | # Remove trailing .. |
433 | # Remove trailing .. |
| 318 | removed=$(echo ${removed} | sed -e 's:/[^/]*/\.\.$::') |
434 | [ "${removed##*/}" = ".." ] && removed=${removed%/*/*} |
| 319 | |
435 | |
| 320 | # Remove trailing / |
436 | # Remove trailing / |
| 321 | [ "${removed##*/}" = "" ] && removed=${removed%/*} |
437 | [ "${removed##*/}" = "" ] && removed=${removed%/*} |
| 322 | |
438 | |
| 323 | echo ${removed} |
439 | echo ${removed} |
| … | |
… | |
| 353 | |
469 | |
| 354 | # Helper function for create_ml_includes |
470 | # Helper function for create_ml_includes |
| 355 | create_ml_includes-allfiles() { |
471 | create_ml_includes-allfiles() { |
| 356 | local basedirs=${@} |
472 | local basedirs=${@} |
| 357 | |
473 | |
| 358 | local files |
474 | local basedir |
| 359 | for basedir in ${basedirs}; do |
475 | for basedir in ${basedirs}; do |
| 360 | local file |
476 | local file |
| 361 | for file in $(find ${D}/${basedir} -type f); do |
477 | for file in $(find ${D}/${basedir} -type f); do |
| 362 | echo ${file/${D}\/${basedir}\//} |
478 | echo ${file/${D}\/${basedir}\//} |
| 363 | done |
479 | done |
| … | |
… | |
| 373 | if [ "${dir}" = "${data/*:/}" ]; then |
489 | if [ "${dir}" = "${data/*:/}" ]; then |
| 374 | echo ${data/:*/} |
490 | echo ${data/:*/} |
| 375 | return 0 |
491 | return 0 |
| 376 | fi |
492 | fi |
| 377 | done |
493 | done |
| 378 | echo "Should be here -- create_ml_includes-sym_for_dir ${1} ${@}" |
494 | echo "Shouldn't be here -- create_ml_includes-sym_for_dir ${1} ${@}" |
| 379 | # exit because we'll likely be called from a subshell |
495 | # exit because we'll likely be called from a subshell |
| 380 | exit 1 |
496 | exit 1 |
| 381 | } |
497 | } |