diff options
author | Aron Griffis <agriffis@gentoo.org> | 2005-07-22 20:39:01 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2005-07-22 20:39:01 +0000 |
commit | 2f46d7b86bc9bd3a3972055c23fe410cc8490eda (patch) | |
tree | dd1692247b78149c0984e83b149084999508f81d /www-client/mozilla-firefox-bin | |
parent | Start the stable push for mozilla/firefox/thunderbird security and extension (diff) | |
download | gentoo-2-2f46d7b86bc9bd3a3972055c23fe410cc8490eda.tar.gz gentoo-2-2f46d7b86bc9bd3a3972055c23fe410cc8490eda.tar.bz2 gentoo-2-2f46d7b86bc9bd3a3972055c23fe410cc8490eda.zip |
tidy
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'www-client/mozilla-firefox-bin')
-rw-r--r-- | www-client/mozilla-firefox-bin/mozilla-firefox-bin-1.0.6-r1.ebuild | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/www-client/mozilla-firefox-bin/mozilla-firefox-bin-1.0.6-r1.ebuild b/www-client/mozilla-firefox-bin/mozilla-firefox-bin-1.0.6-r1.ebuild index 013bc9757e0e..13b1ffd85663 100644 --- a/www-client/mozilla-firefox-bin/mozilla-firefox-bin-1.0.6-r1.ebuild +++ b/www-client/mozilla-firefox-bin/mozilla-firefox-bin-1.0.6-r1.ebuild @@ -1,11 +1,9 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/mozilla-firefox-bin/mozilla-firefox-bin-1.0.6-r1.ebuild,v 1.1 2005/07/22 19:01:29 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/mozilla-firefox-bin/mozilla-firefox-bin-1.0.6-r1.ebuild,v 1.2 2005/07/22 20:39:01 agriffis Exp $ inherit eutils mozilla-launcher -IUSE="" - DESCRIPTION="Firefox Web Browser" SRC_URI="http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/${PV}/linux-i686/en-US/firefox-${PV}.tar.gz" HOMEPAGE="http://www.mozilla.org/projects/firefox" @@ -14,6 +12,7 @@ RESTRICT="nostrip" KEYWORDS="-* ~amd64 ~x86" SLOT="0" LICENSE="MPL-1.1 NPL-1.1" +IUSE="" DEPEND="virtual/libc" RDEPEND="virtual/x11 @@ -56,10 +55,15 @@ pkg_preinst() { # Remove entire installed instance to prevent all kinds of # problems... see bug 44772 for example - rm -rf "${ROOT}${MOZILLA_FIVE_HOME}" + rm -rf ${ROOT}${MOZILLA_FIVE_HOME} } pkg_postinst() { + if use amd64; then + echo + einfo "NB: You just installed a 32-bit firefox" + fi + update_mozilla_launcher_symlinks } |