mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
108 lines
2.9 KiB
Bash
108 lines
2.9 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit meson
|
|
|
|
if [[ ${PV} == *9999* ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://codeberg.org/dnkl/${PN}.git"
|
|
else
|
|
SRC_URI="https://codeberg.org/dnkl/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
S="${WORKDIR}/${PN}"
|
|
KEYWORDS="~amd64 ~arm64 ~ppc64"
|
|
fi
|
|
|
|
DESCRIPTION="Simplistic and highly configurable status panel for X and Wayland"
|
|
HOMEPAGE="https://codeberg.org/dnkl/yambar"
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
IUSE="core +alsa +backlight +battery +clock +cpu +disk-io +dwl +foreign-toplevel +memory +mpd +i3 +label +network +pipewire +pulseaudio +removables +river +script sway-xkb wayland +X xkb xwindow"
|
|
REQUIRED_USE="
|
|
|| ( wayland X )
|
|
sway-xkb? ( wayland )
|
|
xkb? ( X )
|
|
xwindow? ( X )
|
|
"
|
|
|
|
RDEPEND="
|
|
>=media-libs/fcft-2.4.0
|
|
dev-libs/libyaml
|
|
alsa? ( media-libs/alsa-lib )
|
|
backlight? ( virtual/libudev:= )
|
|
battery? ( virtual/libudev:= )
|
|
mpd? ( media-libs/libmpdclient )
|
|
pipewire? (
|
|
dev-libs/json-c
|
|
media-video/pipewire
|
|
)
|
|
pulseaudio? ( media-libs/libpulse )
|
|
removables? ( virtual/libudev:= )
|
|
sway-xkb? ( dev-libs/json-c )
|
|
x11-libs/pixman
|
|
X? (
|
|
x11-libs/libxcb:0=[xkb]
|
|
x11-libs/xcb-util
|
|
x11-libs/xcb-util-cursor
|
|
x11-libs/xcb-util-wm
|
|
)
|
|
wayland? ( dev-libs/wayland )
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
app-text/scdoc
|
|
>=dev-libs/tllist-1.0.1
|
|
>=dev-build/meson-0.53.0
|
|
virtual/pkgconfig
|
|
wayland? (
|
|
dev-libs/wayland-protocols
|
|
dev-util/wayland-scanner
|
|
)
|
|
"
|
|
|
|
src_configure() {
|
|
local emesonargs=(
|
|
$(meson_feature wayland backend-wayland)
|
|
$(meson_feature X backend-x11)
|
|
$(meson_use core core-plugins-as-shared-libraries)
|
|
$(meson_feature alsa plugin-alsa)
|
|
$(meson_feature backlight plugin-backlight)
|
|
$(meson_feature battery plugin-battery)
|
|
$(meson_feature clock plugin-clock)
|
|
$(meson_feature cpu plugin-cpu)
|
|
$(meson_feature disk-io plugin-disk-io)
|
|
$(meson_feature dwl plugin-dwl)
|
|
$(meson_feature foreign-toplevel plugin-foreign-toplevel)
|
|
$(meson_feature memory plugin-mem)
|
|
$(meson_feature mpd plugin-mpd)
|
|
$(meson_feature i3 plugin-i3)
|
|
$(meson_feature label plugin-label)
|
|
$(meson_feature network plugin-network)
|
|
$(meson_feature pipewire plugin-pipewire)
|
|
$(meson_feature pulseaudio plugin-pulse)
|
|
$(meson_feature removables plugin-removables)
|
|
$(meson_feature river plugin-river)
|
|
$(meson_feature script plugin-script)
|
|
$(meson_feature sway-xkb plugin-sway-xkb)
|
|
$(meson_feature xkb plugin-xkb)
|
|
$(meson_feature xwindow plugin-xwindow)
|
|
-Dwerror=false
|
|
)
|
|
meson_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
meson_src_install
|
|
if use core; then
|
|
mv "${D}"/usr/lib64/yambar/libdynlist.so "${D}"/usr/lib64/libdynlist.so || die
|
|
fi
|
|
rm -rf "${D}/usr/share/doc/${PN}" || die
|
|
}
|
|
|
|
pkg_postinst() {
|
|
ewarn "Warning: if you are upgrading from 1.8.0, please note that there are breaking changes that might affect your config.yml file."
|
|
ewarn "See the changelog for more information"
|
|
ewarn "https://codeberg.org/dnkl/yambar/releases/tag/1.9.0"
|
|
}
|