diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2014-02-27 17:56:09 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2014-02-27 17:56:09 +0000 |
commit | 5b6ed178ec9e50c6cf2f6d50e45b460ca0a2b8a2 (patch) | |
tree | 0456c12698559759f7d897661fa0e4b6c1c2cd2d /sci-libs/netcdf | |
parent | Fix missing $(AWN_LIBS) from src/Makefile.am for avant-window-navigator. Use ... (diff) | |
download | gentoo-2-5b6ed178ec9e50c6cf2f6d50e45b460ca0a2b8a2.tar.gz gentoo-2-5b6ed178ec9e50c6cf2f6d50e45b460ca0a2b8a2.tar.bz2 gentoo-2-5b6ed178ec9e50c6cf2f6d50e45b460ca0a2b8a2.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 | 9 | ||||
-rw-r--r-- | sci-libs/netcdf/netcdf-4.3.1.1.ebuild | 51 |
2 files changed, 58 insertions, 2 deletions
diff --git a/sci-libs/netcdf/ChangeLog b/sci-libs/netcdf/ChangeLog index 43e929ad9098..e3402f2cf7e6 100644 --- a/sci-libs/netcdf/ChangeLog +++ b/sci-libs/netcdf/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-libs/netcdf -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.110 2013/08/21 17:51:56 ottxor Exp $ +# 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 $ + +*netcdf-4.3.1.1 (27 Feb 2014) + + 27 Feb 2014; Sébastien Fabbro <bicatali@gentoo.org> +netcdf-4.3.1.1.ebuild: + Version bump 21 Aug 2013; Christoph Junghans <ottxor@gentoo.org> netcdf-4.1.3.ebuild: fixed linking issue (bug #433647) diff --git a/sci-libs/netcdf/netcdf-4.3.1.1.ebuild b/sci-libs/netcdf/netcdf-4.3.1.1.ebuild new file mode 100644 index 000000000000..2c22acc1c13a --- /dev/null +++ b/sci-libs/netcdf/netcdf-4.3.1.1.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.1.1.ebuild,v 1.1 2014/02/27 17:56:09 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 +} |