Files
gentoo/gui-apps/wf-shell/wf-shell-0.11.0.ebuild
Viorel Munteanu 1c6279a954 gui-apps/wf-shell: add 0.11.0
Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
2026-08-23 18:26:45 +03:00

82 lines
1.6 KiB
Bash

# 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 ~arm64"
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
"
PATCHES=(
"${FILESDIR}"/${PN}-0.11-fix-network-crash.patch
)
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
}