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

Revision 4737, 38.0 KB checked in by daisuke, 13 years ago (diff)

firefox: udpate to 6.0.2

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