blob: 88964cfb433513665635ca4cc5c072ed58b462de (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
EGIT_REPO_URI="https://github.com/cyclopsian/${PN}"
case "${PV}" in
"9999")
inherit git-r3
;;
*)
SRC_URI="${EGIT_REPO_URI}/archive/${PV}.tar.gz -> ${P}.tar.gz"
esac
inherit meson xdg
DESCRIPTION="GUI display configurator for wlroots compositors"
HOMEPAGE="https://cyclopsian.github.io/${PN}"
BDEPEND="
x11-libs/gtk+:3[wayland]
gui-libs/wlroots"
DEPEND="${BDEPEND}"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS=""
|