25 lines
576 B
Bash
25 lines
576 B
Bash
|
# Copyright 2024 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=8
|
||
|
|
||
|
inherit git-r3 cmake
|
||
|
|
||
|
DESCRIPTION="LXQt wayland session"
|
||
|
HOMEPAGE="https://github.com/lxqt/lxqt-wayland-session"
|
||
|
EGIT_REPO_URI="https://github.com/lxqt/lxqt-wayland-session.git"
|
||
|
#SRC_URI=""
|
||
|
|
||
|
IUSE="compositor"
|
||
|
|
||
|
LICENSE="GPL3"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64"
|
||
|
PATCHES=(
|
||
|
"${FILESDIR}/default-wayfire.patch"
|
||
|
)
|
||
|
|
||
|
DEPEND="lxqt-base/lxqt-session app-misc/qtxdg-tools kde-plasma/layer-shell-qt compositor? ( gui-wm/wayfire )"
|
||
|
RDEPEND="${DEPEND}"
|
||
|
BDEPEND="dev-util/lxqt-build-tools"
|