Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-misc/nco: nco-4.5.1.ebuild ChangeLog
Date: Fri, 31 Jul 2015 07:56:38
Message-Id: 20150731075636.5615D113@oystercatcher.gentoo.org
1 jlec 15/07/31 07:56:36
2
3 Modified: ChangeLog
4 Added: nco-4.5.1.ebuild
5 Log:
6 Version Bump
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)
9
10 Revision Changes Path
11 1.26 sci-misc/nco/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-misc/nco/ChangeLog?rev=1.26&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-misc/nco/ChangeLog?rev=1.26&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-misc/nco/ChangeLog?r1=1.25&r2=1.26
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-misc/nco/ChangeLog,v
20 retrieving revision 1.25
21 retrieving revision 1.26
22 diff -u -r1.25 -r1.26
23 --- ChangeLog 31 Jul 2015 07:45:44 -0000 1.25
24 +++ ChangeLog 31 Jul 2015 07:56:36 -0000 1.26
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-misc/nco
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/nco/ChangeLog,v 1.25 2015/07/31 07:45:44 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-misc/nco/ChangeLog,v 1.26 2015/07/31 07:56:36 jlec Exp $
30 +
31 +*nco-4.5.1 (31 Jul 2015)
32 +
33 + 31 Jul 2015; Justin Lecher <jlec@g.o> +nco-4.5.1.ebuild:
34 + Version Bump
35
36 31 Jul 2015; Justin Lecher <jlec@g.o> -nco-4.3.1.ebuild, metadata.xml,
37 nco-4.4.2.ebuild:
38
39
40
41 1.1 sci-misc/nco/nco-4.5.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-misc/nco/nco-4.5.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-misc/nco/nco-4.5.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: nco-4.5.1.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sci-misc/nco/nco-4.5.1.ebuild,v 1.1 2015/07/31 07:56:36 jlec Exp $
51
52 EAPI=5
53
54 AUTOTOOLS_IN_SOURCE_BUILD=1
55 inherit autotools-utils eutils flag-o-matic
56
57 DESCRIPTION="Command line utilities for operating on netCDF files"
58 HOMEPAGE="http://nco.sourceforge.net/"
59 SRC_URI="http://nco.sf.net/src/${P}.tar.gz"
60
61 LICENSE="GPL-3"
62 SLOT="0/${PV}"
63 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
64 IUSE="dap doc gsl ncap2 openmp static-libs test udunits"
65
66 RDEPEND="
67 >=sci-libs/netcdf-4:=[dap=,tools]
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 myeconfargs=(
77 --disable-udunits
78 $(use_enable dap dap-netcdf)
79 $(use_enable gsl)
80 $(use_enable ncap2)
81 $(use_enable openmp)
82 $(use_enable udunits udunits2)
83 )
84 if has_version '>=sci-libs/netcdf-4[hdf5]'; then
85 myeconfargs+=( --enable-netcdf4 )
86 append-cppflags -DHAVE_NETCDF4_H
87 else
88 myeconfargs+=( --disable-netcdf4 )
89 fi
90 autotools-utils_src_configure
91 }
92
93 src_install() {
94 use doc && DOCS=( doc/nco.pdf ) && HTML_DOCS=( doc/nco.html )
95 autotools-utils_src_install
96 doinfo doc/*.info*
97 }