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