blob: e07020da16aa63b0cc7ea3e30ce0955f626c966b (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="A Wayland kiosk"
HOMEPAGE="https://www.hjdskes.nl/projects/cage/ https://github.com/Hjdskes/cage"
COMMIT="34de3f7bac48aae64bbbb09a4c10900e0150e968"
S="${WORKDIR}/${PN}-${COMMIT}"
if [[ "${PV}" == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/Hjdskes/cage"
else
SRC_URI="https://github.com/Hjdskes/cage/archive/${COMMIT}/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="MIT"
SLOT="0"
IUSE="X"
RDEPEND="
dev-libs/wayland
x11-libs/libxkbcommon[X?]
X? ( gui-libs/wlroots:0.18[X,x11-backend] )
!X? ( gui-libs/wlroots:0.18 )
"
DEPEND="${RDEPEND}"
|