diff options
author | Brad Laue <brad@gentoo.org> | 2004-02-12 08:24:49 +0000 |
---|---|---|
committer | Brad Laue <brad@gentoo.org> | 2004-02-12 08:24:49 +0000 |
commit | d643ce3b29d3ce08db28668e26859c196b10ea3a (patch) | |
tree | e780aef944d494090ad776e104930774af6aca85 /net-www/mozilla-firefox-bin/mozilla-firefox-bin-0.8.ebuild | |
parent | tidy docs (Manifest recommit) (diff) | |
download | gentoo-2-d643ce3b29d3ce08db28668e26859c196b10ea3a.tar.gz gentoo-2-d643ce3b29d3ce08db28668e26859c196b10ea3a.tar.bz2 gentoo-2-d643ce3b29d3ce08db28668e26859c196b10ea3a.zip |
Adding mozilla-firefox-bin, soon to replace mozilla-firebird-bin
Diffstat (limited to 'net-www/mozilla-firefox-bin/mozilla-firefox-bin-0.8.ebuild')
-rw-r--r-- | net-www/mozilla-firefox-bin/mozilla-firefox-bin-0.8.ebuild | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/net-www/mozilla-firefox-bin/mozilla-firefox-bin-0.8.ebuild b/net-www/mozilla-firefox-bin/mozilla-firefox-bin-0.8.ebuild new file mode 100644 index 000000000000..0d064fac5b7f --- /dev/null +++ b/net-www/mozilla-firefox-bin/mozilla-firefox-bin-0.8.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla-firefox-bin/mozilla-firefox-bin-0.8.ebuild,v 1.1 2004/02/12 08:24:49 brad Exp $ + +inherit nsplugins eutils + +IUSE="gnome" + +MY_PN=${PN/-bin/} +S=${WORKDIR}/firefox +DESCRIPTION="The Mozilla Firefox Web Browser" +SRC_URI="http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/${PV}/firefox-${PV}-i686-linux-gtk2+xft.tar.gz" +HOMEPAGE="http://www.mozilla.org/projects/firefox" +RESTRICT="nostrip" + +KEYWORDS="~x86 -ppc -sparc -alpha" +SLOT="0" +LICENSE="MPL-1.1 NPL-1.1" + +DEPEND="virtual/glibc" +RDEPEND=">=sys-libs/lib-compat-1.0-r2 + =x11-libs/gtk+-2.2* + virtual/x11 + !net-www/mozilla-firefox" + +src_install() { + # Plugin path creation + PLUGIN_DIR="/usr/lib/nsbrowser/plugins" + dodir /${PLUGIN_DIR} + + dodir /opt + + mv ${S} ${D}/opt/firefox + + # Plugin path setup (rescuing the existent plugins) + src_mv_plugins /opt/firefox/plugins + + # Fixing permissions + chown -R root:root ${D}/opt/firefox + + # Truetype fonts + cd ${D}/opt/firefox/defaults/pref + einfo "Enabling truetype fonts. Filesdir is ${FILESDIR}" + epatch ${FILESDIR}/firebird-0.7-antialiasing-patch + + # Misc stuff + dobin ${FILESDIR}/firefox + + # Install icon and .desktop for menu entry + if [ "`use gnome`" ] + then + insinto /usr/share/pixmaps + doins ${FILESDIR}/icon/firefox-icon.png + + insinto /usr/share/gnome/apps/Internet + doins ${FILESDIR}/icon/mozillafirefox.desktop + fi + +} + +pkg_preinst() { + # Remove the old plugins dir + pkg_mv_plugins /opt/firefox/plugins +} + |