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/marco/
Date: Sat, 14 May 2022 03:00:50
Message-Id: 1652496778.640425f827bb35eeaf51f1bfefa2eb24f1ed1f00.sam@gentoo
1 commit: 640425f827bb35eeaf51f1bfefa2eb24f1ed1f00
2 Author: Oz N Tiram <oz.tiram <AT> gmail <DOT> com>
3 AuthorDate: Fri May 6 18:05:00 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat May 14 02:52:58 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=640425f8
7
8 x11-wm/marco: add 1.26.0
9
10 Signed-off-by: Oz N Tiram <oz.tiram <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/25304
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 x11-wm/marco/Manifest | 1 +
15 x11-wm/marco/marco-1.26.0.ebuild | 75 ++++++++++++++++++++++++++++++++++++++++
16 2 files changed, 76 insertions(+)
17
18 diff --git a/x11-wm/marco/Manifest b/x11-wm/marco/Manifest
19 index 5823e73ad23f..7f66b7d12fc9 100644
20 --- a/x11-wm/marco/Manifest
21 +++ b/x11-wm/marco/Manifest
22 @@ -1 +1,2 @@
23 DIST marco-1.24.2.tar.xz 1845356 BLAKE2B 9308e07fec5319f741f7d78007e68e916c407c515fc2076c0e26a760830d3c79edf39888f265f7edc1baf0c8dc29661fb6598be16352103455cc441bc2a1daf5 SHA512 2e699935fb72ddc34aa1f98f5771f252141245ad8fd0983aafe5ea55aeeb3f90b5d68a61c27704adf0b929565180367aae46486d45e789d7de101ec9a7bc9f96
24 +DIST marco-1.26.0.tar.xz 1855196 BLAKE2B 1481ee365d9bd8430fc5dc11a41268613823ff44c99b0d50a747dfd4663e40f121038a32f148af546f6e500b9a905bb30f6c5c9ff19dedb56eb991e2ceefe95f SHA512 013ba12dc7f4affe24bc5763ae88e44ede3f1454e74b5a642503d3741ce935f6757eba3f9def56670414c5a9c03b38384b5b54a494f9cb8f5bfd480e43300e76
25
26 diff --git a/x11-wm/marco/marco-1.26.0.ebuild b/x11-wm/marco/marco-1.26.0.ebuild
27 new file mode 100644
28 index 000000000000..2c8046f6b6e4
29 --- /dev/null
30 +++ b/x11-wm/marco/marco-1.26.0.ebuild
31 @@ -0,0 +1,75 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +MATE2_LA_PUNT="yes"
38 +
39 +inherit mate
40 +
41 +if [[ ${PV} != 9999 ]]; then
42 + KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~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 +"
75 +
76 +RDEPEND="${COMMON_DEPEND}
77 + gnome-extra/zenity
78 + >=mate-base/mate-desktop-1.20.0
79 + virtual/libintl
80 +"
81 +
82 +BDEPEND="${COMMON_DEPEND}
83 + app-text/yelp-tools
84 + >=sys-devel/gettext-0.19.8
85 + >=sys-devel/libtool-2.0.0
86 + virtual/pkgconfig
87 + x11-base/xorg-proto
88 + test? ( app-text/docbook-xml-dtd:4.5 )
89 + xinerama? ( x11-base/xorg-proto )
90 +"
91 +
92 +src_configure() {
93 + mate_src_configure \
94 + --enable-compositor \
95 + --enable-render \
96 + --enable-shape \
97 + --enable-sm \
98 + --enable-xsync \
99 + $(use_enable startup-notification) \
100 + $(use_enable xinerama)
101 +}
102 +
103 +src_install() {
104 + mate_src_install
105 + dodoc doc/*.txt
106 +}