dev-zero    14/08/11 07:15:24

  Modified:             ChangeLog
  Added:                netcdf-4.3.2-r1.ebuild
  Log:
  Pull patch from upstream to use HDF5 >=1.8.13 with MPI (bug #512502).
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0x1A5D023975B0583D!)

Revision  Changes    Path
1.115                sci-libs/netcdf/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.115&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.115&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?r1=1.114&r2=1.115

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -r1.114 -r1.115
--- ChangeLog   16 Jun 2014 20:06:02 -0000      1.114
+++ ChangeLog   11 Aug 2014 07:15:23 -0000      1.115
@@ -1,6 +1,12 @@
 # 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.114 
2014/06/16 20:06:02 jauhien Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.115 
2014/08/11 07:15:23 dev-zero Exp $
+
+*netcdf-4.3.2-r1 (11 Aug 2014)
+
+  11 Aug 2014; Tiziano Müller <dev-z...@gentoo.org>
+  +files/netcdf-4.3.2-HDF5-1.8.13+-compat.patch, +netcdf-4.3.2-r1.ebuild:
+  Pull patch from upstream to use HDF5 >=1.8.13 with MPI (bug #512502).
 
   16 Jun 2014; Jauhien Piatlicki <jauh...@gentoo.org> netcdf-4.1.3.ebuild,
   netcdf-4.2.1.1.ebuild, netcdf-4.3.0.ebuild, netcdf-4.3.1.1.ebuild,



1.1                  sci-libs/netcdf/netcdf-4.3.2-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.3.2-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.3.2-r1.ebuild?rev=1.1&content-type=text/plain

Index: netcdf-4.3.2-r1.ebuild
===================================================================
# 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-r1.ebuild,v 1.1 
2014/08/11 07:15:23 dev-zero 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 examples hdf +hdf5 mpi static-libs szip test tools"

RDEPEND="
        dap? ( net-misc/curl:0= )
        hdf? ( sci-libs/hdf:0= sci-libs/hdf5:0= )
        hdf5? ( sci-libs/hdf5:0=[mpi=,szip=,zlib] )"
DEPEND="${RDEPEND}"
# doc generation is missing many doxygen files in tar ball
#       doc? ( app-doc/doxygen[dot] )"

REQUIRED_USE="test? ( tools ) szip? ( hdf5 ) mpi? ( hdf5 )"

PATCHES=( "${FILESDIR}/${P}-HDF5-1.8.13+-compat.patch" )

src_configure() {
        #       --docdir="${EPREFIX}"/usr/share/doc/${PF}
        #       $(use_enable doc doxygen)
        local myeconfargs=(
                --disable-examples
                --disable-dap-remote-tests
                $(use_enable dap)
                $(use_enable hdf hdf4)
                $(use_enable hdf5 netcdf-4)
                $(use_enable tools utilities)
        )
        if use mpi; then
                export CC=mpicc
                myeconfargs+=( --enable-parallel )
                use test && myeconfargs+=( --enable-parallel-tests )
        fi
        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
}




Reply via email to