Diff netcdf-fortran-4.5.4 with a netcdf-fortran-4.5.4-r1

/usr/portage/sci-libs/netcdf-fortran/netcdf-fortran-4.5.4-r1.ebuild 2023-10-09 14:52:35.088368491 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6 6
FORTRAN_STANDARD="77 90"
7 7

  
8
inherit autotools fortran-2
8
inherit fortran-2
9 9

  
10 10
DESCRIPTION="Scientific library and interface for array oriented data access"
11 11
HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/"
12
SRC_URI="https://github.com/Unidata/netcdf-fortran/archive/v${PV}.tar.gz -> ${P}.tar.gz"
12
# TODO: drop .upstream suffix on next bump
13
SRC_URI="https://downloads.unidata.ucar.edu/netcdf-fortran/${PV}/${P}.tar.gz -> ${P}.upstream.tar.gz"
13 14

  
14 15
LICENSE="UCAR-Unidata"
15 16
SLOT="0/7"
......
17 18
IUSE="doc examples static-libs"
18 19

  
19 20
RDEPEND="sci-libs/netcdf"
20
DEPEND="${RDEPEND}
21
	dev-lang/cfortran"
21
DEPEND="
22
	${RDEPEND}
23
	dev-lang/cfortran
24
"
22 25
BDEPEND="doc? ( app-doc/doxygen )"
23 26

  
24
src_prepare() {
25
	default
26

  
27
	eautoreconf
28
}
29

  
30 27
src_configure() {
31 28
	econf \
32 29
		--disable-valgrind \
Thank you!