Files
guru/gui-wm/cage/cage-0.1.2.1.ebuild
Andrew Ammerlaan ad04c41e49 gui-wm/cage: fix KEYWORDS
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
2020-07-17 11:43:15 +02:00

37 lines
640 B
Bash

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
EGIT_REPO_URI="https://github.com/Hjdskes/${PN}"
case "${PV}" in
9999)
inherit git-r3
;;
*)
SRC_URI="${EGIT_REPO_URI}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
esac
inherit meson
DESCRIPTION="A Wayland kiosk"
HOMEPAGE="https://www.hjdskes.nl/projects/${PN}"
LICENSE="MIT"
SLOT="0"
IUSE="-X"
RDEPEND="
>=gui-libs/wlroots-0.11
x11-libs/libxkbcommon
X? (
gui-libs/wlroots[X]
x11-libs/libxkbcommon[X]
)
"
DEPEND="${RDEPEND}"
src_configure() {
meson_src_configure $(meson_use X xwayland)
}