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

Revision 5174, 38.3 KB checked in by daisuke, 13 years ago (diff)

firefox: 8.0.1

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