diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-12-30 20:12:17 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-12-31 19:42:20 +0100 |
commit | be0ab352405aa2d5d968a8c3905557b914df9626 (patch) | |
tree | 5b5da6a6ab8feb0c82b1f5c6b02e9fafdee83463 /dev-libs | |
parent | sys-kernel/gentoo-sources: Linux patch 5.4.7 (diff) | |
download | gentoo-be0ab352405aa2d5d968a8c3905557b914df9626.tar.gz gentoo-be0ab352405aa2d5d968a8c3905557b914df9626.tar.bz2 gentoo-be0ab352405aa2d5d968a8c3905557b914df9626.zip |
*/*: Switch proxy-maint to cmake.eclass
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/criterion/criterion-2.3.3.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dev-libs/criterion/criterion-2.3.3.ebuild b/dev-libs/criterion/criterion-2.3.3.ebuild index 27a2a9ae8b05..e0b34016c621 100644 --- a/dev-libs/criterion/criterion-2.3.3.ebuild +++ b/dev-libs/criterion/criterion-2.3.3.ebuild @@ -4,7 +4,7 @@ EAPI=7 CMAKE_MAKEFILE_GENERATOR="emake" -inherit cmake-utils +inherit cmake DESCRIPTION="Cross platform unit testing framework for C and C++" HOMEPAGE="https://github.com/Snaipe/Criterion" @@ -30,19 +30,19 @@ src_configure() { -DCTESTS="$(usex test ON OFF)" ) - cmake-utils_src_configure + cmake_src_configure } src_compile() { - cmake-utils_src_compile + cmake_src_compile if use test; then - cmake-utils_src_make criterion_tests + cmake_build criterion_tests fi } src_install() { - cmake-utils_src_install + cmake_src_install if [[ "/usr/lib" != "/usr/$(get_libdir)" ]]; then mkdir -p "${D}/usr/$(get_libdir)" || die |