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

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

firefox: update to 7.0.1

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