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: Mon, 28 Apr 2014 22:46:14
Message-Id: 20140428224611.C79662004B@flycatcher.gentoo.org
1 bicatali 14/04/28 22:46:11
2
3 Modified: ChangeLog
4 Added: netcdf-4.3.2.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.8-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
9
10 Revision Changes Path
11 1.112 sci-libs/netcdf/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.112&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.112&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?r1=1.111&r2=1.112
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v
20 retrieving revision 1.111
21 retrieving revision 1.112
22 diff -u -r1.111 -r1.112
23 --- ChangeLog 27 Feb 2014 17:56:09 -0000 1.111
24 +++ ChangeLog 28 Apr 2014 22:46:11 -0000 1.112
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-libs/netcdf
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.111 2014/02/27 17:56:09 bicatali Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.112 2014/04/28 22:46:11 bicatali Exp $
30 +
31 +*netcdf-4.3.2 (28 Apr 2014)
32 +
33 + 28 Apr 2014; Sébastien Fabbro <bicatali@g.o> +netcdf-4.3.2.ebuild:
34 + Version bump
35
36 *netcdf-4.3.1.1 (27 Feb 2014)
37
38
39
40
41 1.1 sci-libs/netcdf/netcdf-4.3.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.3.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.3.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: netcdf-4.3.2.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.3.2.ebuild,v 1.1 2014/04/28 22:46:11 bicatali Exp $
51
52 EAPI=5
53
54 inherit autotools-utils
55
56 DESCRIPTION="Scientific library and interface for array oriented data access"
57 HOMEPAGE="http://www.unidata.ucar.edu/software/netcdf/"
58 SRC_URI="ftp://ftp.unidata.ucar.edu/pub/netcdf/${P}.tar.gz"
59
60 LICENSE="UCAR-Unidata"
61 SLOT="0/7"
62 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
63 IUSE="+dap doc examples hdf +hdf5 mpi static-libs szip test tools"
64
65 RDEPEND="
66 dap? ( net-misc/curl )
67 hdf? ( sci-libs/hdf >=sci-libs/hdf5-1.8.8 )
68 hdf5? ( >=sci-libs/hdf5-1.8.9[mpi=,szip=,zlib] )"
69
70 DEPEND="${RDEPEND}
71 doc? ( app-doc/doxygen )"
72
73 REQUIRED_USE="test? ( tools )"
74
75 src_configure() {
76 local myeconfargs=(
77 --docdir="${EPREFIX}"/usr/share/doc/${PF}
78 --disable-examples
79 $(use_enable dap)
80 $(use_enable doc doxygen)
81 $(use_enable hdf hdf4)
82 $(use_enable hdf5 netcdf-4)
83 $(use_enable tools utilities)
84 )
85 autotools-utils_src_configure
86 }
87
88 src_test() {
89 autotools-utils_src_test -j1
90 }
91
92 src_install() {
93 autotools-utils_src_install
94 if use examples; then
95 insinto /usr/share/doc/${PF}
96 doins -r examples
97 fi
98 }