Gentoo Archives: gentoo-commits

From: "Chi-Thanh Christopher Nguyen (chithanh)" <chithanh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-plugins/gnash: ChangeLog gnash-0.8.8.ebuild
Date: Wed, 29 Sep 2010 00:29:51
Message-Id: 20100929002945.CB61820051@flycatcher.gentoo.org
1 chithanh 10/09/29 00:29:45
2
3 Modified: ChangeLog gnash-0.8.8.ebuild
4 Log:
5 Fix building of tests, bug #321017
6
7 (Portage version: 2.2_rc85/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.47 www-plugins/gnash/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/gnash/ChangeLog?rev=1.47&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/gnash/ChangeLog?rev=1.47&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/gnash/ChangeLog?r1=1.46&r2=1.47
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/www-plugins/gnash/ChangeLog,v
19 retrieving revision 1.46
20 retrieving revision 1.47
21 diff -u -r1.46 -r1.47
22 --- ChangeLog 28 Sep 2010 17:37:58 -0000 1.46
23 +++ ChangeLog 29 Sep 2010 00:29:45 -0000 1.47
24 @@ -1,6 +1,10 @@
25 # ChangeLog for www-plugins/gnash
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/gnash/ChangeLog,v 1.46 2010/09/28 17:37:58 chithanh Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/www-plugins/gnash/ChangeLog,v 1.47 2010/09/29 00:29:45 chithanh Exp $
29 +
30 + 29 Sep 2010; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
31 + gnash-0.8.8.ebuild, +files/gnash-0.8.8-external-dejagnu.patch:
32 + Fix building of tests, bug #321017
33
34 28 Sep 2010; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
35 gnash-0.8.8.ebuild, +files/gnash-0.8.8-documentation-paths.patch:
36
37
38
39 1.8 www-plugins/gnash/gnash-0.8.8.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/gnash/gnash-0.8.8.ebuild?rev=1.8&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/gnash/gnash-0.8.8.ebuild?rev=1.8&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/gnash/gnash-0.8.8.ebuild?r1=1.7&r2=1.8
44
45 Index: gnash-0.8.8.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/www-plugins/gnash/gnash-0.8.8.ebuild,v
48 retrieving revision 1.7
49 retrieving revision 1.8
50 diff -u -r1.7 -r1.8
51 --- gnash-0.8.8.ebuild 28 Sep 2010 17:37:58 -0000 1.7
52 +++ gnash-0.8.8.ebuild 29 Sep 2010 00:29:45 -0000 1.8
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/gnash/gnash-0.8.8.ebuild,v 1.7 2010/09/28 17:37:58 chithanh Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/www-plugins/gnash/gnash-0.8.8.ebuild,v 1.8 2010/09/29 00:29:45 chithanh Exp $
58
59 EAPI=3
60 CMAKE_REQUIRED="never"
61 @@ -80,7 +80,10 @@
62 DEPEND="${RDEPEND}
63 dev-util/pkgconfig
64 nls? ( sys-devel/gettext )
65 - gnome? ( app-text/rarian )"
66 + gnome? ( app-text/rarian )
67 + test? ( dev-util/dejagnu )"
68 +# Tests hang with sandbox, bug #321017
69 +RESTRICT="test"
70
71 pkg_setup() {
72 if use !ffmpeg && use !gstreamer; then
73 @@ -143,9 +146,12 @@
74 # gentoo bug #283905
75 epatch "${FILESDIR}"/${PN}-0.8.7-moc-qt4.patch
76
77 - # Install documentation into the proper directories, bug #321017
78 + # Install documentation into the proper directories, bug #296110
79 epatch "${FILESDIR}"/${PN}-0.8.8-documentation-paths.patch
80
81 + # Use external dejagnu for tests, bug #321017
82 + epatch "${FILESDIR}"/${PN}-0.8.8-external-dejagnu.patch
83 +
84 eautoreconf
85 }
86 src_configure() {