diff options
author | Reinis Danne <rei4dan@gmail.com> | 2016-01-19 17:11:48 +0200 |
---|---|---|
committer | Reinis Danne <rei4dan@gmail.com> | 2016-01-19 17:11:48 +0200 |
commit | 6d60e9fcdbc67a5ad011c0c6f759cb0ab1f5ba61 (patch) | |
tree | f111ca811700b56b5da5bf10474076432646979c /sci-libs | |
parent | sci-libs/netcdf: Version bump to 4.4.0 (diff) | |
download | gentoo-6d60e9fcdbc67a5ad011c0c6f759cb0ab1f5ba61.tar.gz gentoo-6d60e9fcdbc67a5ad011c0c6f759cb0ab1f5ba61.tar.bz2 gentoo-6d60e9fcdbc67a5ad011c0c6f759cb0ab1f5ba61.zip |
sci-libs/netcdf-fortran: Version bump to 4.4.2
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/netcdf-fortran/Manifest | 1 | ||||
-rw-r--r-- | sci-libs/netcdf-fortran/netcdf-fortran-4.4.2.ebuild | 39 |
2 files changed, 40 insertions, 0 deletions
diff --git a/sci-libs/netcdf-fortran/Manifest b/sci-libs/netcdf-fortran/Manifest index bec5ebb29ad2..c9285d5daea5 100644 --- a/sci-libs/netcdf-fortran/Manifest +++ b/sci-libs/netcdf-fortran/Manifest @@ -1 +1,2 @@ DIST netcdf-fortran-4.2.tar.gz 2479928 SHA256 069e1a0fb50972f28309210987a51563369a6ddb4ac768ef76e599354d384ae9 SHA512 af5d489df7b3ff5c3208115af4abdbf12d74d6bc0b9e3c729cfd24b55efafc3766de21c0f9957e037c25726637e9129a1f7009676e81d7e59650fec56d6e776e WHIRLPOOL 7fd0b2e0025b298a221521987132d389e6fc1bb285318d732b238ebcceedd721741f715848d63266c4a20189f4b0d211585af33e2efed2cac89dd893b07a2418 +DIST netcdf-fortran-4.4.2.tar.gz 1246344 SHA256 f2264174074af0cf332b8dd09e4e184517a2d54f0ca5500e17691152c1ed73aa SHA512 c3f025c0f5a08a0141fa09f570c647fc63992f9fd707969b37c7b0590c3578172200e45ecee497ed054129366fd1c73e3cd069aba879015b13a143e77a181c0f WHIRLPOOL 119345cf7563c15e9d088fc734c3dcbe27c2f76a52ea4479fb771d652815e1cda38914368478f055d2b5d705e7b1779e0954b2f26bb54dab4a995b8c6ebace8a diff --git a/sci-libs/netcdf-fortran/netcdf-fortran-4.4.2.ebuild b/sci-libs/netcdf-fortran/netcdf-fortran-4.4.2.ebuild new file mode 100644 index 000000000000..8b4f231a38b4 --- /dev/null +++ b/sci-libs/netcdf-fortran/netcdf-fortran-4.4.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +FORTRAN_STANDARD="77 90" +AUTOTOOLS_IN_SOURCE_BUILD=1 + +inherit autotools-utils fortran-2 + +DESCRIPTION="Scientific library and interface for array oriented data access" +HOMEPAGE="http://www.unidata.ucar.edu/software/netcdf/" +SRC_URI="https://github.com/Unidata/netcdf-fortran/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="UCAR-Unidata" +SLOT="0/6" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc examples static-libs" + +RDEPEND="sci-libs/netcdf" +DEPEND="${RDEPEND} + dev-lang/cfortran +" + +src_prepare() { + # use system cfortran + rm libsrc/cfortran.h || die + + autotools-utils_src_prepare +} + +src_install() { + autotools-utils_src_install + if use examples; then + insinto /usr/share/doc/${PF} + doins -r examples + fi +} |