diff options
author | Brad Laue <brad@gentoo.org> | 2004-09-14 21:38:10 +0000 |
---|---|---|
committer | Brad Laue <brad@gentoo.org> | 2004-09-14 21:38:10 +0000 |
commit | a1e96ff983fe4af1ddd3a40a4b121e4c7a6e90b3 (patch) | |
tree | 1e2a515f10ea383353b2c1435b669fa90c0652e5 /net-www/mozilla-firefox-bin | |
parent | security bump. bug #63079 : A malicious formatted mp3/2 causes mpg123 to fail... (diff) | |
download | gentoo-2-a1e96ff983fe4af1ddd3a40a4b121e4c7a6e90b3.tar.gz gentoo-2-a1e96ff983fe4af1ddd3a40a4b121e4c7a6e90b3.tar.bz2 gentoo-2-a1e96ff983fe4af1ddd3a40a4b121e4c7a6e90b3.zip |
Update to 1.0PR
Diffstat (limited to 'net-www/mozilla-firefox-bin')
3 files changed, 97 insertions, 1 deletions
diff --git a/net-www/mozilla-firefox-bin/ChangeLog b/net-www/mozilla-firefox-bin/ChangeLog index b538f25b5db1..748f52ffb9f3 100644 --- a/net-www/mozilla-firefox-bin/ChangeLog +++ b/net-www/mozilla-firefox-bin/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-www/mozilla-firefox-bin # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla-firefox-bin/ChangeLog,v 1.19 2004/08/05 20:07:03 slarti Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla-firefox-bin/ChangeLog,v 1.20 2004/09/14 21:38:10 brad Exp $ + +*mozilla-firefox-bin-1.0_pre (14 Sep 2004) + + 14 Sep 2004; Brad Laue <brad@gentoo.org> + +mozilla-firefox-bin-1.0_pre.ebuild: + Update to Mozilla Firefox 1.0PR 05 Aug 2004; Tom Martin <slarti@gentoo.org> mozilla-firefox-bin-0.9.3.ebuild: diff --git a/net-www/mozilla-firefox-bin/files/digest-mozilla-firefox-bin-1.0_pre b/net-www/mozilla-firefox-bin/files/digest-mozilla-firefox-bin-1.0_pre new file mode 100644 index 000000000000..129e64f27123 --- /dev/null +++ b/net-www/mozilla-firefox-bin/files/digest-mozilla-firefox-bin-1.0_pre @@ -0,0 +1 @@ +MD5 dd0ccca00eea3f372a07ac844705ba48 firefox-1.0PR-i686-linux-gtk2+xft.tar.gz 8144842 diff --git a/net-www/mozilla-firefox-bin/mozilla-firefox-bin-1.0_pre.ebuild b/net-www/mozilla-firefox-bin/mozilla-firefox-bin-1.0_pre.ebuild new file mode 100644 index 000000000000..9882de82117f --- /dev/null +++ b/net-www/mozilla-firefox-bin/mozilla-firefox-bin-1.0_pre.ebuild @@ -0,0 +1,89 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla-firefox-bin/mozilla-firefox-bin-1.0_pre.ebuild,v 1.1 2004/09/14 21:38:10 brad Exp $ + +inherit nsplugins eutils mozilla-launcher + +IUSE="gnome" + +MY_PN=${PN/-bin/} +MY_PV=${PV/_pre/PR} +S=${WORKDIR}/firefox +DESCRIPTION="The Mozilla Firefox Web Browser" +# 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/firefox/releases/0.10/firefox-${MY_PV}-i686-linux-gtk2+xft.tar.gz + http://ftp.mozilla.org/pub/firefox/releases/0.10/firefox-${MY_PV}-i686-linux-gtk2+xft.tar.gz" +HOMEPAGE="http://www.mozilla.org/projects/firefox" +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+-2.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 firefox in /opt + dodir /opt + mv ${S} ${D}/opt/firefox + + # Plugin path setup (rescuing the existing plugins) + src_mv_plugins /opt/firefox/plugins + + # Fixing permissions + chown -R root:root ${D}/opt/firefox + + # mozilla-launcher-1.8 supports -bin versions + dodir /usr/bin + dosym /usr/libexec/mozilla-launcher /usr/bin/firefox-bin + + # Install icon and .desktop for menu entry + if use gnome; then + insinto /usr/share/pixmaps + doins ${FILESDIR}/icon/mozillafirefox-bin-icon.png + # Fix bug 54179: Install .desktop file into /usr/share/applications + # instead of /usr/share/gnome/apps/Internet (18 Jun 2004 agriffis) + insinto /usr/share/applications + doins ${FILESDIR}/icon/mozillafirefox-bin.desktop + fi + + # Normally firefox-bin-0.9 must be run as root once before it can + # be run as a normal user. Drop in some initialized files to + # avoid this. + einfo "Extracting firefox-bin-${PV} initialization files" + tar xjpf ${FILESDIR}/firefox-bin-0.9-init.tar.bz2 -C ${D}/opt/firefox +} + +pkg_preinst() { + export MOZILLA_FIVE_HOME=${ROOT}/opt/firefox + + # Remove the old plugins dir + pkg_mv_plugins /opt/firefox/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/firefox + + update_mozilla_launcher_symlinks +} + +pkg_postrm() { + update_mozilla_launcher_symlinks +} |