Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libwnck/
Date: Fri, 07 Aug 2020 07:17:17
Message-Id: 1596784547.52e1b1dca5debe6b9c0eca6eb11cda52f8e70b62.leio@gentoo
1 commit: 52e1b1dca5debe6b9c0eca6eb11cda52f8e70b62
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 7 07:13:27 2020 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 7 07:15:47 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52e1b1dc
7
8 x11-libs/libwnck: bump to 3.36.0
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 x11-libs/libwnck/Manifest | 1 +
14 x11-libs/libwnck/libwnck-3.36.0.ebuild | 51 ++++++++++++++++++++++++++++++++++
15 2 files changed, 52 insertions(+)
16
17 diff --git a/x11-libs/libwnck/Manifest b/x11-libs/libwnck/Manifest
18 index 326088e4426..b93151f69b5 100644
19 --- a/x11-libs/libwnck/Manifest
20 +++ b/x11-libs/libwnck/Manifest
21 @@ -1,2 +1,3 @@
22 DIST libwnck-2.31.0.tar.xz 630792 BLAKE2B 8201537d3c9a8a0a8668fc16d33a8eaa05c14312401f1c763c922402df04ef03260dd259f5c46508f85390f7aefd551e83143e654b24b412272dddb7c7c4bd62 SHA512 54262a08882021f08f3ba7f2ddfa33fc1f02e391a0f61cf999a50a089e0d277dfe13ab133c1a46e9abf0599bd24c21dacff80b51013cbb1375d2cd71ac9abbe9
23 DIST libwnck-3.30.0.tar.xz 800296 BLAKE2B 5917ac8a69f6f1e0d639f301a77349015226ca6d0fc12e8b23c00a81e18f6e9dbb7716b01e50aceb15bdbd64b5b1a8295be5b931d513e120508cdf14d2d15a23 SHA512 79842e4645de828941ac030eeff9d232b18a51fe0d18baf5ceb2beaf897d328ee5bf3b297501e2b27e66c63d42f6546a7605a37c6d7d52ff76e9b2bc5c328128
24 +DIST libwnck-3.36.0.tar.xz 447760 BLAKE2B c61098362c57c3de879170d3104472b0a7f3c16da163c5d740d7a42bd545cfdaecd96804108834d5b7de5028e847f9b0557f015d08f50f9459a896f1d5f84431 SHA512 b7bf5d935327f61634a898594cf20a270e1b403c8df6c74e6ac20e22eea2845ac8c3007b31994728b74953e40c1015373efe10ed64243cf5e85fd210654aecb3
25
26 diff --git a/x11-libs/libwnck/libwnck-3.36.0.ebuild b/x11-libs/libwnck/libwnck-3.36.0.ebuild
27 new file mode 100644
28 index 00000000000..e78364b3eba
29 --- /dev/null
30 +++ b/x11-libs/libwnck/libwnck-3.36.0.ebuild
31 @@ -0,0 +1,51 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit gnome.org flag-o-matic meson xdg
38 +
39 +DESCRIPTION="A window navigation construction kit"
40 +HOMEPAGE="https://developer.gnome.org/libwnck/stable/"
41 +
42 +LICENSE="LGPL-2+"
43 +SLOT="3"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
45 +
46 +IUSE="gtk-doc +introspection startup-notification tools"
47 +
48 +RDEPEND="
49 + x11-libs/cairo[X]
50 + >=dev-libs/glib-2.34:2
51 + >=x11-libs/gtk+-3.22:3[X,introspection?]
52 + startup-notification? ( >=x11-libs/startup-notification-0.4 )
53 + x11-libs/libX11
54 + x11-libs/libXres
55 + introspection? ( >=dev-libs/gobject-introspection-1.56:= )
56 +"
57 +# libXi header used by wnckprop.c, which is compiled even with USE=-tools (just not installed then)
58 +DEPEND="${RDEPEND}
59 + x11-libs/libXi"
60 +BDEPEND="
61 + gtk-doc? ( >=dev-util/gtk-doc-1.9
62 + app-text/docbook-xml-dtd:4.1.2 )
63 + >=sys-devel/gettext-0.19.8
64 + virtual/pkgconfig
65 +"
66 +
67 +src_prepare() {
68 + # Don't collide with SLOT=1 with USE=tools
69 + sed -e "s|executable(prog|executable(prog + '-3'|" -i libwnck/meson.build || die
70 + xdg_src_prepare
71 +}
72 +
73 +src_configure() {
74 + local emesonargs=(
75 + -Ddeprecation_flags=false
76 + $(meson_use tools install_tools)
77 + $(meson_feature startup-notification startup_notification)
78 + $(meson_feature introspection)
79 + $(meson_use gtk-doc gtk_doc)
80 + )
81 + meson_src_configure
82 +}