diff options
author | Matt Turner <mattst88@gentoo.org> | 2022-02-15 19:47:20 -0800 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2022-02-15 19:48:14 -0800 |
commit | 3cc362444c6ba10452f0c4b6fe27b339e7858ae7 (patch) | |
tree | 212997d0337c108a4e5c5f5bca4e768b43dbf281 /gnome-extra/gnome-shell-extensions/gnome-shell-extensions-41.2.ebuild | |
parent | gnome-base/gnome-shell: Version bump to 41.4 (diff) | |
download | gentoo-3cc362444c6ba10452f0c4b6fe27b339e7858ae7.tar.gz gentoo-3cc362444c6ba10452f0c4b6fe27b339e7858ae7.tar.bz2 gentoo-3cc362444c6ba10452f0c4b6fe27b339e7858ae7.zip |
gnome-extra/gnome-shell-extensions: Version bump to 41.2
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'gnome-extra/gnome-shell-extensions/gnome-shell-extensions-41.2.ebuild')
-rw-r--r-- | gnome-extra/gnome-shell-extensions/gnome-shell-extensions-41.2.ebuild | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-41.2.ebuild b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-41.2.ebuild new file mode 100644 index 000000000000..c4e900fc522e --- /dev/null +++ b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-41.2.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit gnome.org readme.gentoo-r1 meson xdg + +DESCRIPTION="JavaScript extensions for GNOME Shell" +HOMEPAGE="https://wiki.gnome.org/Projects/GnomeShell/Extensions" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" + +DEPEND=" + >=dev-libs/glib-2.26:2 + >=gnome-base/libgtop-2.28.3[introspection] + >=app-eselect/eselect-gnome-shell-extensions-20111211 +" +RDEPEND="${DEPEND} + >=dev-libs/gjs-1.29 + dev-libs/gobject-introspection:= + dev-libs/atk[introspection] + gnome-base/gnome-menus:3[introspection] + =gnome-base/gnome-shell-$(ver_cut 1)* + media-libs/clutter:1.0[introspection] + net-libs/telepathy-glib[introspection] + x11-libs/gdk-pixbuf:2[introspection] + x11-libs/gtk+:3[introspection] + x11-libs/pango[introspection] + x11-themes/adwaita-icon-theme + >=x11-wm/mutter-3.32[introspection] +" +BDEPEND=" + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +DISABLE_AUTOFORMATTING="yes" +DOC_CONTENTS="Installed extensions installed are initially disabled by default. +To change the system default and enable some extensions, you can use +# eselect gnome-shell-extensions + +Alternatively, to enable/disable extensions on a per-user basis, +you can use the gnome-extensions-app (included with gnome-shell), +https://extensions.gnome.org/ web interface, or modify the +org.gnome.shell enabled-extensions gsettings key from the command +line or a script." + +PATCHES=( + "${FILESDIR}"/${PN}-41.1-meson-0.61.patch +) + +src_configure() { + meson_src_configure \ + -Dextension_set=all \ + -Dclassic_mode=true +} + +src_install() { + meson_src_install + readme.gentoo_create_doc +} + +pkg_postinst() { + xdg_pkg_postinst + + ebegin "Updating list of installed extensions" + eselect gnome-shell-extensions update + eend $? + + readme.gentoo_print_elog +} |