Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/netcdf/
Date: Wed, 28 Dec 2016 11:25:56
Message-Id: 1482924342.16773143f45f52d970697fc39e27f690c267c9cb.pacho@gentoo
1 commit: 16773143f45f52d970697fc39e27f690c267c9cb
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 28 11:23:13 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 28 11:25:42 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16773143
7
8 sci-libs/netcdf: Drop old
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 sci-libs/netcdf/netcdf-4.4.0.ebuild | 59 -------------------------------------
13 1 file changed, 59 deletions(-)
14
15 diff --git a/sci-libs/netcdf/netcdf-4.4.0.ebuild b/sci-libs/netcdf/netcdf-4.4.0.ebuild
16 deleted file mode 100644
17 index 253c2c9..00000000
18 --- a/sci-libs/netcdf/netcdf-4.4.0.ebuild
19 +++ /dev/null
20 @@ -1,59 +0,0 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -
27 -inherit autotools-utils
28 -
29 -DESCRIPTION="Scientific library and interface for array oriented data access"
30 -HOMEPAGE="http://www.unidata.ucar.edu/software/netcdf/"
31 -SRC_URI="https://github.com/Unidata/netcdf-c/archive/v${PV}.tar.gz -> ${P}.tar.gz"
32 -
33 -LICENSE="UCAR-Unidata"
34 -SLOT="0/11"
35 -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
36 -IUSE="+dap examples hdf +hdf5 mpi static-libs szip test tools"
37 -
38 -RDEPEND="
39 - dap? ( net-misc/curl:0= )
40 - hdf? ( sci-libs/hdf:0= sci-libs/hdf5:0= )
41 - hdf5? ( sci-libs/hdf5:0=[mpi=,szip=,zlib] )"
42 -DEPEND="${RDEPEND}"
43 -# doc generation is missing many doxygen files in tar ball
44 -# doc? ( app-doc/doxygen[dot] )"
45 -
46 -REQUIRED_USE="test? ( tools ) szip? ( hdf5 ) mpi? ( hdf5 )"
47 -
48 -S="${WORKDIR}/${PN}-c-${PV}"
49 -
50 -src_configure() {
51 - # --docdir="${EPREFIX}"/usr/share/doc/${PF}
52 - # $(use_enable doc doxygen)
53 - local myeconfargs=(
54 - --disable-examples
55 - --disable-dap-remote-tests
56 - $(use_enable dap)
57 - $(use_enable hdf hdf4)
58 - $(use_enable hdf5 netcdf-4)
59 - $(use_enable tools utilities)
60 - )
61 - if use mpi; then
62 - export CC=mpicc
63 - myeconfargs+=( --enable-parallel )
64 - use test && myeconfargs+=( --enable-parallel-tests )
65 - fi
66 - autotools-utils_src_configure
67 -}
68 -
69 -src_test() {
70 - autotools-utils_src_test -j1
71 -}
72 -
73 -src_install() {
74 - autotools-utils_src_install
75 - if use examples; then
76 - insinto /usr/share/doc/${PF}
77 - doins -r examples
78 - fi
79 -}