1 | # Copyright 1999-2013 Gentoo Foundation |
1 | # Copyright 1999-2013 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/autotools-multilib.eclass,v 1.10 2013/02/22 14:42:09 mgorny Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools-multilib.eclass,v 1.11 2013/02/27 21:46:31 mgorny Exp $ |
4 | |
4 | |
5 | # @ECLASS: autotools-multilib.eclass |
5 | # @ECLASS: autotools-multilib.eclass |
6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
7 | # Michał Górny <mgorny@gentoo.org> |
7 | # Michał Górny <mgorny@gentoo.org> |
8 | # @BLURB: autotools-utils wrapper for multilib builds |
8 | # @BLURB: autotools-utils wrapper for multilib builds |
9 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
10 | # The autotools-multilib.eclass is an autotools-utils.eclass(5) wrapper |
10 | # The autotools-multilib.eclass is an autotools-utils.eclass(5) wrapper |
11 | # introducing support for building for more than one ABI (multilib). |
11 | # introducing support for building for more than one ABI (multilib). |
12 | # |
12 | # |
13 | # Inheriting this eclass sets IUSE=multilib and exports autotools-utils |
13 | # Inheriting this eclass sets the USE flags and exports autotools-utils |
14 | # phase function wrappers which build the package for each supported ABI |
14 | # phase function wrappers which build the package for each supported ABI |
15 | # if the flag is enabled. Otherwise, it works like regular |
15 | # when the relevant flag is enabled. Other than that, it works like |
16 | # autotools-utils. |
16 | # regular autotools-utils. |
17 | # |
17 | # |
18 | # Note that the multilib support requires out-of-source builds to be |
18 | # Note that the multilib support requires out-of-source builds to be |
19 | # enabled. Thus, it is impossible to use AUTOTOOLS_IN_SOURCE_BUILD with |
19 | # enabled. Thus, it is impossible to use AUTOTOOLS_IN_SOURCE_BUILD with |
20 | # it. |
20 | # it. |
21 | |
21 | |