Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/cholmod: cholmod-1.6.0-r1.ebuild ChangeLog
Date: Fri, 10 Oct 2008 17:53:51
Message-Id: E1KoMBR-0007S5-DD@stork.gentoo.org
1 bicatali 08/10/10 17:53:49
2
3 Modified: cholmod-1.6.0-r1.ebuild ChangeLog
4 Log:
5 Fixed a syntax error in the minimal flag, and added blas configuration in the supernodal mode
6 (Portage version: 2.2_rc11/cvs/Linux 2.6.25-gentoo-r7 x86_64)
7
8 Revision Changes Path
9 1.7 sci-libs/cholmod/cholmod-1.6.0-r1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cholmod/cholmod-1.6.0-r1.ebuild?rev=1.7&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cholmod/cholmod-1.6.0-r1.ebuild?rev=1.7&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cholmod/cholmod-1.6.0-r1.ebuild?r1=1.6&r2=1.7
14
15 Index: cholmod-1.6.0-r1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-1.6.0-r1.ebuild,v
18 retrieving revision 1.6
19 retrieving revision 1.7
20 diff -u -r1.6 -r1.7
21 --- cholmod-1.6.0-r1.ebuild 22 May 2008 01:26:28 -0000 1.6
22 +++ cholmod-1.6.0-r1.ebuild 10 Oct 2008 17:53:49 -0000 1.7
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2008 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-1.6.0-r1.ebuild,v 1.6 2008/05/22 01:26:28 jsbronder Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-1.6.0-r1.ebuild,v 1.7 2008/10/10 17:53:49 bicatali Exp $
28
29 inherit autotools eutils
30
31 @@ -53,18 +53,22 @@
32 s:\(#define\) \(CHOLMOD_CONFIG_H\)\n:\1 \2\n\1 NPARTITION 1\n:}' \
33 Include/cholmod_config.h
34 fi
35 -
36 eautoreconf
37 }
38
39 src_compile() {
40 local lapack_libs=no
41 - use supernodal && lapack_libs=$(pkg-config --libs lapack)
42 + local blas_libs=no
43 + if use supernodal; then
44 + blas_libs=$(pkg-config --libs blas)
45 + lapack_libs=$(pkg-config --libs lapack)
46 + fi
47 econf \
48 + --with-blas="${blas_libs}" \
49 --with-lapack="${lapack_libs}" \
50 $(use_enable supernodal mod-supernodal) \
51 $(use_enable !minimal mod-modify) \
52 - $(use_enable !minimal mod-matrix-ops) \
53 + $(use_enable !minimal mod-matrixops) \
54 $(use_enable metis mod-partition) \
55 || die "econf failed"
56 emake || die "emake failed"
57
58
59
60 1.11 sci-libs/cholmod/ChangeLog
61
62 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cholmod/ChangeLog?rev=1.11&view=markup
63 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cholmod/ChangeLog?rev=1.11&content-type=text/plain
64 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cholmod/ChangeLog?r1=1.10&r2=1.11
65
66 Index: ChangeLog
67 ===================================================================
68 RCS file: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v
69 retrieving revision 1.10
70 retrieving revision 1.11
71 diff -u -r1.10 -r1.11
72 --- ChangeLog 7 Aug 2008 06:20:52 -0000 1.10
73 +++ ChangeLog 10 Oct 2008 17:53:49 -0000 1.11
74 @@ -1,6 +1,11 @@
75 # ChangeLog for sci-libs/cholmod
76 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
77 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v 1.10 2008/08/07 06:20:52 ulm Exp $
78 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v 1.11 2008/10/10 17:53:49 bicatali Exp $
79 +
80 + 10 Oct 2008; Sébastien Fabbro <bicatali@g.o>
81 + cholmod-1.6.0-r1.ebuild:
82 + Fixed a syntax error in the minimal flag, and added blas configuration in
83 + the supernodal mode
84
85 07 Aug 2008; Ulrich Mueller <ulm@g.o> metadata.xml:
86 Add USE flag description to metadata wrt GLEP 56.