blob: 4e7bd55d627b564ac3813a3411f8533151c15544 (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit fcaps meson
DESCRIPTION="Generates a status bar for dzen2, xmobar or similar"
HOMEPAGE="https://i3wm.org/i3status/"
SRC_URI="https://i3wm.org/${PN}/${P}.tar.xz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
IUSE="pulseaudio"
BDEPEND="virtual/pkgconfig"
RDEPEND="
>=dev-libs/yajl-2.0.2
dev-libs/confuse:=
dev-libs/libnl:3
media-libs/alsa-lib
pulseaudio? ( || ( media-libs/libpulse media-sound/apulse[sdk] ) )
"
DEPEND="${RDEPEND}
app-text/asciidoc
app-text/xmlto
"
src_prepare() {
default
# Needs an ALSA master device, bug #840622
# Also skipped in CI:
# https://github.com/i3/i3status/blob/07ad5aef2deea1f10eb6c544593e7a87205f24f8/.github/workflows/main.yml#L34
rm -rf testcases/020-percentliteral-volume || die
}
src_configure() {
local emesonargs=(
$(meson_use pulseaudio pulseaudio)
)
meson_src_configure
}
pkg_postinst() {
fcaps cap_net_admin usr/bin/${PN}
elog "${PN} can be used with any of the following programs:"
elog " i3bar (x11-wm/i3)"
elog " x11-misc/xmobar"
elog " x11-misc/dzen"
elog "Please refer to manual: man ${PN}"
}
|