Gentoo Archives: gentoo-commits

From: "Mart Raudsepp (leio)" <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/vte: ChangeLog vte-0.17.4-r2.ebuild vte-0.17.4-r1.ebuild
Date: Sat, 01 Nov 2008 17:41:27
Message-Id: E1KwKTT-00011j-Ij@stork.gentoo.org
1 leio 08/11/01 17:41:23
2
3 Modified: ChangeLog
4 Added: vte-0.17.4-r2.ebuild
5 Removed: vte-0.17.4-r1.ebuild
6 Log:
7 Include a fix for the previous patch, fixing selection clipboard retention from alternate screen (less, vim, etc)
8 (Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo x86_64)
9
10 Revision Changes Path
11 1.212 x11-libs/vte/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/vte/ChangeLog?rev=1.212&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/vte/ChangeLog?rev=1.212&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/vte/ChangeLog?r1=1.211&r2=1.212
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v
20 retrieving revision 1.211
21 retrieving revision 1.212
22 diff -u -r1.211 -r1.212
23 --- ChangeLog 28 Oct 2008 11:57:46 -0000 1.211
24 +++ ChangeLog 1 Nov 2008 17:41:23 -0000 1.212
25 @@ -1,6 +1,15 @@
26 # ChangeLog for x11-libs/vte
27 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v 1.211 2008/10/28 11:57:46 leio Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v 1.212 2008/11/01 17:41:23 leio Exp $
30 +
31 +*vte-0.17.4-r2 (01 Nov 2008)
32 +
33 + 01 Nov 2008; Mart Raudsepp <leio@g.o>
34 + +files/vte-0.17.4-fix-highlighting-on-activity.patch,
35 + -files/vte-0.17.4-fix-selecting-on-activity.patch, -vte-0.17.4-r1.ebuild,
36 + +vte-0.17.4-r2.ebuild:
37 + Include a fix for the previous patch, fixing selection clipboard retention
38 + from alternate screen (less, vim, etc)
39
40 *vte-0.17.4-r1 (28 Oct 2008)
41
42
43
44
45 1.1 x11-libs/vte/vte-0.17.4-r2.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/vte/vte-0.17.4-r2.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/vte/vte-0.17.4-r2.ebuild?rev=1.1&content-type=text/plain
49
50 Index: vte-0.17.4-r2.ebuild
51 ===================================================================
52 # Copyright 1999-2008 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.17.4-r2.ebuild,v 1.1 2008/11/01 17:41:23 leio Exp $
55
56 inherit gnome2 eutils
57
58 DESCRIPTION="Gnome terminal widget"
59 HOMEPAGE="http://www.gnome.org/"
60
61 LICENSE="LGPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
64 # pcre is broken in this release
65 IUSE="debug doc python opengl"
66
67 RDEPEND=">=dev-libs/glib-2.14
68 >=x11-libs/gtk+-2.6
69 >=x11-libs/pango-1.1
70 >=media-libs/freetype-2.0.2
71 media-libs/fontconfig
72 sys-libs/ncurses
73 opengl? (
74 virtual/opengl
75 virtual/glu
76 )
77 python? (
78 >=dev-python/pygtk-2.4
79 >=dev-lang/python-2.4.4-r5
80 )
81 x11-libs/libX11
82 virtual/xft"
83
84 DEPEND="${RDEPEND}
85 doc? ( >=dev-util/gtk-doc-1.0 )
86 >=dev-util/intltool-0.35
87 >=dev-util/pkgconfig-0.9
88 sys-devel/gettext"
89
90 DOCS="AUTHORS ChangeLog HACKING NEWS README"
91
92 pkg_setup() {
93 G2CONF="${G2CONF}
94 $(use_enable debug)
95 $(use_enable python)
96 $(use_with opengl glX)
97 --with-xft2 --with-pangox"
98 }
99
100 src_unpack() {
101 gnome2_src_unpack
102 epatch "${FILESDIR}/${P}-fix-highlighting-on-activity.patch"
103 }