blob: bfea22b7df6450513803b469240743a6b4c52476 (
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
40
41
|
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit git-r3 meson
EGIT_REPO_URI="https://repo.dec05eba.com/gpu-screen-recorder"
DESCRIPTION="A screen recorder that has minimal impact on system performance."
HOMEPAGE="https://git.dec05eba.com/gpu-screen-recorder/about"
LICENSE="GPL-3"
SLOT="0"
IUSE="+filecaps systemd"
DEPEND="
media-video/ffmpeg
media-libs/libglvnd
x11-libs/libXcomposite
x11-libs/libXrandr
x11-libs/libXfixes
media-libs/libpulse
media-libs/libva
x11-libs/libdrm
sys-libs/libcap
dev-libs/wayland
"
RDEPEND="${DEPEND}"
BDEPEND="${DEPEND}"
src_configure() {
local emesonargs=(
-Dsystemd=$(usex filecaps true none)
-Dcapabilities=$(usex systemd true none)
)
meson_src_configure
}
src_install() {
meson_src_install
}
|