Gentoo Archives: gentoo-commits

From: "Lars Wendler (polynomial-c)" <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-client/seamonkey: ChangeLog seamonkey-2.5.ebuild
Date: Wed, 23 Nov 2011 23:00:02
Message-Id: 20111123225952.8098E20034@flycatcher.gentoo.org
1 polynomial-c 11/11/23 22:59:52
2
3 Modified: ChangeLog seamonkey-2.5.ebuild
4 Log:
5 Use nsplugins.eclass to handle the plugins directory
6
7 (Portage version: 2.2.0_alpha77/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.346 www-client/seamonkey/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.346&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.346&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/ChangeLog?r1=1.345&r2=1.346
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v
19 retrieving revision 1.345
20 retrieving revision 1.346
21 diff -u -r1.345 -r1.346
22 --- ChangeLog 23 Nov 2011 08:01:27 -0000 1.345
23 +++ ChangeLog 23 Nov 2011 22:59:52 -0000 1.346
24 @@ -1,6 +1,9 @@
25 # ChangeLog for www-client/seamonkey
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.345 2011/11/23 08:01:27 polynomial-c Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.346 2011/11/23 22:59:52 polynomial-c Exp $
29 +
30 + 23 Nov 2011; Lars Wendler <polynomial-c@g.o> seamonkey-2.5.ebuild:
31 + Use nsplugins.eclass to handle the plugins directory.
32
33 *seamonkey-2.5 (23 Nov 2011)
34
35
36
37
38 1.2 www-client/seamonkey/seamonkey-2.5.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/seamonkey-2.5.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/seamonkey-2.5.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/seamonkey-2.5.ebuild?r1=1.1&r2=1.2
43
44 Index: seamonkey-2.5.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-2.5.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- seamonkey-2.5.ebuild 23 Nov 2011 08:01:27 -0000 1.1
51 +++ seamonkey-2.5.ebuild 23 Nov 2011 22:59:52 -0000 1.2
52 @@ -1,11 +1,11 @@
53 # Copyright 1999-2011 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-2.5.ebuild,v 1.1 2011/11/23 08:01:27 polynomial-c Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-2.5.ebuild,v 1.2 2011/11/23 22:59:52 polynomial-c Exp $
57
58 EAPI="3"
59 WANT_AUTOCONF="2.1"
60
61 -inherit flag-o-matic toolchain-funcs eutils mozconfig-3 multilib pax-utils fdo-mime autotools mozextension versionator python
62 +inherit flag-o-matic toolchain-funcs eutils mozconfig-3 multilib pax-utils fdo-mime autotools mozextension versionator python nsplugins
63
64 PATCH="${PN}-2.5-patches-01"
65 EMVER="1.3.3"
66 @@ -322,10 +322,8 @@
67 > "${D}"${MOZILLA_FIVE_HOME}/defaults/pref/all-gentoo.js \
68 || die
69
70 - # Plugins dir
71 - rm -rf "${D}"${MOZILLA_FIVE_HOME}/plugins || die "failed to remove existing plugins dir"
72 - dosym ../nsbrowser/plugins "${MOZILLA_FIVE_HOME}"/plugins || die
73 - #share_plugins_dir
74 + # Handle plugins dir through nsplugins.eclass
75 + share_plugins_dir
76
77 doman "${S}"/suite/app/${PN}.1 || die
78 }