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.35 2005/10/06 20:33:21 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 |
|
|
11 | INHERITED="$INHERITED $ECLASS" |
|
|
12 | |
10 | |
13 | DESCRIPTION="Based on the ${ECLASS} eclass" |
11 | DESCRIPTION="Based on the ${ECLASS} eclass" |
|
|
12 | |
|
|
13 | # has_multilib_profile: |
|
|
14 | # Return true if the current profile is a multilib profile and lists more than |
|
|
15 | # one abi in ${MULTILIB_ABIS}. You might want to use this like |
|
|
16 | # 'use multilib || has_multilib_profile' until all profiles utilizing the |
|
|
17 | # 'multilib' use flag are removed from portage |
|
|
18 | |
|
|
19 | # is_final_abi: |
|
|
20 | # Return true if ${ABI} is the final abi to be installed (and thus we are |
|
|
21 | # on our last run through a src_* function. |
|
|
22 | |
|
|
23 | # number_abis: |
|
|
24 | # echo the number of ABIs we will be installing for |
|
|
25 | |
|
|
26 | # get_install_abis: |
|
|
27 | # Return a list of the ABIs we want to install for with |
|
|
28 | # the last one in the list being the default. |
|
|
29 | |
|
|
30 | # get_all_abis: |
|
|
31 | # Return a list of the ABIs supported by this profile. |
|
|
32 | # the last one in the list being the default. |
|
|
33 | |
|
|
34 | # get_all_libdirs: |
|
|
35 | # Returns a list of all the libdirs used by this profile. This includes |
|
|
36 | # those that might not be touched by the current ebuild and always includes |
|
|
37 | # "lib". |
|
|
38 | |
|
|
39 | # get_libdir: |
|
|
40 | # Returns the libdir for the selected ABI. This is backwards compatible |
|
|
41 | # and simply calls get_abi_LIBDIR() on newer profiles. You should use this |
|
|
42 | # to determine where to install shared objects (ex: /usr/$(get_libdir)) |
|
|
43 | |
|
|
44 | # get_abi_var <VAR> [<ABI>]: |
|
|
45 | # returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
|
|
46 | # |
|
|
47 | # get_abi_CFLAGS: |
|
|
48 | # get_abi_CDEFINE: |
|
|
49 | # get_abi_LIBDIR: |
|
|
50 | # Aliases for 'get_abi_var CFLAGS', etc. |
|
|
51 | |
|
|
52 | # get_ml_incdir [<include dir> [<ABI>]] |
|
|
53 | # include dir defaults to /usr/include |
|
|
54 | # ABI defaults to ${ABI} or ${DEFAULT_ABI} |
|
|
55 | # |
|
|
56 | # If a multilib include dir is associated with the passed include dir, then |
|
|
57 | # we return it, otherwise, we just echo back the include dir. This is |
|
|
58 | # neccessary when a built script greps header files rather than testing them |
|
|
59 | # via #include (like perl) to figure out features. |
|
|
60 | |
|
|
61 | # prep_ml_includes: |
|
|
62 | # Some includes (include/asm, glibc, etc) are ABI dependent. In this case, |
|
|
63 | # We can install them in different locations for each ABI and create a common |
|
|
64 | # header which includes the right one based on CDEFINE_${ABI}. If your |
|
|
65 | # package installs ABI-specific headers, just add 'prep_ml_includes' to the |
|
|
66 | # end of your src_install(). It takes a list of directories that include |
|
|
67 | # files are installed in (default is /usr/include if none are passed). |
|
|
68 | # |
|
|
69 | # Example: |
|
|
70 | # src_install() { |
|
|
71 | # ... |
|
|
72 | # prep_ml_includes /usr/qt/3/include |
|
|
73 | # } |
|
|
74 | |
|
|
75 | # create_ml_includes <include dir> <symbol 1>:<dir 1> [<symbol 2>:<dir 2> ...] |
|
|
76 | # If you need more control than prep_ml_includes can offer (like linux-headers |
|
|
77 | # for the asm-* dirs, then use create_ml_includes. The firs argument is the |
|
|
78 | # common dir. The remaining args are of the form <symbol>:<dir> where |
|
|
79 | # <symbol> is what is put in the #ifdef for choosing that dir. |
|
|
80 | # |
|
|
81 | # Ideas for this code came from debian's sparc-linux headers package. |
|
|
82 | # |
|
|
83 | # Example: |
|
|
84 | # create_ml_includes /usr/include/asm __sparc__:/usr/include/asm-sparc __sparc64__:/usr/include/asm-sparc64 |
|
|
85 | # create_ml_includes /usr/include/asm __i386__:/usr/include/asm-i386 __x86_64__:/usr/include/asm-x86_64 |
|
|
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 | |
|
|
95 | ### END DOCUMENTATION ### |
|
|
96 | |
|
|
97 | # Defaults: |
|
|
98 | export MULTILIB_ABIS=${MULTILIB_ABIS:-"default"} |
|
|
99 | export DEFAULT_ABI=${DEFAULT_ABI:-"default"} |
|
|
100 | # This causes econf to set --libdir=/usr/lib where it didn't before |
|
|
101 | #export ABI=${ABI:-"default"} |
|
|
102 | export CFLAGS_default |
|
|
103 | export LDFLAGS_default |
|
|
104 | export CHOST_default=${CHOST_default:-${CHOST}} |
|
|
105 | export CTARGET_default=${CTARGET_default:-${CTARGET}} |
|
|
106 | export LIBDIR_default=${CONF_LIBDIR:-"lib"} |
|
|
107 | export CDEFINE_default="__unix__" |
|
|
108 | |
|
|
109 | # has_multilib_profile() |
|
|
110 | has_multilib_profile() { |
|
|
111 | [ -n "${MULTILIB_ABIS}" -a "${MULTILIB_ABIS}" != "${MULTILIB_ABIS/ /}" ] |
|
|
112 | } |
14 | |
113 | |
15 | # This function simply returns the desired lib directory. With portage |
114 | # This function simply returns the desired lib directory. With portage |
16 | # 2.0.51, we now have support for installing libraries to lib32/lib64 |
115 | # 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 |
116 | # 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 |
117 | # 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, |
123 | # 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 |
124 | # 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 |
125 | # depend on a newer version of portage (not yet released) which uses these |
27 | # over CONF_LIBDIR in econf, dolib, etc... |
126 | # over CONF_LIBDIR in econf, dolib, etc... |
28 | get_libdir() { |
127 | get_libdir() { |
29 | LIBDIR_TEST=$(type econf) |
128 | local CONF_LIBDIR |
30 | if [ ! -z "${CONF_LIBDIR_OVERRIDE}" ] ; then |
129 | if [ -n "${CONF_LIBDIR_OVERRIDE}" ] ; then |
31 | # if there is an override, we want to use that... always. |
130 | # if there is an override, we want to use that... always. |
32 | CONF_LIBDIR="${CONF_LIBDIR_OVERRIDE}" |
131 | echo ${CONF_LIBDIR_OVERRIDE} |
33 | elif [ -n "$(get_abi_LIBDIR)" ]; then |
132 | else |
34 | CONF_LIBDIR="$(get_abi_LIBDIR)" |
133 | 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 |
134 | fi |
39 | # and of course, default to lib if CONF_LIBDIR isnt set |
|
|
40 | echo ${CONF_LIBDIR:=lib} |
|
|
41 | unset LIBDIR_TEST |
|
|
42 | } |
135 | } |
43 | |
136 | |
44 | get_multilibdir() { |
137 | get_multilibdir() { |
45 | if [ -n "$(get_abi_LIBDIR)" ]; then |
138 | 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" |
139 | 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 |
140 | exit 1 |
48 | fi |
141 | fi |
49 | echo ${CONF_MULTILIBDIR:=lib32} |
142 | echo ${CONF_MULTILIBDIR:=lib32} |
50 | } |
143 | } |
… | |
… | |
59 | # |
152 | # |
60 | # get_libdir_override lib64 |
153 | # get_libdir_override lib64 |
61 | # |
154 | # |
62 | # Travis Tilley <lv@gentoo.org> (31 Aug 2004) |
155 | # Travis Tilley <lv@gentoo.org> (31 Aug 2004) |
63 | get_libdir_override() { |
156 | get_libdir_override() { |
64 | if [ -n "$(get_abi_LIBDIR)" ]; then |
157 | 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" |
158 | 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 |
159 | exit 1 |
67 | fi |
160 | fi |
68 | CONF_LIBDIR="$1" |
161 | CONF_LIBDIR="$1" |
69 | CONF_LIBDIR_OVERRIDE="$1" |
162 | CONF_LIBDIR_OVERRIDE="$1" |
|
|
163 | LIBDIR_default="$1" |
70 | } |
164 | } |
71 | |
165 | |
72 | # get_abi_var <VAR> [<ABI>] |
166 | # get_abi_var <VAR> [<ABI>] |
73 | # returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
167 | # returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
74 | # |
168 | # |
… | |
… | |
82 | # If <ABI> is not specified and ${ABI} is not defined, ${DEFAULT_ABI} is used. |
176 | # If <ABI> is not specified and ${ABI} is not defined, ${DEFAULT_ABI} is used. |
83 | # If <ABI> is not specified and ${ABI} and ${DEFAULT_ABI} are not defined, we return an empty string. |
177 | # If <ABI> is not specified and ${ABI} and ${DEFAULT_ABI} are not defined, we return an empty string. |
84 | # |
178 | # |
85 | # Jeremy Huddleston <eradicator@gentoo.org> |
179 | # Jeremy Huddleston <eradicator@gentoo.org> |
86 | get_abi_var() { |
180 | get_abi_var() { |
87 | local flag=${1} |
181 | local flag=$1 |
88 | local abi |
182 | local abi |
89 | if [ $# -gt 1 ]; then |
183 | if [ $# -gt 1 ]; then |
90 | abi=${2} |
184 | abi=${2} |
91 | elif [ -n "${ABI}" ]; then |
185 | elif [ -n "${ABI}" ]; then |
92 | abi=${ABI} |
186 | abi=${ABI} |
93 | elif [ -n "${DEFAULT_ABI}" ]; then |
187 | elif [ -n "${DEFAULT_ABI}" ]; then |
94 | abi=${DEFAULT_ABI} |
188 | abi=${DEFAULT_ABI} |
95 | else |
189 | else |
96 | return 1 |
190 | abi="default" |
97 | fi |
191 | fi |
98 | |
192 | |
99 | local var="${flag}_${abi}" |
193 | local var="${flag}_${abi}" |
100 | echo ${!var} |
194 | echo ${!var} |
101 | } |
195 | } |
102 | |
196 | |
103 | get_abi_CFLAGS() { get_abi_var CFLAGS ${@}; } |
197 | get_abi_CFLAGS() { get_abi_var CFLAGS "$@"; } |
|
|
198 | get_abi_LDFLAGS() { get_abi_var LDFLAGS "$@"; } |
|
|
199 | get_abi_CHOST() { get_abi_var CHOST "$@"; } |
|
|
200 | get_abi_FAKE_TARGETS() { get_abi_var FAKE_TARGETS "$@"; } |
104 | get_abi_CDEFINE() { get_abi_var CDEFINE ${@}; } |
201 | get_abi_CDEFINE() { get_abi_var CDEFINE "$@"; } |
105 | get_abi_LIBDIR() { get_abi_var LIBDIR ${@}; } |
202 | get_abi_LIBDIR() { get_abi_var LIBDIR "$@"; } |
106 | |
203 | |
107 | # Return a list of the ABIs we want to install for with |
204 | # Return a list of the ABIs we want to install for with |
108 | # the last one in the list being the default. |
205 | # the last one in the list being the default. |
109 | get_abi_order() { |
206 | get_install_abis() { |
110 | local order="" |
207 | local order="" |
111 | |
208 | |
112 | if [ -z "${MULTILIB_ABIS}" ]; then |
209 | if [[ -z ${MULTILIB_ABIS} ]] ; then |
113 | echo "NOMULTILIB" |
210 | echo "default" |
114 | return 1 |
211 | return 0 |
115 | fi |
212 | fi |
116 | |
213 | |
117 | if hasq multilib-pkg-force ${RESTRICT} || |
214 | if hasq multilib-pkg-force ${RESTRICT} || |
118 | { hasq multilib-pkg ${FEATURES} && hasq multilib-pkg ${RESTRICT}; }; then |
215 | { hasq multilib-pkg ${FEATURES} && hasq multilib-pkg ${RESTRICT}; }; then |
119 | for x in ${MULTILIB_ABIS}; do |
216 | for x in ${MULTILIB_ABIS} ; do |
120 | if [ "${x}" != "${DEFAULT_ABI}" ]; then |
217 | if [[ ${x} != "${DEFAULT_ABI}" ]] ; then |
121 | hasq ${x} ${ABI_DENY} || ordera="${ordera} ${x}" |
218 | hasq ${x} ${ABI_DENY} || ordera="${ordera} ${x}" |
122 | fi |
219 | fi |
123 | done |
220 | done |
124 | hasq ${DEFAULT_ABI} ${ABI_DENY} || order="${ordera} ${DEFAULT_ABI}" |
221 | hasq ${DEFAULT_ABI} ${ABI_DENY} || order="${ordera} ${DEFAULT_ABI}" |
125 | |
222 | |
126 | if [ -n "${ABI_ALLOW}" ]; then |
223 | if [[ -n ${ABI_ALLOW} ]] ; then |
127 | local ordera="" |
224 | local ordera="" |
128 | for x in ${order}; do |
225 | for x in ${order} ; do |
129 | if hasq ${x} ${ABI_ALLOW}; then |
226 | if hasq ${x} ${ABI_ALLOW} ; then |
130 | ordera="${ordera} ${x}" |
227 | ordera="${ordera} ${x}" |
131 | fi |
228 | fi |
132 | done |
229 | done |
133 | order="${ordera}" |
230 | order=${ordera} |
134 | fi |
231 | fi |
135 | else |
232 | else |
136 | order="${DEFAULT_ABI}" |
233 | order=${DEFAULT_ABI} |
137 | fi |
234 | fi |
138 | |
235 | |
139 | if [ -z "${order}" ]; then |
236 | if [[ -z ${order} ]] ; then |
140 | die "The ABI list is empty. Are you using a proper multilib profile? Perhaps your USE flags or MULTILIB_ABIS are too restrictive for this package." |
237 | die "The ABI list is empty. Are you using a proper multilib profile? Perhaps your USE flags or MULTILIB_ABIS are too restrictive for this package." |
141 | fi |
238 | fi |
142 | |
239 | |
143 | echo ${order} |
240 | echo ${order} |
144 | return 0 |
241 | return 0 |
145 | } |
242 | } |
146 | |
243 | |
|
|
244 | # Return a list of the ABIs supported by this profile. |
|
|
245 | # the last one in the list being the default. |
|
|
246 | get_all_abis() { |
|
|
247 | local order="" |
|
|
248 | |
|
|
249 | if [ -z "${MULTILIB_ABIS}" ]; then |
|
|
250 | echo "default" |
|
|
251 | return 0 |
|
|
252 | fi |
|
|
253 | |
|
|
254 | for x in ${MULTILIB_ABIS}; do |
|
|
255 | if [ "${x}" != "${DEFAULT_ABI}" ]; then |
|
|
256 | order="${order:+${order }}${x}" |
|
|
257 | fi |
|
|
258 | done |
|
|
259 | order="${order:+${order} }${DEFAULT_ABI}" |
|
|
260 | |
|
|
261 | echo ${order} |
|
|
262 | return 0 |
|
|
263 | } |
|
|
264 | |
147 | # get_all_libdir() |
265 | # get_all_libdirs() |
148 | # Returns a list of all the libdirs used by this profile. This includes |
266 | # Returns a list of all the libdirs used by this profile. This includes |
149 | # those that might not be touched by the current ebuild. |
267 | # those that might not be touched by the current ebuild. |
150 | get_all_libdirs() { |
268 | get_all_libdirs() { |
151 | local libdirs="lib" |
269 | local libdirs="lib" |
152 | local abi |
270 | local abi |
153 | local dir |
271 | local dir |
154 | |
272 | |
155 | if [ -n "${MULTILIB_ABIS}" ]; then |
273 | if has_multilib_profile; then |
156 | for abi in ${MULTILIB_ABIS}; do |
274 | for abi in ${MULTILIB_ABIS}; do |
157 | [ "$(get_abi_LIBDIR ${abi})" != "lib" ] && libdirs="${libdirs} $(get_abi_LIBDIR ${abi})" |
275 | [ "$(get_abi_LIBDIR ${abi})" != "lib" ] && libdirs="${libdirs} $(get_abi_LIBDIR ${abi})" |
158 | done |
276 | done |
159 | elif [ -n "${CONF_LIBDIR}" ]; then |
277 | elif [ -n "${CONF_LIBDIR}" ]; then |
160 | for dir in ${CONF_LIBDIR} ${CONF_MULTILIBDIR:=lib32}; do |
278 | for dir in ${CONF_LIBDIR} ${CONF_MULTILIBDIR:-lib32}; do |
161 | [ "${dir}" != "lib" ] && libdirs="${libdirs} ${dir}" |
279 | [ "${dir}" != "lib" ] && libdirs="${libdirs} ${dir}" |
162 | done |
280 | done |
163 | fi |
281 | fi |
164 | |
282 | |
165 | echo "${libdirs}" |
283 | echo "${libdirs}" |
… | |
… | |
167 | |
285 | |
168 | # Return true if ${ABI} is the last ABI on our list (or if we're not |
286 | # 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 |
287 | # 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} |
288 | # if we're in the last (or only) run through src_{unpack,compile,install} |
171 | is_final_abi() { |
289 | is_final_abi() { |
172 | [ -z "${ABI}" ] && return 0 |
290 | has_multilib_profile || return 0 |
173 | local ALL_ABIS=$(get_abi_order) |
291 | local ALL_ABIS=$(get_install_abis) |
174 | local LAST_ABI=${ALL_ABIS/* /} |
292 | local LAST_ABI=${ALL_ABIS/* /} |
175 | [ "${LAST_ABI}" = "${ABI}" ] |
293 | [[ ${LAST_ABI} == ${ABI} ]] |
176 | } |
294 | } |
177 | |
295 | |
178 | # echo the number of ABIs we will be installing for |
296 | # echo the number of ABIs we will be installing for |
179 | number_abis() { |
297 | number_abis() { |
180 | get_abi_order | wc -w |
298 | get_install_abis | wc -w |
181 | } |
299 | } |
182 | |
300 | |
183 | # get_ml_incdir [<include dir> [<ABI>]] |
301 | # get_ml_incdir [<include dir> [<ABI>]] |
184 | # include dir defaults to /usr/include |
302 | # include dir defaults to /usr/include |
185 | # ABI defaults to ${ABI} or ${DEFAULT_ABI} |
303 | # ABI defaults to ${ABI} or ${DEFAULT_ABI} |
186 | get_ml_incdir() { |
304 | get_ml_incdir() { |
187 | local dir=/usr/include |
305 | local dir=/usr/include |
188 | |
306 | |
189 | if [[ ${#} -gt 0 ]]; then |
307 | if [[ $# -gt 0 ]]; then |
190 | incdir=${1} |
308 | incdir=$1 |
191 | shift |
309 | shift |
192 | fi |
310 | fi |
193 | |
311 | |
194 | if [[ -z "${MULTILIB_ABIS}" ]]; then |
312 | if [[ -z "${MULTILIB_ABIS}" ]]; then |
195 | echo ${incdir} |
313 | echo ${incdir} |
196 | return 0 |
314 | return 0 |
197 | fi |
315 | fi |
198 | |
316 | |
199 | local abi=${ABI:-${DEFAULT_ABI}} |
317 | local abi=${ABI-${DEFAULT_ABI}} |
200 | if [[ ${#} -gt 0 ]]; then |
318 | if [[ $# -gt 0 ]]; then |
201 | abi=${1} |
319 | abi=$1 |
202 | shift |
320 | shift |
203 | fi |
321 | fi |
204 | |
322 | |
205 | if [[ -d "${dir}/gentoo-multilib/${abi}" ]]; then |
323 | if [[ -d "${dir}/gentoo-multilib/${abi}" ]]; then |
206 | echo ${dir}/gentoo-multilib/${abi} |
324 | echo ${dir}/gentoo-multilib/${abi} |
… | |
… | |
223 | # ... |
341 | # ... |
224 | # prep_ml_includes /usr/qt/3/include |
342 | # prep_ml_includes /usr/qt/3/include |
225 | # } |
343 | # } |
226 | |
344 | |
227 | prep_ml_includes() { |
345 | prep_ml_includes() { |
228 | if [ $(number_abis) -gt 1 ]; then |
346 | if [[ $(number_abis) -gt 1 ]] ; then |
229 | local dir |
347 | local dir |
230 | local dirs |
348 | local dirs |
231 | local base |
349 | local base |
232 | |
350 | |
233 | if [ ${#} -eq 0 ]; then |
351 | if [[ $# -eq 0 ]] ; then |
234 | dirs="/usr/include" |
352 | dirs=/usr/include |
235 | else |
353 | else |
236 | dirs="${@}" |
354 | dirs="$@" |
237 | fi |
355 | fi |
238 | |
356 | |
239 | for dir in ${dirs}; do |
357 | for dir in ${dirs} ; do |
240 | base=${T}/gentoo-multilib/${dir}/gentoo-multilib |
358 | base=${T}/gentoo-multilib/${dir}/gentoo-multilib |
241 | mkdir -p ${base} |
359 | mkdir -p "${base}" |
242 | [ -d ${base}/${ABI} ] && rm -rf ${base}/${ABI} |
360 | [[ -d ${base}/${ABI} ]] && rm -rf "${base}/${ABI}" |
243 | mv ${D}/${dir} ${base}/${ABI} |
361 | mv "${D}/${dir}" "${base}/${ABI}" |
244 | done |
362 | done |
245 | |
363 | |
246 | if is_final_abi; then |
364 | if is_final_abi; then |
247 | base=${T}/gentoo-multilib |
365 | base=${T}/gentoo-multilib |
248 | pushd ${base} |
366 | pushd "${base}" |
249 | find . | cpio -pmd --no-preserve-owner ${D} |
367 | find . | tar -c -T - -f - | tar -x --no-same-owner -f - -C ${D} |
250 | popd |
368 | popd |
251 | |
369 | |
|
|
370 | # This 'set' stuff is required by mips profiles to properly pass |
|
|
371 | # CDEFINE's (which have spaces) to sub-functions |
|
|
372 | set -- |
252 | for dir in ${dirs}; do |
373 | for dir in ${dirs} ; do |
253 | local args=${dir} |
374 | set -- "$@" "${dir}" |
254 | local abi |
375 | local abi |
255 | for abi in $(get_abi_order); do |
376 | for abi in $(get_install_abis); do |
256 | args="${args} $(get_abi_CDEFINE ${abi}):${dir}/gentoo-multilib/${abi}" |
377 | set -- "$@" "$(get_abi_CDEFINE ${abi}):${dir}/gentoo-multilib/${abi}" |
257 | done |
378 | done |
258 | create_ml_includes ${args} |
379 | create_ml_includes "$@" |
259 | done |
380 | done |
260 | fi |
381 | fi |
261 | fi |
382 | fi |
262 | } |
383 | } |
263 | |
384 | |
… | |
… | |
270 | # |
391 | # |
271 | # Example: |
392 | # Example: |
272 | # create_ml_includes /usr/include/asm __sparc__:/usr/include/asm-sparc __sparc64__:/usr/include/asm-sparc64 |
393 | # create_ml_includes /usr/include/asm __sparc__:/usr/include/asm-sparc __sparc64__:/usr/include/asm-sparc64 |
273 | # create_ml_includes /usr/include/asm __i386__:/usr/include/asm-i386 __x86_64__:/usr/include/asm-x86_64 |
394 | # create_ml_includes /usr/include/asm __i386__:/usr/include/asm-i386 __x86_64__:/usr/include/asm-x86_64 |
274 | create_ml_includes() { |
395 | create_ml_includes() { |
275 | local dest="${1}" |
396 | local dest=$1 |
276 | shift |
397 | shift |
277 | local mlinfo="${@}" |
|
|
278 | local basedirs=$(create_ml_includes-listdirs ${mlinfo}) |
398 | local basedirs=$(create_ml_includes-listdirs "$@") |
279 | |
399 | |
280 | create_ml_includes-makedestdirs ${dest} ${basedirs} |
400 | create_ml_includes-makedestdirs ${dest} ${basedirs} |
281 | |
401 | |
282 | local file |
402 | local file |
283 | for file in $(create_ml_includes-allfiles ${basedirs}); do |
403 | for file in $(create_ml_includes-allfiles ${basedirs}) ; do |
284 | local name="$(echo $file | tr a-z A-Z | sed 's:[^A-Z]:_:g')" |
404 | #local name=$(echo ${file} | tr '[:lower:]' '[:upper:]' | sed 's:[^[:upper:]]:_:g') |
285 | { |
405 | ( |
286 | echo "/* Common header file autogenerated by create_ml_includes in multilib.eclass */" |
406 | echo "/* 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 | |
407 | |
291 | local dir |
408 | local dir |
292 | for dir in ${basedirs}; do |
409 | for dir in ${basedirs}; do |
293 | if [ -f "${D}/${dir}/${file}" ]; then |
410 | if [[ -f ${D}/${dir}/${file} ]] ; then |
294 | echo "#ifdef $(create_ml_includes-sym_for_dir ${dir} ${mlinfo})" |
|
|
295 | echo "#include \"$(create_ml_includes-relative_between ${dest}/$(dirname ${file}) ${dir}/${file})\"" |
|
|
296 | echo "#endif /* $(create_ml_includes-sym_for_dir ${dir} ${mlinfo}) */" |
|
|
297 | echo "" |
411 | echo "" |
|
|
412 | local sym=$(create_ml_includes-sym_for_dir ${dir} "$@") |
|
|
413 | if [[ ${sym/=} != "${sym}" ]] ; then |
|
|
414 | echo "#if ${sym}" |
|
|
415 | elif [[ ${sym::1} == "!" ]] ; then |
|
|
416 | echo "#ifndef ${sym:1}" |
|
|
417 | else |
|
|
418 | echo "#ifdef ${sym}" |
|
|
419 | fi |
|
|
420 | echo "# include <$(create_ml_includes-absolute ${dir}/${file})>" |
|
|
421 | echo "#endif /* ${sym} */" |
298 | fi |
422 | fi |
299 | done |
423 | done |
300 | |
424 | |
301 | #echo "#endif /* __CREATE_ML_INCLUDES_STUB_${name}__ */" |
425 | #echo "#endif /* __CREATE_ML_INCLUDES_STUB_${name}__ */" |
302 | } > ${D}/${dest}/${file} |
426 | ) > "${D}/${dest}/${file}" |
303 | done |
427 | done |
304 | } |
428 | } |
305 | |
429 | |
306 | # Helper function for create_ml_includes |
430 | # Helper function for create_ml_includes |
307 | create_ml_includes-relative_between() { |
431 | create_ml_includes-absolute() { |
308 | local src="$(create_ml_includes-tidy_path ${1})" |
|
|
309 | local dst="$(create_ml_includes-tidy_path ${2})" |
432 | local dst="$(create_ml_includes-tidy_path $1)" |
310 | |
433 | |
311 | src=(${src//\// }) |
|
|
312 | dst=(${dst//\// }) |
434 | dst=(${dst//\// }) |
313 | |
435 | |
314 | local i |
436 | local i |
315 | for ((i=0; i<${#src[*]}; i++)); do |
437 | for ((i=0; i<${#dst[*]}; i++)); do |
316 | [ "${dst[i]}" != "${src[i]}" ] && break |
438 | [ "${dst[i]}" == "include" ] && break |
317 | done |
439 | done |
318 | |
440 | |
319 | local common=$i |
441 | local strip_upto=$i |
320 | |
442 | |
321 | for ((i=${#src[*]}; i>common; i--)); do |
|
|
322 | echo -n ../ |
|
|
323 | done |
|
|
324 | |
|
|
325 | for ((i=common; i<${#dst[*]}-1; i++)); do |
443 | for ((i=strip_upto+1; i<${#dst[*]}-1; i++)); do |
326 | echo -n ${dst[i]}/ |
444 | echo -n ${dst[i]}/ |
327 | done |
445 | done |
328 | |
446 | |
329 | echo -n ${dst[i]} |
447 | echo -n ${dst[i]} |
330 | } |
448 | } |
331 | |
449 | |
332 | # Helper function for create_ml_includes |
450 | # Helper function for create_ml_includes |
333 | create_ml_includes-tidy_path() { |
451 | create_ml_includes-tidy_path() { |
334 | local removed="${1}" |
452 | local removed=$1 |
335 | |
453 | |
336 | if [ -n "${removed}" ]; then |
454 | if [ -n "${removed}" ]; then |
337 | # Remove multiple slashes |
455 | # Remove multiple slashes |
338 | while [ "${removed}" != "${removed/\/\//\/}" ]; do |
456 | while [ "${removed}" != "${removed/\/\//\/}" ]; do |
339 | removed=${removed/\/\//\/} |
457 | removed=${removed/\/\//\/} |
… | |
… | |
356 | # Remove trailing .. |
474 | # Remove trailing .. |
357 | [ "${removed##*/}" = ".." ] && removed=${removed%/*/*} |
475 | [ "${removed##*/}" = ".." ] && removed=${removed%/*/*} |
358 | |
476 | |
359 | # Remove trailing / |
477 | # Remove trailing / |
360 | [ "${removed##*/}" = "" ] && removed=${removed%/*} |
478 | [ "${removed##*/}" = "" ] && removed=${removed%/*} |
361 | |
479 | |
362 | echo ${removed} |
480 | echo ${removed} |
363 | fi |
481 | fi |
364 | } |
482 | } |
365 | |
483 | |
366 | # Helper function for create_ml_includes |
484 | # Helper function for create_ml_includes |
367 | create_ml_includes-listdirs() { |
485 | create_ml_includes-listdirs() { |
368 | local dirs |
486 | local dirs |
369 | local data |
487 | local data |
370 | for data in ${@}; do |
488 | for data in "$@"; do |
371 | dirs="${dirs} ${data/*:/}" |
489 | dirs="${dirs} ${data/*:/}" |
372 | done |
490 | done |
373 | echo ${dirs:1} |
491 | echo ${dirs:1} |
374 | } |
492 | } |
375 | |
493 | |
376 | # Helper function for create_ml_includes |
494 | # Helper function for create_ml_includes |
377 | create_ml_includes-makedestdirs() { |
495 | create_ml_includes-makedestdirs() { |
378 | local dest=${1} |
496 | local dest=$1 |
379 | shift |
497 | shift |
380 | local basedirs=${@} |
498 | local basedirs=$@ |
381 | |
499 | |
382 | dodir ${dest} |
500 | dodir ${dest} |
383 | |
501 | |
384 | local basedir |
502 | local basedir |
385 | for basedir in ${basedirs}; do |
503 | for basedir in ${basedirs}; do |
… | |
… | |
390 | done |
508 | done |
391 | } |
509 | } |
392 | |
510 | |
393 | # Helper function for create_ml_includes |
511 | # Helper function for create_ml_includes |
394 | create_ml_includes-allfiles() { |
512 | create_ml_includes-allfiles() { |
395 | local basedirs=${@} |
|
|
396 | |
|
|
397 | local basedir |
513 | local basedir file |
398 | for basedir in ${basedirs}; do |
514 | for basedir in "$@" ; do |
399 | local file |
|
|
400 | for file in $(find ${D}/${basedir} -type f); do |
515 | for file in $(find "${D}"/${basedir} -type f); do |
401 | echo ${file/${D}\/${basedir}\//} |
516 | echo ${file/${D}\/${basedir}\//} |
402 | done |
517 | done |
403 | done | sort | uniq |
518 | done | sort | uniq |
404 | } |
519 | } |
405 | |
520 | |
406 | # Helper function for create_ml_includes |
521 | # Helper function for create_ml_includes |
407 | create_ml_includes-sym_for_dir() { |
522 | create_ml_includes-sym_for_dir() { |
408 | local dir="${1}" |
523 | local dir=$1 |
409 | shift |
524 | shift |
410 | local data |
525 | local data |
411 | for data in ${@}; do |
526 | for data in "$@"; do |
412 | if [ "${dir}" = "${data/*:/}" ]; then |
527 | if [[ ${data} == *:${dir} ]] ; then |
413 | echo ${data/:*/} |
528 | echo ${data/:*/} |
414 | return 0 |
529 | return 0 |
415 | fi |
530 | fi |
416 | done |
531 | done |
417 | echo "Shouldn't be here -- create_ml_includes-sym_for_dir ${1} ${@}" |
532 | echo "Shouldn't be here -- create_ml_includes-sym_for_dir $1 $@" |
418 | # exit because we'll likely be called from a subshell |
533 | # exit because we'll likely be called from a subshell |
419 | exit 1 |
534 | exit 1 |
420 | } |
535 | } |
|
|
536 | |
|
|
537 | get_libname() { |
|
|
538 | local ver=$1 |
|
|
539 | if use userland_Darwin ; then |
|
|
540 | if [ -z ${ver} ] ; then |
|
|
541 | echo ".dylib" |
|
|
542 | else |
|
|
543 | echo ".${ver}.dylib" |
|
|
544 | fi |
|
|
545 | else |
|
|
546 | if [ -z ${ver} ] ; then |
|
|
547 | echo ".so" |
|
|
548 | else |
|
|
549 | echo ".so.${ver}" |
|
|
550 | fi |
|
|
551 | fi |
|
|
552 | } |
|
|
553 | |
|
|
554 | # This is for the toolchain to setup profile variables when pulling in |
|
|
555 | # a crosscompiler (and thus they aren't set in the profile) |
|
|
556 | multilib_env() { |
|
|
557 | local CTARGET=$1 |
|
|
558 | local CTARGET_post=${CTARGET#*-} |
|
|
559 | |
|
|
560 | case $(tc-arch ${CTARGET}) in |
|
|
561 | amd64) |
|
|
562 | export CFLAGS_x86=${CFLAGS_x86--m32} |
|
|
563 | export CHOST_x86=i686-${CTARGET_post} |
|
|
564 | export CTARGET_x86=i686-${CTARGET_post} |
|
|
565 | export CDEFINE_x86="__i386__" |
|
|
566 | export LIBDIR_x86="lib" |
|
|
567 | |
|
|
568 | export CFLAGS_amd64=${CFLAGS_amd64--m64} |
|
|
569 | export CHOST_amd64=x86_64-${CTARGET_post} |
|
|
570 | export CTARGET_amd64=x86_64-${CTARGET_post} |
|
|
571 | export CDEFINE_amd64="__x86_64__" |
|
|
572 | export LIBDIR_amd64="lib64" |
|
|
573 | |
|
|
574 | export MULTILIB_ABIS="amd64 x86" |
|
|
575 | export DEFAULT_ABI="amd64" |
|
|
576 | ;; |
|
|
577 | mips) |
|
|
578 | export CFLAGS_o32=${CFLAGS_o32--mabi=32} |
|
|
579 | export CHOST_o32=mips-${CTARGET_post} |
|
|
580 | export CTARGET_o32=mips-${CTARGET_post} |
|
|
581 | export CDEFINE_o32="_MIPS_SIM == _ABIO32" |
|
|
582 | export LIBDIR_o32="lib" |
|
|
583 | |
|
|
584 | export CFLAGS_n32=${CFLAGS_n32--mabi=n32} |
|
|
585 | export CHOST_n32=mips64-${CTARGET_post} |
|
|
586 | export CTARGET_n32=mips64-${CTARGET_post} |
|
|
587 | export CDEFINE_n32="_MIPS_SIM == _ABIN32" |
|
|
588 | export LIBDIR_n32="lib32" |
|
|
589 | |
|
|
590 | export CFLAGS_n64=${CFLAGS_n64--mabi=64} |
|
|
591 | export CHOST_n64=mips64-${CTARGET_post} |
|
|
592 | export CTARGET_n64=mips64-${CTARGET_post} |
|
|
593 | export CDEFINE_n64="_MIPS_SIM == _ABI64" |
|
|
594 | export LIBDIR_n64="lib64" |
|
|
595 | |
|
|
596 | export MULTILIB_ABIS="n64 n32 o32" |
|
|
597 | export DEFAULT_ABI="n32" |
|
|
598 | ;; |
|
|
599 | ppc64) |
|
|
600 | export CFLAGS_ppc=${CFLAGS_ppc--m32} |
|
|
601 | export CHOST_ppc=powerpc-${CTARGET_post} |
|
|
602 | export CTARGET_ppc=powerpc-${CTARGET_post} |
|
|
603 | export CDEFINE_ppc="!__powerpc64__" |
|
|
604 | export LIBDIR_ppc="lib" |
|
|
605 | |
|
|
606 | export CFLAGS_ppc64=${CFLAGS_ppc64--m64} |
|
|
607 | export CHOST_ppc64=powerpc64-${CTARGET_post} |
|
|
608 | export CTARGET_ppc64=powerpc64-${CTARGET_post} |
|
|
609 | export CDEFINE_ppc64="__powerpc64__" |
|
|
610 | export LIBDIR_ppc64="lib64" |
|
|
611 | |
|
|
612 | export MULTILIB_ABIS="ppc64 ppc" |
|
|
613 | export DEFAULT_ABI="ppc64" |
|
|
614 | ;; |
|
|
615 | sparc) |
|
|
616 | export CFLAGS_sparc32=${CFLAGS_sparc32--m32} |
|
|
617 | export CHOST_sparc32=sparc-${CTARGET_post} |
|
|
618 | export CTARGET_sparc32=sparc-${CTARGET_post} |
|
|
619 | export CDEFINE_sparc32="!__arch64__" |
|
|
620 | export LIBDIR_sparc32="lib" |
|
|
621 | |
|
|
622 | export CFLAGS_sparc64=${CFLAGS_sparc64--m64} |
|
|
623 | export CHOST_sparc64=sparc64-${CTARGET_post} |
|
|
624 | export CTARGET_sparc64=sparc64-${CTARGET_post} |
|
|
625 | export CDEFINE_sparc64="__arch64__" |
|
|
626 | export LIBDIR_sparc64="lib64" |
|
|
627 | |
|
|
628 | export MULTILIB_ABIS="sparc64 sparc32" |
|
|
629 | export DEFAULT_ABI="sparc64" |
|
|
630 | ;; |
|
|
631 | *) |
|
|
632 | export MULTILIB_ABIS="default" |
|
|
633 | export DEFAULT_ABI="default" |
|
|
634 | esac |
|
|
635 | } |