Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 83274 - Ebuild for mozilla-firefox-bin-1.0.1
Summary: Ebuild for mozilla-firefox-bin-1.0.1
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: x86 Linux
: High normal
Assignee: Mozilla Gentoo Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-02-25 02:29 UTC by Jeremy Day
Modified: 2005-02-27 09:07 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jeremy Day 2005-02-25 02:29:43 UTC
# 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.1.ebuild,v 1.2 2004/11/18 21:53:15 agriffis Exp $

inherit nsplugins eutils mozilla-launcher

IUSE="gnome"

DESCRIPTION="The Mozilla Firefox Web Browser"
SRC_URI="http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/1.0.1/linux-i686/en-US/firefox-${PV}.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
	)
	>=net-www/mozilla-launcher-1.22"

S=${WORKDIR}/firefox

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
}


Reproducible: Always
Steps to Reproduce:
1.
2.
3.




I just threw this together real quick and havent had a chance to test it.
Comment 1 Brad Laue (RETIRED) gentoo-dev 2005-02-26 00:39:23 UTC
In CVS. Thanks!
Comment 2 Nathan Adams 2005-02-26 14:55:09 UTC
This breaks on the secure login page for Yahoo! mail:

https://mail.yahoo.com/

A window pops up with the following error message:

XML Parsing Error: undefined entity
Location: chrome://pippki/content/domainMismatch.xul
Line Number 23, Column 26:
<window id="domainMismatch" title="&domainMismatch.title;"
-----------------------------------^

The security certificate used for the above Yahoo! URL doesn't match. In older versions of mozilla-firefox, a window would pop up that told you this fact and would ask you if you wanted to accept the certificate anyway.
Comment 3 Jeremy Day 2005-02-26 20:10:16 UTC
I get the warning about the certificate being from login.yahoo.com on my end. You should also try removing the browser and reinstalling it and reopen this bug if it persists.
Comment 4 Nathan Adams 2005-02-27 09:07:11 UTC
Doing a

# emerge -C mozilla-firefox && emerge mozilla-firefox

fixed this for me. Might want to investigate why the upgrade path wasn't as clean as it should be...

Also, is there a GLSA opened for this?