Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/muffin/
Date: Wed, 09 Sep 2020 02:15:53
Message-Id: 1599617700.4f2a11c9ed614797d4f171d87c02898a461f027b.sam@gentoo
1 commit: 4f2a11c9ed614797d4f171d87c02898a461f027b
2 Author: Matthew S. Turnbull <sparky <AT> bluefang-logic <DOT> com>
3 AuthorDate: Wed Jul 29 15:52:27 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 9 02:15:00 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f2a11c9
7
8 x11-wm/muffin: 4.6.3 version bump
9
10 Switch to EAPI=7.
11
12 Bug: https://bugs.gentoo.org/733544
13 Package-Manager: Portage-2.3.103, Repoman-2.3.23
14 Signed-off-by: Matthew S. Turnbull <sparky <AT> bluefang-logic.com>
15 Signed-off-by: Sam James <sam <AT> gentoo.org>
16
17 x11-wm/muffin/Manifest | 1 +
18 x11-wm/muffin/muffin-4.6.3.ebuild | 97 +++++++++++++++++++++++++++++++++++++++
19 2 files changed, 98 insertions(+)
20
21 diff --git a/x11-wm/muffin/Manifest b/x11-wm/muffin/Manifest
22 index 59b28ebff37..cbe739adfae 100644
23 --- a/x11-wm/muffin/Manifest
24 +++ b/x11-wm/muffin/Manifest
25 @@ -1 +1,2 @@
26 DIST muffin-4.4.3.tar.gz 5194631 BLAKE2B 10221560daed72f776f6543b8d044442fe8f501ec42cc2f6ce15f0d00f26fe74d3dbe763145c48ecf18d0f821277753a71a607e8c705e6dc624c16d7f17b9785 SHA512 a11418f9ab6f6dee0f4df45f06ec6df5666490effec7468fd4c1e9cb6b537448f1aaf0fe743b208194488b86de0b269ffdc442ee677b45940761bbdfa4fafed3
27 +DIST muffin-4.6.3.tar.gz 5196072 BLAKE2B 1b8c0eeab13c35fc0b66898328f378331cb2bfc78b27a48a8f9e22c842df1a223613f27f5b29fe28c1edaaeb59972262024ed656dfabafa6c9454c4c4c0a74b9 SHA512 c07d83656d3a9164ad488b500f98acb88e0c8e2374af858776ff27dbe90880db4310405505d79539222ba3b4ddedb22934ef3e0f1f6198dc7b36986b784b48f5
28
29 diff --git a/x11-wm/muffin/muffin-4.6.3.ebuild b/x11-wm/muffin/muffin-4.6.3.ebuild
30 new file mode 100644
31 index 00000000000..bbcced960c7
32 --- /dev/null
33 +++ b/x11-wm/muffin/muffin-4.6.3.ebuild
34 @@ -0,0 +1,97 @@
35 +# Copyright 1999-2020 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +inherit autotools eutils gnome2-utils xdg-utils
40 +
41 +DESCRIPTION="Compositing window manager forked from Mutter for use with Cinnamon"
42 +HOMEPAGE="https://projects.linuxmint.com/cinnamon/"
43 +SRC_URI="https://github.com/linuxmint/muffin/archive/${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="GPL-2+"
46 +SLOT="0"
47 +IUSE="+introspection test xinerama"
48 +KEYWORDS="~amd64 ~x86"
49 +RESTRICT="test"
50 +
51 +RDEPEND="
52 + >=x11-libs/pango-1.2[X,introspection?]
53 + >=x11-libs/cairo-1.14:=[X]
54 + x11-libs/gdk-pixbuf:2[introspection?]
55 + >=x11-libs/gtk+-3.9.12:3[X,introspection?]
56 + >=dev-libs/glib-2.37.3:2[dbus]
57 + >=gnome-extra/cinnamon-desktop-4.4:0=
58 + >=media-libs/libcanberra-0.26[gtk3]
59 + >=x11-libs/libXcomposite-0.3
60 + >=x11-libs/startup-notification-0.7:=
61 +
62 + x11-libs/libICE
63 + x11-libs/libSM
64 + x11-libs/libX11
65 + x11-libs/libXcomposite
66 + x11-libs/libXcursor
67 + x11-libs/libXdamage
68 + x11-libs/libXext
69 + x11-libs/libXfixes
70 + x11-libs/libXrandr
71 + x11-libs/libXrender
72 + virtual/opengl
73 +
74 + gnome-extra/zenity
75 +
76 + introspection? ( >=dev-libs/gobject-introspection-0.9.5:= )
77 + xinerama? ( x11-libs/libXinerama )
78 +"
79 +DEPEND="${RDEPEND}
80 + x11-base/xorg-proto
81 + test? ( app-text/docbook-xml-dtd:4.5 )
82 +"
83 +# needs gtk-doc, not just -am, for gtk-doc.make
84 +BDEPEND="
85 + sys-devel/gettext
86 + dev-util/gtk-doc
87 + dev-util/gtk-doc-am
88 + >=dev-util/intltool-0.35
89 + virtual/pkgconfig
90 +"
91 +
92 +src_prepare() {
93 + xdg_environment_reset
94 + default
95 + eautoreconf
96 + gnome2_disable_deprecation_warning
97 +}
98 +
99 +# Wayland is not supported upstream.
100 +src_configure() {
101 + econf \
102 + --disable-gtk-doc \
103 + --disable-maintainer-mode \
104 + --disable-schemas-compile \
105 + --enable-compile-warnings=minimum \
106 + --disable-static \
107 + --enable-shape \
108 + --enable-sm \
109 + --enable-startup-notification \
110 + --enable-xsync \
111 + --enable-verbose-mode \
112 + --with-libcanberra \
113 + $(use_enable introspection) \
114 + $(use_enable xinerama)
115 +}
116 +
117 +src_install() {
118 + default
119 + find "${D}" -name '*.la' -delete || die
120 + dodoc HACKING MAINTAINERS *.txt doc/*.txt
121 +}
122 +
123 +pkg_postinst() {
124 + xdg_desktop_database_update
125 + gnome2_schemas_update
126 +}
127 +
128 +pkg_postrm() {
129 + xdg_desktop_database_update
130 + gnome2_schemas_update
131 +}