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

Revision 7317, 42.2 KB checked in by daisuke, 12 years ago (diff)

firefox:

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