commit:     40ecf304b834e5c7412e507f741a04840c7f4b41
Author:     Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache <DOT> Org>
AuthorDate: Wed Oct  2 20:13:13 2019 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Fri Dec  6 20:26:15 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40ecf304

media-libs/dav1d: Update meson options.

build_asm was renamed to enable_asm in:
https://code.videolan.org/videolan/dav1d/commit/beda6e0d1c37f06e4e03f7ebe13311bd8b18245e

Fixes: https://bugs.gentoo.org/696244
Signed-off-by: Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache.Org>
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>

 media-libs/dav1d/dav1d-0.4.0.ebuild | 7 ++++---
 media-libs/dav1d/dav1d-0.5.1.ebuild | 7 ++++---
 media-libs/dav1d/dav1d-9999.ebuild  | 7 ++++---
 3 files changed, 12 insertions(+), 9 deletions(-)

diff --git a/media-libs/dav1d/dav1d-0.4.0.ebuild 
b/media-libs/dav1d/dav1d-0.4.0.ebuild
index c344ddc2e4e..1bfd1838576 100644
--- a/media-libs/dav1d/dav1d-0.4.0.ebuild
+++ b/media-libs/dav1d/dav1d-0.4.0.ebuild
@@ -36,15 +36,16 @@ multilib_src_configure() {
        use 8bit  && bits+=( 8 )
        use 10bit && bits+=( 16 )
 
+       local enable_asm
        if [[ ${MULTILIB_ABI_FLAG} == abi_x86_x32 ]]; then
-               build_asm=false
+               enable_asm=false
        else
-               build_asm=$(usex asm true false)
+               enable_asm=$(usex asm true false)
        fi
 
        local emesonargs=(
                -D bitdepths=$(IFS=,; echo "${bits[*]}")
-               -D build_asm=$build_asm
+               -D enable_asm=${enable_asm}
        )
        meson_src_configure
 }

diff --git a/media-libs/dav1d/dav1d-0.5.1.ebuild 
b/media-libs/dav1d/dav1d-0.5.1.ebuild
index 69a1a98df06..2d5b991ec5d 100644
--- a/media-libs/dav1d/dav1d-0.5.1.ebuild
+++ b/media-libs/dav1d/dav1d-0.5.1.ebuild
@@ -34,15 +34,16 @@ multilib_src_configure() {
        use 8bit  && bits+=( 8 )
        use 10bit && bits+=( 16 )
 
+       local enable_asm
        if [[ ${MULTILIB_ABI_FLAG} == abi_x86_x32 ]]; then
-               build_asm=false
+               enable_asm=false
        else
-               build_asm=$(usex asm true false)
+               enable_asm=$(usex asm true false)
        fi
 
        local emesonargs=(
                -D bitdepths=$(IFS=,; echo "${bits[*]}")
-               -D build_asm=$build_asm
+               -D enable_asm=${enable_asm}
        )
        meson_src_configure
 }

diff --git a/media-libs/dav1d/dav1d-9999.ebuild 
b/media-libs/dav1d/dav1d-9999.ebuild
index 69a1a98df06..2d5b991ec5d 100644
--- a/media-libs/dav1d/dav1d-9999.ebuild
+++ b/media-libs/dav1d/dav1d-9999.ebuild
@@ -34,15 +34,16 @@ multilib_src_configure() {
        use 8bit  && bits+=( 8 )
        use 10bit && bits+=( 16 )
 
+       local enable_asm
        if [[ ${MULTILIB_ABI_FLAG} == abi_x86_x32 ]]; then
-               build_asm=false
+               enable_asm=false
        else
-               build_asm=$(usex asm true false)
+               enable_asm=$(usex asm true false)
        fi
 
        local emesonargs=(
                -D bitdepths=$(IFS=,; echo "${bits[*]}")
-               -D build_asm=$build_asm
+               -D enable_asm=${enable_asm}
        )
        meson_src_configure
 }

Reply via email to