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

Revision 9012, 45.4 KB checked in by daisuke, 10 years ago (diff)

firefox: update to 33.0

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