public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog cmake-multilib.eclass
@ 2013-02-10 11:44 Michal Gorny (mgorny)
  0 siblings, 0 replies; 5+ messages in thread
From: Michal Gorny (mgorny) @ 2013-02-10 11:44 UTC (permalink / raw
  To: gentoo-commits

mgorny      13/02/10 11:44:55

  Modified:             ChangeLog
  Added:                cmake-multilib.eclass
  Log:
  Introduce cmake-utils wrapper eclass for multilib.

Revision  Changes    Path
1.672                eclass/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.672&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.672&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.671&r2=1.672

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.671
retrieving revision 1.672
diff -u -r1.671 -r1.672
--- ChangeLog	10 Feb 2013 11:44:00 -0000	1.671
+++ ChangeLog	10 Feb 2013 11:44:55 -0000	1.672
@@ -1,6 +1,9 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.671 2013/02/10 11:44:00 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.672 2013/02/10 11:44:55 mgorny Exp $
+
+  10 Feb 2013; Michał Górny <mgorny@gentoo.org> +cmake-multilib.eclass:
+  Introduce cmake-utils wrapper eclass for multilib.
 
   10 Feb 2013; Michał Górny <mgorny@gentoo.org> autotools-multilib.eclass,
   multilib-build.eclass:



1.1                  eclass/cmake-multilib.eclass

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/cmake-multilib.eclass?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/cmake-multilib.eclass?rev=1.1&content-type=text/plain

Index: cmake-multilib.eclass
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-multilib.eclass,v 1.1 2013/02/10 11:44:55 mgorny Exp $

# @ECLASS: cmake-multilib.eclass
# @MAINTAINER:
# Michał Górny <mgorny@gentoo.org>
# @BLURB: cmake-utils wrapper for multilib builds
# @DESCRIPTION:
# The cmake-multilib.eclass is a cmake-utils.eclass(5) wrapper
# introducing support for building for more than one ABI (multilib).
#
# Inheriting this eclass sets IUSE and exports cmake-utils phase
# function wrappers which build the package for each supported ABI
# if the appropriate flag is enabled.
#
# Note that the multilib support requires out-of-source builds to be
# enabled. Thus, it is impossible to use CMAKE_IN_SOURCE_BUILD with
# it.

# EAPI=5 is required for meaningful MULTILIB_USEDEP.
case ${EAPI:-0} in
	5) ;;
	*) die "EAPI=${EAPI} is not supported" ;;
esac

if [[ ${CMAKE_IN_SOURCE_BUILD} ]]; then
	die "${ECLASS}: multilib support requires out-of-source builds."
fi

inherit cmake-utils multilib-build

EXPORT_FUNCTIONS src_configure src_compile src_test src_install

cmake-multilib_src_configure() {
	multilib_parallel_foreach_abi cmake-utils_src_configure
}

cmake-multilib_src_compile() {
	multilib_foreach_abi cmake-utils_src_compile
}

cmake-multilib_src_test() {
	multilib_foreach_abi cmake-utils_src_test
}

