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.15 2005/01/27 22:07:36 eradicator Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.16 2005/01/31 06:37:31 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. |
… | |
… | |
27 | |
27 | |
28 | # get_abi_order: |
28 | # get_abi_order: |
29 | # Return a list of the ABIs we want to install for with |
29 | # Return a list of the ABIs we want to install for with |
30 | # the last one in the list being the default. |
30 | # the last one in the list being the default. |
31 | |
31 | |
32 | # get_all_libdir: |
32 | # get_all_libdirs: |
33 | # Returns a list of all the libdirs used by this profile. This includes |
33 | # Returns a list of all the libdirs used by this profile. This includes |
34 | # those that might not be touched by the current ebuild and always includes |
34 | # those that might not be touched by the current ebuild and always includes |
35 | # "lib". |
35 | # "lib". |
36 | |
36 | |
37 | # get_libdir: |
37 | # get_libdir: |
… | |
… | |
219 | |
219 | |
220 | echo ${order} |
220 | echo ${order} |
221 | return 0 |
221 | return 0 |
222 | } |
222 | } |
223 | |
223 | |
224 | # get_all_libdir() |
224 | # get_all_libdirs() |
225 | # Returns a list of all the libdirs used by this profile. This includes |
225 | # Returns a list of all the libdirs used by this profile. This includes |
226 | # those that might not be touched by the current ebuild. |
226 | # those that might not be touched by the current ebuild. |
227 | get_all_libdirs() { |
227 | get_all_libdirs() { |
228 | local libdirs="lib" |
228 | local libdirs="lib" |
229 | local abi |
229 | local abi |