Gentoo Archives: gentoo-commits

From: "Romain Perier (mrpouet)" <mrpouet@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-plugins/gnash: ChangeLog gnash-0.8.5.ebuild
Date: Thu, 10 Sep 2009 17:12:25
Message-Id: E1MlnC3-0001Nd-GG@stork.gentoo.org
1 mrpouet 09/09/10 17:12:23
2
3 Modified: ChangeLog gnash-0.8.5.ebuild
4 Log:
5 Fix bug #284355, testsuite failed due to inheritance from kde4-base.eclass which exported kde4-base_src_test which tried to find a CMakeLists.txt (does not exist), re-import src_test() from 0.8.4
6 (Portage version: 2.2_rc40/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.10 www-plugins/gnash/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-plugins/gnash/ChangeLog?rev=1.10&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-plugins/gnash/ChangeLog?rev=1.10&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-plugins/gnash/ChangeLog?r1=1.9&r2=1.10
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/www-plugins/gnash/ChangeLog,v
18 retrieving revision 1.9
19 retrieving revision 1.10
20 diff -u -r1.9 -r1.10
21 --- ChangeLog 9 Sep 2009 10:35:30 -0000 1.9
22 +++ ChangeLog 10 Sep 2009 17:12:23 -0000 1.10
23 @@ -1,6 +1,12 @@
24 # ChangeLog for www-plugins/gnash
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/gnash/ChangeLog,v 1.9 2009/09/09 10:35:30 mrpouet Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/www-plugins/gnash/ChangeLog,v 1.10 2009/09/10 17:12:23 mrpouet Exp $
28 +
29 + 10 Sep 2009; Romain Perier <mrpouet@g.o>
30 + gnash-0.8.5.ebuild:
31 + Fix bug #284355, testsuite failed due to inheritance from kde4-base.eclass
32 + which exported kde4-base_src_test which tried to find a CMakeLists.txt
33 + (does not exist), re-import src_test() from 0.8.4.
34
35 09 Sep 2009; Romain Perier <mrpouet@g.o>
36 gnash-0.8.5.ebuild, +files/gnash-0.8.5-xpcom-idldir.patch:
37
38
39
40 1.6 www-plugins/gnash/gnash-0.8.5.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-plugins/gnash/gnash-0.8.5.ebuild?rev=1.6&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-plugins/gnash/gnash-0.8.5.ebuild?rev=1.6&content-type=text/plain
44 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-plugins/gnash/gnash-0.8.5.ebuild?r1=1.5&r2=1.6
45
46 Index: gnash-0.8.5.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/www-plugins/gnash/gnash-0.8.5.ebuild,v
49 retrieving revision 1.5
50 retrieving revision 1.6
51 diff -u -r1.5 -r1.6
52 --- gnash-0.8.5.ebuild 9 Sep 2009 10:35:30 -0000 1.5
53 +++ gnash-0.8.5.ebuild 10 Sep 2009 17:12:23 -0000 1.6
54 @@ -1,6 +1,6 @@
55 # Copyright 1999-2009 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/gnash/gnash-0.8.5.ebuild,v 1.5 2009/09/09 10:35:30 mrpouet Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/www-plugins/gnash/gnash-0.8.5.ebuild,v 1.6 2009/09/10 17:12:23 mrpouet Exp $
59
60 EAPI="2"
61 KDE_REQUIRED="optional"
62 @@ -183,6 +183,13 @@
63 --enable-gui=${gui} \
64 ${myconf}
65 }
66 +src_test() {
67 + local log=testsuite-results.txt
68 + cd testsuite
69 + emake check || die "make check failed"
70 + ./anaylse-results.sh > $log || die "results analyze failed"
71 + cat $log
72 +}
73 src_install() {
74 emake DESTDIR="${D}" install || die "emake install failed"