Install this version:
emerge -a =media-libs/svt-hevc-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =media-libs/svt-hevc-9999
Or alternatively:
emerge --autounmask-write -a =media-libs/svt-hevc-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | ~amd64 | 0 |
# Copyright 2020-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit flag-o-matic cmake
DESCRIPTION="Scalable Video Technology for HEVC (SVT-HEVC Encoder)"
HOMEPAGE="https://github.com/OpenVisualCloud/SVT-HEVC"
if [ ${PV} = "9999" ]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/OpenVisualCloud/SVT-HEVC.git"
else
SRC_URI="https://github.com/OpenVisualCloud/SVT-HEVC/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
S="${WORKDIR}/SVT-HEVC-${PV}"
fi
LICENSE="BSD-2"
SLOT="0"
BDEPEND="dev-lang/nasm"
PATCHES=(
"${FILESDIR}"/${PN}-1.5.1-dont-clobber-fortify_source.patch
)
src_prepare() {
append-ldflags -Wl,-z,noexecstack
cmake_src_prepare
}
dev-lang/nasm