source: projects/specs/trunk/f/firefox/firefox-vl.spec @ 7584

Revision 7584, 42.7 KB checked in by daisuke, 11 years ago (diff)

firefox: add patch to fix mozbz#239254

RevLine 
[5560]1# do not include minor version number in MOZILLA_FIVE_HOME
[7491]2%global ffmajor 19.0
3%global geckomajor 19.0
[7579]4%global ffminor 2
[4616]5%global ffversion %{ffmajor}%{?ffminor:.%{ffminor}}
[5157]6%define ffdir %{_libdir}/firefox
[3236]7%global langpackdir %{ffdir}/langpacks
[4289]8%define tarballdir mozilla-release
[521]9
[3236]10%define firefox_app_id \{ec8030f7-c20a-464f-9b0e-13a3a9e97384\}
11%define homepage http://vinelinux.org/
12
[5336]13%define build_vine7 0
[521]14%define build_vine6 0
15%define build_vine5 0
16
17# current firefox3 doesn't build on Vine Linux 4.x or older.
[5336]18%if "%{?_dist_release}" == "vl7"
19%define build_vine7 1
[521]20%define build_vine6 1
21%define build_vine5 1
22%endif
[5336]23%if "%{?_dist_release}" == "vl6"
24%define build_vine6 1
25%define build_vine5 1
26%endif
[521]27%if "%{?_dist_release}" == "vl5"
28%define build_vine5 1
29%endif
30
[7584]31%define ffrelease 2%{?_dist_release}
[521]32
33%define desktop_file_utils_version 0.6
[7317]34%define nspr_version 4.9.4
35%define nss_version 3.14.1
[3236]36%define cairo_version 1.10.2-2
[5336]37#%define sqlite3_version 3.7.7.1
[3236]38%define libjpeg-turbo_version 1.1.0
[6355]39#%define gecko_version %{geckomajor}%{?ffminor:.%{ffminor}}
[4289]40%define gecko_version %{geckomajor}
[521]41
[4737]42ExclusiveArch: i386 i586 i686 x86_64 ia64 ppc
[521]43
[3947]44# Separated plugins are supported on x86(64) only
45%ifarch %{ix86} x86_64
46%define separated_plugins 1
47%else
48%define separated_plugins 0
49%endif
[6902]50%if "%{?_dist_release}" == "vl6"
51%define separated_plugins 0
52%endif
[3947]53
[4289]54Summary:        Fx Browser
55Summary(ja):    Fx ウェブブラウザ
[521]56Name:           firefox
57Version:        %{ffversion}
58Release:        %{ffrelease}
59URL:            http://www.mozilla.org/projects/firefox/
60License:        MPL/LGPL
61Group:          Applications/Internet
62Source0:        firefox-%{version}.source.tar.bz2
63
[4616]64Source220:       mozconfig-firefox-vine5
65Source230:       mozconfig-firefox-vine6
[5336]66Source240:       mozconfig-firefox-vine7
[521]67
68Source11:       firefox-vine-default-bookmarks.html
69Source12:       firefox-vine-default-prefs.js
70Source21:       firefox.vine.sh.in
71Source22:       firefox.png
[3236]72Source23:       fx-about.png
73Source24:       fx-about-wordmark.png
[521]74Source25:       firefox.desktop
75Source26:       firefox-safe-mode.desktop
76Source30:       firefox.1
77Source50:       firefox-xremote-client.sh.in
78Source100:      find-external-requires
79
80# locale sources
81%define MOZ_BUILD_LOCALES "ja"
[3236]82Source1000:     firefox-%{ffversion}-langpacks.tar.bz2
[4289]83Source1010:     firefox-unofficial-branding-fx.tar.bz2
[521]84#
[6892]85Source2000:     firefox-searchplugins-5.0-ja.tar.bz2
[521]86
87# upstream patch
88
89# build patches
[6902]90Patch0:         firefox-16.0-install-dir.patch
[6029]91# buildfix
92Patch1:         firefox-12.0-buildfix-with-system-cairo.patch
[6892]93Patch2:         mozilla-build.patch
[6277]94Patch3:         firefox-12.0-gcc41-nosse2.patch
[521]95
[4289]96# bugfix
97Patch14:        firefox-5.0-asciidel.patch
[5157]98#
[6892]99Patch15:        firefox-15.0-enable-addons.patch
[4289]100
[7584]101#
102Patch16:        mozilla-239254.patch
[6029]103
[521]104# customization patches
105Patch26:        firefox-1.5-default-a4-paper.patch
106
107## Vine patch
[7491]108Patch1000:      firefox-19.0-disable-pdfjs.patch
[521]109
110# vine customization patch
[7133]111Patch2000:      firefox-17.0-vine.patch
[521]112
113
114BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
[3952]115BuildRequires:  libpng-devel
[521]116BuildRequires:  zlib-devel, zip
117BuildRequires:  libIDL-devel
118BuildRequires:  desktop-file-utils
119BuildRequires:  gtk2-devel
120BuildRequires:  gnome-vfs2-devel
121BuildRequires:  libgnome-devel
122BuildRequires:  pango-devel
[4289]123BuildRequires:  alsa-lib-devel
124BuildRequires:  lcms-devel
125BuildRequires:  libpng-devel
[6892]126%if %{build_vine7}
127BuildRequires:  nspr-devel >= %{nspr_version}
128BuildRequires:  nss-devel >= %{nss_version}
[7317]129Requires: nss >= %{nss_version}
130Requires: nspr >= %{nspr_version}
[6892]131%endif
[521]132%if %{build_vine6}
[3236]133BuildRequires:  cairo-devel >= %{cairo_version}
134BuildRequires:  libjpeg-turbo-devel >= %{libjpeg-turbo_version}
[521]135%endif
136%if %{build_vine5}
[4289]137#BuildRequires:  gecko-devel = %{gecko_version}
[5336]138BuildRequires:  libnotify-devel
[521]139BuildRequires:  libXt-devel
140BuildRequires:  libXrender-devel
[4847]141BuildRequires:  libXScrnSaver-devel
[521]142BuildRequires:  startup-notification-devel
143%endif
144BuildRequires:  autoconf213
145BuildRequires:  freetype2-devel
[3952]146BuildRequires:  yasm
147BuildRequires:  unzip
[4289]148BuildRequires:  zip
[4847]149BuildRequires:  bzip2-devel
[6892]150BuildRequires:  python-devel
[521]151
152Requires:       desktop-file-utils >= %{desktop_file_utils_version}
[5336]153%if %{build_vine6}
[6584]154#Requires:      nspr >= %{nspr_version}
[5336]155%endif
[521]156%if %{build_vine5}
[4289]157#Requires:       gecko-libs >= %{gecko_version}
[521]158%endif
159
160Obsoletes:      phoenix, mozilla-firebird, MozillaFirebird
161Obsoletes:      firefox3
[5560]162Conflicts:      firefox-esr
[521]163Provides:       webclient
164
[7317]165%if %{build_vine7}
166Conflicts:      xulrunner < 17.0.1
167%endif
168
[5560]169AutoProv: 0
[521]170%define _use_internal_dependency_generator 0
171%define __find_requires %{SOURCE100}
172
[4616]173Vendor: Project Vine
174Distribution: Vine Linux
[5560]175Packager: daisuke
[4616]176
[521]177%description
[4289]178Fx Browser is an open-source web browser based on mozilla technology.
[521]179This is unofficial build of firefox browser.
180
[4289]181%description -l ja
182FX ウェブブラウザは Mozilla テクノロジーをベースとしたオープンソースの
183ウェブブラウザです。
184
[521]185#---------------------------------------------------------------------
186
187%prep
[3236]188%setup -q -n %{name}-%{version} -c
[521]189cd %{tarballdir}
190
[6902]191%patch0 -p1 -b .install-dir
[6029]192%patch1 -p1 -b .fix-system-cairo
[6892]193%patch2 -p1 -b .build
[6029]194
[6277]195%if "%{?_dist_release}" == "vl5"
196%patch3 -p1 -b .gcc41
197%endif
[6147]198
[4289]199%patch14 -p1 -b .asciidel
[6892]200%patch15 -p1 -b .enable-addons
[4289]201
[7584]202%patch16 -p1 -b .239254
203
[521]204%patch26 -p1
205
206#
[7491]207%patch1000 -p1 -b .disable-pdfjs
[4289]208%patch2000 -p1 -b .vine
[521]209
210%{__rm} -f .mozconfig
211
[5336]212%if %build_vine7
213%{__cp} %{SOURCE240} .mozconfig
214%else
215%if %build_vine6
216%{__cp} -f %{SOURCE230} .mozconfig
217%else
[521]218%{__cp} -f %{SOURCE220} .mozconfig
219%endif
[5336]220%endif
[521]221
[4289]222#echo "ac_add_options --with-libxul-sdk=`pkg-config --variable=sdkdir libxul`" >> .mozconfig
[3947]223
[6902]224echo "ac_add_options --with-default-mozilla-five-home=%{ffdir}" >> .mozconfig
225
[3947]226%if !%{?separated_plugins}
227echo "ac_add_options --disable-ipc" >> .mozconfig
[521]228%endif
229
[6902]230# update searchplugins
[3236]231%{__tar} xjvf %{SOURCE2000} -C browser/locales/en-US/
[521]232
233# setup unofficial branding logos
[3236]234%{__tar} xjvf %{SOURCE1010}
[521]235%{__cp} %{SOURCE23} browser/branding/unofficial/content/about.png
[3236]236%{__cp} %{SOURCE24} browser/branding/unofficial/content/about-wordmark.png
237%{__cp} browser/branding/unofficial/locales/en-US/brand.* browser/branding/nightly/locales/en-US/
[521]238
239#---------------------------------------------------------------------
240
241%build
242cd %{tarballdir}
243autoconf-2.13
244
[7317]245MOZ_OPT_FLAGS=$(echo "$RPM_OPT_FLAGS" | \
246                %{__sed} -e 's/-Wall//')
[521]247export RPM_OPT_FLAGS=$MOZ_OPT_FLAGS
[3947]248export CFLAGS=$MOZ_OPT_FLAGS
249export CXXFLAGS=$MOZ_OPT_FLAGS
250
[521]251export MOZILLA_OFFICIAL=1
252export BUILD_OFFICIAL=1
[4289]253export MOZ_APP_DISPLAYNAME="Fx Browser"
[521]254
255export PREFIX='%{_prefix}'
256export LIBDIR='%{_libdir}'
257
[3947]258MOZ_SMP_FLAGS=-j1
259# On x86 architectures, Mozilla can build up to 4 jobs at once in parallel,
260# however builds tend to fail on other arches when building in parallel.
261%ifarch %{ix86} x86_64
262[ -z "$RPM_BUILD_NCPUS" ] && \
[5336]263     RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"
[3947]264[ "$RPM_BUILD_NCPUS" -ge 2 ] && MOZ_SMP_FLAGS=-j2
265[ "$RPM_BUILD_NCPUS" -ge 4 ] && MOZ_SMP_FLAGS=-j4
266%endif
267
[6892]268sed -i 's/\(MOZ_PKG_FATAL_WARNINGS =\).*/\1 0/' \
269  browser/installer/Makefile.in &&
270
[7317]271# https://bugzilla.mozilla.org/show_bug.cgi?id=824381
272mkdir js/src/.deps
273
[6902]274find security/nss/lib -name "*.def" | while read i
275do
276  mv $i $i.orig
277  grep -v ';-' $i.orig | \
278    sed -e 's,;+,,' -e 's; DATA ;;' -e 's,;;,,' -e 's,;.*,;,' > $i
279done
280
[521]281export LDFLAGS="-Wl,-rpath,%{ffdir}"
[3947]282export MAKE="gmake $MOZ_SMP_FLAGS"
[521]283%__make -f client.mk configure
[6902]284%__make -f client.mk build STRIP="/bin/true" \
285                           MOZ_MAKE_FLAGS="$MOZ_SMP_FLAGS"
[521]286
287#---------------------------------------------------------------------
288
289%install
290cd %{tarballdir}
291%{__rm} -rf $RPM_BUILD_ROOT
292
[3236]293# set up our prefs and add it to the package manifest file, so it gets pulled in
294# to omni.jar which gets created during make install
[6584]295%{__cat} %{SOURCE12} | \
296  sed -e 's,FIREFOX_RPM_VR,%{version}-%{release},g' > dist/bin/defaults/preferences/all-vine.js
[3236]297# This sed call "replaces" firefox.js with all-vine.js, newline, and itself (&)
298# having the net effect of prepending all-vine.js above firefox.js
299%{__sed} -i -e\
300    's|@BINPATH@/@PREF_DIR@/firefox.js|@BINPATH@/@PREF_DIR@/all-vine.js\n&|' \
301    browser/installer/package-manifest.in
302       
303# set up our default bookmarks
304%{__install} -p -D -m 664 %{SOURCE11} $RPM_BUILD_ROOT%{ffdir}/defaults/profile/US/bookmarks.html
305%{__install} -p -D -m 664 %{SOURCE11} $RPM_BUILD_ROOT%{ffdir}/defaults/profile/bookmarks.html
[521]306
[3236]307# Make sure locale works for langpacks
[4289]308%{__cat} > dist/bin/defaults/pref/firefox-l10n.js << EOF
[3236]309pref("general.useragent.locale", "chrome://global/locale/intl.properties");
310EOF
311
[4289]312export MOZ_APP_DISPLAYNAME="Fx Browser"
[521]313%{__make} install DESTDIR=$RPM_BUILD_ROOT
314
315%{__mkdir_p} $RPM_BUILD_ROOT{%{_libdir},%{_bindir},%{_datadir}/applications}
316
317if [ "%{version}" != "%{ffmajor}" ]; then
[3952]318  if [ -d "$RPM_BUILD_ROOT%{_libdir}/firefox-%{version}" ]; then
319    %{__mv} $RPM_BUILD_ROOT%{_libdir}/firefox-%{version} $RPM_BUILD_ROOT%{ffdir}
320  fi
[521]321fi
322
323# install icons
324%{__install} -p -D %{SOURCE22} $RPM_BUILD_ROOT%{_datadir}/pixmaps/firefox.png
325
326for desktopfiles in %{SOURCE25} %{SOURCE26}
327do
328  desktop-file-install --vendor vine \
329    --dir $RPM_BUILD_ROOT%{_datadir}/applications \
330    --add-category Application \
331    --add-category Network \
332    $desktopfiles
333done
334
335# set up the firefox start script
336%{__rm} -rf $RPM_BUILD_ROOT%{_bindir}/firefox
[3236]337XULRUNNER_DIR=`pkg-config --variable=libdir libxul | %{__sed} -e "s,%{_libdir},,g"`
[5157]338%{__cat} %{SOURCE21} | %{__sed} -e "s,XULRUNNER_DIRECTORY,$XULRUNNER_DIR,g" > \
[521]339  $RPM_BUILD_ROOT%{_bindir}/firefox
340%{__chmod} 755 $RPM_BUILD_ROOT%{_bindir}/firefox
341
342%{__cat} %{SOURCE50} | sed -e 's,FFDIR,%{ffdir},g' -e 's,LIBDIR,%{_libdir},g' > \
343  $RPM_BUILD_ROOT%{ffdir}/firefox-xremote-client
344
[3236]345# Remove binary stub from xulrunner
[4289]346#%{__rm} -rf $RPM_BUILD_ROOT/%{ffdir}/firefox
[3236]347
348#%{__chmod} 755 $RPM_BUILD_ROOT%{ffdir}/firefox-xremote-client
[521]349%{__install} -p -D -m 664 %{SOURCE30} $RPM_BUILD_ROOT%{_mandir}/man1/firefox.1
350
351%{__rm} -f $RPM_BUILD_ROOT%{ffdir}/firefox-config
352
353cd $RPM_BUILD_ROOT%{ffdir}/chrome
354find . -maxdepth 1 -mindepth 1 -name "*" -type d -exec %{__rm} -rf {} \;
355cd -
356
[3236]357
358echo > ../%{name}.lang
359# Extract langpacks, make any mods needed, repack the langpack, and install it.
360%{__mkdir_p} $RPM_BUILD_ROOT%{langpackdir}
361%{__tar} xf %{SOURCE1000}
362for langpack in `ls firefox-langpacks/*.xpi`; do
363  language=`basename $langpack .xpi`
364  extensionID=langpack-$language@firefox.mozilla.org
365  %{__mkdir_p} $extensionID
366  unzip $langpack -d $extensionID
367  find $extensionID -type f | xargs chmod 644
368
369  sed -i -e "s|browser.startup.homepage.*$|browser.startup.homepage=%{homepage}|g;" \
370     $extensionID/chrome/$language/locale/branding/browserconfig.properties
371
[5640]372  sed -i \
373     -e "s|Mozilla Firefox|Fx ウェブブラウザ|g" \
374     -e "s|Firefox|Fx ウェブブラウザ|g" \
375     -e "s|Mozilla|Project Vine|g" \
376     -e 's|\(.*trademarkInfo.part1.*"\).*">|\1Vine Linux および Vine Linux ロゴは Project Vine および有限会社ヴァインカーブの日本およびその他の国における商標です。">|g' \
377     $extensionID/chrome/$language/locale/branding/brand.*
378
[3236]379  cd $extensionID
380  zip -r9mX ../${extensionID}.xpi *
381  cd -
382
383  %{__install} -m 644 ${extensionID}.xpi $RPM_BUILD_ROOT%{langpackdir}
384  language=`echo $language | sed -e 's/-/_/g'`
385  echo "%%lang($language) %{langpackdir}/${extensionID}.xpi" >> ../%{name}.lang
[521]386done
[3236]387%{__rm} -rf firefox-langpacks
[521]388
[3236]389
390# System extensions
391%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/mozilla/extensions/%{firefox_app_id}
392%{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/mozilla/extensions/%{firefox_app_id}
393
394# Copy over the LICENSE
395%{__install} -p -c -m 644 LICENSE $RPM_BUILD_ROOT/%{ffdir}
396
[521]397# another bug fixed by looking at the debian package
398%{__mkdir_p} $RPM_BUILD_ROOT%{ffdir}/chrome/icons/default/
399for i in default16.png default32.png default48.png
400do
401  %{__cp} -f browser/branding/unofficial/$i $RPM_BUILD_ROOT%{ffdir}/chrome/icons/default/
402done
[4847]403for i in default16.png default32.png default48.png background.png \
404         mozicon128.png document.ico firefox.ico
[521]405do
406  %{__cp} -f browser/branding/unofficial/$i $RPM_BUILD_ROOT%{ffdir}/icons/
407done
408
409               
410# own mozilla plugin dir (#135050)
411%{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/mozilla/plugins
412
413
[5157]414# cleanup unpackaged files
415%{__rm} -rf $RPM_BUILD_ROOT%{_includedir}/*
416%{__rm} -rf $RPM_BUILD_ROOT%{_libdir}/%{name}-devel-*
417%{__rm} -rf $RPM_BUILD_ROOT%{_datadir}/idl
418
419
[521]420#---------------------------------------------------------------------
421
422%clean
423%{__rm} -rf $RPM_BUILD_ROOT
424
425#---------------------------------------------------------------------
426
427%post
428update-desktop-database %{_datadir}/applications >& /dev/null ||:
429
430%postun
431update-desktop-database %{_datadir}/applications>& /dev/null ||:
432umask 022
433
434%preun
435# is it a final removal?
436if [ $1 -eq 0 ]; then
437  %{__rm} -rf %{ffdir}/components
438  %{__rm} -rf %{ffdir}/extensions
[3236]439  %{__rm} -rf %{ffdir}/plugins
440  %{__rm} -rf %{langpackdir}
[521]441fi
442
443%files
444%defattr(-,root,root,-)
445%{_bindir}/firefox
446%{_mandir}/man1/*
447%{_datadir}/applications/vine-%{name}.desktop
448%{_datadir}/applications/vine-%{name}-safe-mode.desktop
449%{_datadir}/pixmaps/firefox.png
450%{ffdir}
451%{_libdir}/mozilla
452
453#---------------------------------------------------------------------
454
455%changelog
[7584]456* Sun Mar 24 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 19.0.2-2
457- add Patch16 to fix mozbz#239254 (fixed in upstream)
458
[7579]459* Fri Mar 08 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 19.0.2-1
460- update to 19.0.2
461- disable shared-js on Vine Linux 6
462
[7491]463* Wed Feb 20 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 19.0-1
464- update to 19.0
465- add Patch1000 to disable pdf.js feature for now.
466  - pdf.js is not ready to use for CJK.
467
[7369]468* Sat Jan 19 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 18.0.1-1
469- update to 18.0.1
470
[7317]471* Wed Jan 09 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 18.0-1
472- update to 18.0
473
[7133]474* Wed Nov 21 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 17.0-1
475- update to 17.0
476
[7030]477* Sun Oct 28 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 16.0.2-1
478- update to 16.0.2
479
[6921]480* Fri Oct 12 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 16.0.1-1
481- update to 16.0.1
482
[6902]483* Tue Oct 09 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 16.0-1
484- update to 16.0
485
486* Tue Oct 09 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 15.0.1-3
487- dont use separated plugins on Vine6
488- use --enable-optimize instead of --enable-optimize="\$RPM_OPT_FLAGS"
489
490* Mon Oct 08 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 15.0.1-2
491- add workaround to build with internal nss library
492
[6892]493* Sat Oct 06 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 15.0.1-1
494- update to 15.0.1
495- add BR: python-devel
496- build with external nss/nspr on Vine7
497
498* Tue Jul 17 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 14.0.1-2
499- update search plugins
500
[6584]501* Tue Jul 17 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 14.0.1-1
502- update to 14.0.1
503- build with internal nss/nspr
504
[6355]505* Sat Jun 16 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 13.0.1-1
506- update to 13.0.1
507
[6277]508* Wed Jun 06 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 13.0-1
509- update to 13.0
510
511* Sun May 20 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 12.0-3
512- add patch2 to fix build failure with gcc-4.1 (vine5)
513
[6147]514* Mon May 07 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 12.0-2
515- use internal nspr on Vine Linux 6
516- add patch2 to fix build failure with gcc-4.4
517
[6029]518* Wed Apr 25 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 12.0-1
519- update to 12.0
520- add patch1 to fix build failure with system cairo
521
[5670]522* Fri Feb 17 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 10.0.2-1
523- update to 10.0.2
524
[5640]525* Mon Feb 13 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 10.0.1-1
526- update to 10.0.1
527
[5560]528* Wed Feb 01 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 10.0-1
529- update to 10.0
530- use internal libvpx
531
532* Thu Jan 26 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 9.0.1-4
533- add AutoProv: no
534
[5336]535* Thu Dec 29 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 9.0.1-3
536- update mozconfig-firefox-vine5,6,7
537- fix spec to build in parallel
538
539* Thu Dec 22 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 9.0.1-2
540- update mozconfig
541  - build with internal nss on Vine6
542
[5302]543* Thu Dec 22 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 9.0.1-1
544- update to 9.0.1
545
546* Wed Dec 21 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 9.0-1
547- update to 9.0
548- build with nss-3.13.1
549
[5174]550* Tue Nov 22 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 8.0.1-1
551- update to 8.0.1
552
[5157]553* Fri Nov 18 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 8.0-1
554- update to 8.0
555- remove version number from MOZ_DIST_BIN
556  - /usr/lib*/firefox-8.0 -> /usr/lib*/firefox
557
[4847]558* Fri Sep 30 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0.1-1
559- update to 7.0.1
560
561* Wed Sep 28 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0-1
562- update to 7.0
563
[4737]564* Tue Sep 06 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 6.0.2-1
565- update to 6.0.2
566
[4616]567* Wed Aug 17 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 6.0-2
568- rebuild with libnotify-0.7
569
570* Sun Aug 14 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 6.0-1
571- update to 6.0
572
[4330]573* Tue Jul 12 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 5.0.1-1
574- update to 5.0.1
575
[4289]576* Thu Jul 07 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 5.0-1
577- update to 5.0
578- do not build with external xulrunner
579  - remove BR: gecko-devel, R: gecko-libs
580- add BR: alsa-lib-devel, lcms-devel, libvpx-devel, libpng-devel,
581  sqlite3-devel, zip
582
[3952]583* Mon May 23 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 4.0.1-1
584- update to 4.0.1
585- remove MimeType from firefox-safe-mode.desktop
586- add BR: yasm, unzip
587
[7491]588* Thu Mar 31 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 4.0-2
[3947]589- add "--disable-ipc" on non-x86 architecture
590- update parallel build option
591  - mozilla can build up to 4 jobs in parallel on x86
592- disable C++ exceptions since mozilla code is not exception-safe
593
[3236]594* Wed Mar 30 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 4.0-1
595- update to 4.0
596- BR: libjpeg-turbo-devel >= 1.1.0
597- BR: nspr-devel >= 4.8.7
598- BR: nss-devel >= 3.12.9
599- BR: cairo-devel >= 1.10.2-2
600- use langpacks.xpi instead of l10n source
601- update firefox startup script
602
[2983]603* Thu Mar 10 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.15-1
604- update to 3.6.15
605
[2826]606* Wed Mar 02 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.14-1
607- update to 3.6.14
608
[2458]609* Sat Jan 08 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.13-1
610- update to 3.6.13
611
[2114]612* Thu Oct 21 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.11-1
613- update to 3.6.11
614
[1810]615* Tue Sep 14 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.9-1
616- update to 3.6.9
617
[1453]618* Mon Jul 26 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.8-1
619- update to 3.6.8
620
[1413]621* Wed Jul 21 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.7-1
622- update to 3.6.7
623
[1239]624* Wed Jun 23 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.4-1
625- update to 3.6.4
626
[733]627* Sat Apr 03 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.3-1
628- update to 3.6.3
629
[721]630* Fri Apr 02 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.2-1
631- update to 3.6.2
632
[521]633* Thu Jan 21 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6-2
634- remove version number from browsername.
635- rebuild with xulrunner-1.9.2-3
636
637* Thu Jan 21 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6-1
638- update to 3.6
639
640* Sat Jan 09 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.7-2
641- update desktop files
642
643* Fri Jan 08 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.7-1
644- new upstream release
645- move to unofficial build from community build.
646  - change about dialog.
647
648* Sat Nov 21 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.5-1
649- new upstream release
650
651* Sat Aug 08 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.2-3
652- rebuild again with xulrunner-1.9.1.2-2
653
654* Fri Aug 07 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.2-2
655- rebuild with xulrunner-1.9.1.2-2
656
657* Wed Aug 05 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.2-1
658- new upstream release
659
660* Fri Jul 24 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.1-2
661- remove MimeType entry from firefox-safe-mode.desktop (<BTS:0735>)
662- add default{32,48}.png to %%{ffdir}/chrome/icons/default (<BTS:0733>)
663
664* Sun Jul 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.1-1
665- new upstream release
666- add BR: libXt-devel, startup-notification-devel
667
668* Wed Jul 01 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5-3
669- enable-system-cairo
670
671* Tue Jun 30 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5-2
672- add Patch3010 to fix releasenotes urls
673
674* Tue Jun 30 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5-1
675- update to firefox 3.5 release
676
677* Tue Jun 30 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5-0.1.rc3
678- update to firefox-3.5rc3
679
680* Fri Jun 12 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.11-1
681- new upstream release
682
683* Wed May 06 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.10-4
684- rebuild to fix broken package..
685
686* Tue May 05 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.10-3
687- add Obsoletes: firefox3
688
689* Tue Apr 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.10-2
690- new upstream release
691
692* Sun Apr 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.9-2
693- build with gecko-libs (xulrunner)
694- update firefox startup script (/usr/bin/firefox)
695
696* Wed Apr 22 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.9-1
697- new upstream release
698- build with nspr-4.7.4, nss-3.12.3
699- set FLASH_FORCE_PULSEAUDIO if PA server is running.
700
701* Sat Mar 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.8-1
702- new upstream release
703- update default bookmarks
704
705* Thu Mar 05 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.7-1
706- new upstream release
707
708* Mon Feb 16 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.6-2
709- modify mozconfig
710  - remove --enable-xft
711  - remove --enable-system-cairo, add --disable-system-cairo
712
713* Wed Feb 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.6-1
714- new upstream release
715
716* Sat Dec 20 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.5-1
717- new upstream release
718
719* Sat Nov 22 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.4-1
720- new upstream release
721
722* Thu Oct 02 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.3-2
723- add Patch30 to remove EULA
724
725* Sat Sep 27 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.3-1
726- new upstream release
727
728* Thu Sep 25 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.2-2
729- disable dbus.
730
731* Thu Sep 25 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.2-1
732- new upstream release
733
734* Thu Jul 17 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.1-1
735- new upstream release
736
737* Wed Jul 02 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0-2
738- rebuild with nss-3.12, nspr-4.7.1
739- use unofficial branding
740- change brand*Name to "Firefox Community Edition - Gran Paradiso"
741
742* Sun Jun 22 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0-1
743- new upstream release
744
745* Sat Apr 19 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.0.14-1
746- new upstream release
747
748* Wed Mar 26 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.13-1
749- new upstream release
750
751* Tue Feb 19 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.12-0vl3
752- new upstream release
753
754* Sat Dec 01 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.11-0vl3
755- new upstream release
756
757* Tue Nov 27 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.10-0vl3
758- new upstream release
759
760* Fri Oct 19 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.9-0vl3
761- new upstream release
762
763* Fri Oct 19 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.8-0vl3
764- new upstream release
765- build with nspr-4.6.7
766- update default bookmarks
767
768* Tue Jul 31 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.6-0vl3
769- new upstream release
770
771* Thu Jul 19 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.5-0vl3
772- new upstream release
773
774* Tue Jun 12 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.4-0vl9
775- fix pkgconfig file for x86_64 [VineSeed-x86_64:00333]
776- require ns{pr,s}-devel instead of ns{pr,s} for firefox-devel
777
778* Sat Jun 02 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.4-0vl6
779- fix exclude condition of firefox-{nss,nspr}.pc (<BTS:532>)
780
781* Thu May 31 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.4-0vl3
782- update to firefox-2.0.0.4
783- remove Patch1020 which is merged in upstream
784
785* Sun May 20 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.0.0.3-0vl5
786- added Patch1020 for workaround gcc visibility hidden bugs
787
788* Sat May 19 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.3-0vl4
789- add build options to build with external nss/nspr libraries
790    ac_add_options --with-system-nspr
791    ac_add_options --with-system-nss
792- remove firefox-{nspr,nss}.pc from %%files devel
793
794* Fri May 11 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.3-0vl3
795- rebuild with new environment/toolchain
796- update ja locale
797
798* Wed Mar 21 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.3-0vl2
799- new upstream release
800
801* Sat Feb 24 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.2-0vl2
802- new upstream release
803
804* Sat Jan 27 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.1-0vl6
805- remove typeaheadfind and venkman extention.
806
807* Fri Jan 26 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.1-0vl4
808- add build options for FireBug (<BTS:wishes:9>)
809  --enable-jsd, --enable-extention=default,typeaheadfind,venkman
810
811* Thu Dec 21 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.1-0vl2
812- update to firefox-2.0.0.1
813
814* Mon Nov 27 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0-0vl6
815- add Patch10 to fix Bug358798
816- fix idl install path (<BTS:401>)
817
818* Sat Oct 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0-0vl4
819- update vine default settings
820  - use Firefox for UA string instead of BonEcho
821  - add vendor/vendorSub to UA string
822  - disable spell check by default
823  - enable smooth scroll by default
824
825* Tue Oct 24 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0-0vl2
826- update to firefox-2.0 final
827
828* Mon Oct 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0-0vl0.rc3
829- update to firefox-2.0rc3
830- drop unneeded patches.
831
832* Mon Oct 02 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.7-0vl4
833- change Summary, desktopfiles
834  - use Firefox Community Edition, instead of Firefox.
835
836* Fri Sep 15 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.7-0vl2
837- new upstream release
838
839* Thu Aug 17 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.6-0vl2
840- new upstream release
841- -safe-mode option (VinePlus:03026)
842  - add Patch1010
843    - add -safe-mode option in Usage(--help).
844  - add firefox-safe-mode.desktop
845
846* Wed Jul 26 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.5-0vl2
847- new upstream release
848- update default bookmarks
849
850* Tue Jun 06 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.4-0vl4
851- copy nss headers
852
853* Fri Jun 02 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.4-0vl2
854- new upstream release
855
856* Wed May 03 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.3-0vl2
857- new upstream release
858
859* Fri Apr 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.2-0vl4
860- use firefox-1.5 for MOZILLA_FIVE_HOME instead of firefox-1.5.0.2
861  - applications using gtkmozembed of firefox become unaffected to
862    firefox's minor version changes.
863
864* Fri Apr 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.2-0vl2
865- new upstream release
866
867* Wed Apr 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.1-0vl6
868- clean up spec file ( remove unneeded %%ghost file ... )
869
870* Wed Apr 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.1-0vl4
871- fix missing default theme in theme changer
872
873* Thu Mar 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.1-0vl3
874- add upstream patches (100,101,102)
875- update default bookmarks
876- build en-US locale
877- disable pango rendering by default
878  (workaround fix slow rendering in some page)
879
880* Thu Feb 02 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.1-0vl2
881- new upstream release
882
883* Thu Jan 19 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5-0vl4
884- fix libnssckbi broken symlink problem (BUG:8)
885
886* Thu Dec 29 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5-0vl3
887- add devel subpackage for gtkembedmoz
888
889* Thu Dec 29 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5-0vl2
890- re-enable ja locale
891- fix crash bug with COMPOSITE enabled X server
892  - add patch to /usr/bin/firefox
893
894* Wed Nov 30 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5-0vl1
895- new upstream release
896
897* Sat Sep 24 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.7-0vl2
898- update to firefox-1.0.7
899
900* Tue Sep 20 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-0vl10
901- modified mozconfig to use RPM_OPT_FLAGS
902
903* Mon Sep 19 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-0vl8
904- add Patch110 to fix crash with gtk-2.7 (fixed in upstream)
905
906* Thu Aug 04 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-0vl6
907- rebuild with pango-1.9.1
908- add pango-cairo patch
909
910* Sat Jul 23 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-0vl4
911- update Patch25 to enable extension update feature
912  (disabled in preferences by default)
913
914* Wed Jul 20 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-0vl2
915- new upstream release
916
917* Thu Jul 14 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.5-0vl2
918- new upstream release
919
920* Sat May 14 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-0vl6
921- add more pango rendering patch from FC-devel.
922- add IM candidate window position patch.
923
924* Fri May 13 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-0vl4
925- fix wrong condition branching in spec file.
926
927* Fri May 13 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-0vl2
928- new upstream release
929- drop obsolete patch{103,104}
930
931* Sat Apr 16 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.3-0vl1
932- new upstream release
933
934* Mon Mar 28 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.2-0vl1
935- new upstream release
936
937* Tue Mar 15 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-0vl6
938- clean up spec file
939  - drop own pixmap file (use included one)
940  - fix up file permissions
941
942* Tue Mar 15 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-0vl4
943- remove "new-window" option from openurl in /usr/bin/firefox
944
945* Tue Mar 15 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-0vl2
946- readd patch31,32 for pango rendering fix.
947
948* Mon Mar 14 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-0vl0
949- rebuild for Vine Linux 3.1 (VinePlus)
950
951* Mon Mar 07 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-0vl1
952- new upstream release
953- merge some patches from fedora
954- include ja-JP langpack only.
955- add Japanese translation for mozilla-firefox.desktop
956- disable gnomeui, gnomestripe patch
957- disable mozilla official branding.
958
959* Mon Jan 24 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0-0vl1
960- initial build for Vine Linux
961- based on fedora package, add Vine patch from Mozilla package.
962
963* Tue Dec 28 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-8
964- Add upstream langpacks
965
966* Sat Dec 25 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-7
967- Make sure we get a URL passed in to firefox (#138861)
968- Mark some generated files as ghost (#136015)
969
970* Wed Dec 15 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-6
971- Don't have downloads "disappear" when downloading to desktop (#139015)
972- Add RPM version to the useragent
973- BuildRequires pango-devel
974
975* Sat Dec 11 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-5
976- Fix spacing in textareas when using pango for rendering
977- Enable pango rendering by default.
978- Enable smooth scrolling by default
979
980* Fri Dec  3 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-4
981- Add StartupWMClass patch from Damian Christey (#135830)
982- Use system colors by default (#137810)
983- Re-add s390(x)
984
985* Sat Nov 20 2004 Christopher Blizzard <blizzard@redhat.com> 0:1.0-3
986- Add patch that uses pango for selection.
987
988* Fri Nov 12 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-2
989- Fix livemarks icon issue. (#138989)
990
[7491]991* Mon Nov  8 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-1
[521]992- Firefox 1.0
993
994* Thu Nov  4 2004 Christopher Aillon <caillon@redhat.com> 0:0.99-1.0RC1.3
995- Add support for GNOME stock icons. (bmo #233461)
996
997* Sat Oct 30 2004 Warren Togami <wtogami@redhat.com> 0:0.99-1.0RC1.2
998- #136330 BR freetype-devel with conditions
999- #135050 firefox should own mozilla plugin dir
1000
1001* Sat Oct 30 2004 Christopher Aillon <caillon@redhat.com> 0:0.99-1.0RC1.1
1002- Update to firefox-rc1
1003- Add patch for s390(x)
1004
1005* Tue Oct 26 2004 Christopher Aillon <caillon@redhat.com>
1006- Fix LD_LIBRARY_PATH at startup (Steve Knodle)
1007
1008* Fri Oct 22 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.21
1009- Prevent inlining of stack direction detection (#135255)
1010
1011* Tue Oct 19 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.20
1012- More file chooser fixes:
1013    Pop up a confirmation dialog before overwriting files (#134648)
1014    Allow saving as complete once again
1015- Fix for upstream 263263.
1016
1017* Tue Oct 19 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.18
1018- Fix for upstream 262689.
1019
1020* Mon Oct 18 2004 Christopher Blizzard <blizzard@redhat.com 0:0.10.1-1.0PR1.16
1021- Update pango patch to one that defaults to off
1022
1023* Mon Oct 18 2004 Christopher Blizzard <blizzard@redhat.com> 0:0.10.1-1.0PR1.15
1024- Fix problem where default apps aren't showing up in the download
1025  dialog (#136261)
1026- Fix default height being larger than the available area, cherry picked
1027  from upstream
1028
1029* Mon Oct 18 2004 Christopher Blizzard <blizzard@redhat.com> 0:0.10.1-1.0PR1.13
1030- Actually turn on pango in the mozconfig
1031
1032* Sat Oct 16 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.12
1033- Disable the default application checks. (#133713)
1034- Disable the software update feature. (#136017)
1035
1036* Wed Oct 13 2004 Christopher Blizzard <blizzard@redhat.com>
1037- Use pango for rendering
1038
1039* Tue Oct 12 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.10
1040- Fix for 64 bit crash at startup (b.m.o #256603)
1041
1042* Fri Oct  8 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.9
1043- Fix compile issues (#134914)
1044- Add patch to fix button focus issues (#133507)
1045- Add patches to fix tab focus stealing issue (b.m.o #124750)
1046
1047* Fri Oct  1 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.8
1048- Update to 0.10.1
1049- Fix tab switching keybindings (#133504)
1050
1051* Fri Oct  1 2004 Bill Nottingham <notting@redhat.com> 0:0.10.0-1.0PR1.7
1052- filter out library Provides: and internal Requires:
1053
1054* Thu Sep 30 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.6
1055- Prereq desktop-file-utils >= 0.9
1056
1057* Thu Sep 30 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.5
1058- Add clipboard access prevention patch.
1059
1060* Wed Sep 29 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.4
1061- Add the xul mime type to the .desktop file
1062
1063* Tue Sep 28 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.3
1064- Backport the GTK+ file chooser.
1065- Update desktop database after uninstall.
1066
1067* Mon Sep 27 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.2
1068- Change the vendor to mozilla not fedora
1069- Build with --disable-strip so debuginfo packages work (#133738)
1070- Add pkgconfig patch (bmo #261090)
1071
1072* Fri Sep 24 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.1
1073- Add a BR for desktop-file-utils
1074- Update default configuration options to use the firefox mozconfig (#132916)
1075- Use Red Hat bookmarks (#133262)
1076- Update default homepage (#132721)
1077- Fix JS math on AMD64 (#133226)
1078- Build with MOZILLA_OFICIAL (#132917)
1079
1080* Tue Sep 14 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.0
1081- Update to 1.0PR1
1082- Update man page references to say Firefox instead of Firebird
1083- Remove gcc34 and extensions patch; they are now upstream
1084- Update desktop database
1085- Minor tweaks to the .desktop file
1086
1087* Fri Sep 03 2004 Christopher Aillon <caillon@redhat.com> 0:0.9.3-8
1088- Fixup .desktop entry Name, GenericName, and Comment (#131602)
1089- Add MimeType desktop entry (patch from jrb@redhat.com)
1090- Build with --disable-xprint
1091
1092* Tue Aug 31 2004 Warren Togami <wtogami@redhat.com> 0:0.9.3-7
1093- rawhide import
1094- fedora.us #1765 NetBSD's freetype 2.1.8 compat patch
1095
1096* Sun Aug 29 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.6
1097- and mng support is disabled again as it seams that there is
1098  no real mng support in the code
1099
1100* Sat Aug 28 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.5
1101- remove ldconfig from scriptlets (bug #1846 comment #40)
1102- reenabled mng support (bug #1971)
1103- removed --enable-strip to let rpm to the stripping (bug #1971)
1104- honor system settings in firefox.sh (bug #1971)
1105- setting umask 022 in scriptlets (bug #1962)
1106
1107* Sat Aug 07 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.4
1108- copy the icon to the right place(TM)
1109
1110* Fri Aug 06 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.3
1111- readded the xpm removed in 0:0.9.2-0.fdr.5
1112
1113* Thu Aug 05 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.2
1114- added mozilla-1.7-psfonts.patch from rawhide mozilla
1115
1116* Thu Aug 05 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.1
1117- updated to 0.9.3
1118- removed following from .mozconfig:
1119    ac_add_options --with-system-mng
1120    ac_add_options --enable-xprint
1121    ac_add_options --disable-dtd-debug
1122    ac_add_options --disable-freetype2
1123    ac_add_options --enable-strip-libs
1124    ac_add_options --enable-reorder
1125    ac_add_options --enable-mathml
1126    ac_add_options --without-system-nspr
1127
1128* Tue Aug 03 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.5
1129- applied parts of the patch from Matthias Saou (bug #1846)
1130- delete empty directories in %%{ffdir}/chrome
1131- more cosmetic changes to the spec file
1132
1133* Wed Jul 14 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.4
1134- mozilla-default-plugin-less-annoying.patch readded
1135
1136* Tue Jul 13 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.3
1137- added krb5-devel as build requirement
1138
1139* Tue Jul 13 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.2
1140- added patch from bugzilla.mozilla.org (bug #247846)
1141- removed Xvfb hack
1142
1143* Fri Jul 09 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.1
1144- updated to 0.9.2
1145
1146* Mon Jul 05 2004 Warren Togami <wtogami@redhat.com> 0:0.9.1-0.fdr.3
1147- mharris suggestion for backwards compatibilty with Xvfb hack
1148
1149* Tue Jun 29 2004 Adrian Reber <adrian@lisas.de> 0:0.9.1-0.fdr.2
1150- added massive hack from the debian package to create the
1151  extension directory
1152
1153* Tue Jun 29 2004 Adrian Reber <adrian@lisas.de> 0:0.9.1-0.fdr.1
1154- updated to 0.9.1
1155
[7491]1156* Thu Jun 17 2004 Adrian Reber <adrian@lisas.de> 0:0.9-0.fdr.4
[521]1157- remove extensions patch
1158- add post hack to create extensions
1159- enable negotiateauth extension
1160- copy icon to browser/app/default.xpm
1161- --enable-official-branding
1162
[7491]1163* Thu Jun 17 2004 Adrian Reber <adrian@lisas.de> 0:0.9-0.fdr.3
[521]1164- extensions patch
1165
1166* Wed Jun 16 2004 Adrian Reber <adrian@lisas.de> 0:0.9-0.fdr.2
1167- added gnome-vfs2-devel as BuildRequires
1168- added gcc-3.4 patch
1169
1170* Wed Jun 16 2004 Adrian Reber <adrian@lisas.de> 0:0.9-0.fdr.1
1171- updated to 0.9
1172- dropped x86_64 patches
1173- dropped xremote patches
1174
1175* Wed May 26 2004 Adrian Reber <adrian@lisas.de> 0:0.8-0.fdr.13
1176- remove unused files: mozilla-config
1177
1178* Sun May 23 2004 David Hill <djh[at]ii.net> 0:0.8-0.fdr.12
1179- update mozconfig (fixes bug #1443)
1180- installation directory includes version number
1181
1182* Mon May 10 2004 Justin M. Forbes <64bit_fedora@comcast.net> 0:0.8-0.fdr.11
1183- merge x86_64 release 10 with fedora.us release 10 bump release to 11
1184
1185* Mon Apr 19 2004 Justin M. Forbes <64bit_fedora@comcast.net> 0:0.8-0.fdr.10
1186- rebuild for FC2
1187- change Source71 to properly replace Source7 for maintainability
1188
1189* Sun Apr 18 2004 Warren Togami <wtogami@redhat.com> 0:0.8-0.fdr.10
1190- 3rd xremote patch
1191- test -Os rather than -O2
1192
1193* Sun Apr 18 2004 Gene Czarcinski <gene@czarc.net>
1194- more x86_64 fixes
1195- fix firefix-xremote-client for x86_64 (similar to what is done for
1196  firefox.sh.in)
1197
1198* Sat Apr 03 2004 Warren Togami <wtogami@redhat.com> 0:0.8-0.fdr.9
1199- xremote patch for thunderbird integration #1113
1200- back out ugly hack from /usr/bin/firefox
1201- correct default bookmarks
1202
1203* Wed Feb 25 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.7
1204- readded the new firefox icons
1205
1206* Sat Feb 21 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.6
1207- removed new firefox icons
1208
1209* Wed Feb 18 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.5
1210- nothing
1211
1212* Thu Feb 12 2004 Gene Czarcinski <czar@acm.org>
1213- update for x86_64 ... usr mozilla-1.6 patches
1214- change "firefox-i*" to "firefox-*" in above stuff
1215
1216* Tue Feb 10 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.4
1217- another icon changed
1218
1219* Tue Feb 10 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.3
1220- startup script modified
1221
1222* Mon Feb 09 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.2
1223- new firefox icon
1224- more s/firebird/firefox/
1225
1226* Mon Feb 09 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.1
1227- new version: 0.8
1228- new name: firefox
1229
1230* Sun Oct 19 2003 Adrian Reber <adrian@lisas.de> - 0:0.7-0.fdr.2
1231- s/0.6.1/0.7/
1232- changed user-app-dir back to .phoenix as .mozilla-firebird
1233  is not working as expected
1234- manpage now also available as MozillaFirebird.1
1235
1236* Thu Oct 16 2003 Adrian Reber <adrian@lisas.de> - 0:0.7-0.fdr.1
1237- updated to 0.7
1238- provides webclient
1239- run regxpcom and regchrome after installation and removal
1240- added a man page from the debian package
1241- changed user-app-dir from .phoenix to .mozilla-firebird
1242
1243* Tue Jul 29 2003 Adrian Reber <adrian@lisas.de> - 0:0.6.1-0.fdr.2
1244- now with mozilla-default-plugin-less-annoying.patch; see bug #586
1245
1246* Tue Jul 29 2003 Adrian Reber <adrian@lisas.de> - 0:0.6.1-0.fdr.1
1247- updated to 0.6.1
1248- changed buildrequires for XFree86-devel from 0:4.3.0 to 0:4.2.1
1249  it should now also build on RH80
1250
1251* Sun Jul 13 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.5.rh90
1252- enabled the type ahead extension: bug #484
1253
1254* Sun Jul 13 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.4.rh90
1255- renamed it again back to MozillaFirbird
1256- added libmng-devel to BuildRequires
1257- startup homepage is now www.fedora.us
1258- improved the startup script to use the unix remote protocol
1259  to open a new window
1260
[7491]1261* Mon May 19 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.3.rh90
[521]1262- new icon from http://iconpacks.mozdev.org/phoenix/iconshots/flame48true.png
1263- now using gtk2 as toolkit
1264- renamed again back to mozilla-firebird (I like it better)
1265- Provides: MozillaFirebird for compatibility with previous releases
1266- changed default bookmarks.html to contain links to www.fedora.us
1267
[7491]1268* Mon May 19 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.2.rh90
[521]1269- renamed package to MozillaFirebird and all files with the old name
1270- enabled mng, mathml, xinerama support
1271- now honouring RPM_OPT_FLAGS
1272
[7491]1273* Mon May 19 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.1.rh90
[521]1274- updated to 0.6
1275
1276* Thu May 01 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.1.cvs20030501.rh90
1277- Updated to CVS.
1278- Renamed to mozilla-firebird.
1279
1280* Sat Apr 05 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.3.cvs20030409.rh90
1281- Updated to CVS.
1282- Removed hard-coded library path.
1283
1284* Sat Apr 05 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.3.cvs20030402.rh90
1285- Changed Prereq to Requires.
1286- Changed BuildRequires to gtk+-devel (instead of file).
1287- Recompressed source with bzip2.
1288- Removed post.
1289
[7491]1290* Wed Apr 02 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.2.cvs20030402.rh90
[521]1291- Added desktop-file-utils to BuildRequires.
1292- Changed category to X-Fedora-Extra.
1293- Updated to CVS.
1294
1295* Sun Mar 30 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.2.cvs20030328.rh90
1296- Added Epoch:0.
1297- Added libgtk-1.2.so.0 to the BuildRequires
1298
1299* Fri Mar 28 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-0.fdr.0.1.cvs20030328.rh90
1300- Updated to latest CVS.
1301- Moved phoenix startup script into its own file
1302
1303* Wed Mar 26 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-0.fdr.0.1.cvs20030326.rh90
1304- Updated to latest CVS.
1305- Changed release to 9 vs 8.1.
1306- Added cvs script.
1307- added encoding to desktop file.
1308
1309* Sun Mar 23 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-0.fdr.0.1.cvs20030323.rh81
1310- Updated to latest CVS.
1311- added release specification XFree86-devel Build Requirement.
1312- changed chmod to %attr
1313
1314* Fri Mar 21 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-0.fdr.0.1.cvs20030317.rh81
1315- Fixed naming scheme.
1316- Fixed .desktop file.
1317
1318* Mon Mar 17 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-cvs20030317.1
1319- Updated to CVS.
1320
1321* Fri Mar 14 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-cvs20030313.2
1322- General Tweaking.
1323
1324* Thu Mar 13 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-cvs20030313.1
1325- Updated CVS.
1326- Modified mozconfig.
1327
1328* Sun Mar 09 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-cvs20030309.1
1329- Initial RPM release.
Note: See TracBrowser for help on using the repository browser.