cmake-multilib_src_install() {
	cmake-multilib_secure_install() {
		cmake-utils_src_install

		# Make sure all headers are the same for each ABI.
		multilib_check_headers
	}

	multilib_foreach_abi cmake-multilib_secure_install
}





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog cmake-multilib.eclass
@ 2013-04-13 19:15 Michael Weber (xmw)
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Weber (xmw) @ 2013-04-13 19:15 UTC (permalink / raw
  To: gentoo-commits

xmw         13/04/13 19:15:05

  Modified:             ChangeLog cmake-multilib.eclass
  Log:
  Pass ${@} in phase functions. Approved by author on dev-ml.

Revision  Changes    Path
1.786                eclass/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.786&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.786&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.785&r2=1.786

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.785
retrieving revision 1.786
diff -u -r1.785 -r1.786
--- ChangeLog	13 Apr 2013 19:07:31 -0000	1.785
+++ ChangeLog	13 Apr 2013 19:15:04 -0000	1.786
@@ -1,6 +1,9 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.785 2013/04/13 19:07:31 hd_brummy Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.786 2013/04/13 19:15:04 xmw Exp $
+
+  13 Apr 2013; Michael Weber <xmw@gentoo.org> cmake-multilib.eclass:
+  Pass ${@} in phase functions. Approved by author on dev-ml.
 
   13 Apr 2013; Joerg Bornkessel <hd_brummy@gentoo.org> vdr-plugin-2.eclass:
   spell fix



1.2                  eclass/cmake-multilib.eclass

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/cmake-multilib.eclass?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/cmake-multilib.eclass?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/cmake-multilib.eclass?r1=1.1&r2=1.2

Index: cmake-multilib.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/cmake-multilib.eclass,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- cmake-multilib.eclass	10 Feb 2013 11:44:55 -0000	1.1
+++ cmake-multilib.eclass	13 Apr 2013 19:15:04 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-multilib.eclass,v 1.1 2013/02/10 11:44:55 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-multilib.eclass,v 1.2 2013/04/13 19:15:04 xmw Exp $
 
 # @ECLASS: cmake-multilib.eclass
 # @MAINTAINER:
@@ -33,24 +33,24 @@
 EXPORT_FUNCTIONS src_configure src_compile src_test src_install
 
 cmake-multilib_src_configure() {
-	multilib_parallel_foreach_abi cmake-utils_src_configure
+	multilib_parallel_foreach_abi cmake-utils_src_configure "${@}"
 }
 
 cmake-multilib_src_compile() {
-	multilib_foreach_abi cmake-utils_src_compile
+	multilib_foreach_abi cmake-utils_src_compile "${@}"
 }
 
 cmake-multilib_src_test() {
-	multilib_foreach_abi cmake-utils_src_test
+	multilib_foreach_abi cmake-utils_src_test "${@}"
 }
 
 cmake-multilib_src_install() {
 	cmake-multilib_secure_install() {
-		cmake-utils_src_install
+		cmake-utils_src_install "${@}"
 
 		# Make sure all headers are the same for each ABI.
 		multilib_check_headers
 	}
 
-	multilib_foreach_abi cmake-multilib_secure_install
+	multilib_foreach_abi cmake-multilib_secure_install "${@}"
 }





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog cmake-multilib.eclass
@ 2013-09-06 17:11 Ian Stakenvicius (axs)
  0 siblings, 0 replies; 5+ messages in thread
From: Ian Stakenvicius (axs) @ 2013-09-06 17:11 UTC (permalink / raw
  To: gentoo-commits

axs         13/09/06 17:11:52

  Modified:             ChangeLog cmake-multilib.eclass
  Log:
  added multilib_*_wrappers calls to cmake-multilib.eclass

Revision  Changes    Path
1.950                eclass/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.950&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.950&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.949&r2=1.950

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.949
retrieving revision 1.950
diff -u -r1.949 -r1.950
--- ChangeLog	5 Sep 2013 22:40:12 -0000	1.949
+++ ChangeLog	6 Sep 2013 17:11:52 -0000	1.950
@@ -1,6 +1,9 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.949 2013/09/05 22:40:12 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.950 2013/09/06 17:11:52 axs Exp $
+
+  06 Sep 2013; Ian Stakenvicius <axs@gentoo.org> cmake-multilib.eclass:
+  added multilib_*_wrappers calls to cmake-multilib.eclass
 
   05 Sep 2013; Michał Górny <mgorny@gentoo.org> git-r3.eclass:
   Do not pass --depth when updating a branch, it trrigers issues in git.
@@ -35,6 +38,9 @@
   28 Aug 2013; Tom Wijsman <TomWij@gentoo.org> ant-tasks.eclass:
   Made ant-tasks.eclass support newer versions of the 1.9 branch.
 
+  28 Aug 2013; Ian Stakenvicius <axs@gentoo.org> mozconfig-3.eclass:
+  pegged virtual/jpeg at slot 0 in mozconfig-3.eclass
+
   27 Aug 2013; Michał Górny <mgorny@gentoo.org> python-r1.eclass:
   Enable EAPI=4 on python-r1.
 



1.3                  eclass/cmake-multilib.eclass

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/cmake-multilib.eclass?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/cmake-multilib.eclass?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/cmake-multilib.eclass?r1=1.2&r2=1.3

Index: cmake-multilib.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/cmake-multilib.eclass,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- cmake-multilib.eclass	13 Apr 2013 19:15:04 -0000	1.2
+++ cmake-multilib.eclass	6 Sep 2013 17:11:52 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-multilib.eclass,v 1.2 2013/04/13 19:15:04 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-multilib.eclass,v 1.3 2013/09/06 17:11:52 axs Exp $
 
 # @ECLASS: cmake-multilib.eclass
 # @MAINTAINER:
@@ -49,8 +49,10 @@
 		cmake-utils_src_install "${@}"
 
 		# Make sure all headers are the same for each ABI.
+		multilib_prepare_wrappers
 		multilib_check_headers
 	}
 
 	multilib_foreach_abi cmake-multilib_secure_install "${@}"
+	multilib_install_wrappers
 }





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog cmake-multilib.eclass
@ 2013-11-20 19:23 Michal Gorny (mgorny)
  0 siblings, 0 replies; 5+ messages in thread
