diff options
author | Raúl Porcel <armin76@gentoo.org> | 2008-06-20 09:03:39 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2008-06-20 09:03:39 +0000 |
commit | c79a6fd8d46b01ae5c862b32c660c43672c03447 (patch) | |
tree | 397e9f1bc2eee911e95b3e3995dadb58f99d4d97 /www-client/mozilla-firefox | |
parent | Don't use external sqlite, since it seems to give some problems, bug #228305 (diff) | |
download | gentoo-2-c79a6fd8d46b01ae5c862b32c660c43672c03447.tar.gz gentoo-2-c79a6fd8d46b01ae5c862b32c660c43672c03447.tar.bz2 gentoo-2-c79a6fd8d46b01ae5c862b32c660c43672c03447.zip |
Don't use external sqlite, since it seems to give some problems, bug #228305, and fix bindist icon, bug #228317
(Portage version: 2.1.4.4)
Diffstat (limited to 'www-client/mozilla-firefox')
-rw-r--r-- | www-client/mozilla-firefox/ChangeLog | 9 | ||||
-rw-r--r-- | www-client/mozilla-firefox/mozilla-firefox-3.0-r1.ebuild (renamed from www-client/mozilla-firefox/mozilla-firefox-3.0.ebuild) | 11 |
2 files changed, 13 insertions, 7 deletions
diff --git a/www-client/mozilla-firefox/ChangeLog b/www-client/mozilla-firefox/ChangeLog index 59b2964f588e..7d83db48d6f2 100644 --- a/www-client/mozilla-firefox/ChangeLog +++ b/www-client/mozilla-firefox/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for www-client/mozilla-firefox # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/mozilla-firefox/ChangeLog,v 1.414 2008/06/18 18:49:27 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/mozilla-firefox/ChangeLog,v 1.415 2008/06/20 09:03:39 armin76 Exp $ + +*mozilla-firefox-3.0-r1 (20 Jun 2008) + + 20 Jun 2008; Raúl Porcel <armin76@gentoo.org> + -mozilla-firefox-3.0.ebuild, +mozilla-firefox-3.0-r1.ebuild: + Don't use external sqlite, since it seems to give some problems, bug + #228305, and fix bindist icon, bug #228317 18 Jun 2008; Raúl Porcel <armin76@gentoo.org> mozilla-firefox-3.0.ebuild: Bump patchset to fix bug #219444 diff --git a/www-client/mozilla-firefox/mozilla-firefox-3.0.ebuild b/www-client/mozilla-firefox/mozilla-firefox-3.0-r1.ebuild index 0540227e0a7f..2a337c0d0537 100644 --- a/www-client/mozilla-firefox/mozilla-firefox-3.0.ebuild +++ b/www-client/mozilla-firefox/mozilla-firefox-3.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/mozilla-firefox/mozilla-firefox-3.0.ebuild,v 1.5 2008/06/18 18:49:27 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/mozilla-firefox/mozilla-firefox-3.0-r1.ebuild,v 1.1 2008/06/20 09:03:39 armin76 Exp $ EAPI="1" WANT_AUTOCONF="2.1" @@ -52,8 +52,7 @@ RDEPEND="java? ( virtual/jre ) >=dev-libs/nspr-4.7.1 >=media-libs/lcms-1.17 >=app-text/hunspell-1.1.9 - >=dev-db/sqlite-3.5.6 - xulrunner? ( >=net-libs/xulrunner-1.9${MY_PV} )" + xulrunner? ( >=net-libs/xulrunner-1.9${MY_PV}-r2 )" DEPEND="${RDEPEND} dev-util/pkgconfig @@ -156,7 +155,7 @@ src_compile() { mozconfig_annotate 'broken' --disable-mochitest mozconfig_annotate 'broken' --disable-crashreporter mozconfig_annotate '' --enable-system-hunspell - mozconfig_annotate '' --enable-system-sqlite + #mozconfig_annotate '' --enable-system-sqlite mozconfig_annotate '' --enable-image-encoder=all mozconfig_annotate '' --enable-canvas mozconfig_annotate '' --with-system-nspr @@ -255,7 +254,7 @@ src_install() { newmenu "${FILESDIR}"/icon/mozilla-firefox-1.5.desktop \ mozilla-firefox-3.0.desktop else - newicon "${S}"/browser/base/branding/firefox/content/icon48.png firefox-icon-unbranded.png + newicon "${S}"/browser/base/branding/icon48.png firefox-icon-unbranded.png newmenu "${FILESDIR}"/icon/mozilla-firefox-1.5-unbranded.desktop \ mozilla-firefox-3.0.desktop fi @@ -270,7 +269,7 @@ src_install() { sed -i -e "s|MinVersion=.*$|MinVersion=${XULRUNNER_VERSION}|" "${D}"${MOZILLA_FIVE_HOME}/application.ini sed -i -e "s|MaxVersion=.*$|MaxVersion=${XULRUNNER_VERSION}|" "${D}"${MOZILLA_FIVE_HOME}/application.ini # Create /usr/bin/firefox - cat <<EOF >${D}/usr/bin/firefox + cat <<EOF >"${D}"/usr/bin/firefox #!/bin/sh export LD_LIBRARY_PATH="/usr/$(get_libdir)/mozilla-firefox" exec /usr/$(get_libdir)/mozilla-firefox/firefox "\$@" |