source: projects/specs/tags/6_0_REL/f/firefox/firefox-vl.spec @ 4330

Revision 4330, 37.7 KB checked in by daisuke, 13 years ago (diff)

firefox: update to 5.0.1

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