diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2014-04-28 22:46:11 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2014-04-28 22:46:11 +0000 |
commit | a9693574305de6465ed67548e1b027c95be2e42c (patch) | |
tree | d57d31b5eda14b3fde79e6605bee8f34079e3462 /sci-libs/netcdf | |
parent | make this work on both stable and unstable arch (diff) | |
download | gentoo-2-a9693574305de6465ed67548e1b027c95be2e42c.tar.gz gentoo-2-a9693574305de6465ed67548e1b027c95be2e42c.tar.bz2 gentoo-2-a9693574305de6465ed67548e1b027c95be2e42c.zip |
Version bump
(Portage version: 2.2.8-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
Diffstat (limited to 'sci-libs/netcdf')
-rw-r--r-- | sci-libs/netcdf/ChangeLog | 7 | ||||
-rw-r--r-- | sci-libs/netcdf/netcdf-4.3.2.ebuild | 51 |
2 files changed, 57 insertions, 1 deletions
diff --git a/sci-libs/netcdf/ChangeLog b/sci-libs/netcdf/ChangeLog index e3402f2cf7e6..28938aab7d9c 100644 --- a/sci-libs/netcdf/ChangeLog +++ b/sci-libs/netcdf/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-libs/netcdf # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.111 2014/02/27 17:56:09 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.112 2014/04/28 22:46:11 bicatali Exp $ + +*netcdf-4.3.2 (28 Apr 2014) + + 28 Apr 2014; Sébastien Fabbro <bicatali@gentoo.org> +netcdf-4.3.2.ebuild: + Version bump *netcdf-4.3.1.1 (27 Feb 2014) diff --git a/sci-libs/netcdf/netcdf-4.3.2.ebuild b/sci-libs/netcdf/netcdf-4.3.2.ebuild new file mode 100644 index 000000000000..98320cdfe455 --- /dev/null +++ b/sci-libs/netcdf/netcdf-4.3.2.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.3.2.ebuild,v 1.1 2014/04/28 22:46:11 bicatali Exp $ + +EAPI=5 + +inherit autotools-utils + +DESCRIPTION="Scientific library and interface for array oriented data access" +HOMEPAGE="http://www.unidata.ucar.edu/software/netcdf/" +SRC_URI="ftp://ftp.unidata.ucar.edu/pub/netcdf/${P}.tar.gz" + +LICENSE="UCAR-Unidata" +SLOT="0/7" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="+dap doc examples hdf +hdf5 mpi static-libs szip test tools" + +RDEPEND=" + dap? ( net-misc/curl ) + hdf? ( sci-libs/hdf >=sci-libs/hdf5-1.8.8 ) + hdf5? ( >=sci-libs/hdf5-1.8.9[mpi=,szip=,zlib] )" + +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen )" + +REQUIRED_USE="test? ( tools )" + +src_configure() { + local myeconfargs=( + --docdir="${EPREFIX}"/usr/share/doc/${PF} + --disable-examples + $(use_enable dap) + $(use_enable doc doxygen) + $(use_enable hdf hdf4) + $(use_enable hdf5 netcdf-4) + $(use_enable tools utilities) + ) + autotools-utils_src_configure +} + +src_test() { + autotools-utils_src_test -j1 +} + +src_install() { + autotools-utils_src_install + if use examples; then + insinto /usr/share/doc/${PF} + doins -r examples + fi +} |