From: Michal Gorny (mgorny) @ 2013-11-20 19:23 UTC (permalink / raw
  To: gentoo-commits

mgorny      13/11/20 19:23:45

  Modified:             ChangeLog cmake-multilib.eclass
  Log:
  Run multilib header wrapping only when multiple ABIs are enabled, bug #491752. Other eclasses do that already.

Revision  Changes    Path
1.1063               eclass/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1063&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1063&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1062&r2=1.1063

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1062
retrieving revision 1.1063
diff -u -r1.1062 -r1.1063
--- ChangeLog	20 Nov 2013 09:19:19 -0000	1.1062
+++ ChangeLog	20 Nov 2013 19:23:45 -0000	1.1063
@@ -1,6 +1,10 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1062 2013/11/20 09:19:19 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1063 2013/11/20 19:23:45 mgorny Exp $
+
+  20 Nov 2013; Michał Górny <mgorny@gentoo.org> cmake-multilib.eclass:
+  Run multilib header wrapping only when multiple ABIs are enabled, bug
+  #491752. Other eclasses do that already.
 
   20 Nov 2013; Sergei Trofimovich <slyfox@gentoo.org> haskell-cabal.eclass:
   Added 'replace-hcflags()'. Filters HCFLAGS.



1.4                  eclass/cmake-multilib.eclass

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/cmake-multilib.eclass?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/cmake-multilib.eclass?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/cmake-multilib.eclass?r1=1.3&r2=1.4

Index: cmake-multilib.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/cmake-multilib.eclass,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- cmake-multilib.eclass	6 Sep 2013 17:11:52 -0000	1.3
+++ cmake-multilib.eclass	20 Nov 2013 19:23:45 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-multilib.eclass,v 1.3 2013/09/06 17:11:52 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-multilib.eclass,v 1.4 2013/11/20 19:23:45 mgorny Exp $
 
 # @ECLASS: cmake-multilib.eclass
 # @MAINTAINER:
@@ -48,9 +48,12 @@
 	cmake-multilib_secure_install() {
 		cmake-utils_src_install "${@}"
 
-		# Make sure all headers are the same for each ABI.
-		multilib_prepare_wrappers
-		multilib_check_headers
+		# 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 cmake-multilib_secure_install "${@}"





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog cmake-multilib.eclass
@ 2014-05-09 10:48 Michal Gorny (mgorny)
  0 siblings, 0 replies; 5+ messages in thread
From: Michal Gorny (mgorny) @ 2014-05-09 10:48 UTC (permalink / raw
  To: gentoo-commits

mgorny      14/05/09 10:48:59

  Modified:             ChangeLog cmake-multilib.eclass
  Log:
  Use multilib-minimal for phase functions.

Revision  Changes    Path
1.1248               eclass/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1248&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1248&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1247&r2=1.1248

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1247
retrieving revision 1.1248
diff -u -r1.1247 -r1.1248
--- ChangeLog	9 May 2014 07:13:47 -0000	1.1247
+++ ChangeLog	9 May 2014 10:48:59 -0000	1.1248
@@ -1,6 +1,9 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1247 2014/05/09 07:13:47 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1248 2014/05/09 10:48:59 mgorny Exp $
+
+  09 May 2014; Michał Górny <mgorny@gentoo.org> cmake-multilib.eclass:
+  Use multilib-minimal for phase functions.
 
   09 May 2014; Michał Górny <mgorny@gentoo.org> emul-linux-x86.eclass:
   Remove i686-* renamed tools as well with USE=abi_x86_32.



1.7                  eclass/cmake-multilib.eclass

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/cmake-multilib.eclass?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/cmake-multilib.eclass?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/cmake-multilib.eclass?r1=1.6&r2=1.7

Index: cmake-multilib.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/cmake-multilib.eclass,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- cmake-multilib.eclass	29 Apr 2014 20:54:54 -0000	1.6
+++ cmake-multilib.eclass	9 May 2014 10:48:59 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-multilib.eclass,v 1.6 2014/04/29 20:54:54 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-multilib.eclass,v 1.7 2014/05/09 10:48:59 mgorny Exp $
 
 # @ECLASS: cmake-multilib.eclass
 # @MAINTAINER:
@@ -9,16 +9,15 @@
 # Author: Michał Górny <mgorny@gentoo.org>
 # @BLURB: cmake-utils wrapper for multilib builds
 # @DESCRIPTION:
-# The cmake-multilib.eclass is a cmake-utils.eclass(5) wrapper
-# introducing support for building for more than one ABI (multilib).
+# The cmake-multilib.eclass provides a glue between cmake-utils.eclass(5)
+# and multilib-minimal.eclass(5), aiming to provide a convenient way
+# to build packages using cmake for multiple ABIs.
 #
-# Inheriting this eclass sets IUSE and exports cmake-utils phase
-# function wrappers which build the package for each supported ABI
-# if the appropriate flag is enabled.
-#
-# Note that the multilib support requires out-of-source builds to be
-# enabled. Thus, it is impossible to use CMAKE_IN_SOURCE_BUILD with
-# it.
+# Inheriting this eclass sets IUSE and exports default multilib_src_*()
+# sub-phases that call cmake-utils phase functions for each ABI enabled.
+# The multilib_src_*() functions can be defined in ebuild just like
+# in multilib-minimal, yet they ought to call appropriate cmake-utils
+# phase rather than 'default'.
 
 # EAPI=5 is required for meaningful MULTILIB_USEDEP.
 case ${EAPI:-0} in
@@ -30,31 +29,46 @@
 	die "${ECLASS}: multilib support requires out-of-source builds."
 fi
 
-inherit cmake-utils multilib-build
+inherit cmake-utils multilib-minimal
 
 EXPORT_FUNCTIONS src_configure src_compile src_test src_install
 
 cmake-multilib_src_configure() {
-	multilib_parallel_foreach_abi cmake-utils_src_configure "${@}"
+	local _cmake_args=( "${@}" )
+
+	multilib-minimal_src_configure
+}
+
+multilib_src_configure() {
+	cmake-utils_src_configure "${_cmake_args[@]}"
 }
 
 cmake-multilib_src_compile() {
-	multilib_foreach_abi cmake-utils_src_compile "${@}"
+	local _cmake_args=( "${@}" )
+
+	multilib-minimal_src_compile
+}
+
+multilib_src_compile() {
+	cmake-utils_src_compile "${_cmake_args[@]}"
 }
 
 cmake-multilib_src_test() {
-	multilib_foreach_abi cmake-utils_src_test "${@}"
+	local _cmake_args=( "${@}" )
+
+	multilib-minimal_src_test
+}
+
+multilib_src_test() {
+	cmake-utils_src_test "${_cmake_args[@]}"
 }
 
 cmake-multilib_src_install() {
-	cmake-multilib_secure_install() {
-		cmake-utils_src_install "${@}"
+	local _cmake_args=( "${@}" )
 
-		multilib_prepare_wrappers
-		# Make sure all headers are the same for each ABI.
-		multilib_check_headers
-	}
+	multilib-minimal_src_install
+}
 
-	multilib_foreach_abi cmake-multilib_secure_install "${@}"
-	multilib_install_wrappers
+multilib_src_install() {
+	cmake-utils_src_install "${_cmake_args[@]}"
 }





^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-05-09 10:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-06 17:11 [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog cmake-multilib.eclass Ian Stakenvicius (axs)
  -- strict thread matches above, loose matches on Subject: below --
2014-05-09 10:48 Michal Gorny (mgorny)
2013-11-20 19:23 Michal Gorny (mgorny)
2013-04-13 19:15 Michael Weber (xmw)
2013-02-10 11:44 Michal Gorny (mgorny)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox