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

Revision 4616, 37.9 KB checked in by Takemikaduchi, 13 years ago (diff)

X.Org, compiz, GNOME3, etc...

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 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 2%{?_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 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-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* Wed Aug 17 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 6.0-2
389- rebuild with libnotify-0.7
390
391* Sun Aug 14 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 6.0-1
392- update to 6.0
393
394* Tue Jul 12 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 5.0.1-1
395- update to 5.0.1
396
397* Thu Jul 07 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 5.0-1
398- update to 5.0
399- do not build with external xulrunner
400  - remove BR: gecko-devel, R: gecko-libs
401- add BR: alsa-lib-devel, lcms-devel, libvpx-devel, libpng-devel,
402  sqlite3-devel, zip
403
404* Mon May 23 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 4.0.1-1
405- update to 4.0.1
406- remove MimeType from firefox-safe-mode.desktop
407- add BR: yasm, unzip
408
409* Tue Mar 31 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 4.0-2
410- add "--disable-ipc" on non-x86 architecture
411- update parallel build option
412  - mozilla can build up to 4 jobs in parallel on x86
413- disable C++ exceptions since mozilla code is not exception-safe
414
415* Wed Mar 30 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 4.0-1
416- update to 4.0
417- BR: libjpeg-turbo-devel >= 1.1.0
418- BR: nspr-devel >= 4.8.7
419- BR: nss-devel >= 3.12.9
420- BR: cairo-devel >= 1.10.2-2
421- use langpacks.xpi instead of l10n source
422- update firefox startup script
423
424* Thu Mar 10 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.15-1
425- update to 3.6.15
426
427* Wed Mar 02 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.14-1
428- update to 3.6.14
429
430* Sat Jan 08 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.13-1
431- update to 3.6.13
432
433* Thu Oct 21 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.11-1
434- update to 3.6.11
435
436* Tue Sep 14 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.9-1
437- update to 3.6.9
438
439* Mon Jul 26 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.8-1
440- update to 3.6.8
441
442* Wed Jul 21 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.7-1
443- update to 3.6.7
444
445* Wed Jun 23 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.4-1
446- update to 3.6.4
447
448* Sat Apr 03 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.3-1
449- update to 3.6.3
450
451* Fri Apr 02 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.2-1
452- update to 3.6.2
453
454* Thu Jan 21 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6-2
455- remove version number from browsername.
456- rebuild with xulrunner-1.9.2-3
457
458* Thu Jan 21 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6-1
459- update to 3.6
460
461* Sat Jan 09 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.7-2
462- update desktop files
463
464* Fri Jan 08 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.7-1
465- new upstream release
466- move to unofficial build from community build.
467  - change about dialog.
468
469* Sat Nov 21 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.5-1
470- new upstream release
471
472* Sat Aug 08 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.2-3
473- rebuild again with xulrunner-1.9.1.2-2
474
475* Fri Aug 07 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.2-2
476- rebuild with xulrunner-1.9.1.2-2
477
478* Wed Aug 05 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.2-1
479- new upstream release
480
481* Fri Jul 24 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.1-2
482- remove MimeType entry from firefox-safe-mode.desktop (<BTS:0735>)
483- add default{32,48}.png to %%{ffdir}/chrome/icons/default (<BTS:0733>)
484
485* Sun Jul 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.1-1
486- new upstream release
487- add BR: libXt-devel, startup-notification-devel
488
489* Wed Jul 01 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5-3
490- enable-system-cairo
491
492* Tue Jun 30 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5-2
493- add Patch3010 to fix releasenotes urls
494
495* Tue Jun 30 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5-1
496- update to firefox 3.5 release
497
498* Tue Jun 30 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5-0.1.rc3
499- update to firefox-3.5rc3
500
501* Fri Jun 12 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.11-1
502- new upstream release
503
504* Wed May 06 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.10-4
505- rebuild to fix broken package..
506
507* Tue May 05 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.10-3
508- add Obsoletes: firefox3
509
510* Tue Apr 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.10-2
511- new upstream release
512
513* Sun Apr 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.9-2
514- build with gecko-libs (xulrunner)
515- update firefox startup script (/usr/bin/firefox)
516
517* Wed Apr 22 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.9-1
518- new upstream release
519- build with nspr-4.7.4, nss-3.12.3
520- set FLASH_FORCE_PULSEAUDIO if PA server is running.
521
522* Sat Mar 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.8-1
523- new upstream release
524- update default bookmarks
525
526* Thu Mar 05 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.7-1
527- new upstream release
528
529* Mon Feb 16 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.6-2
530- modify mozconfig
531  - remove --enable-xft
532  - remove --enable-system-cairo, add --disable-system-cairo
533
534* Wed Feb 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.6-1
535- new upstream release
536
537* Sat Dec 20 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.5-1
538- new upstream release
539
540* Sat Nov 22 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.4-1
541- new upstream release
542
543* Thu Oct 02 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.3-2
544- add Patch30 to remove EULA
545
546* Sat Sep 27 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.3-1
547- new upstream release
548
549* Thu Sep 25 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.2-2
550- disable dbus.
551
552* Thu Sep 25 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.2-1
553- new upstream release
554
555* Thu Jul 17 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.1-1
556- new upstream release
557
558* Wed Jul 02 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0-2
559- rebuild with nss-3.12, nspr-4.7.1
560- use unofficial branding
561- change brand*Name to "Firefox Community Edition - Gran Paradiso"
562
563* Sun Jun 22 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0-1
564- new upstream release
565
566* Sat Apr 19 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.0.14-1
567- new upstream release
568
569* Wed Mar 26 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.13-1
570- new upstream release
571
572* Tue Feb 19 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.12-0vl3
573- new upstream release
574
575* Sat Dec 01 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.11-0vl3
576- new upstream release
577
578* Tue Nov 27 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.10-0vl3
579- new upstream release
580
581* Fri Oct 19 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.9-0vl3
582- new upstream release
583
584* Fri Oct 19 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.8-0vl3
585- new upstream release
586- build with nspr-4.6.7
587- update default bookmarks
588
589* Tue Jul 31 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.6-0vl3
590- new upstream release
591
592* Thu Jul 19 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.5-0vl3
593- new upstream release
594
595* Tue Jun 12 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.4-0vl9
596- fix pkgconfig file for x86_64 [VineSeed-x86_64:00333]
597- require ns{pr,s}-devel instead of ns{pr,s} for firefox-devel
598
599* Sat Jun 02 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.4-0vl6
600- fix exclude condition of firefox-{nss,nspr}.pc (<BTS:532>)
601
602* Thu May 31 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.4-0vl3
603- update to firefox-2.0.0.4
604- remove Patch1020 which is merged in upstream
605
606* Sun May 20 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.0.0.3-0vl5
607- added Patch1020 for workaround gcc visibility hidden bugs
608
609* Sat May 19 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.3-0vl4
610- add build options to build with external nss/nspr libraries
611    ac_add_options --with-system-nspr
612    ac_add_options --with-system-nss
613- remove firefox-{nspr,nss}.pc from %%files devel
614
615* Fri May 11 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.3-0vl3
616- rebuild with new environment/toolchain
617- update ja locale
618
619* Wed Mar 21 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.3-0vl2
620- new upstream release
621
622* Sat Feb 24 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.2-0vl2
623- new upstream release
624
625* Sat Jan 27 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.1-0vl6
626- remove typeaheadfind and venkman extention.
627
628* Fri Jan 26 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.1-0vl4
629- add build options for FireBug (<BTS:wishes:9>)
630  --enable-jsd, --enable-extention=default,typeaheadfind,venkman
631
632* Thu Dec 21 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.1-0vl2
633- update to firefox-2.0.0.1
634
635* Mon Nov 27 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0-0vl6
636- add Patch10 to fix Bug358798
637- fix idl install path (<BTS:401>)
638
639* Sat Oct 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0-0vl4
640- update vine default settings
641  - use Firefox for UA string instead of BonEcho
642  - add vendor/vendorSub to UA string
643  - disable spell check by default
644  - enable smooth scroll by default
645
646* Tue Oct 24 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0-0vl2
647- update to firefox-2.0 final
648
649* Mon Oct 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0-0vl0.rc3
650- update to firefox-2.0rc3
651- drop unneeded patches.
652
653* Mon Oct 02 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.7-0vl4
654- change Summary, desktopfiles
655  - use Firefox Community Edition, instead of Firefox.
656
657* Fri Sep 15 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.7-0vl2
658- new upstream release
659
660* Thu Aug 17 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.6-0vl2
661- new upstream release
662- -safe-mode option (VinePlus:03026)
663  - add Patch1010
664    - add -safe-mode option in Usage(--help).
665  - add firefox-safe-mode.desktop
666
667* Wed Jul 26 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.5-0vl2
668- new upstream release
669- update default bookmarks
670
671* Tue Jun 06 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.4-0vl4
672- copy nss headers
673
674* Fri Jun 02 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.4-0vl2
675- new upstream release
676
677* Wed May 03 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.3-0vl2
678- new upstream release
679
680* Fri Apr 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.2-0vl4
681- use firefox-1.5 for MOZILLA_FIVE_HOME instead of firefox-1.5.0.2
682  - applications using gtkmozembed of firefox become unaffected to
683    firefox's minor version changes.
684
685* Fri Apr 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.2-0vl2
686- new upstream release
687
688* Wed Apr 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.1-0vl6
689- clean up spec file ( remove unneeded %%ghost file ... )
690
691* Wed Apr 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.1-0vl4
692- fix missing default theme in theme changer
693
694* Thu Mar 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.1-0vl3
695- add upstream patches (100,101,102)
696- update default bookmarks
697- build en-US locale
698- disable pango rendering by default
699  (workaround fix slow rendering in some page)
700
701* Thu Feb 02 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.1-0vl2
702- new upstream release
703
704* Thu Jan 19 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5-0vl4
705- fix libnssckbi broken symlink problem (BUG:8)
706
707* Thu Dec 29 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5-0vl3
708- add devel subpackage for gtkembedmoz
709
710* Thu Dec 29 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5-0vl2
711- re-enable ja locale
712- fix crash bug with COMPOSITE enabled X server
713  - add patch to /usr/bin/firefox
714
715* Wed Nov 30 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5-0vl1
716- new upstream release
717
718* Sat Sep 24 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.7-0vl2
719- update to firefox-1.0.7
720
721* Tue Sep 20 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-0vl10
722- modified mozconfig to use RPM_OPT_FLAGS
723
724* Mon Sep 19 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-0vl8
725- add Patch110 to fix crash with gtk-2.7 (fixed in upstream)
726
727* Thu Aug 04 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-0vl6
728- rebuild with pango-1.9.1
729- add pango-cairo patch
730
731* Sat Jul 23 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-0vl4
732- update Patch25 to enable extension update feature
733  (disabled in preferences by default)
734
735* Wed Jul 20 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-0vl2
736- new upstream release
737
738* Thu Jul 14 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.5-0vl2
739- new upstream release
740
741* Sat May 14 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-0vl6
742- add more pango rendering patch from FC-devel.
743- add IM candidate window position patch.
744
745* Fri May 13 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-0vl4
746- fix wrong condition branching in spec file.
747
748* Fri May 13 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-0vl2
749- new upstream release
750- drop obsolete patch{103,104}
751
752* Sat Apr 16 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.3-0vl1
753- new upstream release
754
755* Mon Mar 28 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.2-0vl1
756- new upstream release
757
758* Tue Mar 15 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-0vl6
759- clean up spec file
760  - drop own pixmap file (use included one)
761  - fix up file permissions
762
763* Tue Mar 15 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-0vl4
764- remove "new-window" option from openurl in /usr/bin/firefox
765
766* Tue Mar 15 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-0vl2
767- readd patch31,32 for pango rendering fix.
768
769* Mon Mar 14 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-0vl0
770- rebuild for Vine Linux 3.1 (VinePlus)
771
772* Mon Mar 07 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-0vl1
773- new upstream release
774- merge some patches from fedora
775- include ja-JP langpack only.
776- add Japanese translation for mozilla-firefox.desktop
777- disable gnomeui, gnomestripe patch
778- disable mozilla official branding.
779
780* Mon Jan 24 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0-0vl1
781- initial build for Vine Linux
782- based on fedora package, add Vine patch from Mozilla package.
783
784* Tue Dec 28 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-8
785- Add upstream langpacks
786
787* Sat Dec 25 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-7
788- Make sure we get a URL passed in to firefox (#138861)
789- Mark some generated files as ghost (#136015)
790
791* Wed Dec 15 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-6
792- Don't have downloads "disappear" when downloading to desktop (#139015)
793- Add RPM version to the useragent
794- BuildRequires pango-devel
795
796* Sat Dec 11 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-5
797- Fix spacing in textareas when using pango for rendering
798- Enable pango rendering by default.
799- Enable smooth scrolling by default
800
801* Fri Dec  3 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-4
802- Add StartupWMClass patch from Damian Christey (#135830)
803- Use system colors by default (#137810)
804- Re-add s390(x)
805
806* Sat Nov 20 2004 Christopher Blizzard <blizzard@redhat.com> 0:1.0-3
807- Add patch that uses pango for selection.
808
809* Fri Nov 12 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-2
810- Fix livemarks icon issue. (#138989)
811
812* Tue Nov  8 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-1
813- Firefox 1.0
814
815* Thu Nov  4 2004 Christopher Aillon <caillon@redhat.com> 0:0.99-1.0RC1.3
816- Add support for GNOME stock icons. (bmo #233461)
817
818* Sat Oct 30 2004 Warren Togami <wtogami@redhat.com> 0:0.99-1.0RC1.2
819- #136330 BR freetype-devel with conditions
820- #135050 firefox should own mozilla plugin dir
821
822* Sat Oct 30 2004 Christopher Aillon <caillon@redhat.com> 0:0.99-1.0RC1.1
823- Update to firefox-rc1
824- Add patch for s390(x)
825
826* Tue Oct 26 2004 Christopher Aillon <caillon@redhat.com>
827- Fix LD_LIBRARY_PATH at startup (Steve Knodle)
828
829* Fri Oct 22 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.21
830- Prevent inlining of stack direction detection (#135255)
831
832* Tue Oct 19 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.20
833- More file chooser fixes:
834    Pop up a confirmation dialog before overwriting files (#134648)
835    Allow saving as complete once again
836- Fix for upstream 263263.
837
838* Tue Oct 19 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.18
839- Fix for upstream 262689.
840
841* Mon Oct 18 2004 Christopher Blizzard <blizzard@redhat.com 0:0.10.1-1.0PR1.16
842- Update pango patch to one that defaults to off
843
844* Mon Oct 18 2004 Christopher Blizzard <blizzard@redhat.com> 0:0.10.1-1.0PR1.15
845- Fix problem where default apps aren't showing up in the download
846  dialog (#136261)
847- Fix default height being larger than the available area, cherry picked
848  from upstream
849
850* Mon Oct 18 2004 Christopher Blizzard <blizzard@redhat.com> 0:0.10.1-1.0PR1.13
851- Actually turn on pango in the mozconfig
852
853* Sat Oct 16 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.12
854- Disable the default application checks. (#133713)
855- Disable the software update feature. (#136017)
856
857* Wed Oct 13 2004 Christopher Blizzard <blizzard@redhat.com>
858- Use pango for rendering
859
860* Tue Oct 12 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.10
861- Fix for 64 bit crash at startup (b.m.o #256603)
862
863* Fri Oct  8 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.9
864- Fix compile issues (#134914)
865- Add patch to fix button focus issues (#133507)
866- Add patches to fix tab focus stealing issue (b.m.o #124750)
867
868* Fri Oct  1 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.8
869- Update to 0.10.1
870- Fix tab switching keybindings (#133504)
871
872* Fri Oct  1 2004 Bill Nottingham <notting@redhat.com> 0:0.10.0-1.0PR1.7
873- filter out library Provides: and internal Requires:
874
875* Thu Sep 30 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.6
876- Prereq desktop-file-utils >= 0.9
877
878* Thu Sep 30 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.5
879- Add clipboard access prevention patch.
880
881* Wed Sep 29 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.4
882- Add the xul mime type to the .desktop file
883
884* Tue Sep 28 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.3
885- Backport the GTK+ file chooser.
886- Update desktop database after uninstall.
887
888* Mon Sep 27 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.2
889- Change the vendor to mozilla not fedora
890- Build with --disable-strip so debuginfo packages work (#133738)
891- Add pkgconfig patch (bmo #261090)
892
893* Fri Sep 24 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.1
894- Add a BR for desktop-file-utils
895- Update default configuration options to use the firefox mozconfig (#132916)
896- Use Red Hat bookmarks (#133262)
897- Update default homepage (#132721)
898- Fix JS math on AMD64 (#133226)
899- Build with MOZILLA_OFICIAL (#132917)
900
901* Tue Sep 14 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.0
902- Update to 1.0PR1
903- Update man page references to say Firefox instead of Firebird
904- Remove gcc34 and extensions patch; they are now upstream
905- Update desktop database
906- Minor tweaks to the .desktop file
907
908* Fri Sep 03 2004 Christopher Aillon <caillon@redhat.com> 0:0.9.3-8
909- Fixup .desktop entry Name, GenericName, and Comment (#131602)
910- Add MimeType desktop entry (patch from jrb@redhat.com)
911- Build with --disable-xprint
912
913* Tue Aug 31 2004 Warren Togami <wtogami@redhat.com> 0:0.9.3-7
914- rawhide import
915- fedora.us #1765 NetBSD's freetype 2.1.8 compat patch
916
917* Sun Aug 29 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.6
918- and mng support is disabled again as it seams that there is
919  no real mng support in the code
920
921* Sat Aug 28 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.5
922- remove ldconfig from scriptlets (bug #1846 comment #40)
923- reenabled mng support (bug #1971)
924- removed --enable-strip to let rpm to the stripping (bug #1971)
925- honor system settings in firefox.sh (bug #1971)
926- setting umask 022 in scriptlets (bug #1962)
927
928* Sat Aug 07 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.4
929- copy the icon to the right place(TM)
930
931* Fri Aug 06 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.3
932- readded the xpm removed in 0:0.9.2-0.fdr.5
933
934* Thu Aug 05 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.2
935- added mozilla-1.7-psfonts.patch from rawhide mozilla
936
937* Thu Aug 05 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.1
938- updated to 0.9.3
939- removed following from .mozconfig:
940    ac_add_options --with-system-mng
941    ac_add_options --enable-xprint
942    ac_add_options --disable-dtd-debug
943    ac_add_options --disable-freetype2
944    ac_add_options --enable-strip-libs
945    ac_add_options --enable-reorder
946    ac_add_options --enable-mathml
947    ac_add_options --without-system-nspr
948
949* Tue Aug 03 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.5
950- applied parts of the patch from Matthias Saou (bug #1846)
951- delete empty directories in %%{ffdir}/chrome
952- more cosmetic changes to the spec file
953
954* Wed Jul 14 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.4
955- mozilla-default-plugin-less-annoying.patch readded
956
957* Tue Jul 13 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.3
958- added krb5-devel as build requirement
959
960* Tue Jul 13 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.2
961- added patch from bugzilla.mozilla.org (bug #247846)
962- removed Xvfb hack
963
964* Fri Jul 09 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.1
965- updated to 0.9.2
966
967* Mon Jul 05 2004 Warren Togami <wtogami@redhat.com> 0:0.9.1-0.fdr.3
968- mharris suggestion for backwards compatibilty with Xvfb hack
969
970* Tue Jun 29 2004 Adrian Reber <adrian@lisas.de> 0:0.9.1-0.fdr.2
971- added massive hack from the debian package to create the
972  extension directory
973
974* Tue Jun 29 2004 Adrian Reber <adrian@lisas.de> 0:0.9.1-0.fdr.1
975- updated to 0.9.1
976
977* Wed Jun 17 2004 Adrian Reber <adrian@lisas.de> 0:0.9-0.fdr.4
978- remove extensions patch
979- add post hack to create extensions
980- enable negotiateauth extension
981- copy icon to browser/app/default.xpm
982- --enable-official-branding
983
984* Wed Jun 17 2004 Adrian Reber <adrian@lisas.de> 0:0.9-0.fdr.3
985- extensions patch
986
987* Wed Jun 16 2004 Adrian Reber <adrian@lisas.de> 0:0.9-0.fdr.2
988- added gnome-vfs2-devel as BuildRequires
989- added gcc-3.4 patch
990
991* Wed Jun 16 2004 Adrian Reber <adrian@lisas.de> 0:0.9-0.fdr.1
992- updated to 0.9
993- dropped x86_64 patches
994- dropped xremote patches
995
996* Wed May 26 2004 Adrian Reber <adrian@lisas.de> 0:0.8-0.fdr.13
997- remove unused files: mozilla-config
998
999* Sun May 23 2004 David Hill <djh[at]ii.net> 0:0.8-0.fdr.12
1000- update mozconfig (fixes bug #1443)
1001- installation directory includes version number
1002
1003* Mon May 10 2004 Justin M. Forbes <64bit_fedora@comcast.net> 0:0.8-0.fdr.11
1004- merge x86_64 release 10 with fedora.us release 10 bump release to 11
1005
1006* Mon Apr 19 2004 Justin M. Forbes <64bit_fedora@comcast.net> 0:0.8-0.fdr.10
1007- rebuild for FC2
1008- change Source71 to properly replace Source7 for maintainability
1009
1010* Sun Apr 18 2004 Warren Togami <wtogami@redhat.com> 0:0.8-0.fdr.10
1011- 3rd xremote patch
1012- test -Os rather than -O2
1013
1014* Sun Apr 18 2004 Gene Czarcinski <gene@czarc.net>
1015- more x86_64 fixes
1016- fix firefix-xremote-client for x86_64 (similar to what is done for
1017  firefox.sh.in)
1018
1019* Sat Apr 03 2004 Warren Togami <wtogami@redhat.com> 0:0.8-0.fdr.9
1020- xremote patch for thunderbird integration #1113
1021- back out ugly hack from /usr/bin/firefox
1022- correct default bookmarks
1023
1024* Wed Feb 25 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.7
1025- readded the new firefox icons
1026
1027* Sat Feb 21 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.6
1028- removed new firefox icons
1029
1030* Wed Feb 18 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.5
1031- nothing
1032
1033* Thu Feb 12 2004 Gene Czarcinski <czar@acm.org>
1034- update for x86_64 ... usr mozilla-1.6 patches
1035- change "firefox-i*" to "firefox-*" in above stuff
1036
1037* Tue Feb 10 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.4
1038- another icon changed
1039
1040* Tue Feb 10 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.3
1041- startup script modified
1042
1043* Mon Feb 09 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.2
1044- new firefox icon
1045- more s/firebird/firefox/
1046
1047* Mon Feb 09 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.1
1048- new version: 0.8
1049- new name: firefox
1050
1051* Sun Oct 19 2003 Adrian Reber <adrian@lisas.de> - 0:0.7-0.fdr.2
1052- s/0.6.1/0.7/
1053- changed user-app-dir back to .phoenix as .mozilla-firebird
1054  is not working as expected
1055- manpage now also available as MozillaFirebird.1
1056
1057* Thu Oct 16 2003 Adrian Reber <adrian@lisas.de> - 0:0.7-0.fdr.1
1058- updated to 0.7
1059- provides webclient
1060- run regxpcom and regchrome after installation and removal
1061- added a man page from the debian package
1062- changed user-app-dir from .phoenix to .mozilla-firebird
1063
1064* Tue Jul 29 2003 Adrian Reber <adrian@lisas.de> - 0:0.6.1-0.fdr.2
1065- now with mozilla-default-plugin-less-annoying.patch; see bug #586
1066
1067* Tue Jul 29 2003 Adrian Reber <adrian@lisas.de> - 0:0.6.1-0.fdr.1
1068- updated to 0.6.1
1069- changed buildrequires for XFree86-devel from 0:4.3.0 to 0:4.2.1
1070  it should now also build on RH80
1071
1072* Sun Jul 13 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.5.rh90
1073- enabled the type ahead extension: bug #484
1074
1075* Sun Jul 13 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.4.rh90
1076- renamed it again back to MozillaFirbird
1077- added libmng-devel to BuildRequires
1078- startup homepage is now www.fedora.us
1079- improved the startup script to use the unix remote protocol
1080  to open a new window
1081
1082* Thu May 19 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.3.rh90
1083- new icon from http://iconpacks.mozdev.org/phoenix/iconshots/flame48true.png
1084- now using gtk2 as toolkit
1085- renamed again back to mozilla-firebird (I like it better)
1086- Provides: MozillaFirebird for compatibility with previous releases
1087- changed default bookmarks.html to contain links to www.fedora.us
1088
1089* Thu May 19 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.2.rh90
1090- renamed package to MozillaFirebird and all files with the old name
1091- enabled mng, mathml, xinerama support
1092- now honouring RPM_OPT_FLAGS
1093
1094* Thu May 19 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.1.rh90
1095- updated to 0.6
1096
1097* Thu May 01 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.1.cvs20030501.rh90
1098- Updated to CVS.
1099- Renamed to mozilla-firebird.
1100
1101* Sat Apr 05 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.3.cvs20030409.rh90
1102- Updated to CVS.
1103- Removed hard-coded library path.
1104
1105* Sat Apr 05 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.3.cvs20030402.rh90
1106- Changed Prereq to Requires.
1107- Changed BuildRequires to gtk+-devel (instead of file).
1108- Recompressed source with bzip2.
1109- Removed post.
1110
1111* Tue Apr 02 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.2.cvs20030402.rh90
1112- Added desktop-file-utils to BuildRequires.
1113- Changed category to X-Fedora-Extra.
1114- Updated to CVS.
1115
1116* Sun Mar 30 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.2.cvs20030328.rh90
1117- Added Epoch:0.
1118- Added libgtk-1.2.so.0 to the BuildRequires
1119
1120* Fri Mar 28 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-0.fdr.0.1.cvs20030328.rh90
1121- Updated to latest CVS.
1122- Moved phoenix startup script into its own file
1123
1124* Wed Mar 26 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-0.fdr.0.1.cvs20030326.rh90
1125- Updated to latest CVS.
1126- Changed release to 9 vs 8.1.
1127- Added cvs script.
1128- added encoding to desktop file.
1129
1130* Sun Mar 23 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-0.fdr.0.1.cvs20030323.rh81
1131- Updated to latest CVS.
1132- added release specification XFree86-devel Build Requirement.
1133- changed chmod to %attr
1134
1135* Fri Mar 21 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-0.fdr.0.1.cvs20030317.rh81
1136- Fixed naming scheme.
1137- Fixed .desktop file.
1138
1139* Mon Mar 17 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-cvs20030317.1
1140- Updated to CVS.
1141
1142* Fri Mar 14 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-cvs20030313.2
1143- General Tweaking.
1144
1145* Thu Mar 13 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-cvs20030313.1
1146- Updated CVS.
1147- Modified mozconfig.
1148
1149* Sun Mar 09 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-cvs20030309.1
1150- Initial RPM release.
Note: See TracBrowser for help on using the repository browser.