forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug: https://bugs.gentoo.org/680274 Package-Manager: Portage-2.3.69, Repoman-2.3.12 Signed-off-by: Mart Raudsepp <[email protected]>
- Loading branch information
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Copyright 1999-2019 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
DESCRIPTION="Meta package for GNOME 3, 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" | ||
|
||
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-3.32.0 | ||
>=x11-wm/mutter-${PV} | ||
>=gnome-base/gnome-shell-${PV}[bluetooth?] | ||
>=media-fonts/cantarell-0.111 | ||
>=x11-themes/gnome-backgrounds-3.32.0 | ||
x11-themes/sound-theme-freedesktop | ||
accessibility? ( | ||
>=app-accessibility/at-spi2-atk-2.32.0 | ||
>=app-accessibility/at-spi2-core-2.32.1 | ||
>=app-accessibility/orca-3.32.0 | ||
>=gnome-extra/mousetweaks-3.32.0 ) | ||
classic? ( >=gnome-extra/gnome-shell-extensions-3.32.1 ) | ||
extras? ( >=gnome-base/gnome-extra-apps-${PV} ) | ||
" | ||
PDEPEND=">=gnome-base/gvfs-1.40.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." | ||
} |