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/vte: vte-0.30.1-r1.ebuild ChangeLog
Date: Tue, 15 Nov 2011 08:30:19
Message-Id: 20111115083004.E71E42004B@flycatcher.gentoo.org
1 tetromino 11/11/15 08:30:04
2
3 Modified: ChangeLog
4 Added: vte-0.30.1-r1.ebuild
5 Log:
6 Add a patch to unbreak Alt key handling with gtk+-3.2.2.
7
8 (Portage version: 2.2.0_alpha74/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.297 x11-libs/vte/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/ChangeLog?rev=1.297&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/ChangeLog?rev=1.297&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/ChangeLog?r1=1.296&r2=1.297
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v
20 retrieving revision 1.296
21 retrieving revision 1.297
22 diff -u -r1.296 -r1.297
23 --- ChangeLog 30 Oct 2011 17:48:40 -0000 1.296
24 +++ ChangeLog 15 Nov 2011 08:30:04 -0000 1.297
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-libs/vte
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v 1.296 2011/10/30 17:48:40 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v 1.297 2011/11/15 08:30:04 tetromino Exp $
30 +
31 +*vte-0.30.1-r1 (15 Nov 2011)
32 +
33 + 15 Nov 2011; Alexandre Rostovtsev <tetromino@g.o>
34 + +vte-0.30.1-r1.ebuild, +files/vte-0.30.1-alt-meta.patch:
35 + Add a patch to unbreak Alt key handling with gtk+-3.2.2.
36
37 30 Oct 2011; Raúl Porcel <armin76@g.o> vte-0.28.2-r300.ebuild:
38 alpha/ia64/sh/sparc stable wrt #385699
39
40
41
42 1.1 x11-libs/vte/vte-0.30.1-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/vte-0.30.1-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/vte-0.30.1-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: vte-0.30.1-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.30.1-r1.ebuild,v 1.1 2011/11/15 08:30:04 tetromino Exp $
52
53 EAPI="4"
54 GCONF_DEBUG="yes"
55 GNOME2_LA_PUNT="yes"
56
57 inherit gnome2
58
59 DESCRIPTION="GNOME terminal widget"
60 HOMEPAGE="http://git.gnome.org/browse/vte"
61
62 LICENSE="LGPL-2"
63 SLOT="2.90"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
65 IUSE="debug doc glade +introspection"
66
67 PDEPEND="x11-libs/gnome-pty-helper"
68 RDEPEND=">=dev-libs/glib-2.26:2
69 >=x11-libs/gtk+-3.1.9:3[introspection?]
70 >=x11-libs/pango-1.22.0
71
72 sys-libs/ncurses
73 x11-libs/libX11
74 x11-libs/libXft
75
76 glade? ( >=dev-util/glade-3.9:3.10 )
77 introspection? ( >=dev-libs/gobject-introspection-0.9.0 )"
78 DEPEND="${RDEPEND}
79 >=dev-util/intltool-0.35
80 >=dev-util/pkgconfig-0.9
81 sys-devel/gettext
82 doc? ( >=dev-util/gtk-doc-1.13 )"
83
84 pkg_setup() {
85 # Python bindings are via gobject-introspection
86 # Ex: from gi.repository import Vte
87 G2CONF="${G2CONF}
88 --disable-gnome-pty-helper
89 --disable-deprecation
90 --disable-maintainer-mode
91 --disable-static
92 $(use_enable debug)
93 $(use_enable glade glade-catalogue)
94 $(use_enable introspection)"
95 DOCS="AUTHORS ChangeLog HACKING NEWS README"
96 }
97
98 src_prepare() {
99 # https://bugzilla.gnome.org/show_bug.cgi?id=663779
100 epatch "${FILESDIR}/${PN}-0.30.1-alt-meta.patch"
101
102 gnome2_src_prepare
103 }