From 8aa23805b75a645a36bfc724db5dc85138587e3d Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Tue, 1 Sep 2020 19:13:18 +0100 Subject: dev-libs/capstone: switch to cmake.eclass Package-Manager: Portage-3.0.5, Repoman-3.0.1 Signed-off-by: Sergei Trofimovich --- dev-libs/capstone/capstone-4.0.2-r2.ebuild | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-libs/capstone/capstone-4.0.2-r2.ebuild b/dev-libs/capstone/capstone-4.0.2-r2.ebuild index 58806a1fa74b..09477aff2a6e 100644 --- a/dev-libs/capstone/capstone-4.0.2-r2.ebuild +++ b/dev-libs/capstone/capstone-4.0.2-r2.ebuild @@ -6,7 +6,7 @@ EAPI=7 DISTUTILS_OPTIONAL=1 PYTHON_COMPAT=( python{3_6,3_7,3_8} ) -inherit cmake-utils distutils-r1 toolchain-funcs +inherit cmake distutils-r1 toolchain-funcs DESCRIPTION="disassembly/disassembler framework + bindings" HOMEPAGE="http://www.capstone-engine.org/" @@ -48,7 +48,7 @@ wrap_python() { } src_prepare() { - cmake-utils_src_prepare + cmake_src_prepare wrap_python ${FUNCNAME} } @@ -58,25 +58,25 @@ src_configure() { -DCAPSTONE_BUILD_TESTS="$(usex test)" -DCAPSTONE_BUILD_STATIC="$(usex static-libs)" ) - cmake-utils_src_configure + cmake_src_configure wrap_python ${FUNCNAME} } src_compile() { - cmake-utils_src_compile + cmake_src_compile wrap_python ${FUNCNAME} } src_test() { - cmake-utils_src_test + cmake_src_test wrap_python ${FUNCNAME} } src_install() { - cmake-utils_src_install + cmake_src_install wrap_python ${FUNCNAME} } -- cgit v1.2.3-65-gdbad