mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-22 23:19:14 +02:00
42 lines
1 KiB
Bash
42 lines
1 KiB
Bash
# Copyright 2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION="LXQt Wayland Session Support"
|
|
HOMEPAGE="https://lxqt-project.org/"
|
|
|
|
if [[ ${PV} == 9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
|
|
else
|
|
SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz"
|
|
KEYWORDS="amd64"
|
|
fi
|
|
|
|
LICENSE="BSD CC-BY-SA-4.0 GPL-2 GPL-3 LGPL-2.1 MIT"
|
|
SLOT="0"
|
|
|
|
BDEPEND="
|
|
>=dev-qt/qttools-6.6:6[linguist]
|
|
>=dev-util/lxqt-build-tools-2.2.0
|
|
virtual/pkgconfig
|
|
"
|
|
DEPEND="
|
|
>=app-misc/qtxdg-tools-4.2.0
|
|
kde-plasma/layer-shell-qt:6
|
|
>=lxqt-base/lxqt-session-2.1.0
|
|
x11-misc/xdg-user-dirs
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
pkg_postinst() {
|
|
einfo "By default, the labwc compositor will be used."
|
|
einfo "To use something else, define, for example, the following in '.config/lxqt/session.conf':"
|
|
einfo " compositor=kwin_wayland"
|
|
einfo ""
|
|
einfo "For more configuration details, and a list of supported compositors, see:"
|
|
einfo " /usr/share/doc/${P}/README*"
|
|
}
|