Install this version:
emerge -a =media-plugins/vapoursynth-rgsf-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =media-plugins/vapoursynth-rgsf-9999
Or alternatively:
emerge --autounmask-write -a =media-plugins/vapoursynth-rgsf-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="RemoveGrain Single Precision"
HOMEPAGE="https://github.com/IFeelBloated/RGSF"
if ver_test -ne 9999; then
SRC_URI="https://github.com/IFeelBloated/RGSF/archive/r${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
else
inherit git-r3
EGIT_REPO_URI="https://github.com/IFeelBloated/RGSF.git"
KEYWORDS=""
fi
LICENSE="LGPL-3"
SLOT="0"
IUSE=""
RDEPEND+="
media-libs/vapoursynth
"
DEPEND="
${RDEPEND}
"
if ver_test -ne 9999; then
MY_PN="${PN/vapoursynth-/}"
S="${WORKDIR}/${MY_PN^^}-r${PV}"
fi
src_unpack() {
if ver_test -eq 9999; then
git-r3_src_unpack
else
default
fi
# Upstream doesn't provide a buildsystem.
cp -vr "${FILESDIR}/meson.build" "${S}/"
}
src_prepare() {
# media-libs/vapoursynth provides these.
rm -fr "VapourSynth.h" "VSHelper.h"
default
}
media-libs/vapoursynth
media-libs/vapoursynth