diff options
author | Guillermo Joandet <gjoandet@gmail.com> | 2022-12-28 11:05:51 -0300 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2023-01-01 10:36:34 -0500 |
commit | d0583dd0f31155d8797ca5c96f153f2e39948fc6 (patch) | |
tree | 2286a7daa69eaedd6e31ce744ab8c82b52d7692f /x11-wm | |
parent | x11-misc/gpaste: remove stale VALA_MIN_API_VERSION (diff) | |
download | gentoo-d0583dd0f31155d8797ca5c96f153f2e39948fc6.tar.gz gentoo-d0583dd0f31155d8797ca5c96f153f2e39948fc6.tar.bz2 gentoo-d0583dd0f31155d8797ca5c96f153f2e39948fc6.zip |
x11-wm/metacity: Version bump to 3.46.1
Closes: https://github.com/gentoo/gentoo/pull/28873
Signed-off-by: Guillermo Joandet <gjoandet@gmail.com>
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/metacity/Manifest | 1 | ||||
-rw-r--r-- | x11-wm/metacity/metacity-3.46.1.ebuild | 56 |
2 files changed, 57 insertions, 0 deletions
diff --git a/x11-wm/metacity/Manifest b/x11-wm/metacity/Manifest index 50a0520ad0f2..60129c1242f0 100644 --- a/x11-wm/metacity/Manifest +++ b/x11-wm/metacity/Manifest @@ -1 +1,2 @@ DIST metacity-3.46.0.tar.xz 1958124 BLAKE2B f7db5d38ab2c9aef8809f02ada76a453e712a471d59c3c991d0e1a5cfa1b9d37f901f38ef9057301a6232fca49846af0e80c6792bb5dcffa85694f64983d918f SHA512 5a203a4190dc919ec83fa3f4f7a86aa1594c82051b4e5afb76eb11acb38c573367deca85dead64564e2e96304903cd84eb5b4fc904ddc0672677114103d299b2 +DIST metacity-3.46.1.tar.xz 1959060 BLAKE2B 84dbe09dd8d6c7ce1894ed806cdc6cc5cc6c302ddf3aae5f7ef479f6c02ef6c2091bb1d815603f5d6e52d583192d43f47d835327e9e75cd626081becbf84bd8e SHA512 f0d8424868edf8209eb4cbd003de68ab892a5b515a1aca7b3626bf52eb8451cb0477ab35f702177c9654604e06adce46471897edcb54931d95e60b36bef92b20 diff --git a/x11-wm/metacity/metacity-3.46.1.ebuild b/x11-wm/metacity/metacity-3.46.1.ebuild new file mode 100644 index 000000000000..c27fd8cb6d9d --- /dev/null +++ b/x11-wm/metacity/metacity-3.46.1.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit gnome2 + +DESCRIPTION="GNOME Flashback window manager" +HOMEPAGE="https://gitlab.gnome.org/GNOME/metacity/" + +LICENSE="GPL-2+" +SLOT="0" +IUSE="+libcanberra vulkan xinerama" +KEYWORDS="~amd64 ~riscv" + +# TODO: libgtop could be optional, but no knob +RDEPEND=" + >=dev-libs/glib-2.67.3:2 + >=x11-libs/gtk+-3.24.6:3[X] + >=x11-libs/pango-1.2.0 + >=x11-libs/libXcomposite-0.3 + >=x11-libs/libXres-1.2 + >=gnome-base/gsettings-desktop-schemas-3.3.0 + x11-libs/libXfixes + x11-libs/libXrender + x11-libs/libXdamage + x11-libs/libXpresent + libcanberra? ( media-libs/libcanberra[gtk3] ) + >=x11-libs/startup-notification-0.7 + x11-libs/libXcursor + gnome-base/libgtop:2= + x11-libs/libX11 + xinerama? ( x11-libs/libXinerama ) + x11-libs/libXrandr + x11-libs/libXext + x11-libs/libICE + x11-libs/libSM + gnome-extra/zenity + vulkan? ( media-libs/vulkan-loader ) +" +DEPEND="${RDEPEND} + x11-base/xorg-proto +" +BDEPEND=" + vulkan? ( dev-util/vulkan-headers ) + dev-util/glib-utils + >=sys-devel/gettext-0.19.6 + virtual/pkgconfig +" # autoconf-archive for eautoreconf + +src_configure() { + gnome2_src_configure \ + --disable-static \ + $(use_enable libcanberra canberra) \ + $(use_enable xinerama) \ + $(use_enable vulkan) +} |