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