blob: 04555809c553aed3a37a184f05d9bb0f4189a047 (
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
|
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="Wayland compositor written with laptops and touchpads in mind"
HOMEPAGE="https://github.com/jbuchermn/newm"
SRC_URI="https://github.com/jbuchermn/newm/archive/refs/tags/v${PV}alpha.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="custom_renderer xwayland"
DEPEND="dev-python/dasbus
dev-python/psutil
dev-python/pyfiglet
dev-python/python-pam
dev-python/pycairo
dev-python/pywm
dev-python/thefuzz
gui-libs/wlroots"
RDEPEND="${DEPEND}"
BDEPEND=""
src_configure(){
local emesonargs=(
$(meson_feature custom_renderer)
$(meson_feature xwayland)
)
meson_src_configure
}
|