mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
media-libs/svt-av1: add 0.8.7
Signed-off-by: James Beddek <telans@posteo.de> Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
This commit is contained in:
committed by
Ionen Wolkens
parent
bac38e0bfd
commit
9ac4166901
@@ -1 +1,2 @@
|
||||
DIST svt-av1-0.8.6-r1.tar.gz 6416293 BLAKE2B 98a0c5547f63a9d04b5365a242d1a6e7b8f54449547309e53e9907d11d61c853f07ea1d8a5988ec1b67ef94bfd137ff1664f4352d9181cf96b5629f292c97f1c SHA512 535c073e53d99ed55efa0b7577a886dff136ba41f2d92e84ef0463b707136e156b6c4029e3ff7709be8ce54b0a7e7257af833b706b4282d7fd2636635df757d5
|
||||
DIST svt-av1-0.8.7.tar.gz 6396358 BLAKE2B 21a0d319078887809d08276b1a11b6dcca1be90a79c6bda19b86749fabb623918b9112de8ae3c7740b14f23d52e4e1c12ec0190f49880b09993525a857f8e334 SHA512 812b794eda930f53dcba6bb02bc5a3f417346705d64f590d7acf2d45df8d10985bd40c313eaaed514601ab699e23c87852059b9eb0b0ff8a717ef9fd80a132f7
|
||||
|
||||
48
media-libs/svt-av1/svt-av1-0.8.7.ebuild
Normal file
48
media-libs/svt-av1/svt-av1-0.8.7.ebuild
Normal file
@@ -0,0 +1,48 @@
|
||||
# Copyright 2020-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake flag-o-matic
|
||||
|
||||
DESCRIPTION="Scalable Video Technology for AV1 (SVT-AV1 Encoder and Decoder)"
|
||||
HOMEPAGE="https://gitlab.com/AOMediaCodec/SVT-AV1"
|
||||
|
||||
if [[ ${PV} = 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/AOMediaCodec/SVT-AV1.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/AOMediaCodec/SVT-AV1/-/archive/v${PV}/SVT-AV1-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc -x86" # -x86: https://github.com/AOMediaCodec/SVT-AV1/issues/1231
|
||||
S="${WORKDIR}/SVT-AV1-v${PV}"
|
||||
fi
|
||||
|
||||
# Also see "Alliance for Open Media Patent License 1.0"
|
||||
LICENSE="BSD-2 Apache-2.0 BSD ISC LGPL-2.1+ MIT"
|
||||
SLOT="0"
|
||||
|
||||
BDEPEND="amd64? ( dev-lang/yasm )"
|
||||
|
||||
src_prepare() {
|
||||
if ! use amd64 ; then
|
||||
# This _should_ be possible on amd64 too, but breaks with -O3
|
||||
# without AVX.
|
||||
# bug #785556
|
||||
eapply "${FILESDIR}"/${PN}-0.8.6-no-force-avx.patch
|
||||
fi
|
||||
|
||||
cmake_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
append-ldflags -Wl,-z,noexecstack
|
||||
|
||||
local mycmakeargs=(
|
||||
# Tests require linking against https://github.com/Cidana-Developers/aom/tree/av1-normative ?
|
||||
# undefined reference to `ifd_inspect'
|
||||
# https://github.com/Cidana-Developers/aom/commit/cfc5c9e95bcb48a5a41ca7908b44df34ea1313c0
|
||||
-DBUILD_TESTING=OFF
|
||||
)
|
||||
|
||||
cmake_src_configure
|
||||
}
|
||||
Reference in New Issue
Block a user