diff options
Diffstat (limited to 'media-libs/dav1d/dav1d-0.8.0.ebuild')
-rw-r--r-- | media-libs/dav1d/dav1d-0.8.0.ebuild | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/media-libs/dav1d/dav1d-0.8.0.ebuild b/media-libs/dav1d/dav1d-0.8.0.ebuild deleted file mode 100644 index 68aff46355e3..000000000000 --- a/media-libs/dav1d/dav1d-0.8.0.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -SCM="" -if [[ "${PV}" == "9999" ]]; then - SCM="git-r3" - EGIT_REPO_URI="https://code.videolan.org/videolan/dav1d" -else - KEYWORDS="amd64 arm arm64 ppc ppc64 ~sparc x86" - SRC_URI="https://code.videolan.org/videolan/dav1d/-/archive/${PV}/${P}.tar.bz2" -fi - -inherit ${SCM} meson-multilib - -DESCRIPTION="dav1d is an AV1 Decoder :)" -HOMEPAGE="https://code.videolan.org/videolan/dav1d" - -LICENSE="BSD-2" -SLOT="0/5" -IUSE="+8bit +10bit +asm" - -ASM_DEPEND=">=dev-lang/nasm-2.14.02" -BDEPEND="asm? ( - abi_x86_32? ( ${ASM_DEPEND} ) - abi_x86_64? ( ${ASM_DEPEND} ) - )" - -DOCS=( README.md doc/PATENTS THANKS.md ) - -multilib_src_configure() { - local -a bits=() - use 8bit && bits+=( 8 ) - use 10bit && bits+=( 16 ) - - local enable_asm - if [[ ${MULTILIB_ABI_FLAG} == abi_x86_x32 ]]; then - enable_asm=false - else - enable_asm=$(usex asm true false) - fi - - local emesonargs=( - -D bitdepths=$(IFS=,; echo "${bits[*]}") - -D enable_asm=${enable_asm} - ) - meson_src_configure -} |