Install this version:
emerge -a =media-video/znedi3-3.2
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =media-video/znedi3-3.2
Or alternatively:
emerge --autounmask-write -a =media-video/znedi3-3.2
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 3.2 | 8 | ~amd64 | 0 |
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="nnedi3 filter."
HOMEPAGE="https://github.com/sekrit-twc/znedi3"
SHA="e2016a0ca8cc438ec3e5d0cccafc565092d1a3a5"
GRAPHENGINE_SHA="f06d7cb4d589ea4657f01b13613efb7437c8ecda"
VSXX_SHA="de38f0e128c85782494ae00565698a2b25e87869"
SRC_URI="https://github.com/sekrit-twc/znedi3/archive/${SHA}.tar.gz
-> ${P}-${SHA:0:8}.gh.tar.gz
https://github.com/sekrit-twc/graphengine/archive/${GRAPHENGINE_SHA}.tar.gz -> ${P}-graphengine-${GRAPHENGINE_SHA:0:7}.tar.gz
https://github.com/sekrit-twc/vsxx/archive/${VSXX_SHA}.tar.gz -> ${P}-vsxx-${VSXX_SHA:0:7}.tar.gz"
S="${WORKDIR}/${PN}-${SHA}"
LICENSE="WTFPL-2 GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64"
src_prepare() {
rmdir graphengine vsxx || die
mv ../graphengine-${GRAPHENGINE_SHA} graphengine || die
mv ../vsxx-${VSXX_SHA} vsxx || die
default
}
src_compile() {
emake X86=1
}
src_install() {
mkdir -p "${ED}/usr/$(get_libdir)/vapoursynth" || die
cp vsznedi3.so "${ED}/usr/$(get_libdir)/vapoursynth/" || die
einstalldocs
}