Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/metacity/
Date: Sun, 27 Mar 2022 18:58:36
Message-Id: 1648407475.77d50f8824bbaabb273439f40950777072fa4a45.mattst88@gentoo
1 commit: 77d50f8824bbaabb273439f40950777072fa4a45
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 27 18:53:34 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 27 18:57:55 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77d50f88
7
8 x11-wm/metacity: Version bump to 3.44.0
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 x11-wm/metacity/Manifest | 1 +
13 x11-wm/metacity/metacity-3.44.0.ebuild | 56 ++++++++++++++++++++++++++++++++++
14 2 files changed, 57 insertions(+)
15
16 diff --git a/x11-wm/metacity/Manifest b/x11-wm/metacity/Manifest
17 index e92d2adf9a1d..932abed36a5a 100644
18 --- a/x11-wm/metacity/Manifest
19 +++ b/x11-wm/metacity/Manifest
20 @@ -1 +1,2 @@
21 DIST metacity-3.42.0.tar.xz 1969372 BLAKE2B 0f6e5ab3f84dcc2e9c776a2eed9725311e5395d8761f2d4bc618d92d623c761252bee62bc4e17e4bea65706e248fecfa4c8a031d2be7d2728e0e736a38f23264 SHA512 5b2f22a798e50a332384acf7bc40104c1978184cb4448dcd55d35196e4736388c1fee6e0e63962f947354a17b3bc72a635413e7285224c8b3c1872379e47f24d
22 +DIST metacity-3.44.0.tar.xz 1973772 BLAKE2B 24582202543d8f1c29632843615b841be1ec9b03fded4f22d92b50249d7ad9c2978f290633e5a9483f3dec0005b48d8f824e5dd1e4f6f42a52963285b8245f42 SHA512 3538a08633e13f727f8a8ff0c4dcf8cee411d3c4fa011b2391d94e47f3c27516b1fce9f742abb2d845571ae9c148097ced94b33d152919981eda4133e2eaa87e
23
24 diff --git a/x11-wm/metacity/metacity-3.44.0.ebuild b/x11-wm/metacity/metacity-3.44.0.ebuild
25 new file mode 100644
26 index 000000000000..842bd646d0ef
27 --- /dev/null
28 +++ b/x11-wm/metacity/metacity-3.44.0.ebuild
29 @@ -0,0 +1,56 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +inherit gnome2
35 +
36 +DESCRIPTION="GNOME Flashback window manager"
37 +HOMEPAGE="https://gitlab.gnome.org/GNOME/metacity/"
38 +
39 +LICENSE="GPL-2+"
40 +SLOT="0"
41 +IUSE="+libcanberra vulkan xinerama"
42 +KEYWORDS="~amd64 ~riscv"
43 +
44 +# TODO: libgtop could be optional, but no knob
45 +RDEPEND="
46 + >=dev-libs/glib-2.67.3:2
47 + >=x11-libs/gtk+-3.24.6:3[X]
48 + >=x11-libs/pango-1.2.0
49 + >=x11-libs/libXcomposite-0.3
50 + >=gnome-base/gsettings-desktop-schemas-3.3.0
51 + x11-libs/libXfixes
52 + x11-libs/libXrender
53 + x11-libs/libXdamage
54 + x11-libs/libXres
55 + x11-libs/libXpresent
56 + libcanberra? ( media-libs/libcanberra[gtk3] )
57 + >=x11-libs/startup-notification-0.7
58 + x11-libs/libXcursor
59 + gnome-base/libgtop:2=
60 + x11-libs/libX11
61 + xinerama? ( x11-libs/libXinerama )
62 + x11-libs/libXrandr
63 + x11-libs/libXext
64 + x11-libs/libICE
65 + x11-libs/libSM
66 + gnome-extra/zenity
67 + vulkan? ( media-libs/vulkan-loader )
68 +"
69 +DEPEND="${RDEPEND}
70 + x11-base/xorg-proto
71 +"
72 +BDEPEND="
73 + vulkan? ( dev-util/vulkan-headers )
74 + dev-util/glib-utils
75 + >=sys-devel/gettext-0.19.6
76 + virtual/pkgconfig
77 +" # autoconf-archive for eautoreconf
78 +
79 +src_configure() {
80 + gnome2_src_configure \
81 + --disable-static \
82 + $(use_enable libcanberra canberra) \
83 + $(use_enable xinerama) \
84 + $(use_enable vulkan)
85 +}