gui-apps/sfwbar: version bump

Signed-off-by: Lev Babiev <harley@hosers.org>
This commit is contained in:
Lev Babiev
2024-01-02 07:58:24 +00:00
parent 45ff42e7f7
commit a729196640
3 changed files with 54 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST sfwbar-1.0_beta12.tar.gz 362373 BLAKE2B b1adda8a85c90d9459c4716c10eac501062476c4a039be7c8a8ebbcbfe63bb984a6869ed43157d24c02103e996d38e0d55e0d4b0df447f6e838a82bb7b725fc8 SHA512 b817ae0a0a77f13c6347ce50308b716ab30d7fc1e7920bf365ef34b332e07736bb4c08ec260195166b3cdc9cbafccabfd656afa7679f539a0a035d12ad519832
DIST sfwbar-1.0_beta13.tar.gz 370717 BLAKE2B 1728c823b8f077ed3ddf952138cb7a15c70628df60b9dcdc43abffd7e7b7b39ddee785063b2b144889dbd265cc4851fe953bf31aa0393297b7cf3029019f9224 SHA512 e838374bfabea6cdbb71ee2e8f0e8ea814cb874ecf617b250959aec81da3a18dd178e3257ead06bf41be55a0d1492312979eab11318cbc7da913a0881e247d67
DIST sfwbar-1.0_beta14.tar.gz 386347 BLAKE2B 1b0549f43fa06578d9fd981c1480040b22f4670c9ed82c04e2b16bdb288468febecc50a7de0688ba8b017b3073c792eea5fadbf051b63d7cf86b659bf4745d83 SHA512 e1a1c9d0a8b3c80c3ef043c6f22bb2b915cdf1f36da6ce306f66754af2a68c2077f4e473bd998d6d6282db5fc0652b7b7bbbe333a39390e7e38129163a398055

View File

@@ -7,6 +7,9 @@
</maintainer>
<use>
<flag name="mpd">Add support for Music Player Daemon</flag>
<flag name="pulse">Add support for Pulse Audio</flag>
<flag name="alsa">Add support for ALSA sound server</flag>
<flag name="X">Add support for xkb maps</flag>
</use>
<upstream>
<remote-id type="github">LBCrion/sfwbar</remote-id>

View File

@@ -0,0 +1,50 @@
# Copyright 2020-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson xdg
DESCRIPTION="S* Floating Window Bar"
HOMEPAGE="https://github.com/LBCrion/sfwbar"
SRC_URI="https://github.com/LBCrion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
LICENSE="GPL-3"
SLOT="0"
IUSE="X mpd pulseaudio alsa"
COMMON_DEPEND="
dev-libs/glib:2
dev-libs/json-c:=
dev-libs/wayland
gui-libs/gtk-layer-shell
>=x11-libs/gtk+-3.22.0:3[introspection,wayland]
X? ( x11-libs/libxkbcommon )
mpd? ( media-libs/libmpdclient )
pulseaudio? ( media-libs/libpulse[glib] )
alsa? ( media-libs/alsa-lib )
"
RDEPEND="${COMMON_DEPEND}
virtual/freedesktop-icon-theme
"
DEPEND="${COMMON_DEPEND}
>=dev-libs/wayland-protocols-1.17
"
BDEPEND="dev-util/wayland-scanner"
src_configure() {
local emesonargs=(
$(meson_feature alsa)
$(meson_feature mpd)
$(meson_feature pulseaudio pulse)
$(meson_feature X xkb)
-Dnetwork=enabled
-Didleinhibit=enabled
-Dbluez=enabled
-Dbsdctl=disabled
-Diwd=enabled
)
meson_src_configure
}