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

Revision 5336, 39.1 KB checked in by daisuke, 12 years ago (diff)

firefox:

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