blob: eeb05caa06375e93c4213f74f5bde20225a30909 (
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
|
# Copyright 2020-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="dynamic display configuration (autorandr for wayland)"
HOMEPAGE="https://wayland.emersion.fr/kanshi/ https://sr.ht/~emersion/kanshi/"
SRC_URI="
https://git.sr.ht/~emersion/kanshi/archive/v${PV}.tar.gz
-> ${P}.tar.gz
"
S=${WORKDIR}/${PN}-v${PV}
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
IUSE="+man varlink"
RDEPEND="
dev-libs/wayland
varlink? ( dev-libs/libvarlink )
"
BDEPEND="
${RDEPEND}
virtual/pkgconfig
dev-libs/wayland-protocols
dev-util/wayland-scanner
man? ( >=app-text/scdoc-1.9.3 )
"
src_configure() {
local emesonargs=(
$(meson_feature man man-pages)
$(meson_feature varlink ipc)
)
meson_src_configure
}
|