diff options
author | Sam James <sam@gentoo.org> | 2022-02-26 19:43:29 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-02-26 19:53:37 +0000 |
commit | 5214925f943e0722ad4d3b150a9dd606823e7bd6 (patch) | |
tree | 6e1d805f1d14c122a66308ccf9299b1b2ca9da68 /media-gfx/openmesh | |
parent | dev-util/kcov: drop 34 (diff) | |
download | gentoo-5214925f943e0722ad4d3b150a9dd606823e7bd6.tar.gz gentoo-5214925f943e0722ad4d3b150a9dd606823e7bd6.tar.bz2 gentoo-5214925f943e0722ad4d3b150a9dd606823e7bd6.zip |
media-gfx/openmesh: update EAPI 6 -> 8
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-gfx/openmesh')
-rw-r--r-- | media-gfx/openmesh/openmesh-7.1-r1.ebuild (renamed from media-gfx/openmesh/openmesh-7.1.ebuild) | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/media-gfx/openmesh/openmesh-7.1.ebuild b/media-gfx/openmesh/openmesh-7.1-r1.ebuild index 19b09a04fb5a..4f02e9b682d2 100644 --- a/media-gfx/openmesh/openmesh-7.1.ebuild +++ b/media-gfx/openmesh/openmesh-7.1-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 -inherit cmake-utils +inherit cmake MY_PN="OpenMesh" MY_PV="${PV/_rc/-RC}" @@ -33,7 +33,7 @@ DEPEND="${RDEPEND} " src_prepare() { - cmake-utils_src_prepare + cmake_src_prepare # Fix libdir and remove rpath. sed -i \ @@ -57,10 +57,10 @@ src_configure() { -DOPENMESH_BUILD_UNIT_TESTS=$(usex test) ) - cmake-utils_src_configure + cmake_src_configure } src_test() { cd "${BUILD_DIR}" || die - LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${BUILD_DIR}/Build/$(get_libdir) ctest --verbose + LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${BUILD_DIR}/Build/$(get_libdir)" cmake_src_test --verbose } |