| 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.22 2005/02/14 11:33:11 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 | # Defaults: |
|
|
92 | export MULTILIB_ABIS=${MULTILIB_ABIS:-"default"} |
|
|
93 | export DEFAULT_ABI=${DEFAULT_ABI:-"default"} |
|
|
94 | export ABI=${ABI:-"default"} |
|
|
95 | export CFLAGS_default="" |
|
|
96 | export LDFLAGS_default="" |
|
|
97 | export CHOST_default=${CHOST} |
|
|
98 | export LIBDIR_default=${CONF_LIBDIR:-"lib"} |
|
|
99 | export CDEFINE_default="__unix__" |
|
|
100 | |
|
|
101 | # has_multilib_profile() |
|
|
102 | has_multilib_profile() { |
|
|
103 | [ -n "${MULTILIB_ABIS}" -a "${MULTILIB_ABIS}" != "${MULTILIB_ABIS/ /}" ] |
|
|
104 | } |
| 14 | |
105 | |
| 15 | # This function simply returns the desired lib directory. With portage |
106 | # This function simply returns the desired lib directory. With portage |
| 16 | # 2.0.51, we now have support for installing libraries to lib32/lib64 |
107 | # 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 |
108 | # 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 |
109 | # to assume all libraries will end up in lib. Replace any (sane) instances |
| … | |
… | |
| 24 | # Added support for ${ABI} and ${DEFAULT_ABI}. If they're both not set, |
115 | # Added support for ${ABI} and ${DEFAULT_ABI}. If they're both not set, |
| 25 | # fall back on old behavior. Any profile that has these set should also |
116 | # fall back on old behavior. Any profile that has these set should also |
| 26 | # depend on a newer version of portage (not yet released) which uses these |
117 | # depend on a newer version of portage (not yet released) which uses these |
| 27 | # over CONF_LIBDIR in econf, dolib, etc... |
118 | # over CONF_LIBDIR in econf, dolib, etc... |
| 28 | get_libdir() { |
119 | get_libdir() { |
| 29 | LIBDIR_TEST=$(type econf) |
120 | local CONF_LIBDIR |
| 30 | if [ ! -z "${CONF_LIBDIR_OVERRIDE}" ] ; then |
121 | if [ -n "${CONF_LIBDIR_OVERRIDE}" ] ; then |
| 31 | # if there is an override, we want to use that... always. |
122 | # if there is an override, we want to use that... always. |
| 32 | CONF_LIBDIR="${CONF_LIBDIR_OVERRIDE}" |
123 | echo ${CONF_LIBDIR_OVERRIDE} |
| 33 | elif [ -n "$(get_abi_LIBDIR)" ]; then |
124 | else |
| 34 | CONF_LIBDIR="$(get_abi_LIBDIR)" |
125 | get_abi_LIBDIR |
| 35 | elif [ "${LIBDIR_TEST/CONF_LIBDIR}" == "${LIBDIR_TEST}" ]; then # we don't have CONF_LIBDIR support |
|
|
| 36 | # will be <portage-2.0.51_pre20 |
|
|
| 37 | CONF_LIBDIR="lib" |
|
|
| 38 | fi |
126 | fi |
| 39 | # and of course, default to lib if CONF_LIBDIR isnt set |
|
|
| 40 | echo ${CONF_LIBDIR:=lib} |
|
|
| 41 | unset LIBDIR_TEST |
|
|
| 42 | } |
127 | } |
| 43 | |
128 | |
| 44 | get_multilibdir() { |
129 | get_multilibdir() { |
| 45 | if [ -n "$(get_abi_LIBDIR)" ]; then |
130 | if has_multilib_profile; then |
| 46 | eerror "get_multilibdir called, but it shouldn't be needed with the new multilib approach. Please file a bug at http://bugs.gentoo.org and assign it to eradicator@gentoo.org" |
131 | eerror "get_multilibdir called, but it shouldn't be needed with the new multilib approach. Please file a bug at http://bugs.gentoo.org and assign it to eradicator@gentoo.org" |
| 47 | exit 1 |
132 | exit 1 |
| 48 | fi |
133 | fi |
| 49 | echo ${CONF_MULTILIBDIR:=lib32} |
134 | echo ${CONF_MULTILIBDIR:=lib32} |
| 50 | } |
135 | } |
| … | |
… | |
| 59 | # |
144 | # |
| 60 | # get_libdir_override lib64 |
145 | # get_libdir_override lib64 |
| 61 | # |
146 | # |
| 62 | # Travis Tilley <lv@gentoo.org> (31 Aug 2004) |
147 | # Travis Tilley <lv@gentoo.org> (31 Aug 2004) |
| 63 | get_libdir_override() { |
148 | get_libdir_override() { |
| 64 | if [ -n "$(get_abi_LIBDIR)" ]; then |
149 | if has_multilib_profile; then |
| 65 | eerror "get_libdir_override called, but it shouldn't be needed with the new multilib approach. Please file a bug at http://bugs.gentoo.org and assign it to eradicator@gentoo.org" |
150 | eerror "get_libdir_override called, but it shouldn't be needed with the new multilib approach. Please file a bug at http://bugs.gentoo.org and assign it to eradicator@gentoo.org" |
| 66 | exit 1 |
151 | exit 1 |
| 67 | fi |
152 | fi |
| 68 | CONF_LIBDIR="$1" |
153 | CONF_LIBDIR="$1" |
| 69 | CONF_LIBDIR_OVERRIDE="$1" |
154 | CONF_LIBDIR_OVERRIDE="$1" |
|
|
155 | LIBDIR_default="$1" |
| 70 | } |
156 | } |
| 71 | |
157 | |
| 72 | # get_abi_var <VAR> [<ABI>] |
158 | # get_abi_var <VAR> [<ABI>] |
| 73 | # returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
159 | # returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
| 74 | # |
160 | # |
| … | |
… | |
| 91 | elif [ -n "${ABI}" ]; then |
177 | elif [ -n "${ABI}" ]; then |
| 92 | abi=${ABI} |
178 | abi=${ABI} |
| 93 | elif [ -n "${DEFAULT_ABI}" ]; then |
179 | elif [ -n "${DEFAULT_ABI}" ]; then |
| 94 | abi=${DEFAULT_ABI} |
180 | abi=${DEFAULT_ABI} |
| 95 | else |
181 | else |
| 96 | return 1 |
182 | abi="default" |
| 97 | fi |
183 | fi |
| 98 | |
184 | |
| 99 | local var="${flag}_${abi}" |
185 | local var="${flag}_${abi}" |
| 100 | echo ${!var} |
186 | echo ${!var} |
| 101 | } |
187 | } |
| 102 | |
188 | |
| 103 | get_abi_CFLAGS() { get_abi_var CFLAGS ${@}; } |
189 | get_abi_CFLAGS() { get_abi_var CFLAGS "${@}"; } |
|
|
190 | get_abi_LDFLAGS() { get_abi_var LDFLAGS "${@}"; } |
|
|
191 | get_abi_CHOST() { get_abi_var CHOST "${@}"; } |
| 104 | get_abi_CDEFINE() { get_abi_var CDEFINE ${@}; } |
192 | get_abi_CDEFINE() { get_abi_var CDEFINE "${@}"; } |
| 105 | get_abi_LIBDIR() { get_abi_var LIBDIR ${@}; } |
193 | get_abi_LIBDIR() { get_abi_var LIBDIR "${@}"; } |
| 106 | |
194 | |
| 107 | # Return a list of the ABIs we want to install for with |
195 | # Return a list of the ABIs we want to install for with |
| 108 | # the last one in the list being the default. |
196 | # the last one in the list being the default. |
| 109 | get_abi_order() { |
197 | get_install_abis() { |
| 110 | local order="" |
198 | local order="" |
| 111 | |
199 | |
| 112 | if [ -z "${MULTILIB_ABIS}" ]; then |
200 | if [ -z "${MULTILIB_ABIS}" ]; then |
| 113 | echo "NOMULTILIB" |
201 | echo "default" |
| 114 | return 1 |
202 | return 0 |
| 115 | fi |
203 | fi |
| 116 | |
204 | |
| 117 | if hasq multilib-pkg-force ${RESTRICT} || |
205 | if hasq multilib-pkg-force ${RESTRICT} || |
| 118 | { hasq multilib-pkg ${FEATURES} && hasq multilib-pkg ${RESTRICT}; }; then |
206 | { hasq multilib-pkg ${FEATURES} && hasq multilib-pkg ${RESTRICT}; }; then |
| 119 | for x in ${MULTILIB_ABIS}; do |
207 | for x in ${MULTILIB_ABIS}; do |
| … | |
… | |
| 142 | |
230 | |
| 143 | echo ${order} |
231 | echo ${order} |
| 144 | return 0 |
232 | return 0 |
| 145 | } |
233 | } |
| 146 | |
234 | |
|
|
235 | # Return a list of the ABIs supported by this profile. |
|
|
236 | # the last one in the list being the default. |
|
|
237 | get_all_abis() { |
|
|
238 | local order="" |
|
|
239 | |
|
|
240 | if [ -z "${MULTILIB_ABIS}" ]; then |
|
|
241 | echo "default" |
|
|
242 | return 0 |
|
|
243 | fi |
|
|
244 | |
|
|
245 | for x in ${MULTILIB_ABIS}; do |
|
|
246 | if [ "${x}" != "${DEFAULT_ABI}" ]; then |
|
|
247 | order="${order:+${order }}${x}" |
|
|
248 | fi |
|
|
249 | done |
|
|
250 | order="${order:+${order} }${DEFAULT_ABI}" |
|
|
251 | |
|
|
252 | echo ${order} |
|
|
253 | return 0 |
|
|
254 | } |
|
|
255 | |
| 147 | # get_all_libdir() |
256 | # get_all_libdirs() |
| 148 | # Returns a list of all the libdirs used by this profile. This includes |
257 | # Returns a list of all the libdirs used by this profile. This includes |
| 149 | # those that might not be touched by the current ebuild. |
258 | # those that might not be touched by the current ebuild. |
| 150 | get_all_libdirs() { |
259 | get_all_libdirs() { |
| 151 | local libdirs="lib" |
260 | local libdirs="lib" |
| 152 | local abi |
261 | local abi |
| 153 | local dir |
262 | local dir |
| 154 | |
263 | |
| 155 | if [ -n "${MULTILIB_ABIS}" ]; then |
264 | if has_multilib_profile; then |
| 156 | for abi in ${MULTILIB_ABIS}; do |
265 | for abi in ${MULTILIB_ABIS}; do |
| 157 | [ "$(get_abi_LIBDIR ${abi})" != "lib" ] && libdirs="${libdirs} $(get_abi_LIBDIR ${abi})" |
266 | [ "$(get_abi_LIBDIR ${abi})" != "lib" ] && libdirs="${libdirs} $(get_abi_LIBDIR ${abi})" |
| 158 | done |
267 | done |
| 159 | elif [ -n "${CONF_LIBDIR}" ]; then |
268 | elif [ -n "${CONF_LIBDIR}" ]; then |
| 160 | for dir in ${CONF_LIBDIR} ${CONF_MULTILIBDIR:=lib32}; do |
269 | for dir in ${CONF_LIBDIR} ${CONF_MULTILIBDIR:-lib32}; do |
| 161 | [ "${dir}" != "lib" ] && libdirs="${libdirs} ${dir}" |
270 | [ "${dir}" != "lib" ] && libdirs="${libdirs} ${dir}" |
| 162 | done |
271 | done |
| 163 | fi |
272 | fi |
| 164 | |
273 | |
| 165 | echo "${libdirs}" |
274 | echo "${libdirs}" |
| … | |
… | |
| 167 | |
276 | |
| 168 | # Return true if ${ABI} is the last ABI on our list (or if we're not |
277 | # 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 |
278 | # 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} |
279 | # if we're in the last (or only) run through src_{unpack,compile,install} |
| 171 | is_final_abi() { |
280 | is_final_abi() { |
| 172 | [ -z "${ABI}" ] && return 0 |
281 | ! has_multilib_profile && return 0 |
| 173 | local ALL_ABIS=$(get_abi_order) |
282 | local ALL_ABIS=$(get_install_abis) |
| 174 | local LAST_ABI=${ALL_ABIS/* /} |
283 | local LAST_ABI=${ALL_ABIS/* /} |
| 175 | [ "${LAST_ABI}" = "${ABI}" ] |
284 | [ "${LAST_ABI}" = "${ABI}" ] |
| 176 | } |
285 | } |
| 177 | |
286 | |
| 178 | # echo the number of ABIs we will be installing for |
287 | # echo the number of ABIs we will be installing for |
| 179 | number_abis() { |
288 | number_abis() { |
| 180 | get_abi_order | wc -w |
289 | get_install_abis | wc -w |
| 181 | } |
290 | } |
| 182 | |
291 | |
| 183 | # get_ml_incdir [<include dir> [<ABI>]] |
292 | # get_ml_incdir [<include dir> [<ABI>]] |
| 184 | # include dir defaults to /usr/include |
293 | # include dir defaults to /usr/include |
| 185 | # ABI defaults to ${ABI} or ${DEFAULT_ABI} |
294 | # ABI defaults to ${ABI} or ${DEFAULT_ABI} |
| … | |
… | |
| 244 | done |
353 | done |
| 245 | |
354 | |
| 246 | if is_final_abi; then |
355 | if is_final_abi; then |
| 247 | base=${T}/gentoo-multilib |
356 | base=${T}/gentoo-multilib |
| 248 | pushd ${base} |
357 | pushd ${base} |
| 249 | find . | cpio -pmd --no-preserve-owner ${D} |
358 | find . | tar -c -T - -f - | tar -x --no-same-owner -f - -C ${D} |
| 250 | popd |
359 | popd |
| 251 | |
360 | |
| 252 | for dir in ${dirs}; do |
361 | for dir in ${dirs}; do |
| 253 | local args=${dir} |
362 | local args=${dir} |
| 254 | local abi |
363 | local abi |
| 255 | for abi in $(get_abi_order); do |
364 | for abi in $(get_install_abis); do |
| 256 | args="${args} $(get_abi_CDEFINE ${abi}):${dir}/gentoo-multilib/${abi}" |
365 | args="${args} $(get_abi_CDEFINE ${abi}):${dir}/gentoo-multilib/${abi}" |
| 257 | done |
366 | done |
| 258 | create_ml_includes ${args} |
367 | create_ml_includes ${args} |
| 259 | done |
368 | done |
| 260 | fi |
369 | fi |
| … | |
… | |
| 282 | local file |
391 | local file |
| 283 | for file in $(create_ml_includes-allfiles ${basedirs}); do |
392 | for file in $(create_ml_includes-allfiles ${basedirs}); do |
| 284 | local name="$(echo $file | tr a-z A-Z | sed 's:[^A-Z]:_:g')" |
393 | local name="$(echo $file | tr a-z A-Z | sed 's:[^A-Z]:_:g')" |
| 285 | { |
394 | { |
| 286 | echo "/* Common header file autogenerated by create_ml_includes in multilib.eclass */" |
395 | echo "/* Common header file autogenerated by create_ml_includes in multilib.eclass */" |
| 287 | #echo "#ifndef __CREATE_ML_INCLUDES_STUB_${name}__" |
|
|
| 288 | #echo "#define __CREATE_ML_INCLUDES_STUB_${name}__" |
|
|
| 289 | #echo "" |
|
|
| 290 | |
396 | |
| 291 | local dir |
397 | local dir |
| 292 | for dir in ${basedirs}; do |
398 | for dir in ${basedirs}; do |
| 293 | if [ -f "${D}/${dir}/${file}" ]; then |
399 | if [ -f "${D}/${dir}/${file}" ]; then |
| 294 | echo "#ifdef $(create_ml_includes-sym_for_dir ${dir} ${mlinfo})" |
400 | local sym=$(create_ml_includes-sym_for_dir ${dir} ${mlinfo}) |
|
|
401 | if [[ ${sym::1} == "!" ]]; then |
|
|
402 | echo "#ifndef ${sym:1}" |
|
|
403 | else |
|
|
404 | echo "#ifdef ${sym}" |
|
|
405 | fi |
| 295 | echo "#include \"$(create_ml_includes-relative_between ${dest}/$(dirname ${file}) ${dir}/${file})\"" |
406 | echo "#include \"$(create_ml_includes-relative_between ${dest}/$(dirname ${file}) ${dir}/${file})\"" |
| 296 | echo "#endif /* $(create_ml_includes-sym_for_dir ${dir} ${mlinfo}) */" |
407 | echo "#endif /* ${sym} */" |
| 297 | echo "" |
408 | echo "" |
| 298 | fi |
409 | fi |
| 299 | done |
410 | done |
| 300 | |
411 | |
| 301 | #echo "#endif /* __CREATE_ML_INCLUDES_STUB_${name}__ */" |
412 | #echo "#endif /* __CREATE_ML_INCLUDES_STUB_${name}__ */" |