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