Gentoo Archives: gentoo-commits

From: "Wulf Krueger (philantrop)" <philantrop@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: cmake-utils.eclass
Date: Sat, 29 Mar 2008 21:33:21
Message-Id: E1Jfift-0008Vt-T0@stork.gentoo.org
1 philantrop 08/03/29 21:33:17
2
3 Modified: cmake-utils.eclass
4 Log:
5 Added a patch kindly provided by Calchan to enable the use of EXTRA_ECONF with cmake-utils.eclass.
6
7 Revision Changes Path
8 1.7 eclass/cmake-utils.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/cmake-utils.eclass?rev=1.7&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/cmake-utils.eclass?rev=1.7&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/cmake-utils.eclass?r1=1.6&r2=1.7
13
14 Index: cmake-utils.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v
17 retrieving revision 1.6
18 retrieving revision 1.7
19 diff -u -r1.6 -r1.7
20 --- cmake-utils.eclass 20 Feb 2008 14:33:20 -0000 1.6
21 +++ cmake-utils.eclass 29 Mar 2008 21:33:17 -0000 1.7
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2007 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.6 2008/02/20 14:33:20 zlin Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.7 2008/03/29 21:33:17 philantrop Exp $
27
28 # @ECLASS: cmake-utils.eclass
29 # @MAINTAINER:
30 @@ -92,7 +92,7 @@
31 cmake-utils_src_configurein() {
32 debug-print-function $FUNCNAME $*
33
34 - local cmakeargs="$(_common_configure_code) ${mycmakeargs}"
35 + local cmakeargs="$(_common_configure_code) ${mycmakeargs} ${EXTRA_ECONF}"
36
37 debug-print "$LINENO $ECLASS $FUNCNAME: mycmakeargs is $cmakeargs"
38 cmake ${cmakeargs} . || die "Cmake failed"
39 @@ -105,7 +105,7 @@
40 cmake-utils_src_configureout() {
41 debug-print-function $FUNCNAME $*
42
43 - local cmakeargs="$(_common_configure_code) ${mycmakeargs}"
44 + local cmakeargs="$(_common_configure_code) ${mycmakeargs} ${EXTRA_ECONF}"
45 mkdir -p "${WORKDIR}"/${PN}_build
46 pushd "${WORKDIR}"/${PN}_build > /dev/null
47
48
49
50
51 --
52 gentoo-commits@l.g.o mailing list