diff options
author | Pascal Jäger <pascal.jaeger@leimstift.de> | 2022-10-04 19:28:35 +0200 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2022-10-07 18:29:57 -0400 |
commit | c8ba7980c6ff9044340a1667e8c0ce323f570301 (patch) | |
tree | 124d14a99a1442d1099c6ea17f84710f0a1e80f8 /x11-wm/metacity | |
parent | gnome-base/gnome-flashback: Version bump to 3.46.0 (diff) | |
download | gentoo-c8ba7980c6ff9044340a1667e8c0ce323f570301.tar.gz gentoo-c8ba7980c6ff9044340a1667e8c0ce323f570301.tar.bz2 gentoo-c8ba7980c6ff9044340a1667e8c0ce323f570301.zip |
x11-wm/metacity: Version bump to 3.46.0
Signed-off-by: Pascal Jäger <pascal.jaeger@leimstift.de>
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'x11-wm/metacity')
-rw-r--r-- | x11-wm/metacity/Manifest | 1 | ||||
-rw-r--r-- | x11-wm/metacity/metacity-3.46.0.ebuild | 56 |
2 files changed, 57 insertions, 0 deletions
diff --git a/x11-wm/metacity/Manifest b/x11-wm/metacity/Manifest index ac7839844061..8fc059b0e5eb 100644 --- a/x11-wm/metacity/Manifest +++ b/x11-wm/metacity/Manifest @@ -1 +1,2 @@ DIST metacity-3.44.0.tar.xz 1973772 BLAKE2B 24582202543d8f1c29632843615b841be1ec9b03fded4f22d92b50249d7ad9c2978f290633e5a9483f3dec0005b48d8f824e5dd1e4f6f42a52963285b8245f42 SHA512 3538a08633e13f727f8a8ff0c4dcf8cee411d3c4fa011b2391d94e47f3c27516b1fce9f742abb2d845571ae9c148097ced94b33d152919981eda4133e2eaa87e +DIST metacity-3.46.0.tar.xz 1958124 BLAKE2B f7db5d38ab2c9aef8809f02ada76a453e712a471d59c3c991d0e1a5cfa1b9d37f901f38ef9057301a6232fca49846af0e80c6792bb5dcffa85694f64983d918f SHA512 5a203a4190dc919ec83fa3f4f7a86aa1594c82051b4e5afb76eb11acb38c573367deca85dead64564e2e96304903cd84eb5b4fc904ddc0672677114103d299b2 diff --git a/x11-wm/metacity/metacity-3.46.0.ebuild b/x11-wm/metacity/metacity-3.46.0.ebuild new file mode 100644 index 000000000000..c27fd8cb6d9d --- /dev/null +++ b/x11-wm/metacity/metacity-3.46.0.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) +} |