blob: edf60da3a3397b5f5c97d2eccfd932bfad5b7296 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11,12,13} )
inherit meson python-any-r1
DESCRIPTION="Nested Wayland compositor with support for X11 forwarding"
HOMEPAGE="https://chromium.googlesource.com/chromiumos/platform2/+/refs/heads/main/vm_tools/sommelier/"
SRC_URI="
https://github.com/WhatAmISupposedToPutHere/sommelier/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
PATCHES="
${FILESDIR}/${PN}-0.12-revert-cross-domain-identifiers.patch
${FILESDIR}/${PN}-0.12-dont-call-fixup_plane0.patch
${FILESDIR}/${PN}-0.12-no-unused-wl-assert.patch
"
# ${FILESDIR}/${PN}-0.12-enforce-16k-alignment.patch
IUSE="test"
RESTRICT="!test? ( test )"
BDEPEND="
dev-util/wayland-scanner
$(python_gen_any_dep '
dev-python/jinja2[${PYTHON_USEDEP}]
')
"
DEPEND="
media-libs/mesa
x11-libs/libdrm
x11-libs/pixman
x11-libs/libxcb
x11-libs/libxkbcommon
dev-libs/wayland
test? (
dev-cpp/gtest
)
"
RDEPEND="
${DEPEND}
x11-base/xwayland
"
python_check_deps() {
python_has_version "dev-python/jinja2[${PYTHON_USEDEP}]"
}
src_configure() {
local emesonargs=(
-Dxwayland_path="${BROOT}"/usr/bin/Xwayland
-Dxwayland_gl_driver_path="${EPREFIX}/usr/$(get_libdir)/dri"
-Dwith_tests=$(usex test true false)
)
meson_src_configure
}
|