blob: aac5df5a891d04cd9e4ad50ef71ce9dbf1865d86 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
P_RELEASE="$(ver_cut 1).0"
DESCRIPTION="Meta package for GNOME-Light, merge this package to install"
HOMEPAGE="https://www.gnome.org/"
LICENSE="metapackage"
SLOT="2.0"
IUSE="cups +gnome-shell"
KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
# XXX: Note to developers:
# This is a wrapper for the 'light' GNOME 3 desktop, and should only consist of
# the bare minimum of libs/apps needed. It is basically gnome-base/gnome without
# any apps, but shouldn't be used by users unless they know what they are doing.
# cantarell minimum version is ensured here as gnome-shell depends on it.
RDEPEND="
>=gnome-base/gnome-core-libs-${PV}[cups?]
>=gnome-base/gnome-session-45.0
>=gnome-base/gnome-settings-daemon-45.0[cups?]
>=gnome-base/gnome-control-center-45.1[cups?]
>=gnome-base/nautilus-45.2
gnome-shell? (
>=x11-wm/mutter-45.2
>=dev-libs/gjs-1.78.1
>=gnome-base/gnome-shell-45.2
>=media-fonts/cantarell-0.303.1
)
>=x11-themes/adwaita-icon-theme-${P_RELEASE}
>=x11-themes/gnome-backgrounds-${P_RELEASE}
|| (
>=x11-terms/gnome-terminal-3.50.1
>=gui-apps/gnome-console-45.0
)
"
DEPEND=""
PDEPEND=">=gnome-base/gvfs-1.52.1"
BDEPEND=""
S="${WORKDIR}"
pkg_pretend() {
if ! use gnome-shell; then
# Users probably want to use gnome-flashback, e16, sawfish, etc
ewarn "You're not installing GNOME Shell"
ewarn "You will have to install and manage a window manager by yourself"
fi
}
pkg_postinst() {
# Remember people where to find our project information
elog "Please remember to look at https://wiki.gentoo.org/wiki/Project:GNOME"
elog "for information about the project and documentation."
}
|