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

Revision 12121, 53.7 KB checked in by tomop, 5 years ago (diff)

Merge branch 'tomop'

Line 
1%bcond_without clang
2
3# do not include minor version number in MOZILLA_FIVE_HOME
4%global ffmajor 60.7
5%global geckomajor 60.7
6%global ffminor 2
7%global ffversion %{ffmajor}%{?ffminor:.%{ffminor}}
8%define ffdir %{_libdir}/firefox
9%define tarballdir firefox-%{ffversion}
10%global mozappdir     %{_libdir}/%{name}
11%global langpackdir   %{mozappdir}/distribution/extensions
12
13%define firefox_app_id \{ec8030f7-c20a-464f-9b0e-13a3a9e97384\}
14%define homepage https://vinelinux.org/
15
16%define build_vine7 0
17%define build_vine6 0
18
19# current firefox3 doesn't build on Vine Linux 4.x or older.
20%if "%{?_dist_release}" == "vl7"
21%define build_vine7 1
22%define build_vine6 1
23%endif
24%if "%{?_dist_release}" == "vl6"
25%define build_vine6 1
26%endif
27
28%define ffrelease 1%{?_dist_release}
29
30%define desktop_file_utils_version 0.6
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
37Summary:        Fx Browser
38Summary(ja):    Fx ウェブブラウザ
39Name:           firefox
40Version:        %{ffversion}
41Release:        %{ffrelease}
42URL:            https://www.mozilla.org/ja/
43License:        MPL/LGPL
44Group:          Applications/Internet
45Source0:        firefox-%{version}esr.source.tar.xz
46
47Source230:       mozconfig-firefox-vine6
48Source240:       mozconfig-firefox-vine7
49
50Source11:       firefox-vine-default-bookmarks.html
51Source12:       firefox-vine-default-prefs.js
52Source21:       firefox.vine.sh.in
53Source22:       firefox.png
54Source23:       fx-about.png
55Source24:       fx-about-wordmark.svg
56Source25:       firefox.desktop
57Source26:       firefox-safe-mode.desktop
58Source27:       firefox-safe-mode.vine.sh
59Source30:       firefox.1
60Source50:       firefox-xremote-client.sh.in
61Source100:      find-external-requires
62
63# locale sources
64%define MOZ_BUILD_LOCALES "ja"
65Source1000:     firefox-%{ffversion}esr-langpacks.tar.xz
66Source1010:     firefox-unofficial-branding-fx.tar.xz
67#
68Source2000:     firefox-searchplugins-6.0-ja.tar.bz2
69
70# build patches
71Patch4:         build-mozconfig-fix.patch
72# Always feel lucky for unsupported platforms:
73# https://bugzilla.mozilla.org/show_bug.cgi?id=1347128
74Patch37:        build-jit-atomic-always-lucky.patch
75
76# patches from fedora
77Patch215:        firefox-enable-addons.patch
78Patch219:        rhbz-1173156.patch
79Patch224:        mozilla-1170092.patch
80Patch225:        mozilla-1005640-accept-lang.patch
81Patch230:        rhbz-1503632-nss.patch
82
83# upstream patch
84Patch402:        mozilla-1196777.patch
85Patch406:        mozilla-256180.patch
86Patch413:        mozilla-1353817.patch
87Patch415:        mozilla-1436242.patch
88
89
90# customization patches
91
92## Vine patch
93#Patch1000:      firefox-19.0-disable-pdfjs.patch
94
95# vine customization patch
96Patch2000:      firefox-47.0.1-vine.patch
97
98
99BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
100BuildRequires:  alsa-lib-devel
101BuildRequires:  autoconf213
102BuildRequires:  bzip2-devel
103%if %{with clang}
104BuildRequires:  clang-devel, lld, llvm-devel
105%endif
106BuildRequires:  curl-devel
107BuildRequires:  desktop-file-utils
108BuildRequires:  freetype2-devel
109BuildRequires:  gstreamer-devel
110BuildRequires:  gstreamer-plugins-base-devel
111BuildRequires:  gtk3-devel
112BuildRequires:  lcms-devel
113BuildRequires:  libffi-devel
114BuildRequires:  libgnome-devel
115BuildRequires:  libIDL-devel
116%if %{build_vine7}
117BuildRequires:  libjpeg-turbo-devel >= %{libjpeg_turbo_version}
118%endif
119BuildRequires:  libnotify-devel
120BuildRequires:  libpng-devel
121BuildRequires:  libXt-devel
122BuildRequires:  libXrender-devel
123BuildRequires:  libXScrnSaver-devel
124BuildRequires:  pango-devel
125BuildRequires:  pulseaudio-libs-devel
126%if %{build_vine7}
127BuildRequires:  python-devel
128BuildRequires:  python
129%else
130BuildRequires:  python27-devel >= 2.7.3
131BuildRequires:  python27 >= 2.7.3
132%endif
133BuildRequires:  rust, cargo
134BuildRequires:  startup-notification-devel
135BuildRequires:  unzip
136BuildRequires:  wget
137BuildRequires:  yasm
138BuildRequires:  zip
139BuildRequires:  zlib-devel
140
141Requires:       desktop-file-utils >= %{desktop_file_utils_version}
142
143
144Obsoletes:      phoenix, mozilla-firebird, MozillaFirebird
145Obsoletes:      firefox3
146Conflicts:      firefox-esr
147Provides:       webclient
148
149%if %{build_vine7}
150Conflicts:      xulrunner < 17.0.1
151%endif
152
153AutoProv: 0
154%define _use_internal_dependency_generator 0
155%define __find_requires %{SOURCE100}
156
157Vendor: Project Vine
158Distribution: Vine Linux
159Packager: daisuke
160
161%description
162Fx Browser is an open-source web browser based on mozilla technology.
163This is unofficial build of firefox browser.
164
165%description -l ja
166FX ウェブブラウザは Mozilla テクノロジーをベースとしたオープンソースの
167ウェブブラウザです。
168
169#---------------------------------------------------------------------
170
171%prep
172%setup -q -n %{name}-%{version} -c
173cd %{tarballdir}
174
175%patch37 -p1 -b .jit-atomic-lucky
176
177%patch4  -p1 -b .build-mozconfig-fix
178
179# Fedora patches
180%patch215 -p1 -b .addons
181%patch219 -p1 -b .rhbz-1173156
182%patch224 -p1 -b .1170092
183%patch225 -p1 -b .1005640-accept-lang
184
185# This ensures no migration of certdb to sqlite on the RHEL6 and RHEL7.
186# This needs to stay for the future releases
187%if 0%{?rhel} < 8
188%patch230 -p1 -b .1503632-nss
189%endif
190
191%patch402 -p1 -b .1196777
192%patch406 -p1 -b .256180
193%patch413 -p1 -b .1353817
194%patch415 -p1 -b .1436242
195
196
197#patch2000 -p1 -b .vine
198perl -pi \
199-e 's|pref\("extensions.langpacks.signatures.required".*$|pref("extensions.langpacks.signatures.required", false);|' \
200browser/app/profile/firefox.js
201perl -pi \
202-e 's|pref\("layout.spellcheckDefault".*$|pref("layout.spellcheckDefault", 0);|' \
203browser/app/profile/firefox.js
204
205perl -pi \
206-e 's|browser.startup.homepage=.*$|browser.startup.homepage=https://vinelinux.org/|' \
207browser/branding/unofficial/locales/browserconfig.properties
208
209perl -pi \
210-e 's|pref\("startup.homepage_override_url".*$|pref("startup.homepage_override_url", "https://vinelinux.org/");|' \
211browser/branding/unofficial/locales/browserconfig.properties
212perl -pi \
213-e 's|pref\("startup.homepage_welcome_url".*$|pref("startup.homepage_welcome_url", "https://vinelinux.org/");|' \
214browser/branding/unofficial/locales/browserconfig.properties
215
216
217%{__rm} -f .mozconfig
218
219%if %build_vine7
220%{__cp} %{SOURCE240} .mozconfig
221%else
222%{__cp} -f %{SOURCE230} .mozconfig
223%endif
224
225#sed -i -e 's/enable-optimize/disable-optimize/g' .mozconfig
226%global optimize_flags "-O3"
227echo 'ac_add_options --enable-optimize=%{?optimize_flags}' >> .mozconfig
228echo "ac_add_options --disable-debug-symbols" >> .mozconfig
229echo "ac_add_options --disable-debug" >> .mozconfig
230
231%if %{with clang}
232echo "ac_add_options --enable-linker=lld" >> .mozconfig
233%endif
234
235#ifarch %{ix86}
236#echo "ac_add_options --disable-stylo" >> .mozconfig
237#endif
238
239# Remove executable bit to make brp-mangle-shebangs happy.
240chmod -x third_party/rust/itertools/src/lib.rs
241
242# update searchplugins
243#%{__tar} xjvf %{SOURCE2000} -C browser/locales/en-US/
244
245# setup unofficial branding logos
246%{__tar} xvf %{SOURCE1010}
247%{__cp} %{SOURCE23} browser/branding/unofficial/content/about.png
248%{__cp} %{SOURCE24} browser/branding/unofficial/content/about-wordmark.svg
249%{__cp} browser/branding/unofficial/locales/en-US/brand.* browser/branding/nightly/locales/en-US/
250
251#---------------------------------------------------------------------
252
253%build
254cd %{tarballdir}
255autoconf-2.13
256
257MOZ_OPT_FLAGS=$(echo "$RPM_OPT_FLAGS" | \
258                %{__sed} -e 's/-Wall//')
259export RPM_OPT_FLAGS=$MOZ_OPT_FLAGS
260export CFLAGS=$MOZ_OPT_FLAGS
261export CXXFLAGS=$MOZ_OPT_FLAGS
262
263export MOZILLA_OFFICIAL=1
264export BUILD_OFFICIAL=1
265export MOZ_APP_DISPLAYNAME="Fx Browser"
266
267export PREFIX='%{_prefix}'
268export LIBDIR='%{_libdir}'
269
270%if %{with clang}
271export CC=clang
272export CXX=clang++
273export LLVM_PROFDATA="llvm-profdata"
274export AR="llvm-ar"
275export NM="llvm-nm"
276export RANLIB="llvm-ranlib"
277%endif
278
279MOZ_SMP_FLAGS=-j1
280# On x86 architectures, Mozilla can build up to 4 jobs at once in parallel,
281# however builds tend to fail on other arches when building in parallel.
282%ifarch %{ix86} x86_64
283[ -z "$RPM_BUILD_NCPUS" ] && \
284     RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"
285[ "$RPM_BUILD_NCPUS" -ge 2 ] && MOZ_SMP_FLAGS=-j2
286[ "$RPM_BUILD_NCPUS" -ge 4 ] && MOZ_SMP_FLAGS=-j4
287[ "$RPM_BUILD_NCPUS" -ge 8 ] && MOZ_SMP_FLAGS=-j8
288%endif
289
290sed -i 's/\(MOZ_PKG_FATAL_WARNINGS =\).*/\1 0/' \
291  browser/installer/Makefile.in &&
292
293%if 0
294# https://bugzilla.mozilla.org/show_bug.cgi?id=824381
295mkdir -p js/src/.deps
296
297find security/nss/lib -name "*.def" | while read i
298do
299  mv $i $i.orig
300  grep -v ';-' $i.orig | \
301    sed -e 's,;+,,' -e 's; DATA ;;' -e 's,;;,,' -e 's,;.*,;,' > $i
302done
303%endif
304
305export MOZ_MAKE_FLAGS="$MOZ_SMP_FLAGS"
306#export MOZ_SERVICES_SYNC="1"
307#export STRIP=/bin/true
308./mach build -v
309
310#export LDFLAGS="-Wl,-rpath,%{ffdir}"
311#%__make -f client.mk build MOZ_MAKE_FLAGS="$MOZ_SMP_FLAGS"
312
313#---------------------------------------------------------------------
314
315%install
316cd %{tarballdir}
317%{__rm} -rf $RPM_BUILD_ROOT
318
319# set up our default bookmarks
320%{__cp} -p %{SOURCE11} objdir/dist/bin/browser/chrome/en-US/locale/browser/bookmarks.html
321
322# Make sure locale works for langpacks
323%{__cat} > objdir/dist/bin/browser/defaults/preferences/firefox-l10n.js << EOF
324pref("general.useragent.locale", "chrome://global/locale/intl.properties");
325EOF
326
327export MOZ_APP_DISPLAYNAME="Fx Browser"
328
329DESTDIR=$RPM_BUILD_ROOT %{__make} -C objdir install
330
331%{__mkdir_p} $RPM_BUILD_ROOT{%{_libdir},%{_bindir},%{_datadir}/applications}
332
333if [ "%{version}" != "%{ffmajor}" ]; then
334  if [ -d "$RPM_BUILD_ROOT%{_libdir}/firefox-%{version}" ]; then
335    %{__mv} $RPM_BUILD_ROOT%{_libdir}/firefox-%{version} $RPM_BUILD_ROOT%{ffdir}
336  fi
337fi
338
339# install icons
340%{__install} -p -D %{SOURCE22} $RPM_BUILD_ROOT%{_datadir}/pixmaps/firefox.png
341
342for desktopfiles in %{SOURCE25} %{SOURCE26}
343do
344  desktop-file-install --vendor vine \
345    --dir $RPM_BUILD_ROOT%{_datadir}/applications \
346    --add-category Application \
347    --add-category Network \
348    $desktopfiles
349done
350
351# Register as an application to be visible in the software center
352#
353# NOTE: It would be *awesome* if this file was maintained by the upstream
354# project, translated and installed into the right place during `make install`.
355#
356# See http://www.freedesktop.org/software/appstream/docs/ for more details.
357#
358%{__mkdir_p} %{buildroot}%{_datadir}/appdata
359cat > %{buildroot}%{_datadir}/appdata/%{name}.appdata.xml <<EOF
360<?xml version="1.0" encoding="UTF-8"?>
361<!-- Copyright 2014 Richard Hughes <richard@hughsie.com> -->
362<!--
363BugReportURL: https://bugzilla.mozilla.org/show_bug.cgi?id=1071061
364SentUpstream: 2014-09-22
365-->
366<application>
367  <id type="desktop">firefox.desktop</id>
368  <metadata_license>CC0-1.0</metadata_license>
369  <description>
370    <p>
371      Bringing together all kinds of awesomeness to make browsing better for you.
372      Get to your favorite sites quickly – even if you don’t remember the URLs.
373      Type your term into the location bar (aka the Awesome Bar) and the autocomplete
374      function will include possible matches from your browsing history, bookmarked
375      sites and open tabs.
376    </p>
377    <!-- FIXME: Needs another couple of paragraphs -->
378  </description>
379  <url type="homepage">http://www.mozilla.org/</url>
380  <screenshots>
381    <screenshot type="default">https://raw.githubusercontent.com/hughsie/fedora-appstream/master/screenshots-extra/firefox/a.png</screenshot>
382    <screenshot>https://raw.githubusercontent.com/hughsie/fedora-appstream/master/screenshots-extra/firefox/b.png</screenshot>
383    <screenshot>https://raw.githubusercontent.com/hughsie/fedora-appstream/master/screenshots-extra/firefox/c.png</screenshot>
384  </screenshots>
385  <!-- FIXME: change this to an upstream email address for spec updates
386  <updatecontact>someone_who_cares@upstream_project.org</updatecontact>
387   -->
388</application>
389EOF
390
391%{__install} -p -m 755 %{SOURCE21} $RPM_BUILD_ROOT%{_bindir}/firefox
392%{__install} -p -m 755 %{SOURCE27} $RPM_BUILD_ROOT%{_bindir}/firefox-safe-mode
393
394%{__install} -p -D -m 664 %{SOURCE30} $RPM_BUILD_ROOT%{_mandir}/man1/firefox.1
395
396%{__rm} -f %{buildroot}/%{mozappdir}/firefox-config
397%{__rm} -f %{buildroot}/%{mozappdir}/update-settings.ini
398
399echo > ../%{name}.lang
400# Extract langpacks, make any mods needed, repack the langpack, and install it.
401%{__mkdir_p} %{buildroot}%{langpackdir}
402%{__tar} xf %{SOURCE1000}
403for langpack in `ls firefox-langpacks/*.xpi`; do
404  language=`basename $langpack .xpi`
405  extensionID=langpack-$language@firefox.mozilla.org
406  %{__mkdir_p} $extensionID
407  unzip -qq $langpack -d $extensionID
408  find $extensionID -type f | xargs chmod 644
409
410  sed -i -e "s|browser.startup.homepage.*$|browser.startup.homepage=%{homepage}|g;" \
411     $extensionID/browser/chrome/$language/locale/branding/browserconfig.properties
412
413  if [ $language = "ja" ]; then
414    sed -i \
415      -e "s|Mozilla Firefox|Fx ウェブブラウザ|g" \
416      -e "s|Firefox|Fx ウェブブラウザ|g" \
417      -e "s|Mozilla|Project Vine|g" \
418      -e 's|\(.*trademarkInfo.part1.*"\).*">|\1Vine Linux および Vine Linux ロゴは Project Vine および有限会社ヴァインカーブの日本およびその他の国における商標です。">|g' \
419      $extensionID/browser/chrome/$language/locale/branding/brand.*
420  else
421    sed -i \
422      -e "s|Mozilla Firefox|Fx Browser|g" \
423      -e "s|Firefox|Fx Browser|g" \
424      -e "s|Mozilla|Project Vine|g" \
425      -e 's|\(.*trademarkInfo.part1.*"\).*">|\1Vine Linux and the Vine Linux logos are trademarks of Project Vine and Vine Caves Ltd.">|g' \
426      $extensionID/browser/chrome/$language/locale/branding/brand.*
427  fi
428
429  %{__cp} -p %{SOURCE11} $extensionID/browser/chrome/$language/locale/browser/bookmarks.html
430
431  cd $extensionID
432  zip -qq -r9mX ../${extensionID}.xpi *
433  cd -
434
435  %{__install} -m 644 ${extensionID}.xpi %{buildroot}%{langpackdir}
436  language=`echo $language | sed -e 's/-/_/g'`
437  echo "%%lang($language) %{langpackdir}/${extensionID}.xpi" >> %{name}.lang
438done
439%{__rm} -rf firefox-langpacks
440
441# Keep compatibility with the old preference location
442%{__mkdir_p} $RPM_BUILD_ROOT/%{ffdir}/defaults/preferences
443%{__mkdir_p} $RPM_BUILD_ROOT/%{ffdir}/browser/defaults
444ln -s %{mozappdir}/defaults/preferences $RPM_BUILD_ROOT/%{mozappdir}/browser/defaults/preferences
445# Default preferences
446%{__cat} %{SOURCE12} | %{__sed} -e 's,FIREFOX_RPM_VR,%{ffversion}-%{release},g' > vine-default-prefs
447%{__cp} vine-default-prefs %{buildroot}%{mozappdir}/defaults/preferences/all-vine.js
448rm -f vine-default-prefs
449
450# System extensions
451%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/mozilla/extensions/%{firefox_app_id}
452%{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/mozilla/extensions/%{firefox_app_id}
453
454# Copy over the LICENSE
455%{__install} -p -c -m 644 LICENSE $RPM_BUILD_ROOT/%{ffdir}
456
457# another bug fixed by looking at the debian package
458%{__mkdir_p} $RPM_BUILD_ROOT%{ffdir}/chrome/icons/default/
459for i in default{16,32,48,64,128}.png
460do
461  %{__cp} -f browser/branding/unofficial/$i $RPM_BUILD_ROOT%{ffdir}/browser/chrome/icons/default/
462done
463
464# own mozilla plugin dir (#135050)
465%{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/mozilla/plugins
466
467# System extensions
468%{__mkdir_p} %{buildroot}%{_datadir}/mozilla/extensions/%{firefox_app_id}
469%{__mkdir_p} %{buildroot}%{_libdir}/mozilla/extensions/%{firefox_app_id}
470
471# Copy over the LICENSE
472%{__install} -p -c -m 644 LICENSE %{buildroot}/%{mozappdir}
473
474# Copy over run-mozilla.sh
475%{__cp} build/unix/run-mozilla.sh %{buildroot}%{mozappdir}
476
477# Remove copied libraries to speed up build
478rm -f %{buildroot}%{mozappdirdev}/sdk/lib/libmozjs.so
479rm -f %{buildroot}%{mozappdirdev}/sdk/lib/libmozalloc.so
480rm -f %{buildroot}%{mozappdirdev}/sdk/lib/libxul.so
481
482# cleanup unpackaged files
483%{__rm} -rf $RPM_BUILD_ROOT%{_includedir}/*
484%{__rm} -rf $RPM_BUILD_ROOT%{_libdir}/%{name}-devel-*
485%{__rm} -rf $RPM_BUILD_ROOT%{_datadir}/idl
486
487
488#---------------------------------------------------------------------
489
490%clean
491%{__rm} -rf $RPM_BUILD_ROOT
492
493#---------------------------------------------------------------------
494
495%post
496update-desktop-database %{_datadir}/applications >& /dev/null ||:
497
498%postun
499update-desktop-database %{_datadir}/applications>& /dev/null ||:
500umask 022
501
502%preun
503# is it a final removal?
504if [ $1 -eq 0 ]; then
505  %{__rm} -rf %{ffdir}/components
506  %{__rm} -rf %{ffdir}/extensions
507  %{__rm} -rf %{ffdir}/plugins
508  %{__rm} -rf %{langpackdir}
509fi
510
511%files
512%defattr(-,root,root,-)
513%{_bindir}/firefox
514%{_bindir}/firefox-safe-mode
515%{_mandir}/man1/*
516%{_datadir}/applications/vine-%{name}.desktop
517%{_datadir}/applications/vine-%{name}-safe-mode.desktop
518%{_datadir}/pixmaps/firefox.png
519%{_datadir}/appdata/firefox.appdata.xml
520%{ffdir}
521%{_libdir}/mozilla
522
523#---------------------------------------------------------------------
524
525%changelog
526* Sat Jun 22 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 60.7.2-1
527- updated to 60.7.2.
528
529* Thu Jun 20 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 60.7.1-1
530- updated to 60.7.1.
531
532* Sat May 11 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 60.6.3-1
533- updated to 60.6.3.
534
535* Mon May 06 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 60.6.2-1
536- updated to 60.6.2.
537
538* Wed Dec 12 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 60.4.0-1
539- updated to 60.4.0.
540- updated branding informations in language packs.
541- re-added default profiles.
542- dropped Patch416: fixed in upstream.
543
544* Thu Dec 06 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 60.3.0-1
545- updated to 60.3.0.
546- dropped patches.
547- imported patches from rawhide.
548
549* Fri Jul 28 2017 Daisuke SUZUKI <daisuke@vinelinux.org> 54.0.1-1
550- update to 54.0.1
551
552* Mon May 15 2017 Daisuke SUZUKI <daisuke@vinelinux.org> 53.0.2-1
553- update to 53.0.2
554
555* Sun Apr 30 2017 Daisuke SUZUKI <daisuke@vinelinux.org> 53.0-1
556- update to 53.0
557- build with gtk3
558- disable rust
559
560* Sat Apr 08 2017 Daisuke SUZUKI <daisuke@vinelinux.org> 52.0.2-1
561- update to 52.0.2
562
563* Mon Mar 20 2017 Daisuke SUZUKI <daisuke@vinelinux.org> 52.0.1-2
564- fix default bookmarks
565
566* Sat Mar 18 2017 Daisuke SUZUKI <daisuke@vinelinux.org> 52.0.1-1
567- update to 52.0.1
568
569* Thu Mar 09 2017 Daisuke SUZUKI <daisuke@vinelinux.org> 52.0-1
570- update to 52.0
571
572* Sun Jan 29 2017 Daisuke SUZUKI <daisuke@vinelinux.org> 51.0.1-1
573- update to 51.0.1
574
575* Thu Jan 26 2017 Daisuke SUZUKI <daisuke@vinelinux.org> 51.0-1
576- update to 51.0
577
578* Wed Dec 21 2016 Daisuke SUZUKI <daisuke@vinelinux.org> 50.1.0-1
579- update to 50.1.0
580
581* Tue Nov 22 2016 Daisuke SUZUKI <daisuke@vinelinux.org> 50.0-1
582- update to 50.0
583
584* Tue Nov 08 2016 Daisuke SUZUKI <daisuke@vinelinux.org> 49.0.1-2
585- fix broken locale..
586
587* Fri Nov 04 2016 Daisuke SUZUKI <daisuke@vinelinux.org> 49.0.1-1
588- update to 49.0.1
589- update imported patches.
590
591* Wed Aug  3 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 48.0-1
592- new upstream release.
593- updated upstream patches.
594- updated imported patches.
595
596* Thu Jun 30 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 47.0.1-1
597- new upstream release
598- update Patch2000 (firefox-47.0.1-vine.patch)
599
600* Tue Jun 28 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 46.0.1-2
601- update Source230 (mozconfig-firefox-vine6)
602- add Patch5 (firefox-46.0.1-vine6.patch)
603
604* Wed May 04 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 46.0.1-1
605- new upstream release
606- update Patch15 (firefox-46.0.1-enable-addons.patch)
607
608* Sat Apr 23 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 45.0.2-1
609- new upstream release
610
611* Sun Mar 27 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 45.0.1-1
612- new upstream release
613
614* Fri Feb 12 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 44.0.2-1
615- new upstream release
616
617* Thu Feb 11 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 44.0.1-1
618- new upstream release
619
620* Tue Jan 26 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 44.0-1
621- new upstream release
622
623* Sun Jan 24 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 43.0.4-2
624- update Source25 (firefox.desktop)
625- update Source26 (firefox-safe-mode.desktop)
626- add Source27 (firefox-safe-mode.vine.sh)
627
628* Sat Jan 09 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 43.0.4-1
629- new upstream release
630
631* Tue Dec 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 43.0.3-1
632- new upstream release
633
634* Wed Dec 23 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 43.0.2-1
635- new upstream release
636
637* Sat Dec 19 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 43.0.1-1
638- new upstream release
639
640* Wed Dec 16 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 43.0-1
641- new upstream release
642- update Source100 (find-external-requires)
643
644* Sat Nov 07 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 42.0-1
645- update to 42.0
646- update Patch2000 (firefox-42.0-vine.patch)
647
648* Sun Oct 18 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 41.0.2-1
649- update to 41.0.2
650
651* Fri Oct 09 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 41.0.1-1
652- update to 41.0.1
653- update Patch2000 (firefox-41.0.1-vine.patch)
654
655* Sat Aug 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 40.0.3-1
656- update to 40.0.3
657
658* Mon Aug 17 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 40.0.2-1
659- update to 40.0.2
660- add BuildRequires:  gstreamer-plugins-base-devel
661- remove BuildRequires:  gstreamer-plugins-devel
662- update startup script (SOURCE21)
663
664* Sun Apr 12 2015 Daisuke SUZUKI <daisuke@vinelinux.org> 37.0.1-1
665- update to 37.0.1
666
667* Sat Apr  4 2015 Daisuke SUZUKI <daisuke@vinelinux.org> 37.0-1
668- update to 37.0
669
670* Sun Mar 29 2015 Daisuke SUZUKI <daisuke@vinelinux.org> 36.0.4-1
671- update to 36.0.4
672
673* Wed Mar 11 2015 Daisuke SUZUKI <daisuke@vinelinux.org> 36.0.1-1
674- update to 36.0.1
675
676* Tue Mar 03 2015 Daisuke SUZUKI <daisuke@vinelinux.org> 36.0-1
677- update to 36.0
678
679* Mon Feb 02 2015 Daisuke SUZUKI <daisuke@vinelinux.org> 35.0.1-1
680- update to 35.0.1
681
682* Sun Jan 18 2015 Daisuke SUZUKI <daisuke@vinelinux.org> 35.0-1
683- update to 35.0
684
685* Wed Dec 03 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 34.0.5-1
686- update to 34.0.5
687
688* Tue Nov 11 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 33.1-1
689- update to 33.1
690
691* Mon Nov 10 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 33.0.3-1
692- update to 33.0.3
693
694* Tue Oct 14 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 33.0-1
695- update to 33.0
696
697* Wed Oct 01 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 32.0.3-2
698- update firefox-vine-default-prefs.js
699  - remove intl.accept_languages
700
701* Thu Sep 25 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 32.0.3-1
702- update to 32.0.3
703
704* Sun Sep 07 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 32.0-2
705- update mozconfig
706  - sync vine6/7 config
707  - build with internal jpeg on vine6
708  - disable optimize on i686
709
710* Thu Sep 04 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 32.0-1
711- update to 32.0
712
713* Wed Jul 23 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 31.0-1
714- update to 31.0
715
716* Wed Jun 11 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 30.0-1
717- update to 30.0
718
719* Thu May 15 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 29.0.1-1
720- update to 29.0.1
721
722* Wed Apr 30 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 29.0-1
723- update to 29.0
724
725* Thu Mar 20 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 28.0-1
726- update to 28.0
727
728* Sun Feb 16 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 27.0.1-1
729- update to 27.0.1
730
731* Mon Feb 10 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 27.0-1
732- update to 27.0
733- enable gstreamer/pulseaudio on Vine Linux 6
734
735* Fri Dec 13 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 26.0-2
736- add patch100,101 from upstream
737
738* Wed Dec 11 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 26.0-1
739- update to 26.0
740
741* Sun Nov 17 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 25.0.1-1
742- update to 25.0.1
743
744* Tue Oct 29 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 25.0-1
745- update to 25.0
746
747* Wed Oct 23 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 24.0-3
748- set media.gstreamer.enabled true  by default.
749
750* Fri Oct 18 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 24.0-2
751- enable gstreamer and pulseaudio on Vine7
752
753* Tue Sep 17 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 24.0-1
754- update to 24.0
755- update searchplugins
756- add BR: gstreamer-devel, gstreamer-plugins-devel
757
758* Wed Aug 07 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 23.0-2
759- fix vine customize patch
760- update unofficial logos
761
762* Tue Aug 06 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 23.0-1
763- update to 23.0
764
765* Thu Jun 27 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 22.0-1
766- update to 22.0
767
768* Mon May 20 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 21.0-2
769- disable helth reporting by default.
770- fix to install Vine's default settings
771
772* Sun May 19 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 21.0-1
773- update to 21.0
774- enable pdfjs
775- build with python27 on Vine6
776
777* Thu Apr 18 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 20.0.1-2
778- remove patch22
779
780* Mon Apr 15 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 20.0.1-1
781- update to 20.0.1
782- build with internal nss/nspr
783
784* Fri Mar 29 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 19.0.2-3
785- add BR: curl-devel
786
787* Sun Mar 24 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 19.0.2-2
788- add Patch16 to fix mozbz#239254 (fixed in upstream)
789
790* Fri Mar 08 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 19.0.2-1
791- update to 19.0.2
792- disable shared-js on Vine Linux 6
793
794* Wed Feb 20 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 19.0-1
795- update to 19.0
796- add Patch1000 to disable pdf.js feature for now.
797  - pdf.js is not ready to use for CJK.
798
799* Sat Jan 19 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 18.0.1-1
800- update to 18.0.1
801
802* Wed Jan 09 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 18.0-1
803- update to 18.0
804
805* Wed Nov 21 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 17.0-1
806- update to 17.0
807
808* Sun Oct 28 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 16.0.2-1
809- update to 16.0.2
810
811* Fri Oct 12 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 16.0.1-1
812- update to 16.0.1
813
814* Tue Oct 09 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 16.0-1
815- update to 16.0
816
817* Tue Oct 09 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 15.0.1-3
818- dont use separated plugins on Vine6
819- use --enable-optimize instead of --enable-optimize="\$RPM_OPT_FLAGS"
820
821* Mon Oct 08 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 15.0.1-2
822- add workaround to build with internal nss library
823
824* Sat Oct 06 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 15.0.1-1
825- update to 15.0.1
826- add BR: python-devel
827- build with external nss/nspr on Vine7
828
829* Tue Jul 17 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 14.0.1-2
830- update search plugins
831
832* Tue Jul 17 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 14.0.1-1
833- update to 14.0.1
834- build with internal nss/nspr
835
836* Sat Jun 16 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 13.0.1-1
837- update to 13.0.1
838
839* Wed Jun 06 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 13.0-1
840- update to 13.0
841
842* Sun May 20 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 12.0-3
843- add patch2 to fix build failure with gcc-4.1 (vine5)
844
845* Mon May 07 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 12.0-2
846- use internal nspr on Vine Linux 6
847- add patch2 to fix build failure with gcc-4.4
848
849* Wed Apr 25 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 12.0-1
850- update to 12.0
851- add patch1 to fix build failure with system cairo
852
853* Fri Feb 17 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 10.0.2-1
854- update to 10.0.2
855
856* Mon Feb 13 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 10.0.1-1
857- update to 10.0.1
858
859* Wed Feb 01 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 10.0-1
860- update to 10.0
861- use internal libvpx
862
863* Thu Jan 26 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 9.0.1-4
864- add AutoProv: no
865
866* Thu Dec 29 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 9.0.1-3
867- update mozconfig-firefox-vine5,6,7
868- fix spec to build in parallel
869
870* Thu Dec 22 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 9.0.1-2
871- update mozconfig
872  - build with internal nss on Vine6
873
874* Thu Dec 22 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 9.0.1-1
875- update to 9.0.1
876
877* Wed Dec 21 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 9.0-1
878- update to 9.0
879- build with nss-3.13.1
880
881* Tue Nov 22 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 8.0.1-1
882- update to 8.0.1
883
884* Fri Nov 18 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 8.0-1
885- update to 8.0
886- remove version number from MOZ_DIST_BIN
887  - /usr/lib*/firefox-8.0 -> /usr/lib*/firefox
888
889* Fri Sep 30 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0.1-1
890- update to 7.0.1
891
892* Wed Sep 28 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0-1
893- update to 7.0
894
895* Tue Sep 06 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 6.0.2-1
896- update to 6.0.2
897
898* Wed Aug 17 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 6.0-2
899- rebuild with libnotify-0.7
900
901* Sun Aug 14 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 6.0-1
902- update to 6.0
903
904* Tue Jul 12 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 5.0.1-1
905- update to 5.0.1
906
907* Thu Jul 07 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 5.0-1
908- update to 5.0
909- do not build with external xulrunner
910  - remove BR: gecko-devel, R: gecko-libs
911- add BR: alsa-lib-devel, lcms-devel, libvpx-devel, libpng-devel,
912  sqlite3-devel, zip
913
914* Mon May 23 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 4.0.1-1
915- update to 4.0.1
916- remove MimeType from firefox-safe-mode.desktop
917- add BR: yasm, unzip
918
919* Thu Mar 31 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 4.0-2
920- add "--disable-ipc" on non-x86 architecture
921- update parallel build option
922  - mozilla can build up to 4 jobs in parallel on x86
923- disable C++ exceptions since mozilla code is not exception-safe
924
925* Wed Mar 30 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 4.0-1
926- update to 4.0
927- BR: libjpeg-turbo-devel >= 1.1.0
928- BR: nspr-devel >= 4.8.7
929- BR: nss-devel >= 3.12.9
930- BR: cairo-devel >= 1.10.2-2
931- use langpacks.xpi instead of l10n source
932- update firefox startup script
933
934* Thu Mar 10 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.15-1
935- update to 3.6.15
936
937* Wed Mar 02 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.14-1
938- update to 3.6.14
939
940* Sat Jan 08 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.13-1
941- update to 3.6.13
942
943* Thu Oct 21 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.11-1
944- update to 3.6.11
945
946* Tue Sep 14 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.9-1
947- update to 3.6.9
948
949* Mon Jul 26 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.8-1
950- update to 3.6.8
951
952* Wed Jul 21 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.7-1
953- update to 3.6.7
954
955* Wed Jun 23 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.4-1
956- update to 3.6.4
957
958* Sat Apr 03 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.3-1
959- update to 3.6.3
960
961* Fri Apr 02 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.2-1
962- update to 3.6.2
963
964* Thu Jan 21 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6-2
965- remove version number from browsername.
966- rebuild with xulrunner-1.9.2-3
967
968* Thu Jan 21 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6-1
969- update to 3.6
970
971* Sat Jan 09 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.7-2
972- update desktop files
973
974* Fri Jan 08 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.7-1
975- new upstream release
976- move to unofficial build from community build.
977  - change about dialog.
978
979* Sat Nov 21 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.5-1
980- new upstream release
981
982* Sat Aug 08 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.2-3
983- rebuild again with xulrunner-1.9.1.2-2
984
985* Fri Aug 07 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.2-2
986- rebuild with xulrunner-1.9.1.2-2
987
988* Wed Aug 05 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.2-1
989- new upstream release
990
991* Fri Jul 24 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.1-2
992- remove MimeType entry from firefox-safe-mode.desktop (<BTS:0735>)
993- add default{32,48}.png to %%{ffdir}/chrome/icons/default (<BTS:0733>)
994
995* Sun Jul 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.1-1
996- new upstream release
997- add BR: libXt-devel, startup-notification-devel
998
999* Wed Jul 01 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5-3
1000- enable-system-cairo
1001
1002* Tue Jun 30 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5-2
1003- add Patch3010 to fix releasenotes urls
1004
1005* Tue Jun 30 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5-1
1006- update to firefox 3.5 release
1007
1008* Tue Jun 30 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5-0.1.rc3
1009- update to firefox-3.5rc3
1010
1011* Fri Jun 12 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.11-1
1012- new upstream release
1013
1014* Wed May 06 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.10-4
1015- rebuild to fix broken package..
1016
1017* Tue May 05 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.10-3
1018- add Obsoletes: firefox3
1019
1020* Tue Apr 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.10-2
1021- new upstream release
1022
1023* Sun Apr 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.9-2
1024- build with gecko-libs (xulrunner)
1025- update firefox startup script (/usr/bin/firefox)
1026
1027* Wed Apr 22 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.9-1
1028- new upstream release
1029- build with nspr-4.7.4, nss-3.12.3
1030- set FLASH_FORCE_PULSEAUDIO if PA server is running.
1031
1032* Sat Mar 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.8-1
1033- new upstream release
1034- update default bookmarks
1035
1036* Thu Mar 05 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.7-1
1037- new upstream release
1038
1039* Mon Feb 16 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.6-2
1040- modify mozconfig
1041  - remove --enable-xft
1042  - remove --enable-system-cairo, add --disable-system-cairo
1043
1044* Wed Feb 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.6-1
1045- new upstream release
1046
1047* Sat Dec 20 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.5-1
1048- new upstream release
1049
1050* Sat Nov 22 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.4-1
1051- new upstream release
1052
1053* Thu Oct 02 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.3-2
1054- add Patch30 to remove EULA
1055
1056* Sat Sep 27 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.3-1
1057- new upstream release
1058
1059* Thu Sep 25 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.2-2
1060- disable dbus.
1061
1062* Thu Sep 25 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.2-1
1063- new upstream release
1064
1065* Thu Jul 17 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.1-1
1066- new upstream release
1067
1068* Wed Jul 02 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0-2
1069- rebuild with nss-3.12, nspr-4.7.1
1070- use unofficial branding
1071- change brand*Name to "Firefox Community Edition - Gran Paradiso"
1072
1073* Sun Jun 22 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0-1
1074- new upstream release
1075
1076* Sat Apr 19 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.0.14-1
1077- new upstream release
1078
1079* Wed Mar 26 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.13-1
1080- new upstream release
1081
1082* Tue Feb 19 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.12-0vl3
1083- new upstream release
1084
1085* Sat Dec 01 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.11-0vl3
1086- new upstream release
1087
1088* Tue Nov 27 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.10-0vl3
1089- new upstream release
1090
1091* Fri Oct 19 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.9-0vl3
1092- new upstream release
1093
1094* Fri Oct 19 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.8-0vl3
1095- new upstream release
1096- build with nspr-4.6.7
1097- update default bookmarks
1098
1099* Tue Jul 31 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.6-0vl3
1100- new upstream release
1101
1102* Thu Jul 19 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.5-0vl3
1103- new upstream release
1104
1105* Tue Jun 12 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.4-0vl9
1106- fix pkgconfig file for x86_64 [VineSeed-x86_64:00333]
1107- require ns{pr,s}-devel instead of ns{pr,s} for firefox-devel
1108
1109* Sat Jun 02 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.4-0vl6
1110- fix exclude condition of firefox-{nss,nspr}.pc (<BTS:532>)
1111
1112* Thu May 31 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.4-0vl3
1113- update to firefox-2.0.0.4
1114- remove Patch1020 which is merged in upstream
1115
1116* Sun May 20 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.0.0.3-0vl5
1117- added Patch1020 for workaround gcc visibility hidden bugs
1118
1119* Sat May 19 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.3-0vl4
1120- add build options to build with external nss/nspr libraries
1121    ac_add_options --with-system-nspr
1122    ac_add_options --with-system-nss
1123- remove firefox-{nspr,nss}.pc from %%files devel
1124
1125* Fri May 11 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.3-0vl3
1126- rebuild with new environment/toolchain
1127- update ja locale
1128
1129* Wed Mar 21 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.3-0vl2
1130- new upstream release
1131
1132* Sat Feb 24 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.2-0vl2
1133- new upstream release
1134
1135* Sat Jan 27 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.1-0vl6
1136- remove typeaheadfind and venkman extention.
1137
1138* Fri Jan 26 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.1-0vl4
1139- add build options for FireBug (<BTS:wishes:9>)
1140  --enable-jsd, --enable-extention=default,typeaheadfind,venkman
1141
1142* Thu Dec 21 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.1-0vl2
1143- update to firefox-2.0.0.1
1144
1145* Mon Nov 27 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0-0vl6
1146- add Patch10 to fix Bug358798
1147- fix idl install path (<BTS:401>)
1148
1149* Sat Oct 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0-0vl4
1150- update vine default settings
1151  - use Firefox for UA string instead of BonEcho
1152  - add vendor/vendorSub to UA string
1153  - disable spell check by default
1154  - enable smooth scroll by default
1155
1156* Tue Oct 24 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0-0vl2
1157- update to firefox-2.0 final
1158
1159* Mon Oct 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0-0vl0.rc3
1160- update to firefox-2.0rc3
1161- drop unneeded patches.
1162
1163* Mon Oct 02 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.7-0vl4
1164- change Summary, desktopfiles
1165  - use Firefox Community Edition, instead of Firefox.
1166
1167* Fri Sep 15 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.7-0vl2
1168- new upstream release
1169
1170* Thu Aug 17 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.6-0vl2
1171- new upstream release
1172- -safe-mode option (VinePlus:03026)
1173  - add Patch1010
1174    - add -safe-mode option in Usage(--help).
1175  - add firefox-safe-mode.desktop
1176
1177* Wed Jul 26 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.5-0vl2
1178- new upstream release
1179- update default bookmarks
1180
1181* Tue Jun 06 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.4-0vl4
1182- copy nss headers
1183
1184* Fri Jun 02 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.4-0vl2
1185- new upstream release
1186
1187* Wed May 03 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.3-0vl2
1188- new upstream release
1189
1190* Fri Apr 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.2-0vl4
1191- use firefox-1.5 for MOZILLA_FIVE_HOME instead of firefox-1.5.0.2
1192  - applications using gtkmozembed of firefox become unaffected to
1193    firefox's minor version changes.
1194
1195* Fri Apr 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.2-0vl2
1196- new upstream release
1197
1198* Wed Apr 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.1-0vl6
1199- clean up spec file ( remove unneeded %%ghost file ... )
1200
1201* Wed Apr 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.1-0vl4
1202- fix missing default theme in theme changer
1203
1204* Thu Mar 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.1-0vl3
1205- add upstream patches (100,101,102)
1206- update default bookmarks
1207- build en-US locale
1208- disable pango rendering by default
1209  (workaround fix slow rendering in some page)
1210
1211* Thu Feb 02 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.1-0vl2
1212- new upstream release
1213
1214* Thu Jan 19 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5-0vl4
1215- fix libnssckbi broken symlink problem (BUG:8)
1216
1217* Thu Dec 29 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5-0vl3
1218- add devel subpackage for gtkembedmoz
1219
1220* Thu Dec 29 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5-0vl2
1221- re-enable ja locale
1222- fix crash bug with COMPOSITE enabled X server
1223  - add patch to /usr/bin/firefox
1224
1225* Wed Nov 30 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5-0vl1
1226- new upstream release
1227
1228* Sat Sep 24 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.7-0vl2
1229- update to firefox-1.0.7
1230
1231* Tue Sep 20 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-0vl10
1232- modified mozconfig to use RPM_OPT_FLAGS
1233
1234* Mon Sep 19 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-0vl8
1235- add Patch110 to fix crash with gtk-2.7 (fixed in upstream)
1236
1237* Thu Aug 04 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-0vl6
1238- rebuild with pango-1.9.1
1239- add pango-cairo patch
1240
1241* Sat Jul 23 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-0vl4
1242- update Patch25 to enable extension update feature
1243  (disabled in preferences by default)
1244
1245* Wed Jul 20 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-0vl2
1246- new upstream release
1247
1248* Thu Jul 14 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.5-0vl2
1249- new upstream release
1250
1251* Sat May 14 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-0vl6
1252- add more pango rendering patch from FC-devel.
1253- add IM candidate window position patch.
1254
1255* Fri May 13 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-0vl4
1256- fix wrong condition branching in spec file.
1257
1258* Fri May 13 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-0vl2
1259- new upstream release
1260- drop obsolete patch{103,104}
1261
1262* Sat Apr 16 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.3-0vl1
1263- new upstream release
1264
1265* Mon Mar 28 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.2-0vl1
1266- new upstream release
1267
1268* Tue Mar 15 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-0vl6
1269- clean up spec file
1270  - drop own pixmap file (use included one)
1271  - fix up file permissions
1272
1273* Tue Mar 15 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-0vl4
1274- remove "new-window" option from openurl in /usr/bin/firefox
1275
1276* Tue Mar 15 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-0vl2
1277- readd patch31,32 for pango rendering fix.
1278
1279* Mon Mar 14 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-0vl0
1280- rebuild for Vine Linux 3.1 (VinePlus)
1281
1282* Mon Mar 07 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-0vl1
1283- new upstream release
1284- merge some patches from fedora
1285- include ja-JP langpack only.
1286- add Japanese translation for mozilla-firefox.desktop
1287- disable gnomeui, gnomestripe patch
1288- disable mozilla official branding.
1289
1290* Mon Jan 24 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0-0vl1
1291- initial build for Vine Linux
1292- based on fedora package, add Vine patch from Mozilla package.
1293
1294* Tue Dec 28 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-8
1295- Add upstream langpacks
1296
1297* Sat Dec 25 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-7
1298- Make sure we get a URL passed in to firefox (#138861)
1299- Mark some generated files as ghost (#136015)
1300
1301* Wed Dec 15 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-6
1302- Don't have downloads "disappear" when downloading to desktop (#139015)
1303- Add RPM version to the useragent
1304- BuildRequires pango-devel
1305
1306* Sat Dec 11 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-5
1307- Fix spacing in textareas when using pango for rendering
1308- Enable pango rendering by default.
1309- Enable smooth scrolling by default
1310
1311* Fri Dec  3 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-4
1312- Add StartupWMClass patch from Damian Christey (#135830)
1313- Use system colors by default (#137810)
1314- Re-add s390(x)
1315
1316* Sat Nov 20 2004 Christopher Blizzard <blizzard@redhat.com> 0:1.0-3
1317- Add patch that uses pango for selection.
1318
1319* Fri Nov 12 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-2
1320- Fix livemarks icon issue. (#138989)
1321
1322* Mon Nov  8 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-1
1323- Firefox 1.0
1324
1325* Thu Nov  4 2004 Christopher Aillon <caillon@redhat.com> 0:0.99-1.0RC1.3
1326- Add support for GNOME stock icons. (bmo #233461)
1327
1328* Sat Oct 30 2004 Warren Togami <wtogami@redhat.com> 0:0.99-1.0RC1.2
1329- #136330 BR freetype-devel with conditions
1330- #135050 firefox should own mozilla plugin dir
1331
1332* Sat Oct 30 2004 Christopher Aillon <caillon@redhat.com> 0:0.99-1.0RC1.1
1333- Update to firefox-rc1
1334- Add patch for s390(x)
1335
1336* Tue Oct 26 2004 Christopher Aillon <caillon@redhat.com>
1337- Fix LD_LIBRARY_PATH at startup (Steve Knodle)
1338
1339* Fri Oct 22 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.21
1340- Prevent inlining of stack direction detection (#135255)
1341
1342* Tue Oct 19 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.20
1343- More file chooser fixes:
1344    Pop up a confirmation dialog before overwriting files (#134648)
1345    Allow saving as complete once again
1346- Fix for upstream 263263.
1347
1348* Tue Oct 19 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.18
1349- Fix for upstream 262689.
1350
1351* Mon Oct 18 2004 Christopher Blizzard <blizzard@redhat.com 0:0.10.1-1.0PR1.16
1352- Update pango patch to one that defaults to off
1353
1354* Mon Oct 18 2004 Christopher Blizzard <blizzard@redhat.com> 0:0.10.1-1.0PR1.15
1355- Fix problem where default apps aren't showing up in the download
1356  dialog (#136261)
1357- Fix default height being larger than the available area, cherry picked
1358  from upstream
1359
1360* Mon Oct 18 2004 Christopher Blizzard <blizzard@redhat.com> 0:0.10.1-1.0PR1.13
1361- Actually turn on pango in the mozconfig
1362
1363* Sat Oct 16 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.12
1364- Disable the default application checks. (#133713)
1365- Disable the software update feature. (#136017)
1366
1367* Wed Oct 13 2004 Christopher Blizzard <blizzard@redhat.com>
1368- Use pango for rendering
1369
1370* Tue Oct 12 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.10
1371- Fix for 64 bit crash at startup (b.m.o #256603)
1372
1373* Fri Oct  8 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.9
1374- Fix compile issues (#134914)
1375- Add patch to fix button focus issues (#133507)
1376- Add patches to fix tab focus stealing issue (b.m.o #124750)
1377
1378* Fri Oct  1 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.8
1379- Update to 0.10.1
1380- Fix tab switching keybindings (#133504)
1381
1382* Fri Oct  1 2004 Bill Nottingham <notting@redhat.com> 0:0.10.0-1.0PR1.7
1383- filter out library Provides: and internal Requires:
1384
1385* Thu Sep 30 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.6
1386- Prereq desktop-file-utils >= 0.9
1387
1388* Thu Sep 30 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.5
1389- Add clipboard access prevention patch.
1390
1391* Wed Sep 29 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.4
1392- Add the xul mime type to the .desktop file
1393
1394* Tue Sep 28 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.3
1395- Backport the GTK+ file chooser.
1396- Update desktop database after uninstall.
1397
1398* Mon Sep 27 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.2
1399- Change the vendor to mozilla not fedora
1400- Build with --disable-strip so debuginfo packages work (#133738)
1401- Add pkgconfig patch (bmo #261090)
1402
1403* Fri Sep 24 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.1
1404- Add a BR for desktop-file-utils
1405- Update default configuration options to use the firefox mozconfig (#132916)
1406- Use Red Hat bookmarks (#133262)
1407- Update default homepage (#132721)
1408- Fix JS math on AMD64 (#133226)
1409- Build with MOZILLA_OFICIAL (#132917)
1410
1411* Tue Sep 14 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.0
1412- Update to 1.0PR1
1413- Update man page references to say Firefox instead of Firebird
1414- Remove gcc34 and extensions patch; they are now upstream
1415- Update desktop database
1416- Minor tweaks to the .desktop file
1417
1418* Fri Sep 03 2004 Christopher Aillon <caillon@redhat.com> 0:0.9.3-8
1419- Fixup .desktop entry Name, GenericName, and Comment (#131602)
1420- Add MimeType desktop entry (patch from jrb@redhat.com)
1421- Build with --disable-xprint
1422
1423* Tue Aug 31 2004 Warren Togami <wtogami@redhat.com> 0:0.9.3-7
1424- rawhide import
1425- fedora.us #1765 NetBSD's freetype 2.1.8 compat patch
1426
1427* Sun Aug 29 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.6
1428- and mng support is disabled again as it seams that there is
1429  no real mng support in the code
1430
1431* Sat Aug 28 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.5
1432- remove ldconfig from scriptlets (bug #1846 comment #40)
1433- reenabled mng support (bug #1971)
1434- removed --enable-strip to let rpm to the stripping (bug #1971)
1435- honor system settings in firefox.sh (bug #1971)
1436- setting umask 022 in scriptlets (bug #1962)
1437
1438* Sat Aug 07 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.4
1439- copy the icon to the right place(TM)
1440
1441* Fri Aug 06 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.3
1442- readded the xpm removed in 0:0.9.2-0.fdr.5
1443
1444* Thu Aug 05 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.2
1445- added mozilla-1.7-psfonts.patch from rawhide mozilla
1446
1447* Thu Aug 05 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.1
1448- updated to 0.9.3
1449- removed following from .mozconfig:
1450    ac_add_options --with-system-mng
1451    ac_add_options --enable-xprint
1452    ac_add_options --disable-dtd-debug
1453    ac_add_options --disable-freetype2
1454    ac_add_options --enable-strip-libs
1455    ac_add_options --enable-reorder
1456    ac_add_options --enable-mathml
1457    ac_add_options --without-system-nspr
1458
1459* Tue Aug 03 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.5
1460- applied parts of the patch from Matthias Saou (bug #1846)
1461- delete empty directories in %%{ffdir}/chrome
1462- more cosmetic changes to the spec file
1463
1464* Wed Jul 14 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.4
1465- mozilla-default-plugin-less-annoying.patch readded
1466
1467* Tue Jul 13 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.3
1468- added krb5-devel as build requirement
1469
1470* Tue Jul 13 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.2
1471- added patch from bugzilla.mozilla.org (bug #247846)
1472- removed Xvfb hack
1473
1474* Fri Jul 09 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.1
1475- updated to 0.9.2
1476
1477* Mon Jul 05 2004 Warren Togami <wtogami@redhat.com> 0:0.9.1-0.fdr.3
1478- mharris suggestion for backwards compatibilty with Xvfb hack
1479
1480* Tue Jun 29 2004 Adrian Reber <adrian@lisas.de> 0:0.9.1-0.fdr.2
1481- added massive hack from the debian package to create the
1482  extension directory
1483
1484* Tue Jun 29 2004 Adrian Reber <adrian@lisas.de> 0:0.9.1-0.fdr.1
1485- updated to 0.9.1
1486
1487* Thu Jun 17 2004 Adrian Reber <adrian@lisas.de> 0:0.9-0.fdr.4
1488- remove extensions patch
1489- add post hack to create extensions
1490- enable negotiateauth extension
1491- copy icon to browser/app/default.xpm
1492- --enable-official-branding
1493
1494* Thu Jun 17 2004 Adrian Reber <adrian@lisas.de> 0:0.9-0.fdr.3
1495- extensions patch
1496
1497* Wed Jun 16 2004 Adrian Reber <adrian@lisas.de> 0:0.9-0.fdr.2
1498- added gnome-vfs2-devel as BuildRequires
1499- added gcc-3.4 patch
1500
1501* Wed Jun 16 2004 Adrian Reber <adrian@lisas.de> 0:0.9-0.fdr.1
1502- updated to 0.9
1503- dropped x86_64 patches
1504- dropped xremote patches
1505
1506* Wed May 26 2004 Adrian Reber <adrian@lisas.de> 0:0.8-0.fdr.13
1507- remove unused files: mozilla-config
1508
1509* Sun May 23 2004 David Hill <djh[at]ii.net> 0:0.8-0.fdr.12
1510- update mozconfig (fixes bug #1443)
1511- installation directory includes version number
1512
1513* Mon May 10 2004 Justin M. Forbes <64bit_fedora@comcast.net> 0:0.8-0.fdr.11
1514- merge x86_64 release 10 with fedora.us release 10 bump release to 11
1515
1516* Mon Apr 19 2004 Justin M. Forbes <64bit_fedora@comcast.net> 0:0.8-0.fdr.10
1517- rebuild for FC2
1518- change Source71 to properly replace Source7 for maintainability
1519
1520* Sun Apr 18 2004 Warren Togami <wtogami@redhat.com> 0:0.8-0.fdr.10
1521- 3rd xremote patch
1522- test -Os rather than -O2
1523
1524* Sun Apr 18 2004 Gene Czarcinski <gene@czarc.net>
1525- more x86_64 fixes
1526- fix firefix-xremote-client for x86_64 (similar to what is done for
1527  firefox.sh.in)
1528
1529* Sat Apr 03 2004 Warren Togami <wtogami@redhat.com> 0:0.8-0.fdr.9
1530- xremote patch for thunderbird integration #1113
1531- back out ugly hack from /usr/bin/firefox
1532- correct default bookmarks
1533
1534* Wed Feb 25 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.7
1535- readded the new firefox icons
1536
1537* Sat Feb 21 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.6
1538- removed new firefox icons
1539
1540* Wed Feb 18 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.5
1541- nothing
1542
1543* Thu Feb 12 2004 Gene Czarcinski <czar@acm.org>
1544- update for x86_64 ... usr mozilla-1.6 patches
1545- change "firefox-i*" to "firefox-*" in above stuff
1546
1547* Tue Feb 10 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.4
1548- another icon changed
1549
1550* Tue Feb 10 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.3
1551- startup script modified
1552
1553* Mon Feb 09 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.2
1554- new firefox icon
1555- more s/firebird/firefox/
1556
1557* Mon Feb 09 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.1
1558- new version: 0.8
1559- new name: firefox
1560
1561* Sun Oct 19 2003 Adrian Reber <adrian@lisas.de> - 0:0.7-0.fdr.2
1562- s/0.6.1/0.7/
1563- changed user-app-dir back to .phoenix as .mozilla-firebird
1564  is not working as expected
1565- manpage now also available as MozillaFirebird.1
1566
1567* Thu Oct 16 2003 Adrian Reber <adrian@lisas.de> - 0:0.7-0.fdr.1
1568- updated to 0.7
1569- provides webclient
1570- run regxpcom and regchrome after installation and removal
1571- added a man page from the debian package
1572- changed user-app-dir from .phoenix to .mozilla-firebird
1573
1574* Tue Jul 29 2003 Adrian Reber <adrian@lisas.de> - 0:0.6.1-0.fdr.2
1575- now with mozilla-default-plugin-less-annoying.patch; see bug #586
1576
1577* Tue Jul 29 2003 Adrian Reber <adrian@lisas.de> - 0:0.6.1-0.fdr.1
1578- updated to 0.6.1
1579- changed buildrequires for XFree86-devel from 0:4.3.0 to 0:4.2.1
1580  it should now also build on RH80
1581
1582* Sun Jul 13 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.5.rh90
1583- enabled the type ahead extension: bug #484
1584
1585* Sun Jul 13 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.4.rh90
1586- renamed it again back to MozillaFirbird
1587- added libmng-devel to BuildRequires
1588- startup homepage is now www.fedora.us
1589- improved the startup script to use the unix remote protocol
1590  to open a new window
1591
1592* Mon May 19 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.3.rh90
1593- new icon from http://iconpacks.mozdev.org/phoenix/iconshots/flame48true.png
1594- now using gtk2 as toolkit
1595- renamed again back to mozilla-firebird (I like it better)
1596- Provides: MozillaFirebird for compatibility with previous releases
1597- changed default bookmarks.html to contain links to www.fedora.us
1598
1599* Mon May 19 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.2.rh90
1600- renamed package to MozillaFirebird and all files with the old name
1601- enabled mng, mathml, xinerama support
1602- now honouring RPM_OPT_FLAGS
1603
1604* Mon May 19 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.1.rh90
1605- updated to 0.6
1606
1607* Thu May 01 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.1.cvs20030501.rh90
1608- Updated to CVS.
1609- Renamed to mozilla-firebird.
1610
1611* Sat Apr 05 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.3.cvs20030409.rh90
1612- Updated to CVS.
1613- Removed hard-coded library path.
1614
1615* Sat Apr 05 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.3.cvs20030402.rh90
1616- Changed Prereq to Requires.
1617- Changed BuildRequires to gtk+-devel (instead of file).
1618- Recompressed source with bzip2.
1619- Removed post.
1620
1621* Wed Apr 02 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.2.cvs20030402.rh90
1622- Added desktop-file-utils to BuildRequires.
1623- Changed category to X-Fedora-Extra.
1624- Updated to CVS.
1625
1626* Sun Mar 30 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.2.cvs20030328.rh90
1627- Added Epoch:0.
1628- Added libgtk-1.2.so.0 to the BuildRequires
1629
1630* Fri Mar 28 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-0.fdr.0.1.cvs20030328.rh90
1631- Updated to latest CVS.
1632- Moved phoenix startup script into its own file
1633
1634* Wed Mar 26 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-0.fdr.0.1.cvs20030326.rh90
1635- Updated to latest CVS.
1636- Changed release to 9 vs 8.1.
1637- Added cvs script.
1638- added encoding to desktop file.
1639
1640* Sun Mar 23 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-0.fdr.0.1.cvs20030323.rh81
1641- Updated to latest CVS.
1642- added release specification XFree86-devel Build Requirement.
1643- changed chmod to %attr
1644
1645* Fri Mar 21 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-0.fdr.0.1.cvs20030317.rh81
1646- Fixed naming scheme.
1647- Fixed .desktop file.
1648
1649* Mon Mar 17 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-cvs20030317.1
1650- Updated to CVS.
1651
1652* Fri Mar 14 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-cvs20030313.2
1653- General Tweaking.
1654
1655* Thu Mar 13 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-cvs20030313.1
1656- Updated CVS.
1657- Modified mozconfig.
1658
1659* Sun Mar 09 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-cvs20030309.1
1660- Initial RPM release.
Note: See TracBrowser for help on using the repository browser.