Gentoo Archives: gentoo-commits

From: "Göktürk Yüksek" <gokturk@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/marco/
Date: Sat, 17 Aug 2019 04:23:23
Message-Id: 1566015432.9f022c3b13d2ffdbf3e93c470ee031cd09cd82b2.gokturk@gentoo
1 commit: 9f022c3b13d2ffdbf3e93c470ee031cd09cd82b2
2 Author: NP-Hardass <NP-Hardass <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 14 22:09:18 2019 +0000
4 Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 17 04:17:12 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f022c3b
7
8 x11-wm/marco: Bump to 1.22.2
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.16
11 Signed-off-by: NP-Hardass <NP-Hardass <AT> gentoo.org>
12 Signed-off-by: Göktürk Yüksek <gokturk <AT> gentoo.org>
13
14 x11-wm/marco/Manifest | 1 +
15 x11-wm/marco/marco-1.22.2.ebuild | 72 ++++++++++++++++++++++++++++++++++++++++
16 2 files changed, 73 insertions(+)
17
18 diff --git a/x11-wm/marco/Manifest b/x11-wm/marco/Manifest
19 index 28415d45992..5739f73502b 100644
20 --- a/x11-wm/marco/Manifest
21 +++ b/x11-wm/marco/Manifest
22 @@ -1 +1,2 @@
23 DIST marco-1.22.1.tar.xz 1357864 BLAKE2B 241e71795acfdcbf90070ef0d14f0cc55894a5cddbf48bd8741cf9580cfcaa035890b23a2182738875ce4d89d099a80d59aa7b1937e4a34a18a5a969830e7db9 SHA512 18093f4d419fbc90f957a04ec3e36a153b3c51a6bcdc1ac5884adcc0292f157bc5e4af51e171451a4b54b5bccffdee2e8a07ed13dafb6106773abfb06b6a8a4f
24 +DIST marco-1.22.2.tar.xz 1366104 BLAKE2B 6caa7da12c32b8adcc6d3ab4525fcf9e892585cb528bd73e47af1e2eeda2c31d174e55acd98f9a4759e22176fa06aa13d8a6ef6a6b2cc82d11bed27b156d6739 SHA512 96665120dbc698c78795eeaa559ae2bfd2a3c7ed4846e40bcfb1d6dfc8d7e359b860e1e715085a17e11c66ce7f31561d372da8372209c21c7b1ce6029a3f5ea1
25
26 diff --git a/x11-wm/marco/marco-1.22.2.ebuild b/x11-wm/marco/marco-1.22.2.ebuild
27 new file mode 100644
28 index 00000000000..2aebb9ee0bb
29 --- /dev/null
30 +++ b/x11-wm/marco/marco-1.22.2.ebuild
31 @@ -0,0 +1,72 @@
32 +# Copyright 1999-2019 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="GPL-2"
47 +SLOT="0"
48 +
49 +IUSE="startup-notification test xinerama"
50 +
51 +COMMON_DEPEND="
52 + dev-libs/atk
53 + >=dev-libs/glib-2.50:2
54 + >=gnome-base/libgtop-2:2=
55 + media-libs/libcanberra[gtk3]
56 + x11-libs/cairo
57 + >=x11-libs/pango-1.2[X]
58 + x11-libs/gdk-pixbuf:2
59 + >=x11-libs/gtk+-3.22:3
60 + x11-libs/libICE
61 + x11-libs/libSM
62 + x11-libs/libX11
63 + >=x11-libs/libXcomposite-0.3
64 + x11-libs/libXcursor
65 + x11-libs/libXdamage
66 + x11-libs/libXext
67 + x11-libs/libXfixes
68 + x11-libs/libXpresent
69 + x11-libs/libXrandr
70 + x11-libs/libXrender
71 + >=x11-libs/startup-notification-0.7
72 + virtual/libintl
73 + xinerama? ( x11-libs/libXinerama )
74 + !!x11-wm/mate-window-manager"
75 +
76 +RDEPEND="${COMMON_DEPEND}
77 + gnome-extra/zenity
78 + >=mate-base/mate-desktop-1.20.0"
79 +
80 +DEPEND="${COMMON_DEPEND}
81 + app-text/yelp-tools
82 + >=dev-util/intltool-0.34.90
83 + sys-devel/gettext:*
84 + virtual/pkgconfig:*
85 + x11-base/xorg-proto
86 + test? ( app-text/docbook-xml-dtd:4.5 )
87 + xinerama? ( x11-base/xorg-proto )"
88 +
89 +src_configure() {
90 + mate_src_configure \
91 + --enable-compositor \
92 + --enable-render \
93 + --enable-shape \
94 + --enable-sm \
95 + --enable-xsync \
96 + $(use_enable startup-notification) \
97 + $(use_enable xinerama)
98 +}
99 +
100 +src_install() {
101 + mate_src_install
102 + dodoc {,doc/}*.txt
103 +}