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: Fri, 21 Jan 2022 17:15:43
Message-Id: 1642785307.3cf1b230943c35272ec2358fcbc89977c584ec1b.sam@gentoo
1 commit: 3cf1b230943c35272ec2358fcbc89977c584ec1b
2 Author: Matthew S. Turnbull <sparky <AT> bluefang-logic <DOT> com>
3 AuthorDate: Tue Dec 28 07:20:10 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 21 17:15:07 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cf1b230
7
8 x11-wm/muffin: 5.2.0 version bump
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Matthew S. Turnbull <sparky <AT> bluefang-logic.com>
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 x11-wm/muffin/Manifest | 1 +
15 x11-wm/muffin/muffin-5.2.0.ebuild | 106 ++++++++++++++++++++++++++++++++++++++
16 2 files changed, 107 insertions(+)
17
18 diff --git a/x11-wm/muffin/Manifest b/x11-wm/muffin/Manifest
19 index 2e80ffa2d361..8efd6b7f3c80 100644
20 --- a/x11-wm/muffin/Manifest
21 +++ b/x11-wm/muffin/Manifest
22 @@ -1 +1,2 @@
23 DIST muffin-5.0.2.tar.gz 5197188 BLAKE2B 88a7530359386ceb14b0b509e1769d8cc4d552d9afa45faf6dbd62a457c7ca19d59e553176cf3689c3d22962c761a8633f6880802ea3c5453ff07901e3ca5374 SHA512 4f31b5a4b81db5967a3bc21b7f2bdbb30f47f5dcde12be467cd27f340164483ab43b423cd043dce50201c9b900ccab4a0fc84f4f6e22c66e901cd0c6d986761d
24 +DIST muffin-5.2.0.tar.gz 5197334 BLAKE2B e1c3ffc6f88ef4a6c5b2f3e03838448540baeeacce3029a039b2fae1804c79193f9ee0bb64d9187f4b2f7f902f47211dc5c5fb185e4f2fcf94513bfe2f0913bf SHA512 16d83d10e8ca4f0cc1cb679e8bf8bc0fd0788d656fa39470a921d848bcb0b158ef56bdd681a842e2ca41b40cb0121007d5e7f5f7f1570459b31fd21a78f96932
25
26 diff --git a/x11-wm/muffin/muffin-5.2.0.ebuild b/x11-wm/muffin/muffin-5.2.0.ebuild
27 new file mode 100644
28 index 000000000000..e68e869ca9bc
29 --- /dev/null
30 +++ b/x11-wm/muffin/muffin-5.2.0.ebuild
31 @@ -0,0 +1,106 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit autotools gnome2-utils xdg-utils virtualx
38 +
39 +DESCRIPTION="Compositing window manager forked from Mutter for use with Cinnamon"
40 +HOMEPAGE="https://projects.linuxmint.com/cinnamon/ https://github.com/linuxmint/muffin"
41 +SRC_URI="https://github.com/linuxmint/muffin/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="GPL-2+"
44 +SLOT="0"
45 +IUSE="+introspection test xinerama"
46 +KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
47 +
48 +RDEPEND="
49 + >=dev-libs/glib-2.37.3:2[dbus]
50 + >=dev-libs/json-glib-1.0
51 + >=gnome-extra/cinnamon-desktop-5.2:0=
52 + gnome-extra/zenity
53 + >=media-libs/libcanberra-0.26[gtk3]
54 + media-libs/libglvnd
55 + >=x11-libs/cairo-1.14:=[X]
56 + x11-libs/gdk-pixbuf:2[introspection?]
57 + >=x11-libs/gtk+-3.9.12:3[X,introspection?]
58 + x11-libs/libICE
59 + x11-libs/libSM
60 + x11-libs/libX11
61 + x11-libs/libxcb
62 + >=x11-libs/libXcomposite-0.3
63 + x11-libs/libXcursor
64 + x11-libs/libXdamage
65 + x11-libs/libXext
66 + x11-libs/libXfixes
67 + >=x11-libs/libXi-1.6.0
68 + >=x11-libs/libxkbcommon-0.4.3[X]
69 + x11-libs/libxkbfile
70 + x11-libs/libXrandr
71 + x11-libs/libXrender
72 + >=x11-libs/pango-1.14.0[X,introspection?]
73 + >=x11-libs/startup-notification-0.7:=
74 + x11-misc/xkeyboard-config
75 +
76 + introspection? ( >=dev-libs/gobject-introspection-0.9.12:= )
77 + xinerama? ( x11-libs/libXinerama )
78 +"
79 +DEPEND="
80 + ${RDEPEND}
81 + x11-base/xorg-proto
82 +
83 + test? ( app-text/docbook-xml-dtd:4.5 )
84 +"
85 +# needs gtk-doc, not just -am, for gtk-doc.make
86 +BDEPEND="
87 + dev-util/glib-utils
88 + dev-util/gtk-doc
89 + dev-util/gtk-doc-am
90 + >=dev-util/intltool-0.35
91 + sys-devel/gettext
92 + virtual/pkgconfig
93 +"
94 +
95 +src_prepare() {
96 + default
97 + eautoreconf
98 + gnome2_disable_deprecation_warning
99 +}
100 +
101 +# Wayland is not supported upstream.
102 +src_configure() {
103 + econf \
104 + --disable-gtk-doc \
105 + --disable-maintainer-mode \
106 + --disable-schemas-compile \
107 + --enable-compile-warnings=minimum \
108 + --disable-static \
109 + --enable-shape \
110 + --enable-sm \
111 + --enable-startup-notification \
112 + --enable-xsync \
113 + --enable-verbose-mode \
114 + --with-libcanberra \
115 + $(use_enable introspection) \
116 + $(use_enable xinerama)
117 +}
118 +
119 +src_install() {
120 + default
121 + find "${D}" -name '*.la' -delete || die
122 + dodoc HACKING MAINTAINERS *.txt doc/*.txt
123 +}
124 +
125 +src_test() {
126 + virtx default
127 +}
128 +
129 +pkg_postinst() {
130 + xdg_desktop_database_update
131 + gnome2_schemas_update
132 +}
133 +
134 +pkg_postrm() {
135 + xdg_desktop_database_update
136 + gnome2_schemas_update
137 +}