blob: ff867b3cbbabed95543541a7b6cc017a5d73a880 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PV="$(ver_cut 1-2)"
DESCRIPTION="Meta ebuild for LXQt, the Lightweight Desktop Environment"
HOMEPAGE="https://lxqt-project.org/"
if [[ ${PV} != *9999* ]]; then
KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86"
fi
LICENSE="metapackage"
SLOT="0"
IUSE="+about admin archiver +desktop-portal discover +display-manager +filemanager gtk
lximage minimal networkmanager nls +policykit powermanagement processviewer screenshot
+sddm ssh-askpass sudo terminal +trash"
REQUIRED_USE="trash? ( filemanager )"
# Note: we prefer kde-frameworks/oxygen-icons over other icon sets, as the initial
# install expects oxygen icons, until the user specifies otherwise (bug 543380)
RDEPEND="
kde-frameworks/oxygen-icons
>=lxde-base/lxmenu-data-0.1.5
>=lxde-base/lxappearance-0.5.5
=lxqt-base/lxqt-config-${MY_PV}*
=lxqt-base/lxqt-globalkeys-${MY_PV}*
=lxqt-base/lxqt-notificationd-${MY_PV}*
=lxqt-base/lxqt-panel-${MY_PV}*
=lxqt-base/lxqt-runner-${MY_PV}*
=lxqt-base/lxqt-session-${MY_PV}*
virtual/ttf-fonts
x11-terms/xterm
=x11-themes/lxqt-themes-${MY_PV}*
about? ( =lxqt-base/lxqt-about-${MY_PV}* )
admin? ( =lxqt-base/lxqt-admin-${MY_PV}* )
archiver? ( app-arch/lxqt-archiver )
desktop-portal? ( gui-libs/xdg-desktop-portal-lxqt )
discover? ( kde-plasma/discover )
display-manager? (
sddm? ( >=x11-misc/sddm-0.11.0 )
!sddm? ( x11-misc/lightdm )
)
filemanager? ( =x11-misc/pcmanfm-qt-${MY_PV}* )
gtk? (
dev-qt/qtstyleplugins
x11-libs/gtk+:2
)
!gtk? ( =lxqt-base/lxqt-qtplugin-${MY_PV}* )
lximage? ( media-gfx/lximage-qt )
!minimal? (
x11-wm/openbox
x11-misc/obconf-qt
)
networkmanager? (
net-misc/networkmanager
gnome-extra/nm-applet
)
nls? ( dev-qt/qttranslations:5 )
policykit? ( =lxqt-base/lxqt-policykit-${MY_PV}* )
powermanagement? ( =lxqt-base/lxqt-powermanagement-${MY_PV}* )
processviewer? ( x11-misc/qps:0 )
screenshot? ( x11-misc/screengrab:0 )
sddm? ( >=x11-misc/sddm-0.11.0 )
ssh-askpass? ( =lxqt-base/lxqt-openssh-askpass-${MY_PV}* )
sudo? ( =lxqt-base/lxqt-sudo-${MY_PV}* )
terminal? ( x11-terms/qterminal:0 )
trash? ( gnome-base/gvfs )
"
|