diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-12-30 19:28:38 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-12-31 18:23:36 +0100 |
commit | 7b0e0aecbcb9b247681a2c87be51d5e43404f7e5 (patch) | |
tree | f02c8f546715d9dd8b66099bd6c7e1536ee0e828 /media-libs/libaom | |
parent | */*: Switch graphics proj packages to cmake.eclass (diff) | |
download | gentoo-7b0e0aecbcb9b247681a2c87be51d5e43404f7e5.tar.gz gentoo-7b0e0aecbcb9b247681a2c87be51d5e43404f7e5.tar.bz2 gentoo-7b0e0aecbcb9b247681a2c87be51d5e43404f7e5.zip |
*/*: Switch media-video proj packages to cmake.eclass
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-libs/libaom')
-rw-r--r-- | media-libs/libaom/libaom-9999.ebuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/media-libs/libaom/libaom-9999.ebuild b/media-libs/libaom/libaom-9999.ebuild index d22f4369dcb5..53bc9ffd6e14 100644 --- a/media-libs/libaom/libaom-9999.ebuild +++ b/media-libs/libaom/libaom-9999.ebuild @@ -3,6 +3,7 @@ EAPI=7 +CMAKE_ECLASS=cmake inherit cmake-multilib if [[ ${PV} == *9999* ]]; then @@ -63,12 +64,12 @@ multilib_src_configure() { -DENABLE_AVX=$(usex cpu_flags_x86_avx ON OFF) -DENABLE_AVX2=$(usex cpu_flags_x86_avx2 ON OFF) ) - cmake-utils_src_configure + cmake_src_configure } multilib_src_install() { if multilib_is_native_abi && use doc ; then local HTML_DOCS=( "${BUILD_DIR}"/docs/html/. ) fi - cmake-utils_src_install + cmake_src_install } |