mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-06 13:15:19 +02:00
This is just a meta package that has all its minimum deps stable by now. Closes: https://bugs.gentoo.org/928785 Signed-off-by: Mart Raudsepp <leio@gentoo.org>
51 lines
1.3 KiB
Bash
51 lines
1.3 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Meta package for GNOME, merge this package to install"
|
|
HOMEPAGE="https://www.gnome.org/"
|
|
|
|
LICENSE="metapackage"
|
|
SLOT="2.0" # Cannot be installed at the same time as gnome-2
|
|
|
|
# when unmasking for an arch
|
|
# double check none of the deps are still masked !
|
|
KEYWORDS="amd64 arm64 ~loong ~ppc64 ~riscv x86"
|
|
|
|
IUSE="accessibility +bluetooth +classic cups +extras"
|
|
|
|
S=${WORKDIR}
|
|
|
|
# TODO: check accessibility completeness
|
|
RDEPEND="
|
|
>=gnome-base/gnome-core-libs-${PV}[cups?]
|
|
>=gnome-base/gnome-core-apps-${PV}[cups?,bluetooth?]
|
|
|
|
>=gnome-base/gdm-45.0.1
|
|
|
|
>=x11-wm/mutter-45.2
|
|
>=gnome-base/gnome-shell-45.2
|
|
>=media-fonts/cantarell-0.303.1
|
|
|
|
>=x11-themes/gnome-backgrounds-45.0
|
|
x11-themes/sound-theme-freedesktop
|
|
|
|
accessibility? (
|
|
>=app-accessibility/at-spi2-core-2.50.0
|
|
>=app-accessibility/orca-45.1
|
|
>=gnome-extra/mousetweaks-3.32.0
|
|
)
|
|
classic? ( >=gnome-extra/gnome-shell-extensions-45.2 )
|
|
extras? ( >=gnome-base/gnome-extra-apps-${PV} )
|
|
"
|
|
PDEPEND=">=gnome-base/gvfs-1.52.1[udisks]"
|
|
|
|
DEPEND=""
|
|
BDEPEND=""
|
|
|
|
pkg_postinst() {
|
|
# Remind 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."
|
|
}
|