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: Sat, 01 May 2021 13:39:40
Message-Id: 1619876078.cb6e8e5fe3ff3eb42b137e08062b9c84a5723fd6.mattst88@gentoo
1 commit: cb6e8e5fe3ff3eb42b137e08062b9c84a5723fd6
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 1 13:11:14 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat May 1 13:34:38 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb6e8e5f
7
8 x11-wm/metacity: Version bump to 3.40.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.40.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 104d7a4c8d5..098bb26fefa 100644
18 --- a/x11-wm/metacity/Manifest
19 +++ b/x11-wm/metacity/Manifest
20 @@ -1 +1,2 @@
21 DIST metacity-3.36.1.tar.xz 2063452 BLAKE2B 2dd7b1c63e0b5f87ce4518d7d42d472223717012a46dd826dfda3c88f7e647809e6bf2449a28bd38573342fd5fec94e2233db958658ea4320b22c5451390e451 SHA512 98e73036cca238b713a112194b2cd7a866bcf7d08ef29fb590054b69a1bd807699317a51f9b851f9c474ae2557e27dc9fc4a52d7c436d93ad4a02babef68feeb
22 +DIST metacity-3.40.0.tar.xz 1970260 BLAKE2B 4ccd38b0ceaeef7145d28b1f4e579aebe75e1506af8097e97e5422f39e04ae9d1e259f17cc08dc68fe71d4eb082311c736dbcfafb4a3a775f6ddcce5ce77b859 SHA512 f9eeb0b08bb302c5fb0d174a4df97b253255741d507e94200820d3ebe9e89f179c9096b8e56798836fc84cbe1ac76b27fee6762f3d41373280c4726bc7cba2ff
23
24 diff --git a/x11-wm/metacity/metacity-3.40.0.ebuild b/x11-wm/metacity/metacity-3.40.0.ebuild
25 new file mode 100644
26 index 00000000000..590fac68d68
27 --- /dev/null
28 +++ b/x11-wm/metacity/metacity-3.40.0.ebuild
29 @@ -0,0 +1,56 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
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"
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.22.0: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 +}