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/netcdf: netcdf-4.3.2.ebuild ChangeLog
Date: Tue, 29 Apr 2014 23:29:18
Message-Id: 20140429232914.08B632004B@flycatcher.gentoo.org
1 bicatali 14/04/29 23:29:13
2
3 Modified: netcdf-4.3.2.ebuild ChangeLog
4 Log:
5 FDisable doc generation because of missing doxygen files, bug #509052
6
7 (Portage version: 2.2.8-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
8
9 Revision Changes Path
10 1.2 sci-libs/netcdf/netcdf-4.3.2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.3.2.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.3.2.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.3.2.ebuild?r1=1.1&r2=1.2
15
16 Index: netcdf-4.3.2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.3.2.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- netcdf-4.3.2.ebuild 28 Apr 2014 22:46:11 -0000 1.1
23 +++ netcdf-4.3.2.ebuild 29 Apr 2014 23:29:13 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.3.2.ebuild,v 1.1 2014/04/28 22:46:11 bicatali Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.3.2.ebuild,v 1.2 2014/04/29 23:29:13 bicatali Exp $
29
30 EAPI=5
31
32 @@ -13,28 +13,34 @@
33 LICENSE="UCAR-Unidata"
34 SLOT="0/7"
35 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
36 -IUSE="+dap doc examples hdf +hdf5 mpi static-libs szip test tools"
37 +IUSE="+dap examples hdf +hdf5 mpi static-libs szip test tools"
38
39 RDEPEND="
40 - dap? ( net-misc/curl )
41 - hdf? ( sci-libs/hdf >=sci-libs/hdf5-1.8.8 )
42 - hdf5? ( >=sci-libs/hdf5-1.8.9[mpi=,szip=,zlib] )"
43 + dap? ( net-misc/curl:0= )
44 + hdf? ( sci-libs/hdf:0= sci-libs/hdf5:0= )
45 + hdf5? ( sci-libs/hdf5:0=[mpi=,szip=,zlib] )"
46 +DEPEND="${RDEPEND}"
47 +# doc generation is missing many doxygen files in tar ball
48 +# doc? ( app-doc/doxygen[dot] )"
49
50 -DEPEND="${RDEPEND}
51 - doc? ( app-doc/doxygen )"
52 -
53 -REQUIRED_USE="test? ( tools )"
54 +REQUIRED_USE="test? ( tools ) szip? ( hdf5 ) mpi? ( hdf5 )"
55
56 src_configure() {
57 + # --docdir="${EPREFIX}"/usr/share/doc/${PF}
58 + # $(use_enable doc doxygen)
59 local myeconfargs=(
60 - --docdir="${EPREFIX}"/usr/share/doc/${PF}
61 --disable-examples
62 + --disable-dap-remote-tests
63 $(use_enable dap)
64 - $(use_enable doc doxygen)
65 $(use_enable hdf hdf4)
66 $(use_enable hdf5 netcdf-4)
67 $(use_enable tools utilities)
68 )
69 + if use mpi; then
70 + export CC=mpicc
71 + myeconfargs+=( --enable-parallel )
72 + use test && myeconfargs+=( --enable-parallel-tests )
73 + fi
74 autotools-utils_src_configure
75 }
76
77
78
79
80 1.113 sci-libs/netcdf/ChangeLog
81
82 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.113&view=markup
83 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.113&content-type=text/plain
84 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?r1=1.112&r2=1.113
85
86 Index: ChangeLog
87 ===================================================================
88 RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v
89 retrieving revision 1.112
90 retrieving revision 1.113
91 diff -u -r1.112 -r1.113
92 --- ChangeLog 28 Apr 2014 22:46:11 -0000 1.112
93 +++ ChangeLog 29 Apr 2014 23:29:13 -0000 1.113
94 @@ -1,6 +1,9 @@
95 # ChangeLog for sci-libs/netcdf
96 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
97 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.112 2014/04/28 22:46:11 bicatali Exp $
98 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.113 2014/04/29 23:29:13 bicatali Exp $
99 +
100 + 29 Apr 2014; Sébastien Fabbro <bicatali@g.o> netcdf-4.3.2.ebuild:
101 + FDisable doc generation because of missing doxygen files, bug #509052
102
103 *netcdf-4.3.2 (28 Apr 2014)