| 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.13 2005/01/17 04:20:55 eradicator Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.17 2005/02/03 05:29:07 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. |
| 9 | |
9 | |
| 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 | |
|
|
15 | # has_multilib_profile: |
|
|
16 | # Return true if the current profile is a multilib profile and lists more than |
|
|
17 | # one abi in ${MULTILIB_ABIS}. You might want to use this like |
|
|
18 | # 'use multilib || has_multilib_profile' until all profiles utilizing the |
|
|
19 | # 'multilib' use flag are removed from portage |
|
|
20 | |
|
|
21 | # is_final_abi: |
|
|
22 | # Return true if ${ABI} is the final abi to be installed (and thus we are |
|
|
23 | # on our last run through a src_* function. |
|
|
24 | |
|
|
25 | # number_abis: |
|
|
26 | # echo the number of ABIs we will be installing for |
|
|
27 | |
|
|
28 | # get_install_abis: |
|
|
29 | # Return a list of the ABIs we want to install for with |
|
|
30 | # the last one in the list being the default. |
|
|
31 | |
|
|
32 | # get_all_abis: |
|
|
33 | # Return a list of the ABIs supported by this profile. |
|
|
34 | # the last one in the list being the default. |
|
|
35 | |
|
|
36 | # get_all_libdirs: |
|
|
37 | # Returns a list of all the libdirs used by this profile. This includes |
|
|
38 | # those that might not be touched by the current ebuild and always includes |
|
|
39 | # "lib". |
|
|
40 | |
|
|
41 | # get_libdir: |
|
|
42 | # Returns the libdir for the selected ABI. This is backwards compatible |
|
|
43 | # and simply calls get_abi_LIBDIR() on newer profiles. You should use this |
|
|
44 | # to determine where to install shared objects (ex: /usr/$(get_libdir)) |
|
|
45 | |
|
|
46 | # get_abi_var <VAR> [<ABI>]: |
|
|
47 | # returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
|
|
48 | # |
|
|
49 | # get_abi_CFLAGS: |
|
|
50 | # get_abi_CDEFINE: |
|
|
51 | # get_abi_LIBDIR: |
|
|
52 | # Aliases for 'get_abi_var CFLAGS', etc. |
|
|
53 | |
|
|
54 | # get_ml_incdir [<include dir> [<ABI>]] |
|
|
55 | # include dir defaults to /usr/include |
|
|
56 | # ABI defaults to ${ABI} or ${DEFAULT_ABI} |
|
|
57 | # |
|
|
58 | # If a multilib include dir is associated with the passed include dir, then |
|
|
59 | # we return it, otherwise, we just echo back the include dir. This is |
|
|
60 | # neccessary when a built script greps header files rather than testing them |
|
|
61 | # via #include (like perl) to figure out features. |
|
|
62 | |
|
|
63 | # prep_ml_includes: |
|
|
64 | # Some includes (include/asm, glibc, etc) are ABI dependent. In this case, |
|
|
65 | # We can install them in different locations for each ABI and create a common |
|
|
66 | # header which includes the right one based on CDEFINE_${ABI}. If your |
|
|
67 | # package installs ABI-specific headers, just add 'prep_ml_includes' to the |
|
|
68 | # end of your src_install(). It takes a list of directories that include |
|
|
69 | # files are installed in (default is /usr/include if none are passed). |
|
|
70 | # |
|
|
71 | # Example: |
|
|
72 | # src_install() { |
|
|
73 | # ... |
|
|
74 | # prep_ml_includes /usr/qt/3/include |
|
|
75 | # } |
|
|
76 | |
|
|
77 | # create_ml_includes <include dir> <symbol 1>:<dir 1> [<symbol 2>:<dir 2> ...] |
|
|
78 | # If you need more control than prep_ml_includes can offer (like linux-headers |
|
|
79 | # for the asm-* dirs, then use create_ml_includes. The firs argument is the |
|
|
80 | # common dir. The remaining args are of the form <symbol>:<dir> where |
|
|
81 | # <symbol> is what is put in the #ifdef for choosing that dir. |
|
|
82 | # |
|
|
83 | # Ideas for this code came from debian's sparc-linux headers package. |
|
|
84 | # |
|
|
85 | # Example: |
|
|
86 | # 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 |
|
|
88 | |
|
|
89 | ### END DOCUMENTATION ### |
|
|
90 | |
|
|
91 | # has_multilib_profile() |
|
|
92 | has_multilib_profile() { |
|
|
93 | [ -n "${MULTILIB_ABIS}" -a "${MULTILIB_ABIS}" != "${MULTILIB_ABIS/ /}" ] |
|
|
94 | } |
| 14 | |
95 | |
| 15 | # This function simply returns the desired lib directory. With portage |
96 | # This function simply returns the desired lib directory. With portage |
| 16 | # 2.0.51, we now have support for installing libraries to lib32/lib64 |
97 | # 2.0.51, we now have support for installing libraries to lib32/lib64 |
| 17 | # to accomidate the needs of multilib systems. It's no longer a good idea |
98 | # to accomidate the needs of multilib systems. It's no longer a good idea |
| 18 | # to assume all libraries will end up in lib. Replace any (sane) instances |
99 | # to assume all libraries will end up in lib. Replace any (sane) instances |
| … | |
… | |
| 105 | get_abi_LIBDIR() { get_abi_var LIBDIR ${@}; } |
186 | get_abi_LIBDIR() { get_abi_var LIBDIR ${@}; } |
| 106 | |
187 | |
| 107 | # Return a list of the ABIs we want to install for with |
188 | # Return a list of the ABIs we want to install for with |
| 108 | # the last one in the list being the default. |
189 | # the last one in the list being the default. |
| 109 | get_abi_order() { |
190 | get_abi_order() { |
|
|
191 | ewarn "Please update your ebuild to use get_install_abis instead of get_abi_order" |
|
|
192 | get_install_abis ${@} |
|
|
193 | } |
|
|
194 | |
|
|
195 | get_install_abis() { |
| 110 | local order="" |
196 | local order="" |
| 111 | |
197 | |
| 112 | if [ -z "${MULTILIB_ABIS}" ]; then |
198 | if [ -z "${MULTILIB_ABIS}" ]; then |
| 113 | echo "NOMULTILIB" |
199 | echo "NOMULTILIB" |
| 114 | return 1 |
200 | return 1 |
| … | |
… | |
| 142 | |
228 | |
| 143 | echo ${order} |
229 | echo ${order} |
| 144 | return 0 |
230 | return 0 |
| 145 | } |
231 | } |
| 146 | |
232 | |
|
|
233 | # Return a list of the ABIs supported by this profile. |
|
|
234 | # the last one in the list being the default. |
|
|
235 | get_all_abis() { |
|
|
236 | local order="" |
|
|
237 | |
|
|
238 | if [ -z "${MULTILIB_ABIS}" ]; then |
|
|
239 | echo "NOMULTILIB" |
|
|
240 | return 1 |
|
|
241 | fi |
|
|
242 | |
|
|
243 | for x in ${MULTILIB_ABIS}; do |
|
|
244 | if [ "${x}" != "${DEFAULT_ABI}" ]; then |
|
|
245 | order="${order:+${order }}${x}" |
|
|
246 | fi |
|
|
247 | done |
|
|
248 | order="${order:+${order} }${DEFAULT_ABI}" |
|
|
249 | |
|
|
250 | echo ${order} |
|
|
251 | return 0 |
|
|
252 | } |
|
|
253 | |
| 147 | # get_all_libdir() |
254 | # get_all_libdirs() |
| 148 | # Returns a list of all the libdirs used by this profile. This includes |
255 | # Returns a list of all the libdirs used by this profile. This includes |
| 149 | # those that might not be touched by the current ebuild. |
256 | # those that might not be touched by the current ebuild. |
| 150 | get_all_libdirs() { |
257 | get_all_libdirs() { |
| 151 | local libdirs="lib" |
258 | local libdirs="lib" |
| 152 | local abi |
259 | local abi |
| 153 | local dir |
260 | local dir |
| 154 | |
261 | |
| 155 | if [ -n "${MULTILIB_ABIS}" ]; then |
262 | if has_multilib_profile; then |
| 156 | for abi in ${MULTILIB_ABIS}; do |
263 | for abi in ${MULTILIB_ABIS}; do |
| 157 | [ "$(get_abi_LIBDIR ${abi})" != "lib" ] && libdirs="${libdirs} $(get_abi_LIBDIR ${abi})" |
264 | [ "$(get_abi_LIBDIR ${abi})" != "lib" ] && libdirs="${libdirs} $(get_abi_LIBDIR ${abi})" |
| 158 | done |
265 | done |
| 159 | elif [ -n "${CONF_LIBDIR}" ]; then |
266 | elif [ -n "${CONF_LIBDIR}" ]; then |
| 160 | for dir in ${CONF_LIBDIR} ${CONF_MULTILIBDIR:=lib32}; do |
267 | for dir in ${CONF_LIBDIR} ${CONF_MULTILIBDIR:=lib32}; do |
| … | |
… | |
| 167 | |
274 | |
| 168 | # Return true if ${ABI} is the last ABI on our list (or if we're not |
275 | # Return true if ${ABI} is the last ABI on our list (or if we're not |
| 169 | # using the new multilib configuration. This can be used to determine |
276 | # using the new multilib configuration. This can be used to determine |
| 170 | # if we're in the last (or only) run through src_{unpack,compile,install} |
277 | # if we're in the last (or only) run through src_{unpack,compile,install} |
| 171 | is_final_abi() { |
278 | is_final_abi() { |
| 172 | [ -z "${ABI}" ] && return 0 |
279 | ! has_multilib_profile && return 0 |
| 173 | local ALL_ABIS=$(get_abi_order) |
280 | local ALL_ABIS=$(get_abi_order) |
| 174 | local LAST_ABI=${ALL_ABIS/* /} |
281 | local LAST_ABI=${ALL_ABIS/* /} |
| 175 | [ "${LAST_ABI}" = "${ABI}" ] |
282 | [ "${LAST_ABI}" = "${ABI}" ] |
| 176 | } |
283 | } |
| 177 | |
284 | |
| … | |
… | |
| 244 | done |
351 | done |
| 245 | |
352 | |
| 246 | if is_final_abi; then |
353 | if is_final_abi; then |
| 247 | base=${T}/gentoo-multilib |
354 | base=${T}/gentoo-multilib |
| 248 | pushd ${base} |
355 | pushd ${base} |
| 249 | find . | cpio -pmd --no-preserve-owner ${D} |
356 | find . | tar -c -T - -f - | tar -x --no-same-owner -f - -C ${D} |
| 250 | popd |
357 | popd |
| 251 | |
358 | |
| 252 | for dir in ${dirs}; do |
359 | for dir in ${dirs}; do |
| 253 | local args=${dir} |
360 | local args=${dir} |
| 254 | local abi |
361 | local abi |