Gentoo Archives: gentoo-commits

From: "Steve Arnold (nerdboy)" <nerdboy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/libnc-dap: ChangeLog libnc-dap-3.7.3.ebuild
Date: Mon, 20 Apr 2009 01:01:56
Message-Id: E1LvhtS-0008Lc-GT@stork.gentoo.org
1 nerdboy 09/04/20 01:01:54
2
3 Modified: ChangeLog libnc-dap-3.7.3.ebuild
4 Log:
5 Enabled additional 64bit configure option for large NetCDF files.
6 (Portage version: 2.2_rc30/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 sci-libs/libnc-dap/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libnc-dap/ChangeLog?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libnc-dap/ChangeLog?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libnc-dap/ChangeLog?r1=1.1&r2=1.2
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-libs/libnc-dap/ChangeLog,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- ChangeLog 19 Apr 2009 22:38:31 -0000 1.1
22 +++ ChangeLog 20 Apr 2009 01:01:54 -0000 1.2
23 @@ -1,6 +1,9 @@
24 # ChangeLog for sci-libs/libnc-dap
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libnc-dap/ChangeLog,v 1.1 2009/04/19 22:38:31 nerdboy Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libnc-dap/ChangeLog,v 1.2 2009/04/20 01:01:54 nerdboy Exp $
28 +
29 + 20 Apr 2009; Steve Arnold <nerdboy@g.o> libnc-dap-3.7.3.ebuild:
30 + Enabled additional 64bit configure option for large NetCDF files.
31
32 *libnc-dap-3.7.3 (19 Apr 2009)
33
34
35
36
37 1.2 sci-libs/libnc-dap/libnc-dap-3.7.3.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libnc-dap/libnc-dap-3.7.3.ebuild?rev=1.2&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libnc-dap/libnc-dap-3.7.3.ebuild?rev=1.2&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libnc-dap/libnc-dap-3.7.3.ebuild?r1=1.1&r2=1.2
42
43 Index: libnc-dap-3.7.3.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/sci-libs/libnc-dap/libnc-dap-3.7.3.ebuild,v
46 retrieving revision 1.1
47 retrieving revision 1.2
48 diff -u -r1.1 -r1.2
49 --- libnc-dap-3.7.3.ebuild 19 Apr 2009 22:38:31 -0000 1.1
50 +++ libnc-dap-3.7.3.ebuild 20 Apr 2009 01:01:54 -0000 1.2
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2009 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libnc-dap/libnc-dap-3.7.3.ebuild,v 1.1 2009/04/19 22:38:31 nerdboy Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libnc-dap/libnc-dap-3.7.3.ebuild,v 1.2 2009/04/20 01:01:54 nerdboy Exp $
56
57 inherit eutils flag-o-matic fortran
58
59 @@ -52,10 +52,11 @@
60
61 src_compile() {
62 local test_conf="${DAP_TEST_OPTS}"
63 - local myconf="--disable-dependency-tracking --enable-largefile"
64 -
65 + local myconf="--disable-dependency-tracking --enable-largefile \
66 + --enable-64bit"
67 # debug can be set to 2 for extra verbosity
68 use debug && myconf="${myconf} --enable-debug=1"
69 +
70 econf ${myconf} ${test_conf} || die "econf failed"
71
72 emake -j1 || die "emake failed"
73 @@ -64,7 +65,7 @@
74 src_test() {
75 if use full-test; then
76 cd "${S}"/nc_test
77 - # These tests should all pass, but the non-local pass can take
78 + # These tests should all pass, but the non-local tests can take
79 # several hours to complete.
80 make check || die "Regression tests failed!"
81 cd "${S}"