From b5cd649e07a13c158ff097cc631a96042a0581fc Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Wed, 12 Dec 2018 15:02:09 +0000 Subject: media-libs/dav1d: First release Update the useflag description and add the new ebuild. Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Luca Barbato --- media-libs/dav1d/Manifest | 1 + media-libs/dav1d/dav1d-0.1.0.ebuild | 58 +++++++++++++++++++++++++++++++++++++ media-libs/dav1d/dav1d-9999.ebuild | 4 +-- media-libs/dav1d/metadata.xml | 4 +-- 4 files changed, 63 insertions(+), 4 deletions(-) create mode 100644 media-libs/dav1d/Manifest create mode 100644 media-libs/dav1d/dav1d-0.1.0.ebuild diff --git a/media-libs/dav1d/Manifest b/media-libs/dav1d/Manifest new file mode 100644 index 000000000000..766c5b355cc5 --- /dev/null +++ b/media-libs/dav1d/Manifest @@ -0,0 +1 @@ +DIST dav1d-0.1.0.tar.bz2 351745 BLAKE2B 302680ddfdc8d5a3eff90541ed156e820c3322bfb93316da1b2deabeac40062103af19e99dfa810678e62ad668c4aed944ac9bf8160afb301b100063919ed2a1 SHA512 5893ad40af7c4f5c3678ecc604ad360b5d1cd3fadaa16f7183d638745097fed091aeb3456540db61a2f4f0fc8bb93f2a20f428c76a7976d3fd186cc8b8baed53 diff --git a/media-libs/dav1d/dav1d-0.1.0.ebuild b/media-libs/dav1d/dav1d-0.1.0.ebuild new file mode 100644 index 000000000000..8b2a1f361334 --- /dev/null +++ b/media-libs/dav1d/dav1d-0.1.0.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +SCM="" +if [[ "${PV}" == "9999" ]]; then + SCM="git-r3" + EGIT_REPO_URI="https://code.videolan.org/videolan/dav1d" +else + KEYWORDS="~amd64" + SRC_URI="https://code.videolan.org/videolan/dav1d/-/archive/${PV}/${P}.tar.bz2" +fi + +inherit ${SCM} meson ninja-utils multilib-minimal + +DESCRIPTION="dav1d is an AV1 Decoder :)" +HOMEPAGE="https://code.videolan.org/videolan/dav1d" + +LICENSE="BSD-2" +SLOT="0" +IUSE="+8bit +10bit +asm" + +ASM_DEPEND=">=dev-lang/nasm-2.13" +RDEPEND="" +DEPEND="${RDEPEND} + asm? ( + abi_x86_32? ( ${ASM_DEPEND} ) + abi_x86_64? ( ${ASM_DEPEND} ) + )" + +DOCS=( README.md doc/PATENTS ) + +multilib_src_configure() { + local -a bits=() + use 8bit && bits+=( 8 ) + use 10bit && bits+=( 16 ) + + if [[ ${MULTILIB_ABI_FLAG} == abi_x86_x32 ]]; then + build_asm=false + else + build_asm=$(usex asm true false) + fi + + local emesonargs=( + -D bitdepths=$(IFS=,; echo "${bits[*]}") + -D build_asm=$build_asm + ) + meson_src_configure +} + +multilib_src_compile() { + eninja +} + +multilib_src_install() { + DESTDIR="${D}" eninja install +} diff --git a/media-libs/dav1d/dav1d-9999.ebuild b/media-libs/dav1d/dav1d-9999.ebuild index c5eab1165a34..8b2a1f361334 100644 --- a/media-libs/dav1d/dav1d-9999.ebuild +++ b/media-libs/dav1d/dav1d-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -34,7 +34,7 @@ DOCS=( README.md doc/PATENTS ) multilib_src_configure() { local -a bits=() use 8bit && bits+=( 8 ) - use 10bit && bits+=( 10 ) + use 10bit && bits+=( 16 ) if [[ ${MULTILIB_ABI_FLAG} == abi_x86_x32 ]]; then build_asm=false diff --git a/media-libs/dav1d/metadata.xml b/media-libs/dav1d/metadata.xml index 96b9f2cd5594..112a2f9c98f1 100644 --- a/media-libs/dav1d/metadata.xml +++ b/media-libs/dav1d/metadata.xml @@ -6,8 +6,8 @@ Add support for decoding 8-bit AV1. - Add support for building 10-bit AV1. - Enable custom x86 assembly for faster decoding. + Add support for building 10-bit and 12-bit AV1. + Enable custom assembly for faster decoding. https://code.videolan.org/videolan/dav1d/issues -- cgit v1.2.3-65-gdbad