summaryrefslogtreecommitdiff
blob: c28c007ce35a12189621dec5fb65cae4a5ee6a53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
# ChangeLog for www-client/mozilla-firefox
# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/www-client/mozilla-firefox/ChangeLog,v 1.123 2005/12/23 03:48:38 anarchy Exp $

*mozilla-firefox-1.5-r4 (23 Dec 2005)

  23 Dec 2005; Jory A. Pratt <anarchy@gentoo.org>
  +mozilla-firefox-1.5-r4.ebuild:
  canvas and svg now default

*mozilla-firefox-1.5-r3 (18 Dec 2005)

  18 Dec 2005; Jory A. Pratt <anarchy@gentoo.org>
  -mozilla-firefox-1.5.ebuild, -mozilla-firefox-1.5-r1.ebuild,
  -mozilla-firefox-1.5-r2.ebuild, +mozilla-firefox-1.5-r3.ebuild:
  corrected text relocation

  15 Dec 2005; Michael Hanselmann <hansmi@gentoo.org>
  mozilla-firefox-1.5-r2.ebuild:
  Fix a compilation issue using the 32-bit userland with 64-bit kernel on
  PowerPC.

  15 Dec 2005; Michael Hanselmann <hansmi@gentoo.org>
  mozilla-firefox-1.0.7-r4.ebuild:
  Stable on hppa, ppc.

  15 Dec 2005; Jory A. Pratt <anarchy@gentoo.org>
  mozilla-firefox-1.0.7-r4.ebuild:
  Stable on amd64 wrt bug #114940

  15 Dec 2005; Jose Luis Rivero <yoswink@gentoo.org>
  mozilla-firefox-1.0.7-r4.ebuild:
  Stable on alpha wrt security bug #114940

  14 Dec 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  mozilla-firefox-1.0.7-r4.ebuild:
  Stable on sparc wrt #114940

  13 Dec 2005; Joshua Jackson <tsunam@gentoo.org> ChangeLog:
  Stable on x86 for bug #114940

*mozilla-firefox-1.5-r2 (09 Dec 2005)

  09 Dec 2005; Jory A. Pratt <anarchy@gentoo.org>
  +files/1.5/mozilla-firefox-1.5-mork.patch,
  mozilla-firefox-1.0.7-r4.ebuild, +mozilla-firefox-1.5-r2.ebuild:
  mork patch added for completeness

*mozilla-firefox-1.0.7-r4 (09 Dec 2005)

  09 Dec 2005; Jory A. Pratt <anarchy@gentoo.org>
  +mozilla-firefox-1.0.7-r4.ebuild:
  history patch for DoS vulnerability

*mozilla-firefox-1.5-r1 (08 Dec 2005)

  08 Dec 2005; Jory A. Pratt <anarchy@gentoo.org>
  +files/1.5/mozilla-firefox-1.5-history.patch,
  +mozilla-firefox-1.5-r1.ebuild:
  patch to fix history DoS

  06 Dec 2005; Jory A. Pratt <anarchy@gentoo.org>
  mozilla-firefox-1.5.ebuild:
  edited ff-1.5 for split mozconfig-2

  01 Dec 2005; Jory A. Pratt <anarchy@gentoo.org>
  mozilla-firefox-1.5.ebuild:
  renamed embeded-typeaheadfind.patch so people do not have a conflict with
  stale distfiles

*mozilla-firefox-1.5 (29 Nov 2005)

  29 Nov 2005; Jory A. Pratt <anarchy@gentoo.org>
  +files/1.5/mozilla-firefox-1.5-gtk.patch,
  -files/1.5/mozilla-firefox-1.5rc3-gtk.patch,
  -mozilla-firefox-1.5_rc3-r1.ebuild, -mozilla-firefox-1.5_rc3-r2.ebuild,
  +mozilla-firefox-1.5.ebuild:
  revision bump, keyworded dropped due to breakage on other archs. Will call
  for test and rekeyword

*mozilla-firefox-1.5_rc3-r2 (26 Nov 2005)

  26 Nov 2005; Jory A. Pratt <anarchy@gentoo.org>
  +files/1.5/mozilla-firefox-1.5rc3-gtk.patch,
  +mozilla-firefox-1.5_rc3-r2.ebuild:
  gtk2 fix from upstream not expected to make final release

  24 Nov 2005; <anarchy@gentoo.org> +files/1.5/firefox-1.1-visibility.patch,
  mozilla-firefox-1.5_rc3-r1.ebuild:
  swaped out patch for visibility, using on all archs

*mozilla-firefox-1.5_rc3-r1 (21 Nov 2005)

  21 Nov 2005; <anarchy@gentoo.org> +files/firefox-1.1-uriloader.patch,
  +files/firefox-gentoo-pkgconfig.patch, -files/firefox-pkgconfig.patch,
  -mozilla-firefox-1.5_rc3.ebuild, +mozilla-firefox-1.5_rc3-r1.ebuild:
  add uri patch from fedora, gentoo-pkg config changes, better to patch then
  to change after build

*mozilla-firefox-1.5_rc3 (18 Nov 2005)

  18 Nov 2005; <anarchy@gentoo.org> -mozilla-firefox-1.5_rc2-r3.ebuild,
  +mozilla-firefox-1.5_rc3.ebuild:
  revision bump on 1.5

*mozilla-firefox-1.5_rc2-r3 (17 Nov 2005)

  17 Nov 2005; <anarchy@gentoo.org> +files/firefox-pkgconfig.patch,
  -mozilla-firefox-1.5_rc2-r2.ebuild, +mozilla-firefox-1.5_rc2-r3.ebuild:
  patch for pkgconfig files, now accecpting bug reports

*mozilla-firefox-1.5_rc2-r2 (16 Nov 2005)

  16 Nov 2005; <anarchy@gentoo.org> -mozilla-firefox-1.0.6-r2.ebuild,
  -mozilla-firefox-1.0.6-r3.ebuild, -mozilla-firefox-1.0.6-r4.ebuild,
  -mozilla-firefox-1.0.6-r5.ebuild, -mozilla-firefox-1.0.6-r6.ebuild,
  -mozilla-firefox-1.0.6-r7.ebuild, -mozilla-firefox-1.5_rc2-r1.ebuild,
  +mozilla-firefox-1.5_rc2-r2.ebuild:
  cleanup, rpath fix on 1.5rc2-r2

*mozilla-firefox-1.5_rc2-r1 (14 Nov 2005)

  14 Nov 2005; <anarchy@gentoo.org> -mozilla-firefox-1.5_rc1-r1.ebuild,
  +mozilla-firefox-1.5_rc2-r1.ebuild:
  revision bump, refer to ChangeLog

*mozilla-firefox-1.5_rc1-r1 (07 Nov 2005)

  07 Nov 2005; Jory A. Pratt <anarchy@gentoo.org>
  -mozilla-firefox-1.5_rc1.ebuild, +mozilla-firefox-1.5_rc1-r1.ebuild:
  New eclass to support >=1.5 mozilla products

*mozilla-firefox-1.5_rc1 (03 Nov 2005)

  03 Nov 2005; Jory A. Pratt <anarchy@gentoo.org>
  -mozilla-firefox-1.5_beta2-r1.ebuild, +mozilla-firefox-1.5_rc1.ebuild:
  1.5rc1 changed to use default desktop file and icon

  02 Nov 2005; Martin Schlemmer <azarah@gentoo.org>
  files/mozilla-1.7.12-gtk2xft-link-pangoxft.patch,
  +files/mozilla-1.7.12-pango-needs-pangox.patch:
  Add pangox to pango enabled build.

  23 Oct 2005; <anarchy@gentoo.org> -files/1.5/embed-typeaheadfind.patch,
  mozilla-firefox-1.5_beta2-r1.ebuild:
  moved typeaheadfind patch to mirror

  17 Oct 2005; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-1.0.7-r2.ebuild:
  Mark 1.0.7-r2 stable on ia64

*mozilla-firefox-1.5_beta2-r1 (13 Oct 2005)

  13 Oct 2005; <anarchy@gentoo.org>
  +files/1.5/mozilla-firefox-1.1a2-ia64.patch,
  +files/1.5/embed-typeaheadfind.patch,
  +files/1.5/firefox-cairo-canvas.patch,
  +files/1.5/firefox-nopangoxft.patch, +files/1.5/firefox-visibility.patch,
  +files/1.5/mozilla-hppa.patch, +files/1.5/mozilla-1.3-alpha-stubs.patch,
  +files/gentoo-default-prefs.js, +files/icon/deerpark-icon.png,
  files/icon/mozillafirefox.desktop, +mozilla-firefox-1.5_beta2-r1.ebuild:
  1.5 initial import, masked for all until further notice

  07 Oct 2005; Michael Hanselmann <hansmi@gentoo.org>
  mozilla-firefox-1.0.7-r3.ebuild:
  Fix a compilation issue using the 32-bit userland with 64-bit kernel on
  PowerPC.

  02 Oct 2005; Martin Schlemmer <azarah@gentoo.org>
  mozilla-firefox-1.0.7-r3.ebuild:
  Fix flag replacement, bug #107917.

*mozilla-firefox-1.0.7-r3 (02 Oct 2005)

  02 Oct 2005; Martin Schlemmer <azarah@gentoo.org> +files/firefox.1,
  files/icon/mozillafirefox.desktop, +mozilla-firefox-1.0.7-r3.ebuild:
  Fix default theme not being listed in theme manager, bug #107660.  Filter
  flags for SSP, as firefox at least do not seem to work with it, bug #96869.
  Add MIME types associations, bug #107491.  Add manpage, bug #107493.

  30 Sep 2005; Martin Schlemmer <azarah@gentoo.org>
  mozilla-firefox-1.0.7-r2.ebuild:
  Add missing idldir to pkgconfig files (firefox-config is fine).

  29 Sep 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  mozilla-firefox-1.0.7-r2.ebuild:
  Stable on sparc wrt #105396

  29 Sep 2005; Jose Luis Rivero <yoswink@gentoo.org>
  mozilla-firefox-1.0.7-r2.ebuild:
  Stable on alpha wrt security bug #105396

  29 Sep 2005; Mark Loeser <halcy0n@gentoo.org>
  mozilla-firefox-1.0.7-r2.ebuild:
  Stable on x86; bug #105396

  28 Sep 2005; Rene Nussbaumer <killerfox@gentoo.org>
  mozilla-firefox-1.0.7-r2.ebuild:
  Stable on hppa.

  28 Sep 2005; Michael Hanselmann <hansmi@gentoo.org>
  mozilla-firefox-1.0.7-r2.ebuild:
  Stable on ppc.

  28 Sep 2005; <dang@gentoo.org> mozilla-firefox-1.0.7-r2.ebuild:
  Marked stable on amd64

  28 Sep 2005; Martin Schlemmer <azarah@gentoo.org>
  mozilla-firefox-1.0.7-r2.ebuild:
  Update patch set with patch from bug #96869 (comment #48). Unmask as it
  seems to fix bug #107372.

*mozilla-firefox-1.0.7-r2 (27 Sep 2005)

  27 Sep 2005; Martin Schlemmer <azarah@gentoo.org>
  +mozilla-firefox-1.0.7-r2.ebuild:
  Add pango and other patches from fedora in effort to try and resolve bug
  #107372.

*mozilla-firefox-1.0.7-r1 (26 Sep 2005)

  26 Sep 2005; Martin Schlemmer <azarah@gentoo.org>
  +files/mozilla-1.7.12-gtk2xft-invalidate-pango_context.patch,
  +files/mozilla-1.7.12-rpath.patch, +mozilla-firefox-1.0.7-r1.ebuild:
  Add rpath stuff, bug #100597. Fix epiphany/galeon/etc segfaulting at
  startup. Fix firefox segfaulting at first startup, bug #107233.

  26 Sep 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  mozilla-firefox-1.0.7.ebuild:
  Stable on sparc wrt #105396

  26 Sep 2005; Martin Schlemmer <azarah@gentoo.org>
  mozilla-firefox-1.0.7.ebuild:
  Fix doc installation.

*mozilla-firefox-1.0.7 (25 Sep 2005)

  25 Sep 2005; Martin Schlemmer <azarah@gentoo.org>
  +files/mozilla-1.7.6-gcc4.patch, +files/mozilla-1.7.8-amd64.patch,
  +files/mozilla-1.7.12-gtk2xft-link-pangoxft.patch,
  +files/mozilla-1.7.12-libart-freetype.patch,
  +mozilla-firefox-1.0.7.ebuild:
  New release, GLSA105396. Use libart rather than cairo, bug #106713. Update
  gtk2 and xft code from upstream to fix various freetype-2.1.9 issues
  including printing non-latin. Same for the libart renderer code. Update gcc4
  patches to allow building on gcc4.

  17 Sep 2005; Jason Wever <weeve@gentoo.org>
  mozilla-firefox-1.0.6-r7.ebuild:
  Stable on SPARC wrt security bug #105396.

  17 Sep 2005; Rene Nussbaumer <killerfox@gentoo.org>
  mozilla-firefox-1.0.6-r7.ebuild:
  Stable on hppa. bug #105396

  17 Sep 2005; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-1.0.6-r7.ebuild:
  Mark 1.0.6-r7 stable on ia64

  16 Sep 2005; Jose Luis Rivero <yoswink@gentoo.org>
  mozilla-firefox-1.0.6-r7.ebuild:
  Stable on alpha wrt security bug #105396

  16 Sep 2005; Mark Loeser <halcy0n@gentoo.org>
  mozilla-firefox-1.0.6-r7.ebuild:
  Stable on x86.

  15 Sep 2005; Michael Hanselmann <hansmi@gentoo.org>
  mozilla-firefox-1.0.6-r7.ebuild:
  Stable on ppc.

  15 Sep 2005; <dang@gentoo.org> mozilla-firefox-1.0.6-r7.ebuild:
  Bump for bug #105396

*mozilla-firefox-1.0.6-r7 (15 Sep 2005)

  15 Sep 2005; Martin Schlemmer <azarah@gentoo.org>
  +files/mozilla-firefox-1.0.6-GLSA105396.patch,
  +mozilla-firefox-1.0.6-r7.ebuild:
  Fix buffer overflow, bug #105396.

  15 Sep 2005; Joseph Jezak <josejx@gentoo.org>
  mozilla-firefox-1.0.6-r5.ebuild:
  Marked ppc stable.

  11 Sep 2005; Guy Martin <gmsoft@gentoo.org>
  mozilla-firefox-1.0.6-r5.ebuild:
  Stable on hppa.

  07 Sep 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  mozilla-firefox-1.0.6-r5.ebuild:
  Stable on sparc

  06 Sep 2005; Doug Goldstein <cardoe@gentoo.org>
  mozilla-firefox-1.0.6-r5.ebuild:
  stable on x86. marking as per brad's request

*mozilla-firefox-1.0.6-r6 (15 Aug 2005)

  15 Aug 2005; Jory A. Pratt <anarchy@gentoo.org>
  +files/mozilla-rpath-1.patch, +mozilla-firefox-1.0.6-r6.ebuild:
  add rpath patch, p.masked for further testing, also mozcalendar removed as
  it is busted majoryly

  14 Aug 2005; Jory A. Pratt <anarchy@gentoo.org>
  mozilla-firefox-1.0.6-r5.ebuild:
  Adjusted dep wrt bug #102539

  13 Aug 2005; Jory A. Pratt <anarchy@gentoo.org>
  mozilla-firefox-1.0.6-r5.ebuild:
  added die wrt bug #102341

  11 Aug 2005; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-1.0.6-r5.ebuild:
  stable on alpha ia64

  10 Aug 2005; Jeremy Huddleston <eradicator@gentoo.org>
  mozilla-firefox-1.0.6-r5.ebuild:
  Stable amd64 - bug #91984.

*mozilla-firefox-1.0.6-r5 (10 Aug 2005)

  10 Aug 2005; Jory A. Pratt <anarchy@gentoo.org>
  +mozilla-firefox-1.0.6-r5.ebuild:
  revision bump for bug #91984

  06 Aug 2005; Jory A. Pratt <anarchy@gentoo.org>
  -mozilla-firefox-1.0.5-r1.ebuild:
  cleanup of tree

  04 Aug 2005; Martin Schlemmer <azarah@gentoo.org>
  mozilla-firefox-1.0.5-r1.ebuild, mozilla-firefox-1.0.6-r2.ebuild,
  mozilla-firefox-1.0.6-r3.ebuild, mozilla-firefox-1.0.6-r4.ebuild:
  Remove --no-preserve=links from cp for bsd compatibility.

*mozilla-firefox-1.0.6-r4 (02 Aug 2005)

  02 Aug 2005; Aron Griffis <agriffis@gentoo.org>
  +mozilla-firefox-1.0.6-r4.ebuild:
  Update to v2 of the nsplugins patch, which actually works (even on multilib
  systems). Define GENTOO_NSPLUGINS_DIR and GENTOO_NSBROWSER_PLUGINS_DIR in
  the ebuild prior to emake, rather than in the eclass prior to econf, since
  ./configure chokes on the definitions

  27 Jul 2005; Jory A. Pratt <anarchy@gentoo.org>
  +files/mozilla-firefox-1.0.6-gcc4.patch, mozilla-firefox-1.0.6-r3.ebuild:
  Updated gcc4 patch

*mozilla-firefox-1.0.6-r3 (24 Jul 2005)

  24 Jul 2005; Jory A. Pratt <anarchy@gentoo.org>
  +files/embedprompter-modal.patch, +files/gtk-prompt-service.patch, 
  +files/gtk-tooltips.patch, +files/securebrowserui-iirq.patch, 
  +mozilla-firefox-1.0.6-r3.ebuild:
  updated to contain patches need to compile epiphany against. Reference
  bug#86872

  23 Jul 2005; Guy Martin <gmsoft@gentoo.org>
  mozilla-firefox-1.0.6-r2.ebuild:
  Stable on hppa.

  23 Jul 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  mozilla-firefox-1.0.6-r2.ebuild:
  Stable on sparc wrt #99957

*mozilla-firefox-1.0.6-r2 (23 Jul 2005)

  23 Jul 2005; Jory A. Pratt <anarchy@gentoo.org> files/10MozillaFirefox,
  -mozilla-firefox-1.0.6-r1.ebuild, +mozilla-firefox-1.0.6-r2.ebuild:
  update for 10MozillaFirefox lib dir

  22 Jul 2005; Jory A. Pratt <anarchy@gentoo.org>
  mozilla-firefox-1.0.6-r1.ebuild:
  Stable ppc wrt bug #99957

  22 Jul 2005; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-1.0.6-r1.ebuild:
  Push to stable (alpha amd64 ia64 x86) for security and extensions issues

  22 Jul 2005; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-1.0.6-r1.ebuild:
  More synchronization goodness from mozilla and thunderbird ebuilds

  21 Jul 2005; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-1.0.6-r1.ebuild:
  Sync minor changes from upcoming mozilla-1.7.10 ebuild. Install
  documentation (LEGAL and LICENSE). Update the component registry in
  pkg_postrm() as well.

  21 Jul 2005; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-1.0.6-r1.ebuild:
  Fix pkgconfig and firefox-config include dirs

*mozilla-firefox-1.0.6-r1 (21 Jul 2005)

  21 Jul 2005; Aron Griffis <agriffis@gentoo.org>
  -mozilla-firefox-1.0.6.ebuild, +mozilla-firefox-1.0.6-r1.ebuild:
  Stop using the nsplugins eclass in favor of the nsplugins patch which adds
  additional plugin search paths. The plugin symlink madness stops here.
  
  Move firefox to /usr/lib/mozilla-firefox just as thunderbird has moved to
  /usr/lib/mozilla-thunderbird (instead of MozillaFirefox and
  MozillaThunderbird respectively)
  
  Use new mozilla-launcher registration code instead of the drop-in tarball.
  This should allow us to eventually package up extensions as ebuilds ;-)

*mozilla-firefox-1.0.6 (20 Jul 2005)

  20 Jul 2005; Jory A. Pratt <anarchy@gentoo.org>
  +mozilla-firefox-1.0.6.ebuild:
  revision, corrects API issues

*mozilla-firefox-1.0.5-r1 (18 Jul 2005)

  18 Jul 2005; Aron Griffis <agriffis@gentoo.org>
  -mozilla-firefox-1.0.2.ebuild, -mozilla-firefox-1.0.2-r1.ebuild,
  -mozilla-firefox-1.0.3.ebuild, -mozilla-firefox-1.0.3-r1.ebuild,
  -mozilla-firefox-1.0.4.ebuild, -mozilla-firefox-1.0.4-r1.ebuild,
  -mozilla-firefox-1.0.5.ebuild, +mozilla-firefox-1.0.5-r1.ebuild:
  Install /usr/bin/firefox stub using install_mozilla_launcher_stub from
  mozilla-launcher.eclass #99084

  14 Jul 2005; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-1.0.5.ebuild:
  stable on x86 #95199

  14 Jul 2005; Bryan Østergaard <kloeri@gentoo.org>
  mozilla-firefox-1.0.5.ebuild:
  Stable on alpha + ia64, bug 95199.

  14 Jul 2005; Rene Nussbaumer <killerfox@gentoo.org>
  mozilla-firefox-1.0.5.ebuild:
  Stable on hppa. Bug #95199

  13 Jul 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  mozilla-firefox-1.0.5.ebuild:
  Stable on sparc wrt #95199

  13 Jul 2005; Herbie Hopkins <herbs@gentoo.org>
  mozilla-firefox-1.0.5.ebuild:
  Stable on amd64 wrt bug #95199.

  13 Jul 2005; Jory A. Pratt <anarchy@gentoo.org>
  mozilla-firefox-1.0.5.ebuild:
  Stable on PPC

*mozilla-firefox-1.0.5 (13 Jul 2005)

  13 Jul 2005; Aron Griffis <agriffis@gentoo.org>
  +mozilla-firefox-1.0.5.ebuild:
  Bump to 1.0.5

  12 Jul 2005; Aron Griffis <agriffis@gentoo.org>
  -files/mozilla-firefox-1.0-4ft2.patch, mozilla-firefox-1.0.2.ebuild,
  mozilla-firefox-1.0.2-r1.ebuild, mozilla-firefox-1.0.3.ebuild,
  mozilla-firefox-1.0.3-r1.ebuild, mozilla-firefox-1.0.4.ebuild,
  mozilla-firefox-1.0.4-r1.ebuild:
  Move mozilla-firefox-1.0-4ft2.patch to mirrors. Put patches in
  d.g.o/~agriffis/dist as a secondary source

*mozilla-firefox-1.0.4-r1 (11 Jul 2005)

  11 Jul 2005; Aron Griffis <agriffis@gentoo.org>
  -files/mozilla-firefox-1.0.3-ia64.patch, mozilla-firefox-1.0.3-r1.ebuild,
  mozilla-firefox-1.0.4.ebuild, +mozilla-firefox-1.0.4-r1.ebuild:
  Move ia64 patch to mirrors. Add alpha patch to solve math issues that
  prevented maps.google.com from working properly

  06 Jul 2005; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-1.0.2.ebuild, mozilla-firefox-1.0.2-r1.ebuild,
  mozilla-firefox-1.0.3.ebuild, mozilla-firefox-1.0.3-r1.ebuild,
  mozilla-firefox-1.0.4.ebuild:
  Add missing flags to IUSE

  30 May 2005; Sven Wegener <swegener@gentoo.org>
  mozilla-firefox-1.0.2.ebuild, mozilla-firefox-1.0.2-r1.ebuild,
  mozilla-firefox-1.0.3.ebuild, mozilla-firefox-1.0.3-r1.ebuild,
  mozilla-firefox-1.0.4.ebuild:
  Removed unneeded use of gcc.eclass.

  25 May 2005; Herbie Hopkins <herbs@gentoo.org>
  mozilla-firefox-1.0.4.ebuild:
  Use correct libdir in env.d file.

  17 May 2005; Saleem Abdulrasool <compnerd@gentoo.org>
  mozilla-firefox-1.0.4.ebuild:
  Removing newline which causes sed errors during src_install

  15 May 2005; Mark Loeser <halcy0n@gentoo.org>
  +files/mozilla-firefox-1.0.4-gcc4.patch, mozilla-firefox-1.0.4.ebuild:
  GCC4 compile fix; bug #87800

  13 May 2005; Carsten Lohrke <carlo@gentoo.org>
  mozilla-firefox-1.0.4.ebuild:
  Stable on x86, #92393

  13 May 2005; Guy Martin <gmsoft@gentoo.org> mozilla-firefox-1.0.4.ebuild:
  Stable on hppa.

  13 May 2005; Bryan Østergaard <kloeri@gentoo.org>
  mozilla-firefox-1.0.4.ebuild:
  Stable on alpha, bug 92393.

  12 May 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  dropped devspace URI mirrors are seeded.

  12 May 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  mozilla-firefox-1.0.4.ebuild:
  Stable on sparc wrt #91859

  12 May 2005; Seemant Kulleen <seemant@gentoo.org>
  mozilla-firefox-1.0.4.ebuild:
  marked stable for amd64 -- after testing :)

  12 May 2005; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-1.0.4.ebuild:
  add keywords that were dropped: ~alpha ~arm ~hppa ~sparc

  12 May 2005; Lars Weiler <pylon@gentoo.org> mozilla-firefox-1.0.4.ebuild:
  Stable on ppc; bug #91859.

*mozilla-firefox-1.0.4 (12 May 2005)

  12 May 2005; <anarchy@gentoo.org> +mozilla-firefox-1.0.4.ebuild:
  security fixes bug #91859

*mozilla-firefox-1.0.3-r1 (25 Apr 2005)

  25 Apr 2005; Aron Griffis <agriffis@gentoo.org>
  -files/mozilla-firebird-amd64.patch,
  +files/mozilla-firefox-1.0.3-ia64.patch,
  +files/mozilla-firefox-1.0.3-prefs.patch, -files/firefox,
  -files/mozilla-firefox-mousebuttons.patch, mozilla-firefox-1.0.3.ebuild,
  +mozilla-firefox-1.0.3-r1.ebuild:
  Mark 1.0.3 as non-working on ia64; add 1.0.3-r1 with ia64 patch, plus a patch
  to set a few default preferences as Debian does: disable application updating
  by default since we want to control it with portage, inherit LANG from env,
  etc.  Did not add ~arches to 1.0.3-r1 since the rebuild is unnecessary for the
  installed base.  Instead just plan to use 1.0.3-r1 as the basis for the next
  ~arches-marked ebuild.  Remove some dead wood from files dir.  

  18 Apr 2005; Bryan Østergaard <kloeri@gentoo.org>
  mozilla-firefox-1.0.3.ebuild:
  Stable on ia64, bug 89303.

  18 Apr 2005; Bryan Østergaard <kloeri@gentoo.org>
  mozilla-firefox-1.0.3.ebuild:
  Stable on alpha, bug 89303.

  17 Apr 2005; Jason Wever <weeve@gentoo.org> mozilla-firefox-1.0.3.ebuild:
  Stable on SPARC wrt security bug #89303.

  17 Apr 2005; Michael Hanselmann <hansmi@gentoo.org>
  mozilla-firefox-1.0.3.ebuild:
  Stable on hppa.

  17 Apr 2005; Jan Brinkmann <luckyduck@gentoo.org>
  mozilla-firefox-1.0.3.ebuild:
  stable on amd64 wrt #89303

  16 Apr 2005; Michael Hanselmann <hansmi@gentoo.org>
  mozilla-firefox-1.0.3.ebuild:
  Stable on ppc.

*mozilla-firefox-1.0.3 (16 Apr 2005)

  16 Apr 2005; Brad Laue <brad@gentoo.org> -mozilla-firefox-0.9.3.ebuild,
  -mozilla-firefox-1.0_pre-r2.ebuild, -mozilla-firefox-1.0_rc1.ebuild,
  -mozilla-firefox-1.0_rc2.ebuild, -mozilla-firefox-1.0.ebuild,
  -mozilla-firefox-1.0-r2.ebuild, -mozilla-firefox-1.0-r3.ebuild,
  -mozilla-firefox-1.0.1.ebuild, -mozilla-firefox-1.0.1-r1.ebuild,
  +mozilla-firefox-1.0.3.ebuild:
  Bump to 1.0.3. Stable on x86 immediately due to #89303.

  27 Mar 2005; Guy Martin <gmsoft@gentoo.org> files/mozilla-hppa.patch,
  mozilla-firefox-1.0.2.ebuild:
  Fixed hppa patch && stable on hppa.

  26 Mar 2005; Brad Laue <brad@gentoo.org> mozilla-firefox-1.0.2-r1.ebuild:
  Fix firefox-config to truly report library and include paths.

  25 Mar 2005; Brad Laue <brad@gentoo.org> mozilla-firefox-1.0.2-r1.ebuild:
  Change perl -pi -e to sed -i -e - fixes bug #86639.

*mozilla-firefox-1.0.2-r1 (24 Mar 2005)

  24 Mar 2005; Brad Laue <brad@gentoo.org> +mozilla-firefox-1.0.2-r1.ebuild:
  Add headers and pkgconfig files so we can build other browsers against Firefox
  rather than Mozilla Suite.

  25 Mar 2005; Jason Wever <weeve@gentoo.org> mozilla-firefox-1.0.2.ebuild:
  Stable on SPARC wrt security bug #86148.

  24 Mar 2005; Luca Barbato <lu_zero@gentoo.org>
  mozilla-firefox-1.0.2.ebuild:
  Marked ppc

  24 Mar 2005; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-1.0.2.ebuild:
  Stable on alpha ia64

  24 Mar 2005; Marcus D. Hanwell <cryos@gentoo.org>
  mozilla-firefox-1.0.2.ebuild:
  Marked stable on amd64, bug 86148.

  23 Mar 2005; Seemant Kulleen <seemant@gentoo.org>
  mozilla-firefox-0.9.3.ebuild, mozilla-firefox-1.0_pre-r2.ebuild,
  mozilla-firefox-1.0_rc1.ebuild, mozilla-firefox-1.0_rc2.ebuild,
  mozilla-firefox-1.0.ebuild, mozilla-firefox-1.0-r2.ebuild,
  mozilla-firefox-1.0.1-r1.ebuild, mozilla-firefox-1.0.2.ebuild:
  mozilla-launcher to www-client from net-www

*mozilla-firefox-1.0.2 (23 Mar 2005)

  23 Mar 2005; Brad Laue <brad@gentoo.org> +mozilla-firefox-1.0.2.ebuild:
  Version bump. Moving to stable x86 immediately for security updates.

*mozilla-firefox-1.0.1-r1 (23 Mar 2005)

  23 Mar 2005; Aron Griffis <agriffis@gentoo.org>
  +mozilla-firefox-1.0.1-r1.ebuild:
  Use a stub script instead of symlink to mozilla-launcher. This in
  combination with mozilla-launcher-1.28 should fix #78890

  18 Mar 2005; Seemant Kulleen <seemant@gentoo.org>
  +files/svg-cairo-0.3.0-fix.patch, +files/firefox-0.8-gcc-3.4.patch,
  +files/firefox-0.9-init.tar.bz2,
  +files/firefox-0.9-nsFormHistory-crash-fix.patch, +files/10MozillaFirefox,
  +files/mozilla-firefox-1.0-kp_separator.patch,
  +files/mozilla-1.3-alpha-stubs.patch, +files/firefox,
  +files/icon/firefox-icon.png, +files/icon/mozillafirefox.desktop,
  +files/mozilla-firebird-amd64.patch,
  +files/mozilla-firefox-1.0-4ft2.patch,
  +files/mozilla-firefox-mousebuttons.patch, +files/mozilla-hppa.patch,
  +metadata.xml, +mozilla-firefox-0.9.3.ebuild,
  +mozilla-firefox-1.0_pre-r2.ebuild, +mozilla-firefox-1.0_rc1.ebuild,
  +mozilla-firefox-1.0.ebuild, +mozilla-firefox-1.0-r2.ebuild,
  +mozilla-firefox-1.0_rc2.ebuild, +mozilla-firefox-1.0-r3.ebuild,
  +mozilla-firefox-1.0.1.ebuild:
  Moved from net-www/mozilla-firefox to www-client/mozilla-firefox.

  16 Mar 2005; Jeremy Huddleston <eradicator@gentoo.org>
  mozilla-firefox-1.0.1.ebuild:
  Use proper toolchain commands.

  02 Mar 2005; Guy Martin <gmsoft@gentoo.org> mozilla-firefox-1.0.1.ebuild:
  Stable on hppa.

  28 Feb 2005; Michael Hanselmann <hansmi@gentoo.org>
  mozilla-firefox-1.0.1.ebuild:
  Stable on ppc.

  28 Feb 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  mozilla-firefox-1.0.1.ebuild:
  Stable on sparc wrt #83267

  27 Feb 2005; Simon Stelling <blubb@gentoo.org>
  mozilla-firefox-1.0.1.ebuild:
  stable on amd64 wrt bug #83267

  27 Feb 2005; Brad Laue <brad@gentoo.org> mozilla-firefox-1.0.1.ebuild:
  Stable on x86. See bug #83484.

  26 Feb 2005; Jeremy Huddleston <eradicator@gentoo.org>
  mozilla-firefox-1.0.1.ebuild:
  Multilib fixes.

*mozilla-firefox-1.0.1 (26 Feb 2005)

  26 Feb 2005; Brad Laue <brad@gentoo.org> +files/svg-cairo-0.3.0-fix.patch,
  +mozilla-firefox-1.0.1.ebuild:
  Bump to 1.0.1, which features stability and security enhancements (and whiter,
  brighter web pages!)
  
  Also, fix compilation of SVG support with cairo 0.3.0.

  19 Feb 2005; Heinrich Wendel <lanius@gentoo.org>
  mozilla-firefox-1.0-r3.ebuild:
  stable on amd64

  17 Feb 2005; Michael Hanselmann <hansmi@gentoo.org>
  mozilla-firefox-1.0-r3.ebuild:
  Stable on ppc.

  02 Jan 2005; Guy Martin <gmsoft@gentoo.org> mozilla-firefox-1.0-r3.ebuild:
  Stable on hppa. YAY !

  29 Dec 2004; <SeJo@gentoo.org> :
  stable on ppc glsa: 68976

  29 Dec 2004; Joseph Jezak <josejx@gentoo.org> mozilla-firefox-1.0.ebuild:
  Tested and marked ppc stable for bug #68976.

  22 Dec 2004; Guy Martin <gmsoft@gentoo.org> mozilla-firefox-1.0-r3.ebuild:
  Moved filtering of C[XX]FLAGS for hppa in mozilla.eclass.

  22 Dec 2004; Guy Martin <gmsoft@gentoo.org> +files/mozilla-hppa.patch,
  mozilla-firefox-1.0-r3.ebuild:
  Added hppa support.

  21 Dec 2004; Bryan Østergaard <kloeri@gentoo.org>
  mozilla-firefox-1.0.ebuild:
  Stable on alpha, bug 68976.

  04 Dec 2004; Tom Martin <slarti@gentoo.org> mozilla-firefox-1.0.ebuild:
  Stable on amd64.

  21 Nov 2004; Jason Wever <weeve@gentoo.org> mozilla-firefox-1.0.ebuild:
  Stable on sparc.

  18 Nov 2004; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-1.0-r3.ebuild:
  Require recent xorg-x11 which provides xrender.pc #71504

  17 Nov 2004; Brad Laue <brad@gentoo.org> mozilla-firefox-1.0.ebuild:
  1.0 stable on x86. Revisions based on a new build mechanism to follow shortly.

  16 Nov 2004; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-1.0-r3.ebuild:
  Enable svg via cairo, #59827. Remove some stuff from RDEPEND which is
  repeated in mozconfig.eclass. Remove IUSE which is present in
  mozconfig.eclass *and* which isn't used in this ebuild directly

  16 Nov 2004; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-1.0-r2.ebuild, mozilla-firefox-1.0-r3.ebuild:
  Remove IUSE=gtk2 because we always depend on gtk2 now

  15 Nov 2004; Aron Griffis <agriffis@gentoo.org>
  +files/mozilla-firefox-1.0-kp_separator.patch,
  mozilla-firefox-1.0-r3.ebuild:
  Add patch to correct KP_SEPARATOR on European keyboards #68683

*mozilla-firefox-1.0-r3 (15 Nov 2004)

  15 Nov 2004; Aron Griffis <agriffis@gentoo.org>
  +files/mozilla-firefox-1.0-4ft2.patch, +mozilla-firefox-1.0-r3.ebuild:
  Add patch for freetype-2.1.8+ binary compatibility #59849

  14 Nov 2004; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-1.0-r2.ebuild:
  Set HOME=~root when running regxpcom/regchrome in case this is being emerged
  via sudo. Otherwise the commands will create ~/.mozilla owned by root and 700
  perms, which makes subsequent execution of firefox by user impossible. #67031

*mozilla-firefox-1.0-r2 (13 Nov 2004)

  13 Nov 2004; Aron Griffis <agriffis@gentoo.org>
  -mozilla-firefox-1.0-r1.ebuild, +mozilla-firefox-1.0-r2.ebuild:
  Use mozconfig_final to resolve --enable-extensions to a single option

*mozilla-firefox-1.0-r1 (13 Nov 2004)

  13 Nov 2004; Aron Griffis <agriffis@gentoo.org> +mozilla-firefox-1.0-r1.ebuild:
  use mozconfig.eclass instead of mozilla.eclass for building

*mozilla-firefox-1.0 (09 Nov 2004)

  09 Nov 2004; Brad Laue <brad@gentoo.org> +mozilla-firefox-1.0.ebuild:
  At long last, presenting Mozilla Firefox 1.0.

*mozilla-firefox-1.0_rc2 (05 Nov 2004)

  05 Nov 2004; <agriffis@gentoo.org> +mozilla-firefox-1.0_rc2.ebuild:
  Bump to rc2 #62584

*mozilla-firefox-1.0_rc1 (28 Oct 2004)

  28 Oct 2004; Brad Laue <brad@gentoo.org> +mozilla-firefox-1.0_rc1.ebuild:
  New version, 1.0RC1.

  03 Oct 2004; Sven Wegener <swegener@gentoo.org> :
  Removed stray digest.

  03 Oct 2004; <SeJo@gentoo.org> mozilla-firefox-1.0_pre-r2.ebuild:
  stable on ppc gsla: 66084

  03 Oct 2004; Jason Wever <weeve@gentoo.org>
  mozilla-firefox-1.0_pre-r2.ebuild:
  Stable on sparc wrt security bug #66084.

  02 Oct 2004; Travis Tilley <lv@gentoo.org>
  mozilla-firefox-1.0_pre-r2.ebuild:
  stable on amd64, added hardened gcc 'fix'

*mozilla-firefox-1.0_pre-r2 (02 Oct 2004)

  02 Oct 2004; Brad Laue <brad@gentoo.org>
  +mozilla-firefox-1.0_pre-r2.ebuild:
  Version bump. Moving to x86 stable due to security reasons.

*mozilla-firefox-1.0_pre-r1 (28 Sep 2004)

  28 Sep 2004; Aron Griffis <agriffis@gentoo.org>
  +mozilla-firefox-1.0_pre-r1.ebuild:
  Bump revision to carry out mozilla.eclass change: don't use typeaheadfind on
  1.0PR #64196. Also depend on mozilla-launcher-1.20 which appropriately deletes
  compreg.dat when firefox is updated

  19 Sep 2004; <kloeri@gentoo.org> mozilla-firefox-1.0_pre.ebuild:
  Stable on alpha, bug 63996.

  17 Sep 2004; Olivier Crete <tester@gentoo.org>
  mozilla-firefox-1.0_pre.ebuild:
  Marking stable on x86 per security bug #63996

  17 Sep 2004; Travis Tilley <lv@gentoo.org> mozilla-firefox-1.0_pre.ebuild:
  stable on amd64

  16 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org>
  mozilla-firefox-1.0_pre.ebuild:
  Stable on sparc wrt #63996

  16 Sep 2004; <SeJo@gentoo.org> mozilla-firefox-1.0_pre.ebuild:
  stable ppc bug: 63996

*mozilla-firefox-1.0_pre (15 Sep 2004)

  15 Sep 2004; <agriffis@gentoo.org> +mozilla-firefox-1.0_pre.ebuild:
  Bump to 1.0PR for security bug 63996

  15 Aug 2004; <agriffis@gentoo.org> mozilla-firefox-0.8-r2.ebuild,
  mozilla-firefox-0.8-r3.ebuild, mozilla-firefox-0.9-r1.ebuild,
  mozilla-firefox-0.9.1.ebuild, mozilla-firefox-0.9.3-r1.ebuild,
  mozilla-firefox-0.9.3.ebuild:
  Fix bug 60285: the negated conditions in DEPEND were expressed incorrectly,
  for example !moznoxft is wrong, it should be !moznoxft?

  13 Aug 2004; <kloeri@gentoo.org> mozilla-firefox-0.9.3.ebuild:
  Stable on alpha, bug 59419.

*mozilla-firefox-0.9.3-r1 (08 Aug 2004)

  08 Aug 2004; Aron Griffis <agriffis@gentoo.org>
  +mozilla-firefox-0.9.3-r1.ebuild:
  Switch to using mozilla.eclass for configuration

  08 Aug 2004; <agriffis@gentoo.org> mozilla-firefox-0.9.3.ebuild:
  stable on ia64 #59419

  05 Aug 2004; Gustavo Zacarias <gustavoz@gentoo.org>
  mozilla-firefox-0.9.3.ebuild:
  Stable on sparc wrt #59419

  05 Aug 2004; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-0.9.3.ebuild:
  stable on amd64 per Lv

*mozilla-firefox-0.9.3 (04 Aug 2004)

  04 Aug 2004; Aron Griffis <agriffis@gentoo.org>
  +mozilla-firefox-0.9.3.ebuild:
  Update to 0.9.3 for security meta-bug 59419.

  28 Jul 2004; <agriffis@gentoo.org> mozilla-firefox-0.9.1.ebuild:
  stable on alpha, ia64 and x86

  28 Jul 2004; Travis Tilley <lv@gentoo.org>
  +files/firefox-0.9-nsFormHistory-crash-fix.patch,
  mozilla-firefox-0.9.1.ebuild:
  added a patch that fixes a 64bit specific autocomplete crash

  19 Jul 2004; Travis Tilley <lv@gentoo.org> mozilla-firefox-0.9.1.ebuild:
  stable on amd64

  19 Jul 2004; Brad Laue <brad@gentoo.org> mozilla-firefox-0.9.1.ebuild:
  Place icon files in /usr/share/applications for all desktop environments, not
  just gnome.

  05 Jul 2004; Lars Weiler <pylon@gentoo.org> mozilla-firefox-0.9.1.ebuild:
  Stable on ppc.

  03 Jul 2004; Jason Wever <weeve@gentoo.org> mozilla-firefox-0.8-r3.ebuild:
  Stable on sparc.

  01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org>
  mozilla-firefox-0.8-r1.ebuild, mozilla-firefox-0.8-r2.ebuild,
  mozilla-firefox-0.8-r3.ebuild, mozilla-firefox-0.8.ebuild,
  mozilla-firefox-0.9-r1.ebuild, mozilla-firefox-0.9.1.ebuild:
  virtual/glibc -> virtual/libc

*mozilla-firefox-0.9.1 (29 Jun 2004)

  29 Jun 2004; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-0.8-r3.ebuild, +mozilla-firefox-0.9.1.ebuild:
  Version bump to 0.9.1. The 0.9 init files seem to work so use them directly.
  Mark 0.8-r3 stable on x86, alpha and ia64.

  18 Jun 2004; Aron Griffis <agriffis@gentoo.org>
  +files/icon/mozillafirefox.desktop, mozilla-firefox-0.9-r1.ebuild:
  - Fix bug 54179: Install mozillafirefox.desktop to
    /usr/share/applications instead of /usr/share/gnome/apps/Internet.
    This also necessitated some changes to the .desktop file which I
    based on epiphany.desktop
  - Fix bug 54295: Move init file unpacking from pkg_postinst to
    src_install
  - Get rid of the stupid perl dependency; it was only being used to
    edit the .desktop file, and sed would have sufficed in any case

  17 Jun 2004; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-0.9-r1.ebuild:
  Fix bug 54166: Remove amd64 patch which no longer applies

  16 Jun 2004; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-0.9-r1.ebuild:
  Check both possible URLs for mozilla-firefox-0.9 since mozilla.org seems to be
  doing some rearranging

  16 Jun 2004; Aron Griffis <agriffis@gentoo.org> -mozilla-firefox-0.9.ebuild:
  Remove 0.9 version in favor of 0.9-r1 to reduce confusion

*mozilla-firefox-0.9-r1 (16 Jun 2004)

  16 Jun 2004; Aron Griffis <agriffis@gentoo.org>
  +files/firefox-0.9-init.tar.bz2, +mozilla-firefox-0.9-r1.ebuild:
  Add initialization files for firefox-0.9 to defeat the need to run as root the
  first time.

*mozilla-firefox-0.9 (16 Jun 2004)

  16 Jun 2004; Brad Laue <brad@gentoo.org> +mozilla-firefox-0.9.ebuild:
  Add firefox 0.9, masked for testing.

  16 Jun 2004; Aron Griffis <agriffis@gentoo.org> mozilla-firefox-0.8.ebuild:
  Fix use invocation

  06 Jun 2004; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-0.8-r3.ebuild:
  Fix typo: pkg_postun -> pkg_postrm

  01 Jun 2004; Travis Tilley <lv@gentoo.org> mozilla-firefox-0.8-r3.ebuild:
  stable on amd64! YES! side-by-side installation with mozilla-firefox-bin is
  just what we needed :)

  27 May 2004; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-0.8-r3.ebuild:
  Allow installation alongside mozilla-firefox-bin now that they can co-exist
  and are both mozilla-launcher-powered. Update symlinks in postinst and postun

  07 May 2004; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-0.8-r2.ebuild, mozilla-firefox-0.8-r3.ebuild:
  Depend on mozilla-launcher-1.7-r1 which installs in /usr/libexec

  26 Apr 2004; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-0.8-r3.ebuild:
  Fix bug 21667 (replacing -march=pentium4 in mozilla ebuilds outdated) by
  checking for gcc >= 3.2.3

  26 Apr 2004; Aron Griffis <agriffis@gentoo.org>
  +files/firefox-0.8-gcc-3.4.patch, mozilla-firefox-0.8-r3.ebuild:
  Fix bug 47870 (mozilla-firefox-0.8 fails to compile with gcc 3.4) with
  one-line patch

  26 Apr 2004; Aron Griffis <agriffis@gentoo.org>
  +files/mozilla-firefox-mousebuttons.patch, mozilla-firefox-0.8-r3.ebuild:
  Fix bug 44646 (mozilla-firefox ebuild with native forward/back mouse button
  support) with patch from Jason Rhinelander

  26 Apr 2004; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-0.8-r3.ebuild:
  - Filter -fno-default-inline for bug 42488 (mozilla-firefox fails to
    link due to incompatible flag)
  - Filter -fstack-protector to fix bug 45671

*mozilla-firefox-0.8-r3 (26 Apr 2004)

  26 Apr 2004; Aron Griffis <agriffis@gentoo.org>
  +mozilla-firefox-0.8-r3.ebuild:
  Remove entire installed instance from /usr/lib/MozillaFirefox in pkg_preinst
  prior to merging new version. Hopefully this will solve many problems that
  people have had, and hopefully it won't break anything. Fixes bug
  27719.  Bumping the rev and marking ~arch so that testers will try
  this before it hits the general population

  16 Apr 2004; Jason Wever <weeve@gentoo.org> mozilla-firefox-0.8-r2.ebuild:
  Stable on sparc.

  14 Apr 2004; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-0.8-r2.ebuild:
  Stable on x86 (first stable mozilla ebuild to use mozilla-launcher)

  28 Mar 2004; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-0.8-r2.ebuild:
  Add missing dodir before dosym for bug 46049

*mozilla-firefox-0.8-r2 (28 Mar 2004)

  28 Mar 2004; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-0.8-r2.ebuild:
  Fix bug 33159 by making virtual/xft dependant on !moznoxft. Add dependency on
  mozilla-launcher

  25 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org>
  mozilla-firefox-0.8.ebuild:
  don't use deprecated ? : use syntax

  19 Mar 2004; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-0.8-r1.ebuild:
  stable on alpha and ia64

  19 Mar 2004; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-0.8-r1.ebuild:
  Fix bug 38100 by using grep -o instead of sed for optimization fixup

  18 Mar 2004; Aron Griffis <agriffis@gentoo.org>
  mozilla-firefox-0.8-r1.ebuild:
  Add truetype to IUSE for bug 37069. Honor USE=gtk2 for conditional dependence
  on libIDL/ORBit for bug 25567. Also clean up the ebuild: use shorter syntax
  for conditionals instead of deprecated [ -n "`use blah`" ]; avoid an
  unnecessary sed; use [[ ]] instead of [ ] to avoid quoting issues

  18 Mar 2004; Aron Griffis <agriffis@gentoo.org> files/firefox:
  Fix bug 44140 by fixing relative paths to be absolute. Fix bug 44002 by fixing
  a typo in this ChangeLog. Fix bug 43195 by changing the awk program that
  parses the display name

  16 Mar 2004; Brad Laue <brad@gentoo.org> mozilla-firefox-0.8-r1.ebuild:
  Properly enable the DOM inspector.

*mozilla-firefox-0.8-r1 (07 Mar 2004)

  07 Mar 2004; Brad Laue <brad@gentoo.org> mozilla-firefox-0.8-r1.ebuild:
  Add Xinerama support.

  26 Feb 2004; Aron Griffis <agriffis@gentoo.org> files/firefox:
  Add a PATH fix from Bob Bell to be able to find xwininfo

  25 Feb 2004; Aron Griffis <agriffis@gentoo.org> files/firefox:
  Update launcher script to fix bug 25737: The launcher didn't understand
  -remote. The script should also work for mozilla now, but that has yet to be
  tested/deployed

  19 Feb 2004; Tavis Ormandy <taviso@gentoo.org> mozilla-firefox-0.8.ebuild:
  marking alpha, #41338

  19 Feb 2004; Brad Laue <brad@gentoo.org> mozilla-firefox-0.8.ebuild:
  Add dependency on pkgconfig, needed by GTK+2 build process.

  15 Feb 2004; Brad Laue <brad@gentoo.org> files/firefox:
  Switch the default new browser type to window, as this matches better with
  firefox on other platforms. Tab mode is still available if placed in the
  environment variable documented in /usr/bin/firefox

  14 Feb 2004; Aron Griffis <agriffis@gentoo.org> files/firefox:
  Roll fix over from MozillaFirebird script for bug 41074

  14 Feb 2004; Brad Laue <brad@gentoo.org> files/icon/firefox-icon.png:
  Make the firefox icon have a transparent background.

  12 Feb 2004; <augustus@gentoo.org> mozilla-firefox-0.8.ebuild:
  Made amd64 stable.

  12 Feb 2004; Brad Laue <brad@gentoo.org> mozilla-firefox-0.8.ebuild,
  files/icon/firefox-icon.png:
  Use the proper firefox icon in the GNOME menu rather than the Mozilla one.

  12 Feb 2004; Sven Blumenstein <bazik@gentoo.org> mozilla-firefox-0.8.ebuild:
  Here you got a sparc-cookie, Mr. Firefox.

  12 Feb 2004; Brad Laue <brad@gentoo.org> mozilla-firefox-0.8.ebuild:
  Move mozilla-firefox to stable on x86. This is the first step is moving its
  predecessor, mozilla-firebird, out of the tree entirely. 
  
  Please test on as many arches as soon as possible!

*mozilla-firefox-0.8 (10 Feb 2004)

  10 Feb 2004; Brad Laue <brad@gentoo.org> metadata.xml,
  mozilla-firefox-0.8.ebuild, files/10MozillaFirefox, files/firefox,
  files/mozilla-1.3-alpha-stubs.patch, files/mozilla-firebird-amd64.patch:
  Introducing Mozilla Firefox.