Gentoo Archives: gentoo-commits

From: "Raul Porcel (armin76)" <armin76@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-client/seamonkey-bin: ChangeLog seamonkey-bin-1.1.12.ebuild
Date: Wed, 24 Sep 2008 15:15:32
Message-Id: E1KiW5R-0002xx-Ri@stork.gentoo.org
1 armin76 08/09/24 15:15:29
2
3 Modified: ChangeLog
4 Added: seamonkey-bin-1.1.12.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.52 www-client/seamonkey-bin/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey-bin/ChangeLog?rev=1.52&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey-bin/ChangeLog?rev=1.52&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey-bin/ChangeLog?r1=1.51&r2=1.52
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey-bin/ChangeLog,v
19 retrieving revision 1.51
20 retrieving revision 1.52
21 diff -u -r1.51 -r1.52
22 --- ChangeLog 4 Aug 2008 15:11:01 -0000 1.51
23 +++ ChangeLog 24 Sep 2008 15:15:29 -0000 1.52
24 @@ -1,6 +1,12 @@
25 # ChangeLog for www-client/seamonkey-bin
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey-bin/ChangeLog,v 1.51 2008/08/04 15:11:01 keytoaster Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey-bin/ChangeLog,v 1.52 2008/09/24 15:15:29 armin76 Exp $
29 +
30 +*seamonkey-bin-1.1.12 (24 Sep 2008)
31 +
32 + 24 Sep 2008; Raúl Porcel <armin76@g.o>
33 + +seamonkey-bin-1.1.12.ebuild:
34 + Version bump
35
36 04 Aug 2008; Tobias Heinlein <keytoaster@g.o>
37 seamonkey-bin-1.1.11.ebuild:
38
39
40
41 1.1 www-client/seamonkey-bin/seamonkey-bin-1.1.12.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey-bin/seamonkey-bin-1.1.12.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey-bin/seamonkey-bin-1.1.12.ebuild?rev=1.1&content-type=text/plain
45
46 Index: seamonkey-bin-1.1.12.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey-bin/seamonkey-bin-1.1.12.ebuild,v 1.1 2008/09/24 15:15:29 armin76 Exp $
51
52 inherit eutils mozilla-launcher multilib
53
54 DESCRIPTION="Mozilla Application Suite - web browser, email, HTML editor, IRC"
55 SRC_URI="http://releases.mozilla.org/pub/mozilla.org/seamonkey/releases/${PV}/seamonkey-${PV}.en-US.linux-i686.tar.gz"
56 HOMEPAGE="http://www.seamonkey-project.org/"
57 RESTRICT="strip"
58 QA_EXECSTACK="opt/seamonkey/*"
59
60 KEYWORDS="-* ~amd64 ~x86"
61 SLOT="0"
62 LICENSE="|| ( MPL-1.1 GPL-2 LGPL-2.1 )"
63 IUSE=""
64
65 DEPEND="app-arch/unzip"
66 RDEPEND="x11-libs/libXrender
67 x11-libs/libXt
68 x11-libs/libXmu
69 x86? (
70 >=x11-libs/gtk+-2.2
71 =virtual/libstdc++-3.3
72 )
73 amd64? (
74 >=app-emulation/emul-linux-x86-baselibs-1.0
75 >=app-emulation/emul-linux-x86-gtklibs-1.0
76 app-emulation/emul-linux-x86-compat
77 )
78 >=www-client/mozilla-launcher-1.56"
79
80 S="${WORKDIR}/seamonkey"
81
82 pkg_setup() {
83 # This is a binary x86 package => ABI=x86
84 # Please keep this in future versions
85 # Danny van Dyk <kugelfang@g.o> 2005/03/26
86 has_multilib_profile && ABI="x86"
87 }
88
89 src_install() {
90 declare MOZILLA_FIVE_HOME=/opt/seamonkey
91
92 # Install seamonkey in /opt
93 dodir ${MOZILLA_FIVE_HOME%/*}
94 mv "${S}" "${D}${MOZILLA_FIVE_HOME}"
95
96 # Install /usr/bin/seamonkey-bin
97 install_mozilla_launcher_stub seamonkey-bin ${MOZILLA_FIVE_HOME}
98
99 # Install icon and .desktop for menu entry
100 doicon "${FILESDIR}/icon/${PN}.png"
101 domenu "${FILESDIR}/icon/${PN}.desktop"
102 }
103
104 pkg_preinst() {
105 declare MOZILLA_FIVE_HOME=/opt/seamonkey
106
107 # Remove entire installed instance to prevent all kinds of
108 # problems... see bug 44772 for example
109 rm -rf "${ROOT}${MOZILLA_FIVE_HOME}"
110 }
111
112 pkg_postinst() {
113 use amd64 && einfo "NB: You just installed a 32-bit seamonkey"
114 update_mozilla_launcher_symlinks
115 }
116
117 pkg_postrm() {
118 update_mozilla_launcher_symlinks
119 }