Gentoo Archives: gentoo-commits

From: "Alexandre Rostovtsev (tetromino)" <tetromino@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/gtk+extra: ChangeLog gtk+extra-3.0.1.ebuild
Date: Mon, 09 Jan 2012 17:37:19
Message-Id: 20120109173709.528F62004B@flycatcher.gentoo.org
1 tetromino 12/01/09 17:37:09
2
3 Modified: ChangeLog gtk+extra-3.0.1.ebuild
4 Log:
5 introspection.m4 is required for eautoreconf (bug #397761, thanks to Oleg for reporting). Also, fix building with >=glib-2.31.
6
7 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.38 x11-libs/gtk+extra/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtk+extra/ChangeLog?rev=1.38&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtk+extra/ChangeLog?rev=1.38&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtk+extra/ChangeLog?r1=1.37&r2=1.38
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtk+extra/ChangeLog,v
19 retrieving revision 1.37
20 retrieving revision 1.38
21 diff -u -r1.37 -r1.38
22 --- ChangeLog 29 Dec 2011 18:14:32 -0000 1.37
23 +++ ChangeLog 9 Jan 2012 17:37:09 -0000 1.38
24 @@ -1,6 +1,11 @@
25 # ChangeLog for x11-libs/gtk+extra
26 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+extra/ChangeLog,v 1.37 2011/12/29 18:14:32 pacho Exp $
28 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+extra/ChangeLog,v 1.38 2012/01/09 17:37:09 tetromino Exp $
30 +
31 + 09 Jan 2012; Alexandre Rostovtsev <tetromino@g.o>
32 + gtk+extra-3.0.1.ebuild, +files/gtk+extra-3.0.1-gunicode.h.patch:
33 + introspection.m4 is required for eautoreconf (bug #397761, thanks to Oleg for
34 + reporting). Also, fix building with >=glib-2.31.
35
36 29 Dec 2011; Pacho Ramos <pacho@g.o> gtk+extra-3.0.1.ebuild:
37 amd64 stable, bug 393007
38
39
40
41 1.4 x11-libs/gtk+extra/gtk+extra-3.0.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtk+extra/gtk+extra-3.0.1.ebuild?rev=1.4&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtk+extra/gtk+extra-3.0.1.ebuild?rev=1.4&content-type=text/plain
45 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtk+extra/gtk+extra-3.0.1.ebuild?r1=1.3&r2=1.4
46
47 Index: gtk+extra-3.0.1.ebuild
48 ===================================================================
49 RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtk+extra/gtk+extra-3.0.1.ebuild,v
50 retrieving revision 1.3
51 retrieving revision 1.4
52 diff -u -r1.3 -r1.4
53 --- gtk+extra-3.0.1.ebuild 29 Dec 2011 18:14:32 -0000 1.3
54 +++ gtk+extra-3.0.1.ebuild 9 Jan 2012 17:37:09 -0000 1.4
55 @@ -1,6 +1,6 @@
56 -# Copyright 1999-2011 Gentoo Foundation
57 +# Copyright 1999-2012 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+extra/gtk+extra-3.0.1.ebuild,v 1.3 2011/12/29 18:14:32 pacho Exp $
60 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+extra/gtk+extra-3.0.1.ebuild,v 1.4 2012/01/09 17:37:09 tetromino Exp $
61
62 EAPI="4"
63
64 @@ -8,7 +8,8 @@
65
66 DESCRIPTION="Useful Additional GTK+ widgets"
67 HOMEPAGE="http://gtkextra.sourceforge.net"
68 -SRC_URI="mirror://sourceforge/gtkextra/${P}.tar.gz"
69 +SRC_URI="mirror://sourceforge/gtkextra/${P}.tar.gz
70 + mirror://gentoo/introspection.m4.bz2"
71
72 LICENSE="FDL-1.1 LGPL-2"
73 SLOT="0"
74 @@ -25,7 +26,13 @@
75 # Fix configure,
76 # https://sourceforge.net/tracker/?func=detail&aid=3414011&group_id=11638&atid=111638
77 epatch "${FILESDIR}/${P}-fix-configure.patch"
78 - eautoreconf
79 +
80 + # Upstream patch to fix building with >=glib-2.31
81 + epatch "${FILESDIR}/${P}-gunicode.h.patch"
82 +
83 + # eautoreconf needs introspection.m4
84 + cp "${WORKDIR}"/introspection.m4 . || die
85 + AT_M4DIR="." eautoreconf
86 }
87
88 src_configure() {