diff options
author | Sam James <sam@gentoo.org> | 2021-03-28 03:05:38 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-28 03:05:38 +0000 |
commit | 156d6d434e5007d7838fc644668f5379a400e640 (patch) | |
tree | bccf96429fca3f916befb0f7b4e60b6c82fdd9ef /sci-libs/netcdf-cxx | |
parent | sci-libs/netcdf-cxx: fix DeprecatedInsinto (diff) | |
download | gentoo-156d6d434e5007d7838fc644668f5379a400e640.tar.gz gentoo-156d6d434e5007d7838fc644668f5379a400e640.tar.bz2 gentoo-156d6d434e5007d7838fc644668f5379a400e640.zip |
sci-libs/netcdf-cxx: port to EAPI 7, drop eutils.eclass, drop ltprune.eclass
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sci-libs/netcdf-cxx')
-rw-r--r-- | sci-libs/netcdf-cxx/netcdf-cxx-4.3.0.ebuild | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/sci-libs/netcdf-cxx/netcdf-cxx-4.3.0.ebuild b/sci-libs/netcdf-cxx/netcdf-cxx-4.3.0.ebuild index abbec52bd2a4..ba3408589ce6 100644 --- a/sci-libs/netcdf-cxx/netcdf-cxx-4.3.0.ebuild +++ b/sci-libs/netcdf-cxx/netcdf-cxx-4.3.0.ebuild @@ -1,15 +1,13 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 - -inherit eutils ltprune +EAPI=7 MYP=${PN}4-${PV} - DESCRIPTION="C++ library for netCDF" HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/" SRC_URI="https://github.com/Unidata/netcdf-cxx4/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MYP}" LICENSE="UCAR-Unidata" SLOT="0/1" @@ -19,8 +17,6 @@ IUSE="examples" RDEPEND=">=sci-libs/netcdf-4.2:=[hdf5]" DEPEND="${RDEPEND}" -S="${WORKDIR}/${MYP}" - src_configure() { econf --disable-static } @@ -28,5 +24,6 @@ src_configure() { src_install() { default use examples && dodoc -r examples - prune_libtool_files + + find "${ED}" -name '*.la' -delete || die } |