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-misc/nco: nco-4.2.3.ebuild ChangeLog
Date: Tue, 27 Nov 2012 22:51:33
Message-Id: 20121127225110.E73A520C65@flycatcher.gentoo.org
1 bicatali 12/11/27 22:51:10
2
3 Modified: ChangeLog
4 Added: nco-4.2.3.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.01.21313-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
9
10 Revision Changes Path
11 1.20 sci-misc/nco/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-misc/nco/ChangeLog?rev=1.20&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-misc/nco/ChangeLog?rev=1.20&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-misc/nco/ChangeLog?r1=1.19&r2=1.20
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-misc/nco/ChangeLog,v
20 retrieving revision 1.19
21 retrieving revision 1.20
22 diff -u -r1.19 -r1.20
23 --- ChangeLog 30 Dec 2011 04:10:40 -0000 1.19
24 +++ ChangeLog 27 Nov 2012 22:51:10 -0000 1.20
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-misc/nco
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/nco/ChangeLog,v 1.19 2011/12/30 04:10:40 bicatali Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sci-misc/nco/ChangeLog,v 1.20 2012/11/27 22:51:10 bicatali Exp $
31 +
32 +*nco-4.2.3 (27 Nov 2012)
33 +
34 + 27 Nov 2012; Sébastien Fabbro <bicatali@g.o> +nco-4.2.3.ebuild:
35 + Version bump
36
37 *nco-4.0.8 (30 Dec 2011)
38
39
40
41
42 1.1 sci-misc/nco/nco-4.2.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-misc/nco/nco-4.2.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-misc/nco/nco-4.2.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: nco-4.2.3.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sci-misc/nco/nco-4.2.3.ebuild,v 1.1 2012/11/27 22:51:10 bicatali Exp $
52
53 EAPI=4
54 inherit eutils flag-o-matic
55
56 DESCRIPTION="Command line utilities for operating on netCDF files"
57 HOMEPAGE="http://nco.sourceforge.net/"
58 SRC_URI="http://nco.sf.net/src/${P}.tar.gz"
59
60 LICENSE="GPL-3"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
63
64 IUSE="dap doc gsl ncap2 static-libs test udunits"
65
66 RDEPEND="
67 >=sci-libs/netcdf-4[dap=]
68 gsl? ( sci-libs/gsl )
69 udunits? ( >=sci-libs/udunits-2 )"
70
71 DEPEND="${RDEPEND}
72 ncap2? ( dev-java/antlr:0 )
73 test? ( >=sci-libs/netcdf-4[tools] )"
74
75 src_configure() {
76 local myconf
77 if has_version '>=sci-libs/netcdf-4[hdf5]'; then
78 myconf="--enable-netcdf4"
79 append-cppflags -DHAVE_NETCDF4_H
80 else
81 myconf="--disable-netcdf4"
82 fi
83 econf \
84 --disable-udunits \
85 $(use_enable dap dap-netcdf) \
86 $(use_enable gsl) \
87 $(use_enable ncap2) \
88 $(use_enable static-libs static) \
89 $(use_enable udunits udunits2) \
90 ${myconf}
91 }
92
93 src_install() {
94 default
95 cd doc
96 dodoc ANNOUNCE ChangeLog MANIFEST NEWS README TAG TODO VERSION *.txt
97 doinfo *.info*
98 use doc && dohtml nco.html && dodoc nco.pdf
99 }