Gentoo Archives: gentoo-commits

From: Adam Feldman <np-hardass@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/marco/
Date: Wed, 30 Jun 2021 22:43:15
Message-Id: 1625092903.7107ac7493795da71bd81c61d54ebc8e974c6e46.np-hardass@gentoo
1 commit: 7107ac7493795da71bd81c61d54ebc8e974c6e46
2 Author: Adam Feldman <NP-Hardass <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 10 13:09:49 2021 +0000
4 Commit: Adam Feldman <np-hardass <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 30 22:41:43 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7107ac74
7
8 x11-wm/marco: Bump to 1.24.2
9
10 Bug: https://bugs.gentoo.org/778857
11 Package-Manager: Portage-3.0.18, Repoman-3.0.3
12 Signed-off-by: Adam Feldman <NP-Hardass <AT> gentoo.org>
13
14 x11-wm/marco/Manifest | 1 +
15 x11-wm/marco/marco-1.24.2.ebuild | 76 ++++++++++++++++++++++++++++++++++++++++
16 2 files changed, 77 insertions(+)
17
18 diff --git a/x11-wm/marco/Manifest b/x11-wm/marco/Manifest
19 index 209ca943e26..8e861968591 100644
20 --- a/x11-wm/marco/Manifest
21 +++ b/x11-wm/marco/Manifest
22 @@ -1 +1,2 @@
23 DIST marco-1.24.1.tar.xz 1860008 BLAKE2B b147e6ce8aad9382b2e8d96eec2da0356cce91977f4387776359ffb1f26903d7f0b9d9a1d43a436d1a64033f545600e7f810a29e3ae6ecdfb0d73ef8073b782c SHA512 55607898b64f0da3a85dd8d7fd092d847c8f67cefa096a63dbe074c197157a3d661fcb3f2a495b4425340b583b600cda3d1c92ac08b7327904dbd4aab8e92c85
24 +DIST marco-1.24.2.tar.xz 1845356 BLAKE2B 9308e07fec5319f741f7d78007e68e916c407c515fc2076c0e26a760830d3c79edf39888f265f7edc1baf0c8dc29661fb6598be16352103455cc441bc2a1daf5 SHA512 2e699935fb72ddc34aa1f98f5771f252141245ad8fd0983aafe5ea55aeeb3f90b5d68a61c27704adf0b929565180367aae46486d45e789d7de101ec9a7bc9f96
25
26 diff --git a/x11-wm/marco/marco-1.24.2.ebuild b/x11-wm/marco/marco-1.24.2.ebuild
27 new file mode 100644
28 index 00000000000..e36ea8196cc
29 --- /dev/null
30 +++ b/x11-wm/marco/marco-1.24.2.ebuild
31 @@ -0,0 +1,76 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +MATE2_LA_PUNT="yes"
38 +
39 +inherit mate
40 +
41 +if [[ ${PV} != 9999 ]]; then
42 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
43 +fi
44 +
45 +DESCRIPTION="MATE default window manager"
46 +LICENSE="FDL-1.2+ GPL-2+ LGPL-2+ MIT"
47 +SLOT="0/2"
48 +
49 +IUSE="startup-notification test xinerama"
50 +RESTRICT="!test? ( test )"
51 +
52 +COMMON_DEPEND="
53 + dev-libs/atk
54 + >=dev-libs/glib-2.58:2
55 + >=gnome-base/libgtop-2:2=
56 + media-libs/libcanberra[gtk3]
57 + x11-libs/cairo
58 + >=x11-libs/pango-1.2[X]
59 + x11-libs/gdk-pixbuf:2
60 + >=x11-libs/gtk+-3.22:3
61 + x11-libs/libICE
62 + x11-libs/libSM
63 + x11-libs/libX11
64 + >=x11-libs/libXcomposite-0.3
65 + x11-libs/libXcursor
66 + x11-libs/libXdamage
67 + x11-libs/libXext
68 + x11-libs/libXfixes
69 + x11-libs/libXpresent
70 + x11-libs/libXrandr
71 + x11-libs/libXrender
72 + >=x11-libs/startup-notification-0.7
73 + xinerama? ( x11-libs/libXinerama )
74 + !!x11-wm/mate-window-manager
75 +"
76 +
77 +RDEPEND="${COMMON_DEPEND}
78 + gnome-extra/zenity
79 + >=mate-base/mate-desktop-1.20.0
80 + virtual/libintl
81 +"
82 +
83 +DEPEND="${COMMON_DEPEND}
84 + app-text/yelp-tools
85 + >=sys-devel/gettext-0.19.8
86 + >=sys-devel/libtool-2.0.0
87 + virtual/pkgconfig
88 + x11-base/xorg-proto
89 + test? ( app-text/docbook-xml-dtd:4.5 )
90 + xinerama? ( x11-base/xorg-proto )
91 +"
92 +
93 +src_configure() {
94 + mate_src_configure \
95 + --enable-compositor \
96 + --enable-render \
97 + --enable-shape \
98 + --enable-sm \
99 + --enable-xsync \
100 + $(use_enable startup-notification) \
101 + $(use_enable xinerama)
102 +}
103 +
104 +src_install() {
105 + mate_src_install
106 + dodoc doc/*.txt
107 +}