media-video/obs-vaapi: add 0.4.1

Signed-off-by: Kostadin Shishmanov <kocelfc@tutanota.com>
This commit is contained in:
Kostadin Shishmanov
2023-12-12 21:16:05 +02:00
parent efef456592
commit b4c3f8a59a
2 changed files with 34 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST obs-vaapi-0.3.1.tar.gz 15017 BLAKE2B cc537616b0cfcb9ebaa10565f5e5fa408b25f6c94eb5c878beddf21554db77356a843b5489ed85eeb04b24d59de463ef81215199665c947607905cd232f6b90a SHA512 9d41bd95ef4a8ce3bd7e24ea313bb185fc1a5a1b1adf82f2d69099ba366b4a13096264e716d4a87580eebaf3e54cb0953a15e104a7c3963ba25bdf04ef6b4db4
DIST obs-vaapi-0.4.0.tar.gz 15052 BLAKE2B b4aa52e65b78dbbd840540fc5d5c3cee7fcdf13afd74d9cc54208ccc3348b69deaf8e209c4bd0fa3b5a1a868f2cb03225048cf4ef41e0284ff38a771cefc71b6 SHA512 75b0391801d6477d033b9452b4f06dd2a106fb7fff24c1fca730e069521118122049dd3d1e45fe2279365bcc2d64931ae1f11c806a095531ea73c48b894a3af9
DIST obs-vaapi-0.4.1.tar.gz 15176 BLAKE2B e2163de8a419cec46e89774875399377506770e44700cf5974304b53d04243d70e7a88f9443b87a60ce94cc399b653cf06553083965e550213414d5efe1f83c3 SHA512 1b23873e6f328a236d39ebb0dd708a0b82a9f88881faf58ff8bcf36b04268e639b036a6cf17bb1e6316c444add6dd31c26aaed07b295781240415ed2be52ec52

View File

@@ -0,0 +1,33 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="OBS Studio VAAPI support via GStreamer"
HOMEPAGE="https://github.com/fzwoch/obs-vaapi"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/fzwoch/obs-vaapi"
else
SRC_URI="https://github.com/fzwoch/obs-vaapi/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
LICENSE="GPL-2"
SLOT="0"
IUSE="video_cards_amdgpu video_cards_intel"
RDEPEND=">=media-libs/gst-plugins-bad-1.22.3-r3[vaapi]
media-video/obs-studio
video_cards_amdgpu? ( media-libs/mesa[vaapi,video_cards_radeonsi] )
video_cards_intel? ( media-libs/libva-intel-media-driver )
"
DEPEND="${RDEPEND}"
src_configure() {
local emesonargs+=(
--libdir=/usr/$(get_libdir)/obs-plugins
)
meson_src_configure
}