| 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.9 2005/01/15 13:44:31 eradicator Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.18 2005/02/03 05:52:51 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 |
| … | |
… | |
| 104 | get_abi_CDEFINE() { get_abi_var CDEFINE ${@}; } |
185 | get_abi_CDEFINE() { get_abi_var CDEFINE ${@}; } |
| 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_install_abis() { |
| 110 | local order="" |
191 | local order="" |
| 111 | |
192 | |
| 112 | if [ -z "${MULTILIB_ABIS}" ]; then |
193 | if [ -z "${MULTILIB_ABIS}" ]; then |
| 113 | echo "NOMULTILIB" |
194 | echo "NOMULTILIB" |
| 114 | return 1 |
195 | return 1 |
| … | |
… | |
| 142 | |
223 | |
| 143 | echo ${order} |
224 | echo ${order} |
| 144 | return 0 |
225 | return 0 |
| 145 | } |
226 | } |
| 146 | |
227 | |
|
|
228 | # Return a list of the ABIs supported by this profile. |
|
|
229 | # the last one in the list being the default. |
|
|
230 | get_all_abis() { |
|
|
231 | local order="" |
|
|
232 | |
|
|
233 | if [ -z "${MULTILIB_ABIS}" ]; then |
|
|
234 | echo "NOMULTILIB" |
|
|
235 | return 1 |
|
|
236 | fi |
|
|
237 | |
|
|
238 | for x in ${MULTILIB_ABIS}; do |
|
|
239 | if [ "${x}" != "${DEFAULT_ABI}" ]; then |
|
|
240 | order="${order:+${order }}${x}" |
|
|
241 | fi |
|
|
242 | done |
|
|
243 | order="${order:+${order} }${DEFAULT_ABI}" |
|
|
244 | |
|
|
245 | echo ${order} |
|
|
246 | return 0 |
|
|
247 | } |
|
|
248 | |
| 147 | # get_all_libdir() |
249 | # get_all_libdirs() |
| 148 | # Returns a list of all the libdirs used by this profile. This includes |
250 | # Returns a list of all the libdirs used by this profile. This includes |
| 149 | # those that might not be touched by the current ebuild. |
251 | # those that might not be touched by the current ebuild. |
| 150 | get_all_libdirs() { |
252 | get_all_libdirs() { |
| 151 | local libdirs="lib" |
253 | local libdirs="lib" |
| 152 | local abi |
254 | local abi |
| 153 | local dir |
255 | local dir |
| 154 | |
256 | |
| 155 | if [ -n "${MULTILIB_ABIS}" ]; then |
257 | if has_multilib_profile; then |
| 156 | for abi in ${MULTILIB_ABIS}; do |
258 | for abi in ${MULTILIB_ABIS}; do |
| 157 | [ "$(get_abi_LIBDIR ${abi})" != "lib" ] && libdirs="${libdirs} $(get_abi_LIBDIR ${abi})" |
259 | [ "$(get_abi_LIBDIR ${abi})" != "lib" ] && libdirs="${libdirs} $(get_abi_LIBDIR ${abi})" |
| 158 | done |
260 | done |
| 159 | elif [ -n "${CONF_LIBDIR}" ]; then |
261 | elif [ -n "${CONF_LIBDIR}" ]; then |
| 160 | for dir in ${CONF_LIBDIR} ${CONF_MULTILIBDIR:=lib32}; do |
262 | for dir in ${CONF_LIBDIR} ${CONF_MULTILIBDIR:=lib32}; do |
| … | |
… | |
| 167 | |
269 | |
| 168 | # Return true if ${ABI} is the last ABI on our list (or if we're not |
270 | # 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 |
271 | # 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} |
272 | # if we're in the last (or only) run through src_{unpack,compile,install} |
| 171 | is_final_abi() { |
273 | is_final_abi() { |
| 172 | [ -z "${ABI}" ] && return 0 |
274 | ! has_multilib_profile && return 0 |
| 173 | local ALL_ABIS=$(get_abi_order) |
275 | local ALL_ABIS=$(get_install_abis) |
| 174 | local LAST_ABI=${ALL_ABIS/* /} |
276 | local LAST_ABI=${ALL_ABIS/* /} |
| 175 | [ "${LAST_ABI}" = "${ABI}" ] |
277 | [ "${LAST_ABI}" = "${ABI}" ] |
| 176 | } |
278 | } |
| 177 | |
279 | |
| 178 | # echo the number of ABIs we will be installing for |
280 | # echo the number of ABIs we will be installing for |
| 179 | number_abis() { |
281 | number_abis() { |
| 180 | get_abi_order | wc -w |
282 | get_install_abis | wc -w |
|
|
283 | } |
|
|
284 | |
|
|
285 | # get_ml_incdir [<include dir> [<ABI>]] |
|
|
286 | # include dir defaults to /usr/include |
|
|
287 | # ABI defaults to ${ABI} or ${DEFAULT_ABI} |
|
|
288 | get_ml_incdir() { |
|
|
289 | local dir=/usr/include |
|
|
290 | |
|
|
291 | if [[ ${#} -gt 0 ]]; then |
|
|
292 | incdir=${1} |
|
|
293 | shift |
|
|
294 | fi |
|
|
295 | |
|
|
296 | if [[ -z "${MULTILIB_ABIS}" ]]; then |
|
|
297 | echo ${incdir} |
|
|
298 | return 0 |
|
|
299 | fi |
|
|
300 | |
|
|
301 | local abi=${ABI:-${DEFAULT_ABI}} |
|
|
302 | if [[ ${#} -gt 0 ]]; then |
|
|
303 | abi=${1} |
|
|
304 | shift |
|
|
305 | fi |
|
|
306 | |
|
|
307 | if [[ -d "${dir}/gentoo-multilib/${abi}" ]]; then |
|
|
308 | echo ${dir}/gentoo-multilib/${abi} |
|
|
309 | else |
|
|
310 | echo ${dir} |
|
|
311 | fi |
| 181 | } |
312 | } |
| 182 | |
313 | |
| 183 | # prep_ml_includes: |
314 | # prep_ml_includes: |
| 184 | # |
315 | # |
| 185 | # Some includes (include/asm, glibc, etc) are ABI dependent. In this case, |
316 | # Some includes (include/asm, glibc, etc) are ABI dependent. In this case, |
| … | |
… | |
| 194 | # ... |
325 | # ... |
| 195 | # prep_ml_includes /usr/qt/3/include |
326 | # prep_ml_includes /usr/qt/3/include |
| 196 | # } |
327 | # } |
| 197 | |
328 | |
| 198 | prep_ml_includes() { |
329 | prep_ml_includes() { |
| 199 | local dirs |
|
|
| 200 | if [ ${#} -eq 0 ]; then |
|
|
| 201 | dirs="/usr/include" |
|
|
| 202 | else |
|
|
| 203 | dirs="${@}" |
|
|
| 204 | fi |
|
|
| 205 | |
|
|
| 206 | if [ $(number_abis) -gt 1 ]; then |
330 | if [ $(number_abis) -gt 1 ]; then |
| 207 | local dir |
331 | local dir |
|
|
332 | local dirs |
|
|
333 | local base |
|
|
334 | |
|
|
335 | if [ ${#} -eq 0 ]; then |
|
|
336 | dirs="/usr/include" |
|
|
337 | else |
|
|
338 | dirs="${@}" |
|
|
339 | fi |
|
|
340 | |
| 208 | for dir in ${dirs}; do |
341 | for dir in ${dirs}; do |
|
|
342 | base=${T}/gentoo-multilib/${dir}/gentoo-multilib |
|
|
343 | mkdir -p ${base} |
|
|
344 | [ -d ${base}/${ABI} ] && rm -rf ${base}/${ABI} |
| 209 | mv ${D}/${dir} ${D}/${dir}.${ABI} |
345 | mv ${D}/${dir} ${base}/${ABI} |
| 210 | done |
346 | done |
| 211 | |
347 | |
| 212 | if is_final_abi; then |
348 | if is_final_abi; then |
|
|
349 | base=${T}/gentoo-multilib |
|
|
350 | pushd ${base} |
|
|
351 | find . | tar -c -T - -f - | tar -x --no-same-owner -f - -C ${D} |
|
|
352 | popd |
|
|
353 | |
| 213 | for dir in ${dirs}; do |
354 | for dir in ${dirs}; do |
| 214 | local args="${dir}" |
355 | local args=${dir} |
| 215 | local abi |
356 | local abi |
| 216 | dodir ${dir}/gentoo-multilib |
|
|
| 217 | for abi in $(get_abi_order); do |
357 | for abi in $(get_install_abis); do |
| 218 | mv ${D}/${dir}.${abi} ${D}/${dir}/gentoo-multilib/${abi} |
|
|
| 219 | args="${args} $(get_abi_CDEFINE ${abi}):${dir}/gentoo-multilib/${abi}" |
358 | args="${args} $(get_abi_CDEFINE ${abi}):${dir}/gentoo-multilib/${abi}" |
| 220 | done |
359 | done |
| 221 | create_ml_includes ${args} |
360 | create_ml_includes ${args} |
| 222 | done |
361 | done |
| 223 | fi |
362 | fi |