blob: ecb8f3afa62587a9006b9ad7ddfc5448a5a061d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla-bin/mozilla-bin-1.7.3.ebuild,v 1.1 2004/09/14 21:18:54 brad Exp $
inherit nsplugins eutils mozilla-launcher
IUSE=""
# handle _rc versions
MY_PV=${PV/_alpha/a} # handle alpha
MY_PV=${MY_PV/_beta/b} # handle beta
MY_PV=${MY_PV/_rc/rc} # handle rc
MY_PN=${PN/-bin/}
S=${WORKDIR}/mozilla
DESCRIPTION="Mozilla Application Suite - web browser, email, HTML editor, IRC"
HOMEPAGE="http://www.mozilla.org"
# Mirrors have it in one of the following places, depending on what
# mirror you check and when you check it... :-(
SRC_URI="http://ftp.mozilla.org/pub/mozilla.org/mozilla/releases/mozilla${PV}/mozilla-i686-pc-linux-gnu-${PV}.tar.gz"
RESTRICT="nostrip"
KEYWORDS="~x86 ~amd64"
SLOT="0"
LICENSE="MPL-1.1 NPL-1.1"
DEPEND="virtual/libc"
RDEPEND="virtual/x11
x86? (
>=sys-libs/lib-compat-1.0-r2
=x11-libs/gtk+-1.2*
)
amd64? (
>=app-emulation/emul-linux-x86-baselibs-1.0
>=app-emulation/emul-linux-x86-gtklibs-1.0
)
virtual/x11
>=net-www/mozilla-launcher-1.13"
src_install() {
# Install mozilla in /opt
dodir /opt
mv ${S} ${D}/opt/mozilla
# Plugin path setup (rescuing the existing plugins)
src_mv_plugins /opt/mozilla/plugins
# Fixing permissions
chown -R root:root ${D}/opt/mozilla
# mozilla-launcher-1.8 supports -bin versions
dodir /usr/bin
dosym /usr/libexec/mozilla-launcher /usr/bin/mozilla-bin
# Install icon and .desktop for menu entry
insinto /usr/share/pixmaps
doins ${FILESDIR}/icon/mozilla-bin-icon.png
insinto /usr/share/applications
doins ${FILESDIR}/icon/mozilla-bin.desktop
}
pkg_preinst() {
export MOZILLA_FIVE_HOME=${ROOT}/opt/mozilla
# Remove the old plugins dir
pkg_mv_plugins ${MOZILLA_FIVE_HOME}/plugins
# Remove entire installed instance to prevent all kinds of
# problems... see bug 44772 for example
rm -rf "${MOZILLA_FIVE_HOME}"
}
pkg_postinst() {
export MOZILLA_FIVE_HOME=${ROOT}/opt/mozilla
update_mozilla_launcher_symlinks
}
pkg_postrm() {
update_mozilla_launcher_symlinks
}
|