%define homepage http://start.fedoraproject.org/ %define firstrun http://fedoraproject.org/static/firefox/ %define default_bookmarks_file %{_datadir}/bookmarks/default-bookmarks.html %define desktop_file_utils_version 0.9 %define firefox_app_id \{ec8030f7-c20a-464f-9b0e-13a3a9e97384\} %define firefox firefox %define version_internal 3.0 %define mozappdir %{_libdir}/%{firefox}-%{version_internal} %define gecko_version 1.9 %define official_branding 1 %define build_langpacks 1 Summary: Mozilla Firefox Web browser Name: firefox Version: 3.0 Release: 1%{?dist} URL: http://www.mozilla.org/projects/firefox/ License: MPLv1.1 or GPLv2+ or LGPLv2+ Group: Applications/Internet %if %{official_branding} #define tarball firefox-%{version}-source.tar.bz2 %define tarball mozilla-3.0.tar.bz2 %else #define tarball firefox-%{version_internal}-source.tar.bz2 %define tarball mozilla-trunk.tar.bz2 %endif Source0: %{tarball} Source2: firefox-langpacks-3.0-20080617.tar.bz2 Source10: firefox-mozconfig Source11: firefox-mozconfig-branded Source12: firefox-redhat-default-prefs.js Source13: firefox-redhat-default-bookmarks.html Source20: firefox.desktop Source22: firefox.png Source23: firefox.1 Source24: firefox.sh.in Source25: firefox3.sh.in Source100: find-external-requires Patch1: firefox-2.0-getstartpage.patch # Upstream patches %if %{official_branding} # Required by Mozilla Corporation Patch10: mozilla-firstrun.patch %else # Not yet approved by Mozillla Corporation %endif # --------------------------------------------------- BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: libIDL-devel BuildRequires: desktop-file-utils BuildRequires: gtk2-devel BuildRequires: gnome-vfs2-devel BuildRequires: libgnomeui-devel BuildRequires: krb5-devel BuildRequires: pango-devel BuildRequires: freetype-devel >= 2.1.9 BuildRequires: libXt-devel BuildRequires: libXrender-devel %if 0%{?fedora} > 6 BuildRequires: system-bookmarks %endif BuildRequires: startup-notification-devel #if %{fedora} >= 9 #BuildRequires: gecko-devel-unstable >= %{gecko_version} #%else BuildRequires: xulrunner-devel-unstable >= %{gecko_version}-%{release} #%endif BuildRequires: zip Requires: desktop-file-utils >= %{desktop_file_utils_version} Requires: xulrunner >= %{gecko_version}-%{release} %if 0%{?fedora} > 6 Requires: system-bookmarks %endif Obsoletes: mozilla <= 37:1.7.13 Obsoletes: firefox3 <= %{version} Provides: webclient %define _use_internal_dependency_generator 0 %define __find_requires %{SOURCE100} %description Mozilla Firefox is an open-source web browser, designed for standards compliance, performance and portability. #--------------------------------------------------------------------- %prep %setup -q -c cd mozilla %patch1 -p1 -b .getstartpage # For branding specific patches. %if %{official_branding} # Required by Mozilla Corporation %patch10 -p1 -b .firstrun %else # Not yet approved by Mozilla Corporation %endif %{__rm} -f .mozconfig cat %{SOURCE10} \ %if %{fedora} < 9 | grep -v system-ns \ | grep -v system-png \ %endif >.mozconfig %if %{official_branding} %{__cat} %{SOURCE11} >> .mozconfig %endif # Set up SDK path echo "ac_add_options --with-libxul-sdk=\ `pkg-config --variable=sdkdir libxul`" >> .mozconfig #--------------------------------------------------------------------- %build cd mozilla # Mozilla builds with -Wall with exception of a few warnings which show up # everywhere in the code; so, don't override that. MOZ_OPT_FLAGS=$(echo $RPM_OPT_FLAGS | %{__sed} -e 's/-Wall//') export CFLAGS=$MOZ_OPT_FLAGS export CXXFLAGS=$MOZ_OPT_FLAGS export PREFIX='%{_prefix}' export LIBDIR='%{_libdir}' MOZ_SMP_FLAGS=-j1 %ifnarch ppc ppc64 s390 s390x [ -z "$RPM_BUILD_NCPUS" ] && \ RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`" [ "$RPM_BUILD_NCPUS" -gt 1 ] && MOZ_SMP_FLAGS=-j2 %endif INTERNAL_GECKO=%{version_internal} MOZ_APP_DIR=%{_libdir}/%{name}-${INTERNAL_GECKO} export LDFLAGS="-Wl,-rpath,${MOZ_APP_DIR}" make -f client.mk build STRIP="/bin/true" MOZ_MAKE_FLAGS="$MOZ_SMP_FLAGS" #--------------------------------------------------------------------- %install %{__rm} -rf $RPM_BUILD_ROOT cd mozilla DESTDIR=$RPM_BUILD_ROOT make install %{__mkdir_p} $RPM_BUILD_ROOT{%{_libdir},%{_bindir},%{_datadir}/applications,%{_datadir}/pixmaps}, %{__install} -p -D -m 644 %{SOURCE22} $RPM_BUILD_ROOT%{_datadir}/pixmaps/%{name}.png %{__cat} %{SOURCE20} | sed \ -e 's/^Name=.*$/Name=Firefox %{version_internal}/' \ -e 's/^Icon=firefox/Icon=%{name}/' \ -e 's/^Exec=firefox/Exec=%{name}/' >%{name}.desktop desktop-file-install --vendor mozilla \ --dir $RPM_BUILD_ROOT%{_datadir}/applications \ --add-category WebBrowser \ --add-category Network \ %{name}.desktop # set up the firefox start script %{__rm} -rf $RPM_BUILD_ROOT%{_bindir}/firefox %if %{fedora} >= 9 # Use gre.conf %{__cat} %{SOURCE24} | %else # Use xul.conf %{__cat} %{SOURCE25} | %endif %{__sed} -e 's,FIREFOX_VERSION,%{version_internal},g' > \ $RPM_BUILD_ROOT%{_bindir}/firefox %{__chmod} 755 $RPM_BUILD_ROOT%{_bindir}/firefox # set up our default preferences %{__cat} %{SOURCE12} | %{__sed} \ -e 's,FIREFOX_RPM_VR,fc%{fedora},g' \ -e 's/Fedora/Remi/' > rh-default-prefs # set up our default homepage %{__cat} >> rh-default-prefs << EOF pref("browser.startup.homepage", "%{homepage}"); pref("startup.homepage_override_url", "%{firstrun}"); pref("startup.homepage_welcome_url", "%{firstrun}"); EOF # place the preferences %{__cp} rh-default-prefs $RPM_BUILD_ROOT/%{mozappdir}/defaults/preferences/all-redhat.js %{__rm} rh-default-prefs # set up our default bookmarks %{__rm} -f $RPM_BUILD_ROOT/%{mozappdir}/defaults/profile/bookmarks.html %if 0%{?fedora} > 6 ln -s %{default_bookmarks_file} $RPM_BUILD_ROOT/%{mozappdir}/defaults/profile/bookmarks.html %else %{__cp} %{SOURCE13} $RPM_BUILD_ROOT%{mozappdir}/defaults/profile/bookmarks.html %endif %{__install} -p -D -m 644 %{SOURCE23} $RPM_BUILD_ROOT%{_mandir}/man1/firefox.1 %{__rm} -f $RPM_BUILD_ROOT/%{mozappdir}/firefox-config #cd $RPM_BUILD_ROOT/%{mozappdir}/chrome #find . -name "*" -type d -maxdepth 1 -exec %{__rm} -rf {} \; #cd - #%{__cat} > $RPM_BUILD_ROOT/%{mozappdir}/defaults/pref/firefox-l10n.js << EOF #pref("general.useragent.locale", "chrome://global/locale/intl.properties"); #EOF #%{__chmod} 644 $RPM_BUILD_ROOT/%{mozappdir}/defaults/pref/firefox-l10n.js %{__mkdir_p} $RPM_BUILD_ROOT/%{mozappdir}/chrome/icons/default/ %{__cp} other-licenses/branding/%{name}/default16.png \ $RPM_BUILD_ROOT/%{mozappdir}/chrome/icons/default/ %{__cp} other-licenses/branding/%{name}/default16.png \ $RPM_BUILD_ROOT/%{mozappdir}/icons/ # Install langpacks >../%{name}.lang %{__mkdir_p} $RPM_BUILD_ROOT/%{mozappdir}/extensions %{__tar} xjf %{SOURCE2} for langpack in `ls firefox-langpacks/*.xpi`; do language=`basename $langpack .xpi` extensiondir=$RPM_BUILD_ROOT/%{mozappdir}/extensions/langpack-$language@firefox.mozilla.org %{__mkdir_p} $extensiondir unzip $langpack -d $extensiondir find $extensiondir -type f | xargs chmod 644 tmpdir=`mktemp -d %{name}.XXXXXXXX` langtmp=$tmpdir/%{name}/langpack-$language %{__mkdir_p} $langtmp jarfile=$extensiondir/chrome/$language.jar unzip $jarfile -d $langtmp sed -i -e "s|browser.startup.homepage.*$|browser.startup.homepage=%{homepage}|g;" \ -e "s|startup.homepage_override_url.*$|startup.homepage_override_url=%{firstrun}|g;" \ -e "s|startup.homepage_welcome_url.*$|startup.homepage_welcome_url=%{firstrun}|g;" \ $langtmp/locale/browser-region/region.properties find $langtmp -type f | xargs chmod 644 %{__rm} -rf $jarfile cd $langtmp zip -r -D $jarfile locale cd - %{__rm} -rf $tmpdir language=`echo $language | sed -e 's/-/_/g'` extensiondir=`echo $extensiondir | sed -e "s,^$RPM_BUILD_ROOT,,"` echo "%%lang($language) $extensiondir" >> ../%{name}.lang done %{__rm} -rf firefox-langpacks # System extensions %{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/mozilla/extensions/%{firefox_app_id} %{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/mozilla/extensions/%{firefox_app_id} # Copy over the LICENSE %{__install} -p -c -m 644 LICENSE $RPM_BUILD_ROOT/%{mozappdir} # ghost files touch $RPM_BUILD_ROOT/%{mozappdir}/components/compreg.dat touch $RPM_BUILD_ROOT/%{mozappdir}/components/xpti.dat # jemalloc shows up sometimes, but it's not needed here, it's in XR %{__rm} -f $RPM_BUILD_ROOT/%{mozappdir}/libjemalloc.so %{__mkdir_p} $RPM_BUILD_ROOT/etc/readahead.d find $RPM_BUILD_ROOT%{mozappdir} -type f -size +3k | grep -v langpack | sed -e s@$RPM_BUILD_ROOT@@ >$RPM_BUILD_ROOT%{_sysconfdir}/readahead.d/%{name}.later #--------------------------------------------------------------------- %clean %{__rm} -rf $RPM_BUILD_ROOT #--------------------------------------------------------------------- %pre echo -e "\nWARNING : This %{name} RPM is not an offical Fedora build and it" echo -e "overrides the official one. Don't file bugs on Fedora Project.\n" %if %{?fedora}%{!?fedora:99} < 8 echo -e "WARNING : Fedora %{fedora} is now EOL :" echo -e "You should consider upgrading to a supported release.\n" %endif %post update-desktop-database &> /dev/null || : touch --no-create %{_datadir}/icons/hicolor if [ -x %{_bindir}/gtk-update-icon-cache ]; then %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : fi %postun update-desktop-database &> /dev/null || : touch --no-create %{_datadir}/icons/hicolor if [ -x %{_bindir}/gtk-update-icon-cache ]; then %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : fi %preun # is it a final removal? if [ $1 -eq 0 ]; then %{__rm} -rf %{mozappdir}/components %{__rm} -rf %{mozappdir}/extensions %{__rm} -rf %{mozappdir}/plugins fi %files -f %{name}.lang %defattr(-,root,root,-) %{_bindir}/firefox %doc %{_mandir}/man1/* %dir %{_datadir}/mozilla/extensions/%{firefox_app_id} %dir %{_libdir}/mozilla/extensions/%{firefox_app_id} %{_datadir}/applications/mozilla-%{name}.desktop %{_datadir}/pixmaps/firefox.png %dir %{mozappdir} %doc %{mozappdir}/LICENSE %doc %{mozappdir}/README.txt %{mozappdir}/*.properties %{mozappdir}/chrome %dir %{mozappdir}/components %ghost %{mozappdir}/components/compreg.dat %ghost %{mozappdir}/components/xpti.dat %{mozappdir}/components/*.so %{mozappdir}/components/*.xpt %attr(644, root, root) %{mozappdir}/blocklist.xml %attr(644, root, root) %{mozappdir}/components/*.js %{mozappdir}/defaults %dir %{mozappdir}/extensions %{mozappdir}/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd} %{mozappdir}/icons %{mozappdir}/searchplugins %{mozappdir}/firefox %{mozappdir}/run-mozilla.sh %{mozappdir}/application.ini %dir %{mozappdir}/modules %{mozappdir}/modules/distribution.js %{mozappdir}/.autoreg # XXX See if these are needed still %{mozappdir}/updater* %exclude %{mozappdir}/removed-files %config %{_sysconfdir}/readahead.d/%{name}.later #--------------------------------------------------------------------- %changelog * Tue Jun 17 2008 Remi Collet 3.0-0.20080617.fc#.remi - update to Firefox 3.0 Release * Sun Jun 15 2008 Remi Collet 3.0-0.20080530.rc2.fc#.remi - rename from firefox3 to firefox * Thu Jun 05 2008 Remi Collet 3.0-0.20080530.rc2.fc#.remi - update to RC2 (FIREFOX_3_0rc2_RELEASE, 2008-05-30 08:23 PDT) * Sat May 17 2008 Remi Collet 3.0-0.20080506.rc1.fc#.remi - update to RC1 (FIREFOX_3_0rc1_RELEASE, 2008-05-12 02:24 PDT) * Tue May 06 2008 Remi Collet 3.0-0.20080506.fc#.remi - update to csv 20080506 (3.0pre) * Sat Apr 26 2008 Remi Collet 3.0-0.20080426.fc#.remi - update to csv 20080426 (3.0pre) * Fri Apr 25 2008 Martin Stransky 3.0-0.57 - Enable anti-pishing protection (#443403) * Fri Apr 18 2008 Martin Stransky 3.0-0.55 - Don't show an welcome page during first browser start (#437065) * Fri Apr 18 2008 Remi Collet 3.0-0.20080418.fc#.remi - update to csv 20080418 (3.0pre) * Sat Apr 12 2008 Remi Collet 3.0-0.20080412.fc#.remi - update to csv 20080412 (3.0pre) * Mon Apr 07 2008 Remi Collet 3.0-0.20080407.fc#.remi - update to csv 20080407 (3.0pre) * Sun Apr 06 2008 Remi Collet 3.0-0.20080406.fc8.remi - update to csv 20080406 (3.0pre) * Sat Apr 05 2008 Remi Collet 3.0-0.20080405.fc8.remi - update to csv 20080405 (3.0pre) * Fri Mar 21 2008 Remi Collet 3.0-0.20080328.fc8.remi - update to csv 20080328 (3.0pre) * Fri Mar 21 2008 Remi Collet 3.0-0.beta4.20080321.fc8.remi - update to csv 20080321 (3.0b5pre) - C'est le printemps ! * Mon Mar 17 2008 Remi Collet 3.0-0.beta4.20080317.fc#.remi - update to csv 20080317 (3.0b5pre) * Sun Mar 16 2008 Remi Collet 3.0-0.beta4.20080316.fc#.remi - update to csv 20080316 (3.0b5pre) * Wed Mar 12 2008 Remi Collet 3.0-0.beta4.20080312.fc#.remi - update to csv 20080312 (3.0b5pre) * Fri Mar 7 2008 Remi Collet 3.0-0.beta4.20080307.fc#.remi - update to csv 20080307 (3.0b5pre) * Wed Mar 5 2008 Remi Collet 3.0-0.beta4.20080305.fc#.remi - update to csv 20080305 (3.0b5pre) * Sun Mar 2 2008 Remi Collet 3.0-0.beta3.20080302.fc#.remi - update to csv 20080302 (3.0b4pre) * Mon Feb 25 2008 Remi Collet 3.0-0.beta3.20080225.fc#.remi - update to csv 20080225 (3.0b4pre) * Thu Feb 21 2008 Remi Collet 3.0-0.beta3.20080221.fc#.remi - update to csv 20080221 (3.0b4pre) * Fri Feb 15 2008 Remi Collet 3.0-0.beta3.20080215.fc8.remi - update to csv 20080215 (3.0b4pre) - obsolete firefox3-langpack-fr (xulrunner use hunspell) * Wed Feb 14 2008 Christopher Aillon 3.0-0.beta3.21 - Update to latest trunk (2008-02-14) * Mon Feb 11 2008 Remi Collet 3.0-0.beta3.20080211.fc8.remi - update to csv 20080211 (3.0b4pre) * Sun Feb 10 2008 Christopher Aillon 3.0-0.beta2.18 - Update to latest trunk (2008-02-10) * Sat Feb 9 2008 Christopher Aillon 3.0-0.beta2.17 - Update to latest trunk (2008-02-09) * Thu Feb 7 2008 Remi Collet 3.0-0.beta3.20080207.fc8.remi - update to csv 20080207 (3.0b4pre) * Wed Feb 6 2008 Christopher Aillon 3.0-0.beta2.16 - Update to latest trunk (2008-02-06) * Thu Jan 31 2008 Remi Collet 3.0-0.beta2.20080131.fc8.remi - update to csv 20080131 (3.0b3pre) * Wed Jan 30 2008 Martin Stransky 3.0-0.beta2.15 - Update to latest trunk (2008-01-30) - Backported an old laucher * Mon Jan 28 2008 Martin Stransky 3.0-0.beta2.13 - cleared starting scripts, removed useless parts * Mon Jan 21 2008 Christopher Aillon 3.0-0.beta2.12 - Update to latest trunk (2008-01-21) * Sat Jan 19 2008 Remi Collet 3.0-0.beta2.20080119.fc8.remi - update to csv 20080119 (3.0b3pre) * Tue Jan 15 2008 Christopher Aillon 3.0-0.beta2.11 - Update to latest trunk (2008-01-15) - Now with system extensions directory support - Temporarily disable langpacks while we're on the bleeding edge - Remove skeleton files; they are in xulrunner now * Sun Jan 13 2008 Christopher Aillon 3.0-0.beta2.10 - Update to latest trunk (20080113) - Fix the default prefs, homepage, and useragent string * Sat Jan 12 2008 Remi Collet 3.0-0.beta2.20080112.fc8.remi - update to csv 20080112 (3.0b3pre) * Thu Jan 10 2008 Martin Stransky 3.0-0.beta2.9 - rebuilt agains xulrunner-devel-unstable * Tue Jan 8 2008 Remi Collet 3.0-0.beta2.20080108.fc8.remi - update to csv 20080108 (3.0b3pre) - remove ssl exception patch (applied upstream) * Fri Jan 7 2008 Martin Stransky 3.0-0.beta2.8 - added ssl exception patch (mozbz #411037) * Fri Jan 4 2008 Remi Collet 3.0-0.beta2.20080104.fc8.remi - update to csv 20080104 (3.0b3pre) * Fri Jan 4 2008 Martin Stransky 3.0-0.beta2.7 - removed broken langpack - built against libxul * Thu Jan 3 2008 Martin Stransky 3.0-0.beta2.6 - updated to the latest trunk (20080103) * Wed Jan 2 2008 Martin Stransky 3.0-0.beta2.5 - added default fedora homepage - updated a language pack (#427182) * Mon Dec 31 2007 Christopher Aillon 3.0-0.beta2.4 - Create and own /etc/skel/.mozilla - No longer need add-gecko-provides * Mon Dec 31 2007 Remi Collet 3.0-0.beta2.20071231.fc8.remi - update to csv 20071231 (3.0b3pre) * Thu Dec 27 2007 Remi Collet 3.0-0.beta2.20071227.fc8.remi - update to csv 20071227 (3.0b3pre) * Mon Dec 24 2007 Remi Collet 3.0-0.beta2.20071224.fc8.remi - update to csv 20071224 (3.0b3pre) - add lang tag on extensions - add /etc/readahead.d/firefox3.later * Sun Dec 23 2007 Remi Collet 3.0-0.beta2.20071223.fc8.remi - update to csv 20071223 (3.0b3pre) - add LD_LIBRARY_PATH in startup script * Sat Dec 22 2007 Remi Collet 3.0-0.beta2.20071222.fc8.remi - update to csv 20071222 (3.0b3pre) * Sat Dec 22 2007 Remi Collet 3.0-0.beta2.2.fc8.remi - F-8 rebuild (named firefox3) - add 3.0b2 langpacks - change gre(64).conf to xul(64).conf * Sat Dec 22 2007 Christopher Aillon 3.0-0.beta2.3 - When there are both 32- and 64-bit versions of XPCOM installed on disk make sure to load the correct one. * Fri Dec 21 2007 Remi Collet 3.0-0.beta2.2.fc8.remi - F-8 rebuild (named firefox3) * Tue Dec 20 2007 Martin Stransky 3.0-0.beta2.2 - fixed xulrunner dependency * Tue Dec 18 2007 Martin Stransky 3.0-0.beta2.1 - moved to XUL Runner and updated to 3.0b3pre - removed firefox-devel package, gecko-libs is provided by xulrunner-devel now. * Thu Dec 13 2007 Christopher Aillon 2.0.0.10-5 - Fix the getStartPage method to not return blank. Patch by pspencer@fields.utoronto.ca * Sun Dec 9 2007 Christopher Aillon 2.0.0.10-4 - Fix up some rpmlint warnings - Use only one pref for the homepage for now - Drop some old patches and some obsolote Obsoletes * Tue Dec 4 2007 Martin Stransky 2.0.0.10-3 - fixed an icon location * Mon Dec 3 2007 Martin Stransky 2.0.0.10-2 - removed gre.conf file (most of the gtkmozembed applications run with xulrunner now) * Mon Nov 26 2007 Christopher Aillon 2.0.0.10-1 - Update to 2.0.0.10 * Tue Nov 5 2007 Martin Stransky 2.0.0.9-1 - updated to the latest upstream * Wed Oct 31 2007 Martin Stransky 2.0.0.8-3 - added mozilla-plugin-config to startup script * Tue Oct 30 2007 Christopher Aillon 2.0.0.8-2 - Tweak the default backspace behavior to be more in line with GNOME convention, Mozilla upstream, and other distros * Tue Oct 23 2007 Martin Stransky 2.0.0.8-1 - updated to the latest upstream - moved preference updates to build section * Thu Oct 18 2007 Jesse Keating - 2.0.0.6-12 - Disable the Firefox startup notification support for now. * Mon Sep 26 2007 Martin Stransky 2.0.0.6-11 - Fixed #242657 - firefox -g doesn't work * Mon Sep 25 2007 Martin Stransky 2.0.0.6-10 - Removed hardcoded MAX_PATH, PATH_MAX and MAXPATHLEN macros * Mon Sep 24 2007 Christopher Aillon 2.0.0.6-9 - Startup notification support * Tue Sep 11 2007 Christopher Aillon 2.0.0.6-8 - Fix crashes when using GTK+ themes containing a gtkrc which specify GtkOptionMenu::indicator_size and GtkOptionMenu::indicator_spacing * Mon Sep 10 2007 Martin Stransky 2.0.0.6-7 - added fix for #246248 - firefox crashes when searching for word "do" * Thu Sep 6 2007 Christopher Aillon - 2.0.0.6-6 - Fix default page for all locales * Wed Aug 29 2007 Christopher Aillon - 2.0.0.6-5 - Tweak the default home page * Fri Aug 24 2007 Adam Jackson - 2.0.0.6-4 - Rebuild for build ID * Mon Aug 13 2007 Christopher Aillon 2.0.0.6-3 - Update the license tag * Mon Aug 6 2007 Martin Stransky 2.0.0.6-2 - unwrapped plugins moved to the old location - removed plugin configuration utility * Sat Aug 4 2007 Christopher Aillon 2.0.0.6-1 - Update to 2.0.0.6 - Fix dnd support to/from gtk2 apps - Fix installed permissions of *.png * Mon Jul 23 2007 Martin Stransky 2.0.0.5-3 - added nspluginwrapper support * Wed Jul 18 2007 Kai Engert - 2.0.0.5-2 - Update to 2.0.0.5 * Fri Jun 29 2007 Martin Stransky 2.0.0.4-3 - backported pango patches from FC6 (1.5.0.12) * Sun Jun 3 2007 Christopher Aillon 2.0.0.4-2 - Properly clean up threads with newer NSPR * Wed May 30 2007 Christopher Aillon 2.0.0.4-1 - Final version * Wed May 23 2007 Christopher Aillon 2.0.0.4-0.rc3 - Update to 2.0.0.4 RC3 * Tue Apr 17 2007 Christopher Aillon 2.0.0.3-4 - Fix permissions of the man page * Tue Apr 10 2007 Christopher Aillon 2.0.0.3-3 - Ensure initial homepage on all locales is our proper default * Sun Mar 25 2007 Christopher Aillon 2.0.0.3-2 - Fix the symlink to default bookmarks - Use mktemp for temp dirs * Tue Mar 20 2007 Christopher Aillon 2.0.0.3-1 - Update to 2.0.0.3 * Tue Mar 20 2007 Christopher Aillon 2.0.0.2-3 - Default bookmarks no longer live here; use system-bookmarks * Mon Mar 12 2007 Christopher Aillon 2.0.0.2-2 - Oops, define the variables I expect to use. * Fri Feb 23 2007 Martin Stransky 2.0.0.2-1 - Update to 2002 * Wed Feb 21 2007 David Woodhouse 2.0.0.1-6 - Fix PPC64 runtime - Fix firefox script to use 32-bit browser by default on PPC64 hardware * Fri Feb 9 2007 Christopher Aillon 2.0.0.1-5 - Start using the specified locale * Tue Jan 30 2007 Christopher Aillon 2.0.0.1-4 - Fix the DND implementation to not grab, so it works with new GTK+. * Thu Jan 18 2007 Christopher Aillon 2.0.0.1-3 - Remove the XLIB_SKIP_ARGB_VISUALS=1 workaround; the plugin got fixed. * Fri Dec 22 2006 Christopher Aillon 2.0.0.1-2 - Strip out some frequent warnings; they muddy up the build output * Thu Dec 21 2006 Christopher Aillon 2.0.0.1-1 - Update to 2001 * Fri Oct 27 2006 Christopher Aillon 2.0-2 - Tweak the .desktop file * Tue Oct 24 2006 Christopher Aillon 2.0-1 - Update to 2.0 - Add patch from Behdad to fix pango printing.