blob: 21119f7b894e02cc538eaef799e83a78e45db10a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# 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"
COMMON_DEPEND="
media-video/obs-studio
media-libs/gst-plugins-base
sys-apps/pciutils
"
DEPEND="${COMMON_DEPEND}"
RDEPEND="${COMMON_DEPEND}
dev-libs/glib
>=media-libs/gst-plugins-bad-1.22.3-r3[vaapi]
video_cards_amdgpu? ( media-libs/mesa[vaapi,video_cards_radeonsi] )
video_cards_intel? ( media-libs/libva-intel-media-driver )
"
src_configure() {
local emesonargs+=(
--libdir=/usr/$(get_libdir)/obs-plugins
)
meson_src_configure
}
|