blob: ea44550f23b04570cb0d520674838112712a3b1d (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson git-r3
DESCRIPTION="An implementation of a synergy client for wlroots compositors."
HOMEPAGE="https://github.com/r-c-f/waynergy"
EGIT_REPO_URI="https://github.com/r-c-f/${PN}.git"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-libs/libretls
dev-libs/wayland
dev-util/wayland-scanner
gui-apps/wl-clipboard
gui-libs/wlroots
x11-libs/libxkbcommon"
RDEPEND="${DEPEND}"
BDEPEND=""
src_configure() {
meson_src_configure
}
|