* [gentoo-commits] gentoo-x86 commit in sci-misc/nco: metadata.xml ChangeLog nco-3.9.9.ebuild
@ 2009-12-12 18:25 Sebastien Fabbro (bicatali)
0 siblings, 0 replies; only message in thread
From: Sebastien Fabbro (bicatali) @ 2009-12-12 18:25 UTC (permalink / raw
To: gentoo-commits
bicatali 09/12/12 18:25:32
Modified: metadata.xml ChangeLog
Added: nco-3.9.9.ebuild
Log:
Version bump
(Portage version: 2.2_rc58/cvs/Linux x86_64)
Revision Changes Path
1.4 sci-misc/nco/metadata.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/nco/metadata.xml?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/nco/metadata.xml?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/nco/metadata.xml?r1=1.3&r2=1.4
Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-misc/nco/metadata.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- metadata.xml 6 Aug 2008 18:28:07 -0000 1.3
+++ metadata.xml 12 Dec 2009 18:25:32 -0000 1.4
@@ -3,13 +3,13 @@
<pkgmetadata>
<herd>sci</herd>
<longdescription lang="en">
-Command-line operators to analyze netCDF files
-NetCDF Operator is a suite of programs known as operators. The
-operators are stand-alone, command-line programs executable in a POSIX
-shell. Operators take one or more netCDF files as input, perform an
-operation (e.g., averaging or hyperslabbing), and produce a netCDF
-output file. NCO was originally designed to manipulate and analyze
-climate data, though it works on any netCDF format datasets.
+ Command-line operators to analyze netCDF files
+ NetCDF Operator is a suite of programs known as operators. The
+ operators are stand-alone, command-line programs executable in a POSIX
+ shell. Operators take one or more netCDF files as input, perform an
+ operation (e.g., averaging or hyperslabbing), and produce a netCDF
+ output file. NCO was originally designed to manipulate and analyze
+ climate data, though it works on any netCDF format datasets.
</longdescription>
<use>
<flag name='ncap2'>Build next generation netcdf arithmetic processor
1.15 sci-misc/nco/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/nco/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/nco/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/nco/ChangeLog?r1=1.14&r2=1.15
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-misc/nco/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog 24 Mar 2009 19:16:47 -0000 1.14
+++ ChangeLog 12 Dec 2009 18:25:32 -0000 1.15
@@ -1,6 +1,12 @@
# ChangeLog for sci-misc/nco
-# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-misc/nco/ChangeLog,v 1.14 2009/03/24 19:16:47 betelgeuse Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-misc/nco/ChangeLog,v 1.15 2009/12/12 18:25:32 bicatali Exp $
+
+*nco-3.9.9 (12 Dec 2009)
+
+ 12 Dec 2009; Sébastien Fabbro <bicatali@gentoo.org> +nco-3.9.9.ebuild,
+ metadata.xml:
+ Version bump
24 Mar 2009; Petteri Räty <betelgeuse@gentoo.org> nco-3.9.4.ebuild:
Slot dep for antlr.
1.1 sci-misc/nco/nco-3.9.9.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/nco/nco-3.9.9.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/nco/nco-3.9.9.ebuild?rev=1.1&content-type=text/plain
Index: nco-3.9.9.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-misc/nco/nco-3.9.9.ebuild,v 1.1 2009/12/12 18:25:32 bicatali Exp $
EAPI=2
inherit eutils flag-o-matic
DESCRIPTION="Command line utilities for operating on netCDF files"
SRC_URI="http://dust.ess.uci.edu/nco/src/${P}.tar.gz"
HOMEPAGE="http://nco.sourceforge.net/"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~ppc"
IUSE="doc mpi ncap2 udunits"
RDEPEND="sci-libs/netcdf
mpi? ( virtual/mpi )
dap? ( sci-libs/netcdf )
udunits? ( >=sci-libs/udunits-2 )"
DEPEND="${RDEPEND}
ncap2? ( !mpi? ( dev-java/antlr:0 ) )
doc? ( virtual/latex-base )"
pkg_setup() {
if use mpi && use ncap2; then
elog
elog "mpi and ncap2 are still incompatible flags"
elog "nco configure will automatically disables ncap2"
elog
fi
}
src_configure() {
local myconf
if has_version ">=sci-libs/netcdf-4" && built_with_use sci-libs/netcdf hdf5; then
append-cppflags -DHAVE_NETCDF4_H
myconf="--enable-netcdf4"
else
myconf="--disable-netcdf4"
fi
econf \
${myconf} \
--disable-udunits \
$(use_enable ncap2) \
$(use_enable udunits udunits2) \
$(use_enable mpi)
}
src_compile() {
emake || die "emake failed"
cd doc
emake clean info
if use doc; then
VARTEXFONTS="${T}/fonts" emake html pdf || die "emake doc failed"
fi
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
cd doc
dodoc ANNOUNCE ChangeLog MANIFEST NEWS README TAG TODO VERSION *.txt \
|| die "dodoc failed"
doinfo *.info* || die "doinfo failed"
if use doc; then
dohtml nco.html/* || die "dohtml failed"
insinto /usr/share/doc/${PF}
doins nco.pdf || die "pdf install failed"
fi
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-12-12 18:25 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-12 18:25 [gentoo-commits] gentoo-x86 commit in sci-misc/nco: metadata.xml ChangeLog nco-3.9.9.ebuild Sebastien Fabbro (bicatali)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox