# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit toolchain-funcs DESCRIPTION="Vapoursynth plugin that attaches the match metrics calculated by Telecide to frames as properties" HOMEPAGE="https://github.com/vapoursynth/dmetrics" if [[ ${PV} == *9999* ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/vapoursynth/dmetrics.git" KEYWORDS="" else inherit vcs-snapshot SRC_URI="https://github.com/vapoursynth/dmetrics/archive/R${PV}.tar.gz -> ${PN}-${PV}.tar.gz" KEYWORDS="~amd64 ~x86" fi LICENSE="GPL-2" SLOT="0" RDEPEND+=" media-libs/vapoursynth " DEPEND="${RDEPEND}" LIBNAME="libdmetrics.so" src_compile() { $(tc-getCC) -std=c++14 -shared -fPIC ${CFLAGS} ${LDFLAGS} -o ${LIBNAME} $(pkg-config --cflags vapoursynth) src/dmetrics.cpp || die "Build failed" } src_install() { exeinto /usr/$(get_libdir)/vapoursynth/ doexe ${LIBNAME} dodoc README.md }