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

Revision 6277, 41.0 KB checked in by daisuke, 12 years ago (diff)

update to 13.0

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