mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-16 23:19:31 +00:00
New USE flags: * `backlight` - enables module that controls the current backlight level (via login-proxy interface provided by systemd or elogind) * `gps` - enables gps module via `sci-geosciences/gpsd` * `niri` - enables integration with `gui-wm/niri::guru` (via socket, so no build dependency) Closes: https://bugs.gentoo.org/961958 Signed-off-by: Sv. Lockal <lockalsash@gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/43508 Closes: https://github.com/gentoo/gentoo/pull/43508 Signed-off-by: Sam James <sam@gentoo.org>
110 lines
2.7 KiB
Bash
110 lines
2.7 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit meson optfeature
|
|
|
|
DESCRIPTION="Highly customizable Wayland bar for Sway and Wlroots based compositors"
|
|
HOMEPAGE="https://github.com/Alexays/Waybar"
|
|
|
|
if [[ ${PV} == 9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/Alexays/${PN^}.git"
|
|
else
|
|
SRC_URI="https://github.com/Alexays/${PN^}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64 ~arm64"
|
|
S="${WORKDIR}/${PN^}-${PV}"
|
|
fi
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
IUSE="backlight evdev experimental gps jack +libinput +logind mpd mpris network niri pipewire pulseaudio sndio systemd test tray +udev upower wifi"
|
|
REQUIRED_USE="
|
|
upower? ( logind )
|
|
backlight? ( udev logind )
|
|
"
|
|
|
|
RESTRICT="!test? ( test )"
|
|
|
|
BDEPEND="
|
|
>=app-text/scdoc-1.9.2
|
|
dev-util/gdbus-codegen
|
|
dev-util/wayland-scanner
|
|
virtual/pkgconfig
|
|
"
|
|
RDEPEND="
|
|
dev-cpp/cairomm:0
|
|
dev-cpp/glibmm:2
|
|
dev-cpp/gtkmm:3.0
|
|
dev-libs/glib:2
|
|
dev-libs/jsoncpp:=
|
|
dev-libs/libsigc++:2
|
|
>=dev-libs/libfmt-8.1.1:=
|
|
>=dev-libs/spdlog-1.10.0:=
|
|
dev-libs/date:=
|
|
dev-libs/wayland
|
|
>=gui-libs/gtk-layer-shell-0.9.0
|
|
media-video/pipewire:=
|
|
x11-libs/gtk+:3[wayland]
|
|
x11-libs/libxkbcommon
|
|
evdev? ( dev-libs/libevdev )
|
|
gps? ( sci-geosciences/gpsd:= )
|
|
jack? ( virtual/jack )
|
|
libinput? ( dev-libs/libinput:= )
|
|
logind? (
|
|
|| ( sys-apps/systemd
|
|
sys-auth/elogind )
|
|
)
|
|
mpd? ( media-libs/libmpdclient )
|
|
mpris? ( >=media-sound/playerctl-2 )
|
|
network? ( dev-libs/libnl:3 )
|
|
pipewire? ( media-video/wireplumber:0/0.5 )
|
|
pulseaudio? ( media-libs/libpulse )
|
|
sndio? ( media-sound/sndio:= )
|
|
systemd? ( sys-apps/systemd:= )
|
|
tray? (
|
|
dev-libs/libayatana-appindicator
|
|
dev-libs/libdbusmenu[gtk3]
|
|
)
|
|
udev? ( virtual/libudev:= )
|
|
upower? ( sys-power/upower:= )
|
|
wifi? ( sys-apps/util-linux )
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
dev-libs/wayland-protocols
|
|
test? ( dev-cpp/catch:0 )
|
|
"
|
|
|
|
src_configure() {
|
|
local emesonargs=(
|
|
-Dman-pages=enabled
|
|
-Dcava=disabled # depends on LukashonakV/cava fork, but media-sound/cava is karlstav/cava
|
|
$(meson_feature evdev libevdev)
|
|
$(meson_feature gps)
|
|
$(meson_feature jack)
|
|
$(meson_feature libinput)
|
|
$(meson_feature logind)
|
|
$(meson_feature mpd)
|
|
$(meson_feature mpris)
|
|
$(meson_feature network libnl)
|
|
$(meson_feature pulseaudio)
|
|
$(meson_feature pipewire wireplumber)
|
|
$(meson_feature pipewire)
|
|
$(meson_feature sndio)
|
|
$(meson_feature systemd)
|
|
$(meson_feature test tests)
|
|
$(meson_feature tray dbusmenu-gtk)
|
|
$(meson_feature udev libudev)
|
|
$(meson_feature upower upower_glib)
|
|
$(meson_feature wifi rfkill)
|
|
$(meson_use backlight login-proxy)
|
|
$(meson_use experimental)
|
|
$(meson_use niri) # communicates by socket with gui-wm/niri::guru
|
|
)
|
|
meson_src_configure
|
|
}
|
|
|
|
pkg_postinst() {
|
|
optfeature "default icons support" "media-fonts/fontawesome"
|
|
}
|