Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/vte: vte-0.14.2.ebuild vte-0.14.1.ebuild ChangeLog vte-0.16.8.ebuild vte-0.16.6-r1.ebuild vte-0.16.9.ebuild
Date: Thu, 01 Nov 2007 22:55:42
Message-Id: E1Iniwq-0001BR-Ki@stork.gentoo.org
1 eva 07/11/01 22:55:36
2
3 Modified: vte-0.14.2.ebuild vte-0.14.1.ebuild ChangeLog
4 vte-0.16.8.ebuild vte-0.16.6-r1.ebuild
5 vte-0.16.9.ebuild
6 Log:
7 fix bug 197787 and fix quoting
8 (Portage version: 2.1.3.16)
9
10 Revision Changes Path
11 1.12 x11-libs/vte/vte-0.14.2.ebuild
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/vte/vte-0.14.2.ebuild?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/vte/vte-0.14.2.ebuild?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/vte/vte-0.14.2.ebuild?r1=1.11&r2=1.12
16
17 Index: vte-0.14.2.ebuild
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.14.2.ebuild,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- vte-0.14.2.ebuild 3 Sep 2007 02:41:39 -0000 1.11
24 +++ vte-0.14.2.ebuild 1 Nov 2007 22:55:36 -0000 1.12
25 @@ -1,8 +1,8 @@
26 # Copyright 1999-2007 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.14.2.ebuild,v 1.11 2007/09/03 02:41:39 vapier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.14.2.ebuild,v 1.12 2007/11/01 22:55:36 eva Exp $
30
31 -inherit eutils gnome2 autotools
32 +inherit eutils gnome2 autotools python
33
34 DESCRIPTION="Xft powered terminal widget"
35 HOMEPAGE="http://www.gnome.org/"
36 @@ -48,6 +48,21 @@
37 epatch "${FILESDIR}/${PN}-0.13.2-no-lazy-bindings.patch"
38 epatch "${FILESDIR}/${PN}-0.14.1-fbsd.patch"
39
40 - cd ${S}/gnome-pty-helper
41 + cd "${S}/gnome-pty-helper"
42 eautomake
43 }
44 +
45 +pkg_postinst() {
46 + if use python; then
47 + python_version
48 + python_mod_optimize "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/gtk-2.0"
49 + fi
50 +}
51 +
52 +pkg_postrm() {
53 + if use python; then
54 + python_version
55 + python_mod_cleanup "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/gtk-2.0"
56 + fi
57 +}
58 +
59
60
61
62 1.14 x11-libs/vte/vte-0.14.1.ebuild
63
64 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/vte/vte-0.14.1.ebuild?rev=1.14&view=markup
65 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/vte/vte-0.14.1.ebuild?rev=1.14&content-type=text/plain
66 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/vte/vte-0.14.1.ebuild?r1=1.13&r2=1.14
67
68 Index: vte-0.14.1.ebuild
69 ===================================================================
70 RCS file: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.14.1.ebuild,v
71 retrieving revision 1.13
72 retrieving revision 1.14
73 diff -u -r1.13 -r1.14
74 --- vte-0.14.1.ebuild 22 Jul 2007 03:07:25 -0000 1.13
75 +++ vte-0.14.1.ebuild 1 Nov 2007 22:55:36 -0000 1.14
76 @@ -1,8 +1,8 @@
77 # Copyright 1999-2007 Gentoo Foundation
78 # Distributed under the terms of the GNU General Public License v2
79 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.14.1.ebuild,v 1.13 2007/07/22 03:07:25 dberkholz Exp $
80 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.14.1.ebuild,v 1.14 2007/11/01 22:55:36 eva Exp $
81
82 -inherit eutils gnome2 autotools
83 +inherit eutils gnome2 autotools python
84
85 DESCRIPTION="Xft powered terminal widget"
86 HOMEPAGE="http://www.gnome.org/"
87 @@ -48,6 +48,21 @@
88 epatch "${FILESDIR}/${PN}-0.13.2-no-lazy-bindings.patch"
89 epatch "${FILESDIR}/${P}-fbsd.patch"
90
91 - cd ${S}/gnome-pty-helper
92 + cd "${S}/gnome-pty-helper"
93 eautomake
94 }
95 +
96 +pkg_postinst() {
97 + if use python; then
98 + python_version
99 + python_mod_optimize "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/gtk-2.0"
100 + fi
101 +}
102 +
103 +pkg_postrm() {
104 + if use python; then
105 + python_version
106 + python_mod_cleanup "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/gtk-2.0"
107 + fi
108 +}
109 +
110
111
112
113 1.179 x11-libs/vte/ChangeLog
114
115 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/vte/ChangeLog?rev=1.179&view=markup
116 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/vte/ChangeLog?rev=1.179&content-type=text/plain
117 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/vte/ChangeLog?r1=1.178&r2=1.179
118
119 Index: ChangeLog
120 ===================================================================
121 RCS file: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v
122 retrieving revision 1.178
123 retrieving revision 1.179
124 diff -u -r1.178 -r1.179
125 --- ChangeLog 27 Sep 2007 11:46:00 -0000 1.178
126 +++ ChangeLog 1 Nov 2007 22:55:36 -0000 1.179
127 @@ -1,6 +1,11 @@
128 # ChangeLog for x11-libs/vte
129 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
130 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v 1.178 2007/09/27 11:46:00 armin76 Exp $
131 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v 1.179 2007/11/01 22:55:36 eva Exp $
132 +
133 + 01 Nov 2007; Gilles Dartiguelongue <eva@g.o> vte-0.14.1.ebuild,
134 + vte-0.14.2.ebuild, vte-0.16.6-r1.ebuild, vte-0.16.8.ebuild,
135 + vte-0.16.9.ebuild:
136 + fix quoting, and bug #197787
137
138 27 Sep 2007; Raúl Porcel <armin76@g.o> vte-0.16.8.ebuild:
139 alpha/ia64 stable wrt #193339
140
141
142
143 1.12 x11-libs/vte/vte-0.16.8.ebuild
144
145 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/vte/vte-0.16.8.ebuild?rev=1.12&view=markup
146 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/vte/vte-0.16.8.ebuild?rev=1.12&content-type=text/plain
147 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/vte/vte-0.16.8.ebuild?r1=1.11&r2=1.12
148
149 Index: vte-0.16.8.ebuild
150 ===================================================================
151 RCS file: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.16.8.ebuild,v
152 retrieving revision 1.11
153 retrieving revision 1.12
154 diff -u -r1.11 -r1.12
155 --- vte-0.16.8.ebuild 27 Sep 2007 11:46:00 -0000 1.11
156 +++ vte-0.16.8.ebuild 1 Nov 2007 22:55:36 -0000 1.12
157 @@ -1,8 +1,8 @@
158 # Copyright 1999-2007 Gentoo Foundation
159 # Distributed under the terms of the GNU General Public License v2
160 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.16.8.ebuild,v 1.11 2007/09/27 11:46:00 armin76 Exp $
161 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.16.8.ebuild,v 1.12 2007/11/01 22:55:36 eva Exp $
162
163 -inherit eutils gnome2 autotools
164 +inherit eutils gnome2 autotools python
165
166 DESCRIPTION="Gnome terminal widget"
167 HOMEPAGE="http://www.gnome.org/"
168 @@ -49,8 +49,8 @@
169 # Fix LINGUAS handling, remove when upstream fixes their po/Makefile.in.in
170 intltoolize --force || die
171
172 - epatch ${FILESDIR}/${PN}-0.13.2-no-lazy-bindings.patch
173 - cd ${S}/gnome-pty-helper
174 + epatch "${FILESDIR}/${PN}-0.13.2-no-lazy-bindings.patch"
175 + cd "${S}/gnome-pty-helper"
176
177 # eautoreconf will break on systems without gtk-doc
178 eautomake
179
180
181
182 1.11 x11-libs/vte/vte-0.16.6-r1.ebuild
183
184 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/vte/vte-0.16.6-r1.ebuild?rev=1.11&view=markup
185 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/vte/vte-0.16.6-r1.ebuild?rev=1.11&content-type=text/plain
186 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/vte/vte-0.16.6-r1.ebuild?r1=1.10&r2=1.11
187
188 Index: vte-0.16.6-r1.ebuild
189 ===================================================================
190 RCS file: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.16.6-r1.ebuild,v
191 retrieving revision 1.10
192 retrieving revision 1.11
193 diff -u -r1.10 -r1.11
194 --- vte-0.16.6-r1.ebuild 22 Sep 2007 08:53:09 -0000 1.10
195 +++ vte-0.16.6-r1.ebuild 1 Nov 2007 22:55:36 -0000 1.11
196 @@ -1,8 +1,8 @@
197 # Copyright 1999-2007 Gentoo Foundation
198 # Distributed under the terms of the GNU General Public License v2
199 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.16.6-r1.ebuild,v 1.10 2007/09/22 08:53:09 tgall Exp $
200 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.16.6-r1.ebuild,v 1.11 2007/11/01 22:55:36 eva Exp $
201
202 -inherit eutils gnome2 autotools
203 +inherit eutils gnome2 autotools python
204
205 DESCRIPTION="Gnome terminal widget"
206 HOMEPAGE="http://www.gnome.org/"
207 @@ -49,7 +49,21 @@
208 # Fix modified cursor keys; bug #178793
209 epatch "${FILESDIR}"/${P}-cursor-modifers-to-csi.patch
210
211 - epatch ${FILESDIR}/${PN}-0.13.2-no-lazy-bindings.patch
212 - cd ${S}/gnome-pty-helper
213 + epatch "${FILESDIR}"/${PN}-0.13.2-no-lazy-bindings.patch
214 + cd "${S}/gnome-pty-helper"
215 eautomake
216 }
217 +
218 +pkg_postinst() {
219 + if use python; then
220 + python_version
221 + python_mod_optimize "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/gtk-2.0"
222 + fi
223 +}
224 +
225 +pkg_postrm() {
226 + if use python; then
227 + python_version
228 + python_mod_cleanup "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/gtk-2.0"
229 + fi
230 +}
231
232
233
234 1.2 x11-libs/vte/vte-0.16.9.ebuild
235
236 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/vte/vte-0.16.9.ebuild?rev=1.2&view=markup
237 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/vte/vte-0.16.9.ebuild?rev=1.2&content-type=text/plain
238 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/vte/vte-0.16.9.ebuild?r1=1.1&r2=1.2
239
240 Index: vte-0.16.9.ebuild
241 ===================================================================
242 RCS file: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.16.9.ebuild,v
243 retrieving revision 1.1
244 retrieving revision 1.2
245 diff -u -r1.1 -r1.2
246 --- vte-0.16.9.ebuild 21 Sep 2007 19:14:59 -0000 1.1
247 +++ vte-0.16.9.ebuild 1 Nov 2007 22:55:36 -0000 1.2
248 @@ -1,8 +1,8 @@
249 # Copyright 1999-2007 Gentoo Foundation
250 # Distributed under the terms of the GNU General Public License v2
251 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.16.9.ebuild,v 1.1 2007/09/21 19:14:59 leio Exp $
252 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.16.9.ebuild,v 1.2 2007/11/01 22:55:36 eva Exp $
253
254 -inherit eutils gnome2 autotools
255 +inherit eutils gnome2 autotools python
256
257 DESCRIPTION="Gnome terminal widget"
258 HOMEPAGE="http://www.gnome.org/"
259 @@ -49,9 +49,24 @@
260 # Fix LINGUAS handling, remove when upstream fixes their po/Makefile.in.in
261 #intltoolize --force || die
262
263 - epatch ${FILESDIR}/${PN}-0.13.2-no-lazy-bindings.patch
264 - cd ${S}/gnome-pty-helper
265 + epatch "${FILESDIR}/${PN}-0.13.2-no-lazy-bindings.patch"
266 + cd "${S}/gnome-pty-helper"
267
268 # eautoreconf will break on systems without gtk-doc
269 eautomake
270 }
271 +
272 +pkg_postinst() {
273 + if use python; then
274 + python_version
275 + python_mod_optimize "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/gtk-2.0"
276 + fi
277 +}
278 +
279 +pkg_postrm() {
280 + if use python; then
281 + python_version
282 + python_mod_cleanup "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/gtk-2.0"
283 + fi
284 +}
285 +
286
287
288
289 --
290 gentoo-commits@g.o mailing list