Diff netcdf-cxx-4.3.1 with a netcdf-cxx-4.3.1-r1

/usr/portage/sci-libs/netcdf-cxx/netcdf-cxx-4.3.1-r1.ebuild 2024-07-02 13:51:49.313851592 +0300
1 1
# Copyright 1999-2024 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
inherit libtool
7 7

  
8 8
MYP=${PN}4-${PV}
9 9
DESCRIPTION="C++ library for netCDF"
10 10
HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/"
11
SRC_URI="https://github.com/Unidata/netcdf-cxx4/archive/v${PV}.tar.gz -> ${P}.tar.gz"
11
SRC_URI="https://downloads.unidata.ucar.edu/netcdf-cxx/${PV}/${PN}4-${PV}.tar.gz"
12 12

  
13 13
LICENSE="UCAR-Unidata"
14 14
SLOT="0/1"
15 15
KEYWORDS="amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
16 16
IUSE="examples"
17 17
# 6 out of 9 fail, reported upstream
18
RESTRICT="test"
18
#RESTRICT="test"
19 19

  
20 20
RDEPEND=">=sci-libs/netcdf-4.2:=[hdf5]"
21 21
DEPEND="${RDEPEND}"
......
31 31
	elibtoolize
32 32
}
33 33

  
34
src_configure() {
35
	econf --disable-static
36
}
37

  
38 34
src_install() {
39 35
	default
40 36
	use examples && dodoc -r examples
Thank you!