Install this version:
emerge -a =media-plugins/vapoursynth-dotkill-2
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =media-plugins/vapoursynth-dotkill-2
Or alternatively:
emerge --autounmask-write -a =media-plugins/vapoursynth-dotkill-2
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="Spatial dotcrawl remover for VapourSynth"
HOMEPAGE="https://github.com/myrsloik/DotKill"
if [[ ${PV} == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/myrsloik/DotKill.git"
KEYWORDS=""
else
inherit vcs-snapshot
SRC_URI="https://github.com/myrsloik/DotKill/archive/R${PV}.tar.gz -> ${PN}-${PV}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="MIT"
SLOT="0"
RDEPEND+="
media-libs/vapoursynth
"
DEPEND="${RDEPEND}
"
LIBNAME="libdotkill.so"
COMMON_FLAGS="-shared -fPIC -std=c++17"
src_compile() {
$(tc-getCC) ${COMMON_FLAGS} ${CFLAGS} ${LDFLAGS} -o ${LIBNAME} $(pkg-config --cflags vapoursynth) dotkill1.cpp || die "Build failed"
}
src_install() {
insinto "/usr/$(get_libdir)/vapoursynth/"
doins ${LIBNAME}
}
media-libs/vapoursynth
media-libs/vapoursynth
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | vapoursynth-dotkill-2.tar.gz | 6557 bytes | https://github.com/myrsloik/DotKill/archive/R2.tar.gz |