Gentoo Archives: gentoo-commits

From: "Matthias Schwarzott (zzam)" <zzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-tv/tvbrowser: tvbrowser-2.5-r1.ebuild tvbrowser-2.5.ebuild ChangeLog tvbrowser-2.2.1.ebuild tvbrowser-2.1.ebuild
Date: Tue, 27 Nov 2007 10:54:11
Message-Id: E1Iwy4h-00086i-Jk@stork.gentoo.org
1 zzam 07/11/27 10:53:55
2
3 Modified: tvbrowser-2.5-r1.ebuild tvbrowser-2.5.ebuild
4 ChangeLog tvbrowser-2.2.1.ebuild
5 tvbrowser-2.1.ebuild
6 Log:
7 Fixed quoting.
8 (Portage version: 2.1.4_rc3)
9
10 Revision Changes Path
11 1.3 media-tv/tvbrowser/tvbrowser-2.5-r1.ebuild
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.5-r1.ebuild?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.5-r1.ebuild?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.5-r1.ebuild?r1=1.2&r2=1.3
16
17 Index: tvbrowser-2.5-r1.ebuild
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.5-r1.ebuild,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- tvbrowser-2.5-r1.ebuild 22 Jul 2007 09:01:22 -0000 1.2
24 +++ tvbrowser-2.5-r1.ebuild 27 Nov 2007 10:53:54 -0000 1.3
25 @@ -1,6 +1,6 @@
26 # Copyright 1999-2007 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.5-r1.ebuild,v 1.2 2007/07/22 09:01:22 dberkholz Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.5-r1.ebuild,v 1.3 2007/11/27 10:53:54 zzam Exp $
30
31 WANT_AUTOCONF="latest"
32 WANT_AUTOMAKE="latest"
33 @@ -47,17 +47,17 @@
34 src_unpack() {
35 unpack ${P}-src.zip
36
37 - cd ${S}
38 - epatch ${FILESDIR}/${P}-makefiles.patch
39 - epatch ${FILESDIR}/${P}_noWin32.patch
40 - epatch ${FILESDIR}/${P}_buildxml.patch
41 + cd "${S}"
42 + epatch "${FILESDIR}"/${P}-makefiles.patch
43 + epatch "${FILESDIR}"/${P}_noWin32.patch
44 + epatch "${FILESDIR}"/${P}_buildxml.patch
45
46 #fix bug #170363
47 - epatch ${FILESDIR}/${P}_Localizer.patch
48 + epatch "${FILESDIR}"/${P}_Localizer.patch
49
50 # missing commons-compress, gdata-calendar, gdata-client
51 - rm -r ${S}/src/calendarexportplugin
52 - rm -r ${S}/src/bbcbackstagedataservice
53 + rm -r "${S}"/src/calendarexportplugin
54 + rm -r "${S}"/src/bbcbackstagedataservice
55
56 local J_ARCH
57 case "${ARCH}" in
58 @@ -66,10 +66,10 @@
59 *) die "not supported arch for this ebuild" ;;
60 esac
61
62 - sed -i ${S}/deployment/x11/src/Makefile.am \
63 + sed -i "${S}"/deployment/x11/src/Makefile.am \
64 -e "s-/lib/i386/-/lib/${J_ARCH}/-"
65
66 - cd ${S}/lib
67 + cd "${S}"/lib
68 rm *.jar
69
70 java-pkg_jar-from junit
71 @@ -81,7 +81,7 @@
72 java-pkg_jar-from l2fprod-common l2fprod-common-tasks.jar
73
74 #fix bug #170364
75 - cd ${S}/deployment/x11
76 + cd "${S}"/deployment/x11
77 chmod u+x configure
78 rm src/libDesktopIndicator.so
79
80 @@ -94,12 +94,12 @@
81 src_compile() {
82 local antflags="runtime-linux"
83 use doc && antflags="${antflags} public-doc"
84 - cd ${S}
85 + cd "${S}"
86 mkdir public
87 eant ${antflags}
88
89 # second part: DesktopIndicator
90 - cd ${S}/deployment/x11
91 + cd "${S}"/deployment/x11
92 append-flags -fPIC
93 econf || die "econf failed"
94 emake || die "emake failed"
95 @@ -117,10 +117,10 @@
96 todir="${todir}-${SLOT}"
97 fi
98
99 - cp -a imgs ${D}/${todir}
100 - cp -a icons ${D}/${todir}
101 - cp -a plugins ${D}/${todir}
102 - cp linux.properties ${D}/${todir}
103 + cp -a imgs "${D}"/${todir}
104 + cp -a icons "${D}"/${todir}
105 + cp -a plugins "${D}"/${todir}
106 + cp linux.properties "${D}"/${todir}
107
108 insinto "/usr/share/${PN}/themepacks"
109 doins themepacks/themepack.zip
110 @@ -135,7 +135,7 @@
111 --pwd ${todir} \
112 --java_args "-Djava.library.path=${todir} -Dpropertiesfile=${todir}/linux.properties"
113
114 - cp ${S}/deployment/x11/src/libDesktopIndicator.so ${D}/${todir}
115 + cp "${S}"/deployment/x11/src/libDesktopIndicator.so "${D}"/${todir}
116 }
117
118 pkg_postinst() {
119
120
121
122 1.4 media-tv/tvbrowser/tvbrowser-2.5.ebuild
123
124 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.5.ebuild?rev=1.4&view=markup
125 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.5.ebuild?rev=1.4&content-type=text/plain
126 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.5.ebuild?r1=1.3&r2=1.4
127
128 Index: tvbrowser-2.5.ebuild
129 ===================================================================
130 RCS file: /var/cvsroot/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.5.ebuild,v
131 retrieving revision 1.3
132 retrieving revision 1.4
133 diff -u -r1.3 -r1.4
134 --- tvbrowser-2.5.ebuild 22 Jul 2007 09:01:22 -0000 1.3
135 +++ tvbrowser-2.5.ebuild 27 Nov 2007 10:53:54 -0000 1.4
136 @@ -1,6 +1,6 @@
137 # Copyright 1999-2007 Gentoo Foundation
138 # Distributed under the terms of the GNU General Public License v2
139 -# $Header: /var/cvsroot/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.5.ebuild,v 1.3 2007/07/22 09:01:22 dberkholz Exp $
140 +# $Header: /var/cvsroot/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.5.ebuild,v 1.4 2007/11/27 10:53:54 zzam Exp $
141
142 WANT_AUTOCONF="latest"
143 WANT_AUTOMAKE="latest"
144 @@ -47,14 +47,14 @@
145 src_unpack() {
146 unpack ${P}-src.zip
147
148 - cd ${S}
149 - epatch ${FILESDIR}/${P}-makefiles.patch
150 - epatch ${FILESDIR}/${P}_noWin32.patch
151 - epatch ${FILESDIR}/${P}_buildxml.patch
152 + cd "${S}"
153 + epatch "${FILESDIR}"/${P}-makefiles.patch
154 + epatch "${FILESDIR}"/${P}_noWin32.patch
155 + epatch "${FILESDIR}"/${P}_buildxml.patch
156
157 # missing commons-compress, gdata-calendar, gdata-client
158 - rm -r ${S}/src/calendarexportplugin
159 - rm -r ${S}/src/bbcbackstagedataservice
160 + rm -r "${S}"/src/calendarexportplugin
161 + rm -r "${S}"/src/bbcbackstagedataservice
162
163 local J_ARCH
164 case "${ARCH}" in
165 @@ -63,10 +63,10 @@
166 *) die "not supported arch for this ebuild" ;;
167 esac
168
169 - sed -i ${S}/deployment/x11/src/Makefile.am \
170 + sed -i "${S}"/deployment/x11/src/Makefile.am \
171 -e "s-/lib/i386/-/lib/${J_ARCH}/-"
172
173 - cd ${S}/lib
174 + cd "${S}"/lib
175 rm *.jar
176
177 java-pkg_jar-from junit
178 @@ -77,7 +77,7 @@
179 java-pkg_jar-from skinlf
180 java-pkg_jar-from l2fprod-common l2fprod-common-tasks.jar
181
182 - cd ${S}/deployment/x11
183 + cd "${S}"/deployment/x11
184 rm src/libDesktopIndicator.so
185 rm configure
186
187 @@ -90,12 +90,12 @@
188 src_compile() {
189 local antflags="runtime-linux"
190 use doc && antflags="${antflags} public-doc"
191 - cd ${S}
192 + cd "${S}"
193 mkdir public
194 eant ${antflags}
195
196 # second part: DesktopIndicator
197 - cd ${S}/deployment/x11
198 + cd "${S}"/deployment/x11
199 append-flags -fPIC
200 econf || die "econf failed"
201 emake || die "emake failed"
202 @@ -113,10 +113,10 @@
203 todir="${todir}-${SLOT}"
204 fi
205
206 - cp -a imgs ${D}/${todir}
207 - cp -a icons ${D}/${todir}
208 - cp -a plugins ${D}/${todir}
209 - cp linux.properties ${D}/${todir}
210 + cp -a imgs "${D}"/${todir}
211 + cp -a icons "${D}"/${todir}
212 + cp -a plugins "${D}"/${todir}
213 + cp linux.properties "${D}"/${todir}
214
215 insinto "/usr/share/${PN}/themepacks"
216 doins themepacks/themepack.zip
217 @@ -130,7 +130,7 @@
218 --jar ${todir}/lib/tvbrowser.jar \
219 --pwd ${todir}
220
221 - cp ${S}/deployment/x11/src/libDesktopIndicator.so ${D}/${todir}
222 + cp "${S}"/deployment/x11/src/libDesktopIndicator.so "${D}"/${todir}
223 }
224
225 pkg_postinst() {
226
227
228
229 1.20 media-tv/tvbrowser/ChangeLog
230
231 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/tvbrowser/ChangeLog?rev=1.20&view=markup
232 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/tvbrowser/ChangeLog?rev=1.20&content-type=text/plain
233 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/tvbrowser/ChangeLog?r1=1.19&r2=1.20
234
235 Index: ChangeLog
236 ===================================================================
237 RCS file: /var/cvsroot/gentoo-x86/media-tv/tvbrowser/ChangeLog,v
238 retrieving revision 1.19
239 retrieving revision 1.20
240 diff -u -r1.19 -r1.20
241 --- ChangeLog 15 Nov 2007 01:03:01 -0000 1.19
242 +++ ChangeLog 27 Nov 2007 10:53:54 -0000 1.20
243 @@ -1,6 +1,10 @@
244 # ChangeLog for media-tv/tvbrowser
245 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
246 -# $Header: /var/cvsroot/gentoo-x86/media-tv/tvbrowser/ChangeLog,v 1.19 2007/11/15 01:03:01 betelgeuse Exp $
247 +# $Header: /var/cvsroot/gentoo-x86/media-tv/tvbrowser/ChangeLog,v 1.20 2007/11/27 10:53:54 zzam Exp $
248 +
249 + 27 Nov 2007; Matthias Schwarzott <zzam@g.o> tvbrowser-2.1.ebuild,
250 + tvbrowser-2.2.1.ebuild, tvbrowser-2.5.ebuild, tvbrowser-2.5-r1.ebuild:
251 + Fixed quoting.
252
253 15 Nov 2007; Petteri Räty <betelgeuse@g.o> tvbrowser-2.5.2.ebuild,
254 tvbrowser-2.5.3.ebuild:
255
256
257
258 1.8 media-tv/tvbrowser/tvbrowser-2.2.1.ebuild
259
260 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.2.1.ebuild?rev=1.8&view=markup
261 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.2.1.ebuild?rev=1.8&content-type=text/plain
262 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.2.1.ebuild?r1=1.7&r2=1.8
263
264 Index: tvbrowser-2.2.1.ebuild
265 ===================================================================
266 RCS file: /var/cvsroot/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.2.1.ebuild,v
267 retrieving revision 1.7
268 retrieving revision 1.8
269 diff -u -r1.7 -r1.8
270 --- tvbrowser-2.2.1.ebuild 22 Jul 2007 09:01:22 -0000 1.7
271 +++ tvbrowser-2.2.1.ebuild 27 Nov 2007 10:53:54 -0000 1.8
272 @@ -1,6 +1,6 @@
273 # Copyright 1999-2007 Gentoo Foundation
274 # Distributed under the terms of the GNU General Public License v2
275 -# $Header: /var/cvsroot/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.2.1.ebuild,v 1.7 2007/07/22 09:01:22 dberkholz Exp $
276 +# $Header: /var/cvsroot/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.2.1.ebuild,v 1.8 2007/11/27 10:53:54 zzam Exp $
277
278 WANT_AUTOCONF="latest"
279 WANT_AUTOMAKE="latest"
280 @@ -45,7 +45,7 @@
281 src_unpack() {
282 unpack ${P}-src.zip
283
284 - epatch ${FILESDIR}/${P}-makefiles.patch
285 + epatch "${FILESDIR}"/${P}-makefiles.patch
286
287 local J_ARCH
288 case "${ARCH}" in
289 @@ -54,10 +54,10 @@
290 *) die "not supported arch for this ebuild" ;;
291 esac
292
293 - sed -i ${S}/deployment/x11/src/Makefile.am \
294 + sed -i "${S}"/deployment/x11/src/Makefile.am \
295 -e "s-/lib/i386/-/lib/${J_ARCH}/-"
296
297 - cd ${S}/lib
298 + cd "${S}"/lib
299 rm *.jar
300
301 java-pkg_jar-from junit
302 @@ -68,7 +68,7 @@
303 java-pkg_jar-from skinlf
304 java-pkg_jar-from l2fprod-common l2fprod-common-tasks.jar
305
306 - cd ${S}/deployment/x11
307 + cd "${S}"/deployment/x11
308 rm src/libDesktopIndicator.so
309 rm configure
310
311 @@ -81,12 +81,12 @@
312 src_compile() {
313 local antflags="runtime-linux"
314 use doc && antflags="${antflags} public-doc"
315 - cd ${S}
316 + cd "${S}"
317 mkdir public
318 eant ${antflags}
319
320 # second part: DesktopIndicator
321 - cd ${S}/deployment/x11
322 + cd "${S}"/deployment/x11
323 append-flags -fPIC
324 econf || die "econf failed"
325 emake || die "emake failed"
326 @@ -104,10 +104,10 @@
327 todir="${todir}-${SLOT}"
328 fi
329
330 - cp -a imgs ${D}/${todir}
331 - cp -a icons ${D}/${todir}
332 - cp -a plugins ${D}/${todir}
333 - cp linux.properties ${D}/${todir}
334 + cp -a imgs "${D}"/${todir}
335 + cp -a icons "${D}"/${todir}
336 + cp -a plugins "${D}"/${todir}
337 + cp linux.properties "${D}"/${todir}
338
339 insinto "/usr/share/${PN}/themepacks"
340 doins themepacks/themepack.zip
341 @@ -121,7 +121,7 @@
342 --jar ${todir}/lib/tvbrowser.jar \
343 --pwd ${todir}
344
345 - cp ${S}/deployment/x11/src/libDesktopIndicator.so ${D}/${todir}
346 + cp "${S}"/deployment/x11/src/libDesktopIndicator.so "${D}"/${todir}
347 }
348
349 pkg_postinst() {
350
351
352
353 1.7 media-tv/tvbrowser/tvbrowser-2.1.ebuild
354
355 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.1.ebuild?rev=1.7&view=markup
356 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.1.ebuild?rev=1.7&content-type=text/plain
357 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.1.ebuild?r1=1.6&r2=1.7
358
359 Index: tvbrowser-2.1.ebuild
360 ===================================================================
361 RCS file: /var/cvsroot/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.1.ebuild,v
362 retrieving revision 1.6
363 retrieving revision 1.7
364 diff -u -r1.6 -r1.7
365 --- tvbrowser-2.1.ebuild 22 Jul 2007 09:01:22 -0000 1.6
366 +++ tvbrowser-2.1.ebuild 27 Nov 2007 10:53:54 -0000 1.7
367 @@ -1,6 +1,6 @@
368 # Copyright 1999-2007 Gentoo Foundation
369 # Distributed under the terms of the GNU General Public License v2
370 -# $Header: /var/cvsroot/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.1.ebuild,v 1.6 2007/07/22 09:01:22 dberkholz Exp $
371 +# $Header: /var/cvsroot/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.1.ebuild,v 1.7 2007/11/27 10:53:54 zzam Exp $
372
373 WANT_AUTOCONF="latest"
374 WANT_AUTOMAKE="latest"
375 @@ -43,7 +43,7 @@
376 src_unpack() {
377 unpack ${A}
378
379 - epatch ${FILESDIR}/${P}-makefiles.patch
380 + epatch "${FILESDIR}"/${P}-makefiles.patch
381
382 local J_ARCH
383 case "${ARCH}" in
384 @@ -52,10 +52,10 @@
385 *) die "not supported arch for this ebuild" ;;
386 esac
387
388 - sed -i ${S}/deployment/x11/src/Makefile.am \
389 + sed -i "${S}"/deployment/x11/src/Makefile.am \
390 -e "s-/lib/i386/-/lib/${J_ARCH}/-"
391
392 - cd ${S}/lib
393 + cd "${S}"/lib
394 rm *.jar
395
396 java-pkg_jar-from junit
397 @@ -64,7 +64,7 @@
398 java-pkg_jar-from bsh bsh.jar bsh-2.0b1.jar
399 java-pkg_jar-from skinlf
400
401 - cd ${S}/deployment/x11
402 + cd "${S}"/deployment/x11
403 rm configure
404
405 eautoreconf
406 @@ -74,12 +74,12 @@
407 local antflags="runtime-linux"
408 use doc && antflags="${antflags} public-doc"
409 use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
410 - cd ${S}
411 + cd "${S}"
412 mkdir public
413 ant ${antflags} || die "compilation failed !"
414
415 # second part: systray-module
416 - cd ${S}/deployment/x11
417 + cd "${S}"/deployment/x11
418 append-flags -fPIC
419 econf || die "econf failed"
420 emake || die "emake failed"
421 @@ -97,11 +97,11 @@
422 todir="${todir}-${SLOT}"
423 fi
424
425 - cp -a imgs ${D}/${todir}
426 - cp -a plugins ${D}/${todir}
427 - cp linux.properties ${D}/${todir}
428 + cp -a imgs "${D}"/${todir}
429 + cp -a plugins "${D}"/${todir}
430 + cp linux.properties "${D}"/${todir}
431
432 - cp libDesktopIndicator.so ${D}/${todir}
433 + cp libDesktopIndicator.so "${D}"/${todir}
434
435 mkdir "${D}/usr/share/${PN}-themepacks"
436 cp themepacks/themepack.zip "${D}/usr/share/${PN}-themepacks"
437 @@ -111,7 +111,7 @@
438 unpack allthemepacks.zip
439 fi
440
441 - mkdir ${D}/${todir}/bin
442 + mkdir "${D}"/${todir}/bin
443
444 echo "#!/bin/bash" > "${D}/${todir}/bin/tvbrowser.sh"
445 echo "cd ${todir}" >> "${D}/${todir}/bin/tvbrowser.sh"
446
447
448
449 --
450 gentoo-commits@g.o mailing list