Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/gtk+extra/
Date: Mon, 05 Dec 2016 13:53:02
Message-Id: 1480945969.5e10ba25a0550472f504e37453706e9e18d862c0.pacho@gentoo
1 commit: 5e10ba25a0550472f504e37453706e9e18d862c0
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 5 13:51:01 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 5 13:52:49 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e10ba25
7
8 x11-libs/gtk+extra: Version bump
9
10 Package-Manager: portage-2.3.2
11
12 x11-libs/gtk+extra/Manifest | 1 +
13 x11-libs/gtk+extra/gtk+extra-3.3.3.ebuild | 36 +++++++++++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/x11-libs/gtk+extra/Manifest b/x11-libs/gtk+extra/Manifest
17 index b32e137..2e1e202 100644
18 --- a/x11-libs/gtk+extra/Manifest
19 +++ b/x11-libs/gtk+extra/Manifest
20 @@ -1 +1,2 @@
21 DIST gtkextra-3.3.0.tar.gz 1502771 SHA256 6ff0b81f77349a8d4675962783ae1d3f8b9d1ef13c4dba8944a54080e22453ce SHA512 345f2e93437220b8ba7b65f312eb86479a45c6131cf32f92e93d26ffe109981a4abf11e5a54e998d806e2b8844877d0f000344fc09e7e945c837dc100cf35fc5 WHIRLPOOL c9a79e1ffc7d9c5f3462ebff88b38d273b22a2b13d5705334dc98e20e74911ecea152e2d03b39892d563c005ff83343492d7702a4f52b9d43425652160287457
22 +DIST gtkextra-3.3.3.tar.gz 1503817 SHA256 7889f958ee9fb6bd564aa941891909c3af7a03b92e232c5a90bab0289407d884 SHA512 864fa2e957941a05a9c4b4a4283ae48e733d72ab334e2fb8440fc884166b0d1ad34d381924184f7a88f829d00bbd857d5f3f32d89f159e0133dd89233a8a93e9 WHIRLPOOL eb93af92deaed2c4b3b0b4ca9c4a58eef33be675bc3f5415b3979992be282dedf9406451e516ac6ed9faca816a529dddd3f1e0e1922dd0413de967e33d981a5e
23
24 diff --git a/x11-libs/gtk+extra/gtk+extra-3.3.3.ebuild b/x11-libs/gtk+extra/gtk+extra-3.3.3.ebuild
25 new file mode 100644
26 index 00000000..3957e2a
27 --- /dev/null
28 +++ b/x11-libs/gtk+extra/gtk+extra-3.3.3.ebuild
29 @@ -0,0 +1,36 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +inherit gnome2
36 +
37 +DESCRIPTION="Useful Additional GTK+ widgets"
38 +HOMEPAGE="http://gtkextra.sourceforge.net"
39 +SRC_URI="mirror://sourceforge/gtkextra/gtkextra-${PV}.tar.gz"
40 +
41 +LICENSE="FDL-1.1 LGPL-2"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
44 +IUSE="+introspection static-libs test"
45 +
46 +RDEPEND="
47 + >=x11-libs/gtk+-2.12.0:2
48 + dev-libs/glib:2
49 + introspection? ( >=dev-libs/gobject-introspection-0.6.14:= )
50 +"
51 +DEPEND="${RDEPEND}
52 + virtual/pkgconfig
53 +"
54 +# dev-libs/gobject-introspection-common needed for eautoreconf
55 +
56 +S="${WORKDIR}/gtkextra-${PV}"
57 +
58 +src_configure() {
59 + gnome2_src_configure \
60 + --enable-glade=no \
61 + --disable-man \
62 + $(use_enable introspection) \
63 + $(use_enable static-libs static) \
64 + $(use_enable test tests)
65 +}