blob: ad035f0d7c2dce72e0e014433db16654c4948edb (
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
|
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils meson ninja-utils
DESCRIPTION="i3-compatible Wayland window manager"
HOMEPAGE="http://swaywm.org/"
SRC_URI="https://github.com/swaywm/sway/archive/1.0-beta.2.tar.gz -> ${P}-b2.tar.gz"
S="${WORKDIR}/sway-1.0-beta.2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
# TODO
IUSE="wallpapers bash-completion zsh-completion +xwayland"
RDEPEND="
>=dev-libs/wlroots-0.2
xwayland? ( dev-libs/wlroots[x11-backend] )
dev-libs/wayland
x11-base/xorg-server[wayland]
>=dev-libs/libinput-1.6.0
sys-libs/libcap
dev-libs/libpcre
>=dev-libs/json-c-0.13:0=
x11-libs/pango
x11-libs/cairo
x11-libs/gdk-pixbuf[jpeg]
virtual/pam
>=sys-apps/dbus-1.10
"
DEPEND="${RDEPEND}
dev-util/meson
app-text/scdoc
virtual/pkgconfig"
src_configure() {
local emesonargs=(
-Ddefault-wallpaper=$(usex wallpapers true false)
-Dzsh-completions=$(usex zsh-completion true false)
-Dbash-completions=$(usex bash-completion true false)
-Denable-xwayland=$(usex xwayland true false)
)
meson_src_configure
}
|