blob: c757d15f0876c3d6b58c2e3d46c73704595767b4 (
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
# Copyright 2019-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson xdg
DESCRIPTION="Compiz like 3D wayland compositor"
HOMEPAGE="https://github.com/WayfireWM/wf-shell"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/WayfireWM/wf-shell.git"
SLOT="0/0.12"
else
SRC_URI="https://github.com/WayfireWM/wf-shell/releases/download/v${PV}/${P}.tar.xz"
KEYWORDS="~amd64"
SLOT="0/$(ver_cut 1-2)"
fi
LICENSE="MIT"
IUSE="ddcutil pipewire +pulseaudio"
# no tests
RESTRICT="test"
DEPEND="
dev-cpp/cairomm:1.16
dev-cpp/glibmm:2.68
dev-cpp/gtkmm:4.0
dev-libs/glib:2
>=dev-libs/gobject-introspection-1.82.0-r2
dev-libs/libsigc++:3
dev-libs/libdbusmenu[gtk3]
>=gui-libs/gtk4-layer-shell-1.3.0[introspection]
dev-libs/openssl:=
dev-libs/wayland
dev-libs/yyjson
gui-libs/gtk:4[wayland]
>=gui-libs/wf-config-0.7.0:=
gui-wm/wayfire:=
media-libs/libepoxy
media-libs/mesa[opengl]
sys-libs/pam
x11-libs/libdrm
x11-libs/libxkbcommon
ddcutil? (
app-misc/ddcutil:=
)
pipewire? (
media-video/pipewire:=
media-video/wireplumber:=
)
pulseaudio? (
media-libs/alsa-lib
media-libs/libpulse
)
"
RDEPEND="${DEPEND}
gui-apps/wayland-logout
"
BDEPEND="
dev-libs/wayland-protocols
dev-util/wayland-scanner
virtual/pkgconfig
"
src_prepare() {
default
if [[ $PV != *9999* ]]; then
# wf-json is bundled as a subproject
# no need to unbundle it, it's a static library containing a wrapper to yyjson
rmdir subprojects/wf-json || die
mv "${WORKDIR}"/wf-json-${WF_JSON_COMMIT} subprojects/wf-json || die
if use pulseaudio; then
# bundled subproject for the volume widget
# static, written to be used as a subproject
rmdir subprojects/gvc || die
mv "${WORKDIR}"/libgnome-volume-control-${GVC_COMMIT} subprojects/gvc || die
fi
fi
}
src_configure () {
local emesonargs=(
"$(meson_feature pipewire wp-mixer-widget)"
"$(meson_feature pulseaudio volume-widget)"
"$(meson_feature ddcutil)"
-Dwayland-logout=false
-Dweather=false
)
meson_src_configure
}
|