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: Wed, 09 Sep 2009 10:17:51
Message-Id: E1MlKFI-0004Cz-Mj@stork.gentoo.org
1 mrpouet 09/09/09 10:17:48
2
3 Modified: ChangeLog gnash-0.8.5.ebuild
4 Log:
5 Fix bug #284244, src_install() always failed with USE=-nsplugin due to a stupid test line 184, replace it by an if
6 (Portage version: 2.2_rc40/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.8 www-plugins/gnash/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-plugins/gnash/ChangeLog?rev=1.8&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-plugins/gnash/ChangeLog?rev=1.8&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-plugins/gnash/ChangeLog?r1=1.7&r2=1.8
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/www-plugins/gnash/ChangeLog,v
18 retrieving revision 1.7
19 retrieving revision 1.8
20 diff -u -r1.7 -r1.8
21 --- ChangeLog 8 Sep 2009 21:22:34 -0000 1.7
22 +++ ChangeLog 9 Sep 2009 10:17:48 -0000 1.8
23 @@ -1,6 +1,11 @@
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.7 2009/09/08 21:22:34 mrpouet Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/www-plugins/gnash/ChangeLog,v 1.8 2009/09/09 10:17:48 mrpouet Exp $
28 +
29 + 09 Sep 2009; Romain Perier <mrpouet@g.o>
30 + gnash-0.8.5.ebuild:
31 + Fix bug #284244, src_install() always failed with USE=-nsplugin due to
32 + stupid test line 184, replace it by an if.
33
34 08 Sep 2009; Romain Perier <mrpouet@g.o>
35 gnash-0.8.5.ebuild, +files/gnash-0.8.5-klash.patch,
36
37
38
39 1.4 www-plugins/gnash/gnash-0.8.5.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-plugins/gnash/gnash-0.8.5.ebuild?rev=1.4&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-plugins/gnash/gnash-0.8.5.ebuild?rev=1.4&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-plugins/gnash/gnash-0.8.5.ebuild?r1=1.3&r2=1.4
44
45 Index: gnash-0.8.5.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/www-plugins/gnash/gnash-0.8.5.ebuild,v
48 retrieving revision 1.3
49 retrieving revision 1.4
50 diff -u -r1.3 -r1.4
51 --- gnash-0.8.5.ebuild 8 Sep 2009 21:20:23 -0000 1.3
52 +++ gnash-0.8.5.ebuild 9 Sep 2009 10:17:48 -0000 1.4
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2009 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.5.ebuild,v 1.3 2009/09/08 21:20:23 mrpouet Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/www-plugins/gnash/gnash-0.8.5.ebuild,v 1.4 2009/09/09 10:17:48 mrpouet Exp $
58
59 EAPI="2"
60 KDE_REQUIRED="optional"
61 @@ -118,7 +118,7 @@
62 eautoreconf
63 }
64 src_configure() {
65 - local myconf jobs
66 + local myconf
67 local gui="sdl"
68 # Set nsplugin install directory.
69 use nsplugin && myconf="${myconf} --with-npapi-plugindir=/opt/netscape/plugins"
70 @@ -179,9 +179,12 @@
71 ${myconf}
72 }
73 src_install() {
74 - emake ${jobs} DESTDIR="${D}" install || die "emake install failed"
75 + emake DESTDIR="${D}" install || die "emake install failed"
76 +
77 # Install nsplugin in directory set by --with-npapi-plugindir.
78 - use nsplugin && emake DESTDIR="${D}" install-plugin || die "install plugins failed"
79 + if use nsplugin; then
80 + emake DESTDIR="${D}" install-plugin || die "install plugins failed"
81 + fi
82
83 # Install kde konqueror plugin.
84 if use kde; then