source: projects/specs/branches/6/f/firefox/firefox-vl.spec @ 6910

Revision 6910, 41.7 KB checked in by daisuke, 12 years ago (diff)

update to 16.0 (sync with trunk)

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