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, 14 Sep 2018 10:25:19
Message-Id: 1536920585.8ec93c2471dee5383d9c5fb839ee3885ca83e998.leio@gentoo
1 commit: 8ec93c2471dee5383d9c5fb839ee3885ca83e998
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 14 09:30:34 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 14 10:23:05 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ec93c24
7
8 x11-libs/libwnck: bump to 3.30.0
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.10
11
12 x11-libs/libwnck/Manifest | 1 +
13 x11-libs/libwnck/libwnck-3.30.0.ebuild | 44 ++++++++++++++++++++++++++++++++++
14 2 files changed, 45 insertions(+)
15
16 diff --git a/x11-libs/libwnck/Manifest b/x11-libs/libwnck/Manifest
17 index 95a64fdd730..417a185c59c 100644
18 --- a/x11-libs/libwnck/Manifest
19 +++ b/x11-libs/libwnck/Manifest
20 @@ -1,2 +1,3 @@
21 DIST libwnck-2.31.0.tar.xz 630792 BLAKE2B 8201537d3c9a8a0a8668fc16d33a8eaa05c14312401f1c763c922402df04ef03260dd259f5c46508f85390f7aefd551e83143e654b24b412272dddb7c7c4bd62 SHA512 54262a08882021f08f3ba7f2ddfa33fc1f02e391a0f61cf999a50a089e0d277dfe13ab133c1a46e9abf0599bd24c21dacff80b51013cbb1375d2cd71ac9abbe9
22 DIST libwnck-3.24.1.tar.xz 821508 BLAKE2B 18bc01a08107e0b2b040cb6036a80cb289955aa9365b7568292aa1c29dc77758bc9b11caa57b8cff6bebb75dd1d0bf7135b0cebed1e42c6ccc1c1372c6a224b5 SHA512 e8a31ab2dc0c282f1e0994ce6a2ccd18678dc5c140943399262e795052b7f5da2d6a5d388a74f4b10f8fac66ab138983a9caaee4e72c92a17c01ca5c39b731e1
23 +DIST libwnck-3.30.0.tar.xz 800296 BLAKE2B 5917ac8a69f6f1e0d639f301a77349015226ca6d0fc12e8b23c00a81e18f6e9dbb7716b01e50aceb15bdbd64b5b1a8295be5b931d513e120508cdf14d2d15a23 SHA512 79842e4645de828941ac030eeff9d232b18a51fe0d18baf5ceb2beaf897d328ee5bf3b297501e2b27e66c63d42f6546a7605a37c6d7d52ff76e9b2bc5c328128
24
25 diff --git a/x11-libs/libwnck/libwnck-3.30.0.ebuild b/x11-libs/libwnck/libwnck-3.30.0.ebuild
26 new file mode 100644
27 index 00000000000..05d20f984b7
28 --- /dev/null
29 +++ b/x11-libs/libwnck/libwnck-3.30.0.ebuild
30 @@ -0,0 +1,44 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +GNOME2_LA_PUNT="yes"
36 +
37 +inherit flag-o-matic gnome2
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 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
45 +
46 +IUSE="+introspection startup-notification tools"
47 +
48 +RDEPEND="
49 + x11-libs/cairo[X]
50 + >=x11-libs/gtk+-3.22:3[introspection?]
51 + >=dev-libs/glib-2.32:2
52 + x11-libs/libX11
53 + x11-libs/libXres
54 + x11-libs/libXext
55 + introspection? ( >=dev-libs/gobject-introspection-0.6.14:= )
56 + startup-notification? ( >=x11-libs/startup-notification-0.4 )
57 +"
58 +DEPEND="${RDEPEND}
59 + >=dev-util/gtk-doc-am-1.9
60 + >=sys-devel/gettext-0.19.4
61 + virtual/pkgconfig
62 +"
63 +# eautoreconf needs
64 +# sys-devel/autoconf-archive
65 +
66 +src_configure() {
67 + # Don't collide with SLOT=1
68 + gnome2_src_configure \
69 + --disable-static \
70 + $(use_enable introspection) \
71 + $(use_enable startup-notification) \
72 + $(use_enable tools) \
73 + --program-suffix=-${SLOT}
74 +}