aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory M. Turner <gmt@be-evil.net>2013-10-11 02:46:30 -0700
committerGregory M. Turner <gmt@be-evil.net>2013-10-11 02:46:30 -0700
commit2719fd711d20ed0cfd268fbbabc45977c60f35cf (patch)
treec8b705a962fe7cba05be383284e16e4f78198485 /eclass/autotools-multilib.eclass
parenteclass/eutils-multilib: convenience class: adds multi-abi + @GET_LIBDIR@ susb... (diff)
downloadgmt-2719fd711d20ed0cfd268fbbabc45977c60f35cf.tar.gz
gmt-2719fd711d20ed0cfd268fbbabc45977c60f35cf.tar.bz2
gmt-2719fd711d20ed0cfd268fbbabc45977c60f35cf.zip
eclass/autotools-multilib: clone upstream version
Signed-off-by: Gregory M. Turner <gmt@be-evil.net>
Diffstat (limited to 'eclass/autotools-multilib.eclass')
-rw-r--r--eclass/autotools-multilib.eclass68
1 files changed, 68 insertions, 0 deletions
diff --git a/eclass/autotools-multilib.eclass b/eclass/autotools-multilib.eclass
new file mode 100644
index 0000000..0984c25
--- /dev/null
+++ b/eclass/autotools-multilib.eclass
@@ -0,0 +1,68 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-multilib.eclass,v 1.17 2013/06/28 12:42:48 mgorny Exp $
+
+# @ECLASS: autotools-multilib.eclass
+# @MAINTAINER:
+# Michał Górny <mgorny@gentoo.org>
+# @BLURB: autotools-utils wrapper for multilib builds
+# @DESCRIPTION:
+# The autotools-multilib.eclass is an autotools-utils.eclass(5) wrapper
+# introducing support for building for more than one ABI (multilib).
+#
+# Inheriting this eclass sets the USE flags and exports autotools-utils
+# phase function wrappers which build the package for each supported ABI
+# when the relevant flag is enabled. Other than that, it works like
+# regular autotools-utils.
+#
+# Note that the multilib support requires out-of-source builds to be
+# enabled. Thus, it is impossible to use AUTOTOOLS_IN_SOURCE_BUILD with
+# it.
+
+# EAPI=4 is required for meaningful MULTILIB_USEDEP.
+case ${EAPI:-0} in
+ 4|5) ;;
+ *) die "EAPI=${EAPI} is not supported" ;;
+esac
+
+if [[ ${AUTOTOOLS_IN_SOURCE_BUILD} ]]; then
+ die "${ECLASS}: multilib support requires out-of-source builds."
+fi
+
+inherit autotools-utils multilib-build
+
+EXPORT_FUNCTIONS src_prepare src_configure src_compile src_test src_install
+
+autotools-multilib_src_prepare() {
+ autotools-utils_src_prepare "${@}"
+}
+
+autotools-multilib_src_configure() {
+ multilib_parallel_foreach_abi autotools-utils_src_configure "${@}"
+}
+
+autotools-multilib_src_compile() {
+ multilib_foreach_abi autotools-utils_src_compile "${@}"
+}
+
+autotools-multilib_src_test() {
+ multilib_foreach_abi autotools-utils_src_test "${@}"
+}
+
+autotools-multilib_src_install() {
+ autotools-multilib_secure_install() {
+ autotools-utils_src_install "${@}"
+
+ # Do multilib magic only when >1 ABI is used.
+ if [[ ${#MULTIBUILD_VARIANTS[@]} -gt 1 ]]; then
+ multilib_prepare_wrappers
+ # Make sure all headers are the same for each ABI.
+ multilib_check_headers
+ fi
+ }
+
+ multilib_foreach_abi autotools-multilib_secure_install "${@}"
+
+ # merge the wrappers
+ multilib_install_wrappers
+}