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
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
|
# ChangeLog for www-client/mozilla
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/www-client/mozilla/ChangeLog,v 1.80 2005/09/28 18:07:24 hansmi Exp $
28 Sep 2005; Michael Hanselmann <hansmi@gentoo.org>
mozilla-1.7.12-r2.ebuild:
Stable on ppc.
*mozilla-1.7.12-r2 (28 Sep 2005)
28 Sep 2005; Martin Schlemmer <azarah@gentoo.org>
mozilla-1.7.12-r1.ebuild, +mozilla-1.7.12-r2.ebuild:
Add pango and other patches from fedora in effort to try and resolve bug
#107372. Update patch set with patch from bug #96869 (comment #48).
*mozilla-1.7.12-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-1.7.12-r1.ebuild:
Add rpath stuff, bug #100597. Fix epiphany/galeon/etc segfaulting at startup.
26 Sep 2005; Gustavo Zacarias <gustavoz@gentoo.org> mozilla-1.7.12.ebuild:
Stable on sparc wrt #105396
26 Sep 2005; Martin Schlemmer <azarah@gentoo.org> mozilla-1.7.12.ebuild:
Fix doc installation.
*mozilla-1.7.12 (25 Sep 2005)
25 Sep 2005; Martin Schlemmer <azarah@gentoo.org>
+files/mozilla-1.7.12-gtk2xft-link-pangoxft.patch,
+files/mozilla-1.7.12-libart-freetype.patch, +mozilla-1.7.12.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.
17 Sep 2005; Jason Wever <weeve@gentoo.org> mozilla-1.7.11-r3.ebuild:
Stable on SPARC wrt security bug #105396.
17 Sep 2005; Rene Nussbaumer <killerfox@gentoo.org>
mozilla-1.7.11-r3.ebuild:
Stable on hppa. bug #105396
17 Sep 2005; Markus Rothe <corsair@gentoo.org> mozilla-1.7.11-r3.ebuild:
added ~ppc64
17 Sep 2005; Aron Griffis <agriffis@gentoo.org> mozilla-1.7.11-r3.ebuild:
Mark 1.7.11-r3 stable on ia64
16 Sep 2005; Jose Luis Rivero <yoswink@gentoo.org>
mozilla-1.7.11-r3.ebuild:
Stable on alpha wrt security bug #105396
16 Sep 2005; Luis Medinas <metalgod@gentoo.org> mozilla-1.7.11-r3.ebuild:
Marked Stable on amd64. Fixes bug #105396.
16 Sep 2005; Mark Loeser <halcy0n@gentoo.org> mozilla-1.7.11-r3.ebuild:
Stable on x86.
15 Sep 2005; Michael Hanselmann <hansmi@gentoo.org>
mozilla-1.7.11-r3.ebuild:
Stable on ppc.
*mozilla-1.7.11-r3 (15 Sep 2005)
15 Sep 2005; Martin Schlemmer <azarah@gentoo.org>
+files/mozilla-1.7.11-GLSA105396.patch, +mozilla-1.7.11-r3.ebuild:
Fix buffer overflow, bug #105396.
*mozilla-1.7.11-r2 (16 Aug 2005)
16 Aug 2005; Jory A. Pratt <anarchy@gentoo.org>
+files/mozilla-rpath-1.patch, +mozilla-1.7.11-r2.ebuild:
rpath patch introduced, p.masked for further testing
*mozilla-1.7.11-r1 (14 Aug 2005)
14 Aug 2005; Jory A. Pratt <anarchy@gentoo.org> +mozilla-1.7.11-r1.ebuild:
Adjusted dep wrt bug #102539
11 Aug 2005; Rene Nussbaumer <killerfox@gentoo.org> mozilla-1.7.11.ebuild:
Stable on hppa.
11 Aug 2005; Aron Griffis <agriffis@gentoo.org> mozilla-1.7.11.ebuild:
stable on alpha
10 Aug 2005; Aron Griffis <agriffis@gentoo.org> mozilla-1.7.11.ebuild:
stable ia64
10 Aug 2005; Gustavo Zacarias <gustavoz@gentoo.org> mozilla-1.7.11.ebuild:
Stable on sparc wrt #101921
10 Aug 2005; Luis Medinas <metalgod@gentoo.org> mozilla-1.7.11.ebuild:
Marked Stable on AMD64.
10 Aug 2005; Hardave Riar <hardave@gentoo.org> mozilla-1.7.10-r1.ebuild,
mozilla-1.7.10-r2.ebuild, mozilla-1.7.10-r3.ebuild, mozilla-1.7.11.ebuild:
Removing the ~mips keywords from all ebuilds since it should never have been
there at all.
10 Aug 2005; Jory A. Pratt <anarchy@gentoo.org> mozilla-1.7.11.ebuild:
Stable on ppc and x86
09 Aug 2005; Jory A. Pratt <anarchy@gentoo.org> mozilla-1.7.10-r1.ebuild:
Added ~ppc64 to Keywords
08 Aug 2005; Jory A. Pratt <anarchy@gentoo.org> -mozilla-1.7.7.ebuild,
-mozilla-1.7.7-r2.ebuild, -mozilla-1.7.8.ebuild, -mozilla-1.7.8-r1.ebuild,
-mozilla-1.7.8-r2.ebuild, mozilla-1.7.10-r1.ebuild,
mozilla-1.7.10-r2.ebuild, mozilla-1.7.10-r3.ebuild, mozilla-1.7.11.ebuild:
cleanup, drop of mozxmlterm as it is expermimental and not supported by us
anymore
04 Aug 2005; Martin Schlemmer <azarah@gentoo.org>
mozilla-1.7.10-r1.ebuild, mozilla-1.7.10-r2.ebuild,
mozilla-1.7.10-r3.ebuild, mozilla-1.7.11.ebuild:
Remove --no-preserve=links from cp for bsd compatibility.
*mozilla-1.7.11 (03 Aug 2005)
03 Aug 2005; Jory A. Pratt <anarchy@gentoo.org> +mozilla-1.7.11.ebuild:
revsision bump repairs regressions in 1.7.10
02 Aug 2005; Aron Griffis <agriffis@gentoo.org> mozilla-1.7.10-r3.ebuild:
Move GENTOO_NSPLUGINS_DIR and GENTOO_NSBROWSER_PLUGINS_DIR from the eclass
prior to econf, to the ebuild prior to emake, since ./configure chokes on
the definitions
*mozilla-1.7.10-r3 (02 Aug 2005)
02 Aug 2005; Aron Griffis <agriffis@gentoo.org> +mozilla-1.7.10-r3.ebuild:
Update to v2 of the nsplugins patch, which actually works (even on multilib
systems)
25 Jul 2005; Aron Griffis <agriffis@gentoo.org> mozilla-1.7.10-r2.ebuild:
Don't attempt to build enigmail when USE=moznomail #100101 #100155
*mozilla-1.7.10-r2 (23 Jul 2005)
23 Jul 2005; Aron Griffis <agriffis@gentoo.org> +mozilla-1.7.10-r2.ebuild:
Now that mozilla-launcher-1.42 handles -register gracefully for mozilla (by
calling mozilla-rebuild-databases.pl) we can use the same registration code
in the pkg_* functions that we use for firefox and thunderbird.
Refrain from unpacking the enigmail tarball unless USE=crypt
Note: This is ~arch and should go through the standard soak period since
there's no pressing (e.g. security) reason to push it to stable sooner.
23 Jul 2005; Gustavo Zacarias <gustavoz@gentoo.org>
mozilla-1.7.10-r1.ebuild:
Stable on sparc wrt #98846
23 Jul 2005; Rene Nussbaumer <killerfox@gentoo.org>
mozilla-1.7.10-r1.ebuild:
Stable on hppa. bug 98846
22 Jul 2005; Jory A. Pratt <anarchy@gentoo.org> mozilla-1.7.10-r1.ebuild:
Stable ppc wrt bug #98846
22 Jul 2005; Aron Griffis <agriffis@gentoo.org> mozilla-1.7.10-r1.ebuild:
Push to stable (alpha amd64 ia64 x86) for security and extensions issues
*mozilla-1.7.10-r1 (22 Jul 2005)
22 Jul 2005; Aron Griffis <agriffis@gentoo.org> -mozilla-1.7.10.ebuild,
+mozilla-1.7.10-r1.ebuild:
Repair installation to actually work. Now that we're using the firefox-style
installation method, we can drop the raw installation target patch. Revert to
using mozilla-rebuild-databases.pl since mozilla doesn't support -register like
firefox and thunderbird. Oh well.
22 Jul 2005; Aron Griffis <agriffis@gentoo.org> mozilla-1.7.10.ebuild:
Sync major changes from firefox and thunderbird ebuilds, including new
mozilla-launcher based registration.
*mozilla-1.7.10 (21 Jul 2005)
21 Jul 2005; Jory A. Pratt <anarchy@gentoo.org> +mozilla-1.7.10.ebuild:
wrt #98846, modifications needed before p.mask is removed
*mozilla-1.7.8-r2 (11 Jul 2005)
11 Jul 2005; Aron Griffis <agriffis@gentoo.org> mozilla-1.7.8-r1.ebuild,
+mozilla-1.7.8-r2.ebuild:
Add patch to solve math issues so that maps.google.com works on alpha
06 Jul 2005; Aron Griffis <agriffis@gentoo.org> mozilla-1.7.7.ebuild,
mozilla-1.7.7-r2.ebuild, mozilla-1.7.8.ebuild, mozilla-1.7.8-r1.ebuild:
Add missing flags to IUSE
27 Jun 2005; Sven Wegener <swegener@gentoo.org> mozilla-1.7.7.ebuild,
mozilla-1.7.7-r2.ebuild, mozilla-1.7.8.ebuild, mozilla-1.7.8-r1.ebuild:
Changed 'pgsql?' to 'postgres?' in *DEPEND.
30 May 2005; Sven Wegener <swegener@gentoo.org> mozilla-1.7.7.ebuild,
mozilla-1.7.7-r2.ebuild, mozilla-1.7.8.ebuild, mozilla-1.7.8-r1.ebuild:
Moved from gcc.eclass to toolchain-funcs.eclass, bug #92745.
24 May 2005; Herbie Hopkins <herbs@gentoo.org> mozilla-1.7.8-r1.ebuild:
Set correct libdir in env.d file.
16 May 2005; Martin Schlemmer <azarah@gentoo.org>
+files/mozilla-1.7.8-amd64.patch, mozilla-1.7.8-r1.ebuild:
Fix building on amd64 with gcc4 (patch from Debian)
*mozilla-1.7.8-r1 (15 May 2005)
15 May 2005; Michael Hanselmann <hansmi@gentoo.org> mozilla-1.7.8-r1.ebuild,
files/digest-mozilla-1.7.8-r1:
Added a backported patch which fixes rare crashes with
plugin.default_plugin_disabled being true.
13 May 2005; Jan Brinkmann <luckyduck@gentoo.org> mozilla-1.7.8.ebuild:
stable on amd64 wrt #92394
13 May 2005; Carsten Lohrke <carlo@gentoo.org> mozilla-1.7.8.ebuild:
Stable on x86, #92394
13 May 2005; Guy Martin <gmsoft@gentoo.org> mozilla-1.7.8.ebuild:
Stable on hppa.
13 May 2005; Bryan Østergaard <kloeri@gentoo.org> mozilla-1.7.8.ebuild:
Stable on alpha, bug 92394.
12 May 2005; Gustavo Zacarias <gustavoz@gentoo.org> mozilla-1.7.8.ebuild:
Stable on sparc wrt #92394
12 May 2005; Lars Weiler <pylon@gentoo.org> mozilla-1.7.8.ebuild:
Stable on ppc; bug #92394.
12 May 2005; Aron Griffis <agriffis@gentoo.org> mozilla-1.7.8.ebuild:
stable on ia64 #91859
*mozilla-1.7.8 (12 May 2005)
12 May 2005; Aron Griffis <agriffis@gentoo.org>
-files/mozilla-1.7.5-stackgrowth.patch, -mozilla-1.7.5.ebuild,
-mozilla-1.7.5-r1.ebuild, -mozilla-1.7.6-r1.ebuild, +mozilla-1.7.8.ebuild:
bump to 1.7.8 #91859. trim old versions
*mozilla-1.7.7-r2 (25 Apr 2005)
25 Apr 2005; Brad Laue <brad@gentoo.org> +mozilla-1.7.7-r2.ebuild:
Keep development tools (xpidl, etc) in $MOZILLA_FIVE_HOME where they're
expected.
*mozilla-1.7.7-r1 (25 Apr 2005)
25 Apr 2005; Martin Schlemmer <azarah@gentoo.org>
+files/mozilla-1.7.6-gcc4.patch, +mozilla-1.7.7-r1.ebuild:
Fix building with gcc4. Patch from halcy0n's dev space.
19 Apr 2005; Markus Rothe <corsair@gentoo.org> mozilla-1.7.7.ebuild:
Added ppc64 patch to ebuild and marked ~ppc64; bug #89305
18 Apr 2005; Bryan Østergaard <kloeri@gentoo.org> mozilla-1.7.7.ebuild:
Stable on ia64, bug 89305.
18 Apr 2005; Bryan Østergaard <kloeri@gentoo.org> mozilla-1.7.7.ebuild:
Stable on alpha, bug 89305.
17 Apr 2005; Herbie Hopkins <herbs@gentoo.org> mozilla-1.7.7.ebuild:
Stable on amd64 wrt security bug fixes.
17 Apr 2005; Jason Wever <weeve@gentoo.org> mozilla-1.7.7.ebuild:
Stable on SPARC wrt security bug #89305.
17 Apr 2005; Michael Hanselmann <hansmi@gentoo.org> mozilla-1.7.7.ebuild:
Stable on hppa.
17 Apr 2005; Markus Rothe <corsair@gentoo.org> mozilla-1.7.6-r1.ebuild:
Patch for ppc64 didn't apply -> corrected
17 Apr 2005; Tom Gall <tgall@gentoo.org> mozilla-1.7.6-r1.ebuild,
+mozilla-1.7.6-ppc64.patch:
bug #54853 -- initial ppc64 port
16 Apr 2005; Michael Hanselmann <hansmi@gentoo.org> mozilla-1.7.7.ebuild:
Stable on ppc.
*mozilla-1.7.7 (16 Apr 2005)
16 Apr 2005; Brad Laue <brad@gentoo.org> +mozilla-1.7.7.ebuild:
Bump to 1.7.7. Stable on x86 due to #89305.
28 Mar 2005; Guy Martin <gmsoft@gentoo.org> files/mozilla-hppa.patch,
mozilla-1.7.6-r1.ebuild:
Fixed hppa patch && stable on hppa.
25 Mar 2005; <blubb@gentoo.org> mozilla-1.7.6-r1.ebuild:
stable on amd64 wrt bug #84074
24 Mar 2005; Michael Hanselmann <hansmi@gentoo.org> mozilla-1.7.6-r1.ebuild:
Stable on ppc.
24 Mar 2005; Aron Griffis <agriffis@gentoo.org> mozilla-1.7.6-r1.ebuild:
Stable on alpha ia64
24 Mar 2005; Aron Griffis <agriffis@gentoo.org> mozilla-1.7.5.ebuild,
mozilla-1.7.5-r1.ebuild, mozilla-1.7.6-r1.ebuild:
Add dep on ~autoconf-2.13 #86401
24 Mar 2005; Jason Wever <weeve@gentoo.org> mozilla-1.7.6-r1.ebuild:
Stable on SPARC wrt security bug #84074.
24 Mar 2005; Aron Griffis <agriffis@gentoo.org> mozilla-1.7.5-r1.ebuild:
Backport fixes from 1.7.6-r1 for USE=ldap build #85648
23 Mar 2005; Aron Griffis <agriffis@gentoo.org> mozilla-1.7.6-r1.ebuild:
Don't force CC, CXX, LD on the make cmdline so that we can build with
USE=ldap. Defining for the invocation of ./configure is sufficient.
23 Mar 2005; Aron Griffis <agriffis@gentoo.org> mozilla-1.7.5.ebuild,
mozilla-1.7.5-r1.ebuild, mozilla-1.7.6-r1.ebuild:
Fix smime to use /usr/bin/perl instead of /usr/local/bin/perl #51916
23 Mar 2005; Seemant Kulleen <seemant@gentoo.org> mozilla-1.7.6-r1.ebuild:
mozilla-launcher to www-client from net-www
23 Mar 2005; Aron Griffis <agriffis@gentoo.org> -mozilla-1.7.6.ebuild,
mozilla-1.7.6-r1.ebuild:
Remove 1.7.6 in favor of 1.7.6-r1 to avoid build/rebuild cycle
23 Mar 2005; Seemant Kulleen <seemant@gentoo.org>
+files/svg-cairo-0.3.0-fix.patch,
+files/1.3/mozilla-1.3-fix-RAW-target.patch,
+files/mozilla-1.7.3-4ft2.patch, +files/mozilla-1.7.5-stackgrowth.patch,
+files/10mozilla, +files/google.src, +files/icon/mozilla.desktop,
+files/icon/mozilla-icon.png, +files/mozilla-alpha-xpcom-subs-fix.patch,
+files/mozilla-hppa.patch, +files/mozilla-rebuild-databases.pl,
+files/mozilla-stackgrowth.patch, +files/xft.js, +metadata.xml,
+mozilla-1.7.5.ebuild, +mozilla-1.7.5-r1.ebuild, +mozilla-1.7.6.ebuild,
+mozilla-1.7.6-r1.ebuild:
mozilla now in www-client
*mozilla-1.7.6-r1 (23 Mar 2005)
23 Mar 2005; Aron Griffis <agriffis@gentoo.org> +mozilla-1.7.6-r1.ebuild:
Use a stub script instead of symlink to mozilla-launcher. This in
combination with mozilla-launcher-1.28 should fix #78890
*mozilla-1.7.6 (23 Mar 2005)
23 Mar 2005; Brad Laue <brad@gentoo.org> +mozilla-1.7.6.ebuild:
Bump to 1.7.6. Security fixes detailed in bug #84074.
23 Mar 2005; Brad Laue <brad@gentoo.org> +files/mozilla-stackgrowth.patch,
mozilla-1.7.5-r1.ebuild, mozilla-1.7.5.ebuild:
Change patchname of stackgrowth-patch for simplicity.
16 Mar 2005; Jeremy Huddleston <eradicator@gentoo.org>
mozilla-1.7.5-r1.ebuild:
Use proper toolchain commands.
05 Mar 2005; Jeremy Huddleston <eradicator@gentoo.org>
mozilla-1.7.5-r1.ebuild:
Multilib fixes.
*mozilla-1.7.5-r1 (03 Mar 2005)
03 Mar 2005; Chris White <chriswhite@gentoo.org> +mozilla-1.7.5-r1.ebuild:
Fix bug #57534 with a small revision bump (postgreSQL support in mozilla).
27 Feb 2005; Brad Laue <brad@gentoo.org> mozilla-1.7.5.ebuild:
Build fix for systems with Cairo >=0.3.0 installed.
24 Jan 2005; Aron Griffis <agriffis@gentoo.org> -files/enigmail-Makefile,
-files/gtk2mozilla_head_patch2, -files/ipc-1.0.6-nsPipeChannel.patch,
-files/ipc-1.0.7-nsPipeChannel.patch, -files/mozilla,
-files/mozilla-1.4-amd64.patch, -files/mozilla-1.6-gcc-3.4.patch,
-files/mozilla-1.7-amd64.patch, -files/mozilla-ft-bytecode.patch,
-files/mozilla-new-freetype2.patch, -files/mozilla-xft-unix-prefs.patch,
-files/mozilla.sh, -files/1.2/mozilla-1.2-branch-update.patch.bz2,
-files/1.2/mozilla-1.2-cutnpaste-limit-fix.patch.bz2,
-files/1.2/mozilla-1.2-image-reload-memleak.patch,
-files/1.2/mozilla-1.2.1-Xrender-includes.patch.bz2,
-files/1.2/mozilla-1.2b-Xft-includes.patch.bz2,
-files/1.2/mozilla-1.2b-default-plugin-less-annoying.patch.bz2,
-files/1.2/mozilla-1.2b-freetype.patch.bz2,
-files/1.2/mozilla-1.2b-gtk2.patch.bz2,
-files/1.2/mozilla-1.2b-over-the-spot.patch.bz2,
-files/1.2/mozilla-1.2b-wallet.patch.bz2, -files/enigmail/Makefile-enigmail,
-files/enigmail/Makefile-ipc, -mozilla-1.6-r1.ebuild,
-mozilla-1.7-r1.ebuild, -mozilla-1.7.2-r1.ebuild, -mozilla-1.7.3-r2.ebuild,
-mozilla-1.7.3-r3.ebuild, -mozilla-1.7.3.ebuild, mozilla-1.7.5.ebuild,
-mozilla-1.7.ebuild:
Mark 1.7.5 stable on ia64. Trim older ebuilds and cruft in FILESDIR
02 Jan 2005; Guy Martin <gmsoft@gentoo.org> mozilla-1.7.5.ebuild:
Stable on hppa. YAY !
31 Dec 2004; Chris White <chriswhite@gentoo.org>
+files/mozilla-1.7.5-stackgrowth.patch, mozilla-1.7.5.ebuild:
Added an upstream stack growth patch. This fixes some debug weirdness.
29 Dec 2004; <SeJo@gentoo.org> mozilla-1.7.5.ebuild:
stable on ppc glsa: 68976
22 Dec 2004; Guy Martin <gmsoft@gentoo.org> +files/mozilla-hppa.patch,
mozilla-1.7.5.ebuild:
Added hppa support.
21 Dec 2004; Bryan Østergaard <kloeri@gentoo.org> mozilla-1.7.5.ebuild:
Stable on alpha, bug 68976.
21 Dec 2004; Olivier Crete <tester@gentoo.org> mozilla-1.7.5.ebuild:
Stable in x86 wrt security bug #68976
20 Dec 2004; Gustavo Zacarias <gustavoz@gentoo.org> mozilla-1.7.5.ebuild:
Stable on sparc wrt #68976
20 Dec 2004; Dylan Carlson <absinthe@gentoo.org> mozilla-1.7.5.ebuild:
Stable on amd64, bug 68976.
*mozilla-1.7.5 (18 Dec 2004)
18 Dec 2004; Brad Laue <brad@gentoo.org> +mozilla-1.7.5.ebuild:
Update to 1.7.5. Myriad bugfixes listed in the changelog at
http://www.mozilla.org/releases/mozilla1.7.5/changelog.html.
18 Nov 2004; Aron Griffis <agriffis@gentoo.org> mozilla-1.7.3-r3.ebuild:
Require recent xorg-x11 which provides xrender.pc #71504
*mozilla-1.7.3-r3 (18 Nov 2004)
18 Nov 2004; Aron Griffis <agriffis@gentoo.org>
+files/mozilla-1.7.3-4ft2.patch, +mozilla-1.7.3-r3.ebuild:
Update to enigmail 0.89.0 #64547. Add patch for freetype-2.1.8+ binary
compatibility #59849. Switch from svg-libart to svg-cairo because the libart
version we were using depends on the bad freetype APIs. Additionally we're
using cairo in firefox so it's good to be in sync
16 Nov 2004; Aron Griffis <agriffis@gentoo.org> mozilla-1.7.3-r2.ebuild:
Remove IUSE=gtk2 because we always depend on gtk2 now
*mozilla-1.7.3-r2 (13 Nov 2004)
13 Nov 2004; Aron Griffis <agriffis@gentoo.org> -mozilla-1.7.3-r1.ebuild,
+mozilla-1.7.3-r2.ebuild:
Use mozconfig_final to resolve --enable-extensions to a single option
*mozilla-1.7.3-r1 (13 Nov 2004)
13 Nov 2004; Aron Griffis <agriffis@gentoo.org> +mozilla-1.7.3-r1.ebuild:
use mozconfig.eclass instead of mozilla.eclass for building
13 Nov 2004; <plasmaroo@gentoo.org> mozilla-1.7.3.ebuild:
Marking stable on IA64.
03 Oct 2004; Brad Laue <brad@gentoo.org> mozilla-1.7.3.ebuild:
Stop using deprecated WANT_AUTOCONF syntax, bug 60827
19 Sep 2004; <kloeri@gentoo.org> mozilla-1.7.3.ebuild:
Stable on alpha, bug 63996.
17 Sep 2004; Olivier Crete <tester@gentoo.org> mozilla-1.7.3.ebuild:
Stable in x86 wrt security bug #63996
16 Sep 2004; Travis Tilley <lv@gentoo.org> mozilla-1.7.3.ebuild:
stable on amd64
16 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> mozilla-1.7.3.ebuild:
Stable on sparc wrt #63996
16 Sep 2004; <SeJo@gentoo.org> mozilla-1.7.3.ebuild:
stable ppc bug: 63996
*mozilla-1.7.3 (15 Sep 2004)
15 Sep 2004; <agriffis@gentoo.org> +mozilla-1.7.3.ebuild:
Bump to 1.7.3 for security bug 63996. This ebuild uses the libart_lgpl
distribution from the 1.7.2 tarball for mozsvg support.
06 Sep 2004; Ciaran McCreesh <ciaranm@gentoo.org> mozilla-1.6-r1.ebuild:
Switch to use epause and ebeep, bug #62950
*mozilla-1.7.2-r1 (18 Aug 2004)
18 Aug 2004; Aron Griffis <agriffis@gentoo.org> +mozilla-1.7.2-r1.ebuild,
-mozilla-1.7.2.ebuild:
Bump revision to carry out change in mozilla.eclass (Fix bug 60668: Galeon
doesn't build without oji enabled, so enable it regardless of USE=java)
15 Aug 2004; Aron Griffis <agriffis@gentoo.org> mozilla-1.6-r1.ebuild,
mozilla-1.7-r1.ebuild, mozilla-1.7.2.ebuild, mozilla-1.7.ebuild:
Fix bug 60285: the negated conditions in DEPEND were expressed incorrectly,
for example !moznoxft is wrong, it should be !moznoxft?
14 Aug 2004; <plasmaroo@gentoo.org> mozilla-1.7.2.ebuild:
Marking stable on "x86"; bug #59419.
09 Aug 2004; Jason Wever <weeve@gentoo.org> mozilla-1.7.2.ebuild:
Stable on sparc wrt security bug #59419.
08 Aug 2004; <agriffis@gentoo.org> mozilla-1.7.2.ebuild:
Now that mozilla.org has re-released the source tarball, switch to theirs
instead of mine, and call it source3. I wouldn't care except that theirs seems
to build with mozsvg whereas mine doesn't.
08 Aug 2004; <agriffis@gentoo.org> mozilla-1.7.2.ebuild:
stable on alpha and ia64
09 Aug 2004; Tom Martin <slarti@gentoo.org> mozilla-1.7.2.ebuild:
Stable on amd64 for security bug #59419.
*mozilla-1.7.2 (08 Aug 2004)
08 Aug 2004; Aron Griffis <agriffis@gentoo.org>
+files/ipc-1.0.7-nsPipeChannel.patch, +mozilla-1.7.2.ebuild:
Bump to 1.7.2 using source2 tarball, completed using 'make -f client.mk
checkout'
05 Aug 2004; Gustavo Zacarias <gustavoz@gentoo.org> mozilla-1.7.ebuild:
Stable on sparc
24 Jul 2004; Aron Griffis <agriffis@gentoo.org> mozilla-1.7-r1.ebuild:
Use emake -j1 for security stuff #58049
*mozilla-1.7-r1 (22 Jul 2004)
22 Jul 2004; Aron Griffis <agriffis@gentoo.org> +mozilla-1.7-r1.ebuild:
New ~arch revision to try switching to emake and move mozilla-launcher to
RDEPEND #57352
22 Jul 2004; Travis Tilley <lv@gentoo.org> mozilla-1.7.ebuild:
stable on amd64
22 Jul 2004; Brad Laue <brad@gentoo.org> mozilla-1.7.ebuild:
Stable on x86.
04 Jul 2004; Brad Laue <brad@gentoo.org> mozilla-1.7.ebuild:
Remove mozaccess, mozxmlterm USE flags, as these are a hazard. They're not for
end-use, and are broken or constantly moving around upstream as it is.
25 Jun 2004; Aron Griffis <agriffis@gentoo.org> mozilla-1.7.ebuild:
Fix bug 54519: stop using get_number_of_jobs
25 Jun 2004; Aron Griffis <agriffis@gentoo.org> mozilla-1.6-r1.ebuild:
QA - fix use invocation
22 Jun 2004; Brad Laue <brad@gentoo.org> files/icon/mozilla.desktop,
mozilla-1.7.ebuild:
Move the Mozilla .desktop menu entry to the freedesktop compliant location.
Further enhancement including translations to follow.
20 Jun 2004; Danny van Dyk <kugelfang@gentoo.org> mozilla-1.7.ebuild:
Disabled the amd64 patch as it is not necessary any longer.
19 Jun 2004; Aron Griffis <agriffis@gentoo.org> mozilla-1.6-r1.ebuild,
mozilla-1.7.ebuild, mozilla-1.7_rc1-r1.ebuild, mozilla-1.7_rc2.ebuild,
mozilla-1.7_rc3.ebuild:
Fix bug 54402: change mozilla description from browser to application suite
19 Jun 2004; Aron Griffis <agriffis@gentoo.org> mozilla-1.6-r1.ebuild,
mozilla-1.7.ebuild, mozilla-1.7_rc1-r1.ebuild, mozilla-1.7_rc2.ebuild,
mozilla-1.7_rc3.ebuild:
Fix bug 54402: change mozilla description from browser to application suite
*mozilla-1.7 (19 Jun 2004)
19 Jun 2004; Brad Laue <brad@gentoo.org> +mozilla-1.7.ebuild:
Bump to Mozilla 1.7.
17 Jun 2004; Aron Griffis <agriffis@gentoo.org> mozilla-1.7_rc2.ebuild,
mozilla-1.7_rc3.ebuild:
Fix bug 54158: enigmail upstream changed the tarball content without bumping
the version. Use the new tarball on mirror://gentoo to solve the problem. When
the next version of enigmail is released, plan to switch back to the upstream
tarball.
*mozilla-1.7_rc3 (09 Jun 2004)
09 Jun 2004; Aron Griffis <agriffis@gentoo.org> +mozilla-1.7_rc3.ebuild:
Update to 1.7_rc3
*mozilla-1.7_rc2 (09 Jun 2004)
09 Jun 2004; Aron Griffis <agriffis@gentoo.org>
+files/ipc-1.0.6-nsPipeChannel.patch, -mozilla-1.7_beta-r1.ebuild,
mozilla-1.7_rc1-r1.ebuild, -mozilla-1.7_rc1.ebuild, +mozilla-1.7_rc2.ebuild:
Update to 1.7_rc2. Trim older 1.7 versions
07 May 2004; Aron Griffis <agriffis@gentoo.org> mozilla-1.7_beta-r1.ebuild,
mozilla-1.7_rc1-r1.ebuild, mozilla-1.7_rc1.ebuild:
Depend on mozilla-launcher-1.7-r1 which installs in /usr/libexec
02 May 2004; Aron Griffis <agriffis@gentoo.org> mozilla-1.7_rc1-r1.ebuild:
Update to >=mozilla-launcher-1.5 since it has more 1.7 fixes
02 May 2004; Aron Griffis <agriffis@gentoo.org> mozilla-1.7_rc1-r1.ebuild:
Use >=mozilla-launcher-1.3 since it has the 1.7 fixes
*mozilla-1.7_rc1-r1 (29 Apr 2004)
29 Apr 2004; Aron Griffis <agriffis@gentoo.org> +mozilla-1.7_rc1-r1.ebuild:
- Fixed bug 31581 (xprint disabled in mozilla ebuild)
- Fixed bug 24522 (re-enable SVG support on mozilla)
- Fixed bug 25332 (pentium4 should be fixed in gcc-3.2.3)
- Re-organized src_compile into sections and cleaned up
ENABLE_OPTIMIZE handling using flag-o-matic functions; no more
finagling CFLAGS with bash substitutions in the ebuild
- Move all CFLAGS and arch handling into src_compile to correct QA errors
26 Apr 2004; Aron Griffis <agriffis@gentoo.org> mozilla-1.7_rc1.ebuild:
- Fix bug 21667 (replacing -march=pentium4 in mozilla ebuilds
outdated) by checking for gcc >= 3.2.3
- Fix bug 48878 (mozilla-1.7_rc1 pkg-config files say 1.7b) by
overwriting milestone.txt in src_unpack
26 Apr 2004; Aron Griffis <agriffis@gentoo.org>
+files/mozilla-1.6-gcc-3.4.patch, mozilla-1.6-r1.ebuild:
Fix bug 47870 (mozilla fails to compile with gcc 3.4) with one-line patch. The
patch doesn't seem to apply to 1.7, hopefully the problem is already fixed
there
26 Apr 2004; Aron Griffis <agriffis@gentoo.org>
+files/mozilla-1.7-amd64.patch, mozilla-1.7_beta-r1.ebuild,
mozilla-1.7_rc1.ebuild:
Update amd64 patch for bug 45378. Thanks to Duncan Hill and Nigel Hannam for
the updated patch
*mozilla-1.7_rc1 (26 Apr 2004)
26 Apr 2004; Aron Griffis <agriffis@gentoo.org> mozilla-1.6-r1.ebuild,
mozilla-1.7_beta-r1.ebuild, mozilla-1.7_rc1.ebuild:
- Honor moznomail for enigmail, ipc and gnupg in SRC_URI.
- Fix bug 45671 (mozilla 1.6-r1 compiled with -fstack-protector
crashes on keyboard input) with filter-flags in both 1.6-r1 and
1.7_rc1
- Remove entire installed instance from /usr/lib/mozilla 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
30 Mar 2004; Donnie Berkholz <spyderous@gentoo.org>; mozilla-1.6-r1.ebuild,
mozilla-1.7_alpha.ebuild, mozilla-1.7_beta-r1.ebuild,
mozilla-1.7_beta.ebuild:
Change x11-base/xfree dependency to virtual/x11.
28 Mar 2004; Aron Griffis <agriffis@gentoo.org> mozilla-1.7_beta-r1.ebuild:
Add missing dodir before dosym for bug 46049
28 Mar 2004; Aron Griffis <agriffis@gentoo.org> -mozilla-1.5-r1.ebuild,
-mozilla-1.6.ebuild:
Remove older ebuilds for bug 43072: Cross-domain javascript exploit
29 Mar 2004; Lars Weiler <pylon@gentoo.org> mozilla-1.6-r1.ebuild:
stable on ppc
28 Mar 2004; Jon Portnoy <avenj@gentoo.org> mozilla-1.6-r1.ebuild :
Stable on AMD64
*mozilla-1.7_beta-r1 (27 Mar 2004)
27 Mar 2004; Aron Griffis <agriffis@gentoo.org> mozilla-1.7_beta-r1.ebuild:
Add dependency on mozilla-launcher to bring this up to par with firefox
capabilities. Shorten the ebuild from 621 to 553 lines. Also update
syntax: replace [...] with [[...]]; replace backticks with $(...); replace
if [ -n `use ...` ] with if use ...; employ use_enable/use_with when
possible
*mozilla-1.7_beta (23 Mar 2004)
23 Mar 2004; Brad Laue <brad@gentoo.org> mozilla-1.7_beta.ebuild:
Add Mozilla 1.7 beta. Currently needing the most testing is the new GNOME-VFS
support for smb:// URLs.
21 Mar 2004; Aron Griffis <agriffis@gentoo.org> mozilla-1.5-r1.ebuild,
mozilla-1.6-r1.ebuild, mozilla-1.6.ebuild, mozilla-1.7_alpha.ebuild:
Fix bug 33159 by making virtual/xft dependant on !moznoxft. This is really
kinda silly since mozilla requires xfree, which provides virtual/xft, but
whatever. Also remove deprecated ? : syntax from DEPEND
18 Mar 2004; Aron Griffis <agriffis@gentoo.org> files/mozilla.sh:
Fix bug 25556 by using "$@" instead of $* in mozilla.sh, thanks to Zhen Lin
who reported this on 2003-07-30
09 Mar 2004; <agriffis@gentoo.org> mozilla-1.6-r1.ebuild:
stable on alpha and ia64
08 Mar 2004; Gustavo Zacarias <gustavoz@gentoo.org> mozilla-1.6-r1.ebuild:
stable on sparc
07 Mar 2004; Brad Laue <brad@gentoo.org> mozilla-1.6-r1.ebuild:
Stable on x86. New version of enigmail, and Xinerama support.
*mozilla-1.7_alpha (25 Feb 2004)
25 Feb 2004; Brad Laue <brad@gentoo.org> mozilla-1.7_alpha.ebuild,
files/mozilla-rebuild-databases.pl, files/icon/mozilla-icon.png,
files/icon/mozilla.desktop:
Mozilla 1.7 alpha, masked for testing.
*mozilla-1.6-r1 (15 Feb 2004)
15 Feb 2004; Brad Laue <brad@gentoo.org> mozilla-1.6-r1.ebuild:
Bump to the next version of enigmail, and enable experimental (for now)
xinerama support.
15 Feb 2004; Brad Laue <brad@gentoo.org> files/10mozilla:
Add /usr/lib/mozilla/defaults/pref to CONFIG_PROTECT, saving local
administrative changes to mozilla behaviour across upgrades.
Be careful to update the files in this directory, as they're sure to change
often.
09 Feb 2004; <gustavoz@gentoo.org> mozilla-1.6.ebuild:
Marked stable on sparc
06 Feb 2004; Brad Laue <brad@gentoo.org> mozilla-1.6.ebuild:
Bump to stable on x86.
29 Jan 2004; Aron Griffis <agriffis@gentoo.org> mozilla-1.5-r1.ebuild:
stable on alpha and ia64
17 Jan 2004; Bartosch Pixa <darkspecter@gentoo.org> mozilla-1.5-r1.ebuild:
set ppc in keywords
*mozilla-1.6 (16 Jan 2004)
16 Jan 2004; Brad Laue <brad@gentoo.org> mozilla-1.6.ebuild:
Bump to Mozilla 1.6. Many new features/bugfixes.
29 Dec 2003; Jason Wever <weeve@gentoo.org> :
removed stray digest file.
*mozilla-1.6b (14 Dec 2003)
14 Dec 2003; Brad Laue <brad@gentoo.org> mozilla-1.6b.ebuild:
Bump masked version to 1.6b.
27 Nov 2003; Brad Laue <brad@gentoo.org> mozilla-1.5-r1.ebuild:
Remove the mozaccess USE flag, as the warning isn't enough to prevent people
from valiantly trying to build it :P
22 Nov 2003; Jason Wever <weeve@gentoo.org> mozilla-1.5-r1.ebuild:
Marked stable on sparc.
21 Nov 2003; Aron Griffis <agriffis@gentoo.org> mozilla-1.5-r1.ebuild,
mozilla-1.6a.ebuild:
Another fix to alpha/ia64 CFLAGS handling
*mozilla-1.6a (20 Nov 2003)
20 Nov 2003; Brad Laue <brad@gentoo.org> mozilla-1.6a.ebuild:
Introducing Mozilla 1.6a, to aid in the release of new final versions.
20 Nov 2003; Aron Griffis <agriffis@gentoo.org> mozilla-1.5-r1.ebuild:
Minor fix to alpha/ia64 CFLAGS handling
18 Nov 2003; Aron Griffis <agriffis@gentoo.org> mozilla-1.5-r1.ebuild:
Merge arch-specific CFLAGS into a single case statement. Make it work for ia64
and alpha
18 Nov 2003; Brad Laue <brad@gentoo.org> mozilla-1.5-r1.ebuild:
At long last, move 1.5 into stable.
There are a number of upstream QA issues, such as the non-default extension
access-builtin failing to build properly. Please read all the ebuild messages
before proceeding with your build, as you may need to alter your moz* USE
flags slightly.
mozsvg support has been removed from this release, as the code in the mozilla
trunk is old. Discussion of merging the new branch SVG code into the
mozilla ebuilds is taking place with the Mozilla SVG project people, and will
result in far better SVG support than has been available in previous Mozilla
builds.
*mozilla-1.5-r1 (16 Nov 2003)
16 Nov 2003; Brad Laue <brad@gentoo.org> mozilla-1.4.1.ebuild,
mozilla-1.5-r1.ebuild:
Bump version for new enigmail, import mozilla 1.4.1
14 Nov 2003; Aron Griffis <agriffis@gentoo.org> mozilla-1.4-r3.ebuild:
Stable on ia64
25 Oct 2003; Brad Laue <brad@gentoo.org> mozilla-1.5.ebuild:
Add a warning about the non-default extensions, as they're not guaranteed to
build and will break the mozilla compile from time to time. Use at your own
risk.
20 Oct 2003; Brad Laue <brad@gentoo.org> mozilla-1.5.ebuild:
Re-enable support for SMP, clean up some commentary in the ebuild, fix moz*
local USE flags to reflect the new defaults for mozilla 1.5
18 Oct 2003; Brad Laue <brad@gentoo.org> mozilla-1.5.ebuild:
Fix ipc download site for mozilla 1.5
18 Oct 2003; Brad Laue <brad@gentoo.org> mozilla-1.0.1-r3.ebuild,
mozilla-1.1-r1.ebuild, mozilla-1.2.1-r5.ebuild, mozilla-1.3-r2.ebuild,
mozilla-1.4-r3.ebuild, mozilla-1.4-r4.ebuild:
Fix SRC_URI to reflect the new ftp.mozilla.org directory structure
17 Oct 2003; Brad Laue <brad@gentoo.org> mozilla-1.5.ebuild:
Fix package URL for the tarball - ftp.mozilla.org directory structure has
changed since the move to oregonstate.
*mozilla-1.5 (17 Oct 2003)
17 Oct 2003; Brad Laue <brad@gentoo.org> mozilla-1.5.ebuild:
Version bump - Mozilla 1.5
02 Oct 2003; Brad House <brad_mssw@gentoo.org> mozilla-1.4-r4.ebuild,
files/mozilla-1.4-amd64.patch:
amd64 build fixes based on mandrakes patch set
25 Sep 2003; Tavis Ormandy <taviso@gentoo.org> mozilla-1.4-r4.ebuild:
add -L/usr/X11R6/lib on alpha.
*mozilla-1.4-r4 (21 Sep 2003)
21 Sep 2003; Brad Laue <brad@gentoo.org> mozilla-1.3-r2.ebuild,
mozilla-1.4-r2.ebuild, mozilla-1.4-r4.ebuild:
Enigmail version bump
11 Sep 2003; Luca Barbato <lu_zero@gentoo.org> mozilla-1.4-r3.ebuild:
Added a fix for ppc and reordered a bit
20 Aug 2003; Luca Barbato <lu_zero@gentoo.org> mozilla-1.4-r3.ebuild:
Marked ppc
12 Aug 2003; Jason Wever <weeve@gentoo.org> mozilla-1.4-r3.ebuild:
Changed ~sparc keyword to sparc.
04 Aug 2003; Aron Griffis <agriffis@gentoo.org> mozilla-1.4-r3.ebuild:
Stable on alpha
04 Aug 2003; Brad Laue <brad@gentoo.org> mozilla-1.4-r3.ebuild:
Stable on x86
03 Aug 2003; Brad Laue <brad@gentoo.org> mozilla-1.4-r3.ebuild:
Filter the same flags firebird does.
*mozilla-1.4-r3 (31 Jul 2003)
31 Jul 2003; Brad Laue <brad@gentoo.org> mozilla-1.4-r3.ebuild:
New enigmail version (again)
*mozilla-1.4-r2 (26 Jul 2003)
26 Jul 2003; Brad Laue <brad@gentoo.org> mozilla-1.4-r2.ebuild:
Stable on x86.
*mozilla-1.4-r2 (24 Jul 2003)
24 Jul 2003; Brad Laue <brad@gentoo.org> mozilla-1.4-r2.ebuild:
Another enigmail version bump.
*mozilla-1.4-r1 (18 Jul 2003)
18 Jul 2003; Brad Laue <brad@gentoo.org> mozilla-1.4-r1.ebuild:
Enigmail version bump, track download sites
18 Jul 2003; Brad Laue <brad@gentoo.org> mozilla-1.4.ebuild:
Build fix on 2.6 series kernels.
13 Jul 2003; Martin Schlemmer <azarah@gentoo.org> files/1.2/mozilla-1.2-image-reload-memleak.patch :
Fix trailing CRs cause patch to fail with latest patch (2.5.9).
12 Jul 2003; foser <foser@gentoo.org> mozilla-1.4.ebuild :
Make orbit dep gtk1 only (#18153)
12 Jul 2003; Brad Laue <brad@gentoo.org> mozilla-1.4.ebuild:
Stable on x86
12 Jul 2003; Brad Laue <brad@gentoo.org> mozilla-1.4.ebuild:
Re-enable mozcalendar, as this builds with no dependencies anymore.
11 Jul 2003; Brad Laue <brad@gentoo.org> mozilla-1.4.ebuild:
Remove the mozinterfaceinfo keyword, as this is built by default as part of
webservices. Possible addition of moznowebservices by Azarah to come.
10 Jul 2003; Christian Birchinger <joker@gentoo.org> mozilla-1.4.ebuild:
Use replace-sparc64-flags from flag-o-matic.eclass to replace the sparc64
CFLAGS
09 Jul 2003; Brad Laue <brad@gentoo.org> mozilla-1.4.ebuild,
files/enigmail-0.76.1-Makefile:
Remove makemake from the ebuild and return to the practice of a prebuilt
makefile for enigmail - too many dependency problems were caused by one simple
script.
08 Jul 2003; Tavis Ormandy <taviso@gentoo.org> mozilla-1.4.ebuild:
explicitly link with libX11 on alpha.
08 Jul 2003; Brad Laue <brad@gentoo.org> mozilla-1.4.ebuild:
Add dependency on tcsh if USE="crypt", as ./makemake requires it.
08 Jul 2003; Brad Laue <brad@gentoo.org> mozilla-1.4.ebuild:
Bring Mozilla 1.4 with enigmail out into the open now that mozdev is back and
the files are on our mirrors.
Small change to the enigmail sources, which seem not to include a Makefile
anymore. Oh well.
*mozilla-1.4 (06 Jul 2003)
06 Jul 2003; Martin Schlemmer <azarah@gentoo.org> mozilla-1.4.ebuild:
New version. Some cleanups; enigmail needs fixing as I cannot connect
to mozdev.org.
29 Jun 2003; Tavis Ormandy <taviso@gentoo.org> mozilla-1.3-r2.ebuild:
stable on alpha
20 Jun 2003; Jason Wever <weeve@gentoo.org> mozilla-1.3-r2.ebuild:
Changed ~sparc keyword to sparc.
*mozilla-1.3-r2 (09 Jun 2003)
09 Jun 2003; Brad Laue <brad@gentoo.org> mozilla-1.3-r2.ebuild:
Compile fix for Pentium 4 users - filter out -msse2 if it's present in CFLAGS
21 May 2003; Martin Schlemmer <azarah@gentoo.org> mozilla-1.3-r1.ebuild :
Mark stable for x86. Update enigmail bug #20234.
27 Apr 2003; Martin Schlemmer <azarah@gentoo.org> mozilla.sh :
Fix it to run with bash and not sh, as it have bash specific features,
bug #19782.
18 Apr 2003; foser <foser@gentoo.org> mozilla-1.3-r1.ebuild :
Fixed xft dep to be virtual
10 Apr 2003; Martin Schlemmer <azarah@gentoo.org> mozilla-1.3-r1.ebuild :
Change permissions on compreg.dat in hope to fix bug #19034.
30 Mar 2003; Martin Schlemmer <azarah@gentoo.org> mozilla-1.3-r1.ebuild :
Seems like the mail component have issues if the composer is disabled,
so only disable if we disable mail.
*mozilla-1.3-r1 (22 Mar 2003)
22 Mar 2003; Martin Schlemmer <azarah@gentoo.org> mozilla-1.3-r1.ebuild :
Add Gtk2 patch. Add default/prefs/xft.js when Xft is enabled. Some other
long overdue cleanups.
*mozilla-1.3 (18 Mar 2003)
21 Mar 2003; Jay Kwak <jayskwak@gentoo.org> mozilla-1.3.ebuild :
Add XIM input patch for GTK
18 Mar 2003; Martin Schlemmer <azarah@gentoo.org> mozilla-1.3.ebuild :
New version.
13 Mar 2003; Olivier Reisch <doctomoe@gentoo.org> mozilla-1.2.1-r5.ebuild :
Marked ppc stable
*mozilla-1.3_beta (23 Feb 2003)
23 Feb 2003; Martin Schlemmer <azarah@gentoo.org> mozilla-1.3_beta.ebuild :
New version.
*mozilla-1.2.1-r5 (19 Jan 2003)
04 Mar 2003; Jason Wever <weeve@gentoo.org> mozilla-1.2.1-r5.ebuild:
Changing ~sparc to sparc as this works well, has no reported bugs, and the
current stable mozilla (1.0.1-r3) breaks during compile.
29 Jan 2003; Jack Morgan <jmorgan@gentoo.org> mozilla-1.2.1-r*.ebuild :
Fixed replace-flags
19 Jan 2003; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.1-r5.ebuild :
Fix a memory leak when reloading images:
http://bugs.gentoo.org/show_bug.cgi?id=13667
http://bugzilla.mozilla.org/show_bug.cgi?id=179498
09 Jan 2003; Jack Morgan <jmorgan@gentoo.org> mozilla-1.2.1-r4.ebuild :
Added sparc support with replace-flags (bug #13554 - thanks to Kumba)
09 Jan 2003; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.1-r4.ebuild :
We set -O in ./configure to -O1, as -O2 cause crashes on startup ...
(bug #13287)
*mozilla-1.2.1-r4 (26 Dec 2002)
26 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.1-r4.ebuild :
Same as last -r3, just created to make sure we have all the fixes, and
marked stable for x86.
26 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.1-r3.ebuild :
Update google search plugin, closing bug #10605.
Fix my braindead stuff up with the "WANT_GTK2" fix of yesterday.
25 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.1-r3.ebuild :
Add pkg_setup() to not build with gtk2 support if the user did not export
WANT_GTK2="yes". I did this due to the multitude of problems with gtk2
support (plugins do not work, crashes, etc).
23 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.1-r3.ebuild :
Some cleanups for the java-config stuff in an effort to resolve bug #12610.
17 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.1-r3.ebuild :
Update mozilla-1.2.1-Xrender-includes.patch.bz2 to hopefully (?) fix #12223.
16 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.1-r3.ebuild :
Update mozilla-1.2.1-Xrender-includes.patch.bz2 to truely fix #12223.
16 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.1-r3.ebuild :
Currently --enable-elf-dynstr-gc only works for x86 and ppc, thanks
to Jason Wever <weeve@gentoo.org> for the fix.
*mozilla-1.2.1-r3 (16 Dec 2002)
16 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.1-r3.ebuild :
Fix include problem with Xrender if the updated headers are not installed
system wide. Should close bug #12223.
15 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.1-r2.ebuild :
Add missing dirs for Xrender includes and libs.
*mozilla-1.2.1-r2 (14 Dec 2002)
15 Dec 2002; Martin Holzer <mholzer@gentoo.org> mozilla-1.2.1-r2.ebuild :
Fixed SRC_URI for the patch.
14 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.1-r2.ebuild :
Update to use fontconfig-2.1 tarball (Xft2.0.1, bugfixed Xrender). Modify
Xft and Xrender to install libXft_moz.so* and libXrender_moz.so*, and mozilla
to link to those. This should hopefully fix bugs where mozilla do not start.
09 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.1-r1.ebuild :
Just add more checks to see if we should apply patches/whatever that are
Xft2.0 related. Fix NSS headers that was not all installed ...
06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
*mozilla-1.2.1-r1 (08 Dec 2002)
15 Dec 2002; Martin Holzer <mholzer@gentoo.org> mozilla-1.2.1-r1.ebuild :
Fixed SRC_URI for the patch.
08 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.1-r1.ebuild :
Add 'moznoxft' USE flag, closing bug #11680. Remove cutnpaste-limit-fix
patch, as it seems flaky with 1.2.1. Remove '--disable-jsd' configure
flag, as it disabled venkman.
05 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.1.ebuild :
Add pango-1.1 detection back to Xft detection if 'gtk2' in USE, else
mozilla segfaults, as its linked to both Xft1.1 and Xft2.0.
Fix digest again. Hope mozilla devs dont make changing the tarball a
habit ..
Seems gcc-3.2.1 is not stable enouth yet to handle -march=pentium4, so
change pentium4 to pentium3 again for all gcc3's
*mozilla-1.2.1 (05 Dec 2002)
05 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.1.ebuild :
Update version.
04 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.ebuild :
Also add Xft2.0 to pango-1.1 check, possibly fixing bug #11576.
Add inherit flag-o-matic to 1.0-r3 and 1.1-r1, closing bug #11584.
02 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.ebuild :
Change --with-extensions to --enable-extensions. Add "mznoirc"
USE flag. This closes 11452.
02 Dec 2002; Maik Schreiber <blizzy@gentoo.org> files/digest-mozilla-1.2:
Fixed digest. This closes bug #11427.
02 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.ebuild :
Mozilla people updated the tarball, so no need for the branch update.
Add get_number_of_jobs() stuff, thanks to nall <nall@gentoo.org>.
01 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.ebuild :
Do not disable Xft for gtk2, as we depend on gtk+-2.1 (hopefully we
can get this into portage real soon). Comment out calendar stuff
for now.
*mozilla-1.2 (30 Nov 2002)
30 Nov 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.ebuild :
New version. People that use DHTML should rather avoid this version, as
its broken in 1.2:
http://slashdot.org/article.pl?sid=02/11/30/0029226
This should resolve bugs #11285 and #11395.
21 Nov 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2_beta.ebuild :
Add pkgconfig to DEPEND, closing bug #11036.
20 Nov 2002; Martin Schlemmer <azarah@gentoo.org> *.ebuild :
Change to new shared nsplugin scheme, bug #10056. Add strip-flags,
closing bug #10772.
19 Nov 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2_beta.ebuild :
Add DEPEND on !gtk2? dev-libs/libIDL, closing bug #10955.
19 Nov 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2_beta.ebuild :
Do not enable Xft2.0 if we are building with gtk2, as it causes mozilla to
segfault do to it being linked to libXft.so.1.1 *and* libXft.so.2.0.
Change the perl sed's for mozilla-config and pkgconfig files to use $MY_PV2
and *not* $PV.
*mozilla-1.2_beta (18 Nov 2002)
18 Nov 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2_beta.ebuild :
New version of 1.2b. This adds Xft2.0 support without having to install
Xft2.0 (and possibly break other things), as Xft2.0 is build with mozilla
and installed in /usr/lib/mozilla. Hope this makes up for the long wait :)
Thanks to Jelmer Jaarsma <dis-k@diska.dyndns.org> (bug #9319) for the
gtk2 patch.
*mozilla-1.0.1-r3 (12 Nov 2002)
15 Dec 2002; Martin Holzer <mholzer@gentoo.org> mozilla-1.0.1-r3.ebuild :
Fixed SRC_URI for the patch.
18 Nov 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.0.1-r3.ebuild :
Mark as stable.
12 Nov 2002; Martin Schlemmer <azarah@gentoo.org> :
Update some patches from Redhat. Disable short-wchar. Disable libmng.
Disable xprint. All these to try and stabilize things a bit. Test seem
better.
*mozilla-1.0.1-r2 (19 Oct 2002)
24 Oct 2002; Seemant Kulleen <seemant@gentoo.org> mozilla-1.0.1-r2.ebuild :
Added a patch to remove reading the PLATFORM environment variable as this
broke compilation on sparc64. This patch was provided by:
wtc@netscape.com (Wan-Teh Chang) in this bug report:
http://bugzilla.mozilla.org/show_bug.cgi?id=174143 as it is an upstream
bugfix.
19 Oct 2002; Martin Schlemmer <azarah@gentoo.org> :
Add the abi-compat patch back, thanks to Tony Clark.
18 Oct 2002; Seemant Kulleen <seemant@gentoo.org> :
Add an ABI fix for sparc/sparc64 gcc-3.x based systems.
17 Oct 2002; Martin Schlemmer <azarah@gentoo.org> :
Add a fix for bug #7656. This fix the missing headers from
X11/extensions/ in the X include dir.
13 Oct 2002; Martin Schlemmer <azarah@gentoo.org> :
Add five patches from Mandrake (actually for moz-1.1 that I hacked
to work for 1.0.1) that fixes various crashes. This seems to fix
the "crash on form submit bug" (bug #4715).
*mozilla-1.0.1-r1 (03 Oct 2002)
03 Oct 2002; Martin Schlemmer <azarah@gentoo.org> :
Remove '--disable-dtd-debug' from configure, as it seems
to fix the unstability in mozilla. Bug #4715 related.
*mozilla-1.0.1 (28 Sep 2002)
28 Sep 2002; Martin Schlemmer <azarah@gentoo.org> :
New version.
*mozilla-1.1-r1 (7 Sep 2002)
9 Sep 2002; Spider <spider@gentoo.org> mozilla-1.1-r1.ebuild :
added the patch to make galeon cvs head build with "use gtk2"
7 Sep Martin Schlemmer <azarah@gentoo.org> mozilla-1.1-r1.ebuild :
Install pkgconfig files (*.pc). This should resolve bug #7571.
*mozilla-1.1 (30 Aug 2002)
30 Aug 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.1.ebuild :
Update version. Also cleaned up the build some what. Gtk+-2.0 support
seems usable for a change, and it also installs mozilla-remote-client,
thus our script will open additional URL's in the same session for
gtk2 version.
Added Enigmail support if "crypt" in USE, and the mail addon is built,
thanks to J Robert Ray <jrray@jrray.org>, closing bug #7149.
27 Aug 2002; Wout Mertens <wmertens@gentoo.org> mozilla-1.1_beta :
Changed install so that the emerge process needs rougly 80MB harddisk space
less. (Which brings it down to a mere 550MB :) ) Only applied to the beta
because I don't want to break stuff unintentionally, but it should work for
the 1.0 ebuilds as well. Feel free to add it to them.
11 Aug 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-{1.0-r3,1.1_beta} :
Update DEPEND to use portage-2.0.14 or later.
30 Jul 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-{1.0-r3,1.1_beta} :
Some gcc-3 fixes for pentium 4.
02 Aug 2002; Mark Guertin <gerk@gentoo.org> mozilla-{1.0-r3,1.1_beta} :
Added PPC ABI gcc 3.1 patches by Franz Sirl, see url for details
http://bugzilla.mozilla.org/show_bug.cgi?id=142594
Tested on gcc 3.2_pre PPC ok w/ 1.0 and 1.1a (there is no 3.1.x ppc setup)
*mozilla-1.1_beta (30 Jul 2002)
30 Jul 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.1_beta :
Enable the mozilla-1.0-asm-fixes.patch again, as it fixes some
build problems with gcc-3.x.
*mozilla-1.0-r4 (25 Jul 2002)
25 Jul 2002; Spider <spider@gentoo.org> mozilla-1.0-r4.ebuild:
minor changes to the build process, uses experimental makeedit.eclass
this version shouldn't be unmasked except for testing, as it doesn't do
anything constructive except make the build a bit leaner and smaller in
RAM requirements.
13 Jul 2002; Martin Schlemmer <azarah@gentoo.org> mozilla.sh :
Update to fix a bug with gtk2 (mozilla-xremote-client are not created).
This cause mozilla not to run, or some wierd stuff in the browser window.
Should close bug #4758.
*mozilla-1.0-r3 (7 Jul 2002)
14 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> mozilla-1.0-r3.ebuild :
Added KEYWORDS.
7 Jul 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.0-r3 :
Add gcc-3.1.1 support. Add support for at least the flash and realmedia
plugins. Add gtk2 support.
26 Jun 2002; Martin Schlemmer <azarah@gentoo.org> :
Add support to set NO_MAIL=YES to disable the mail and news components.
This hopefully resolves bug #3575.
*mozilla-1.0-r2 (7 Jun 2002)
14 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> mozilla-1.0-r2.ebuild :
Added KEYWORDS.
7 Jun 2002; Spider <spider@gentoo.org> :
modify the gtk+ dependencies. we dont want gtk2 deps just yet.
*mozilla-1.0-r2 (6 Jun 2002)
6 Jun 2002; Martin Schlemmer <azarah@gentoo.org> :
Add xfree-4.2.0-r11 suppport.
*mozilla-1.0-r1 (5 Jun 2002)
5 Jun 2002; Martin Schlemmer <azarah@gentoo.org> :
The 1.0_rc3-r5* adds gtk+-2.0 support, but breaks galeon, nautilus
and co.
*mozilla-1.0 (5 Jun 2002)
5 Jun 2002; Brandon Low <lostlogic@gentoo.org> :
Took 1.0_rc3-r51 and made it 1.0 werksferme, give it a try!
*mozilla-1.0_rc3-r50 (31 May 2002)
01 May 2002; Martin Schlemmer <azarah@gentoo.org> :
Add all my comments and stuff back. Great work Spider!, but
some of these are bookmarks, etc.
*mozilla-1.0_rc3-r50 (31 May 2002)
31 May 2002; Spider <spider@gentoo.org> :
very experimental gtk2 version of mozilla. Handle with care.
will break galeon 1!
*mozilla-1.0_rc3-r2 (28 May 2002)
28 May 2002; Martin Schlemmer <azarah@gentoo.org> :
Update to compile with freetype-2.0.9.
*mozilla-1.0_rc{2,3}-r1 (26 May 2002)
29 May 2002; Wout Mertens< wmertens@gentoo.org> digest-mozilla-1.0_rc3-r1:
Committed new digest, since it seems the tarball changed
26 May 2002; Martin Schlemmer <azarah@gentoo.org> :
Added dev-libs/expat to DEPEND, resolves bug #3033.
*mozilla-1.0_rc3 (24 May 2002)
24 May 2002; William McArthur <sandymac@gentoo.org> mozilla-1.0_rc3.ebuild:
Updated to 1.0rc3. (Simply bumped the ebuild filename.
*mozilla-1.0_rc2 (13 May 2002)
13 May 2002; Arcady Genkin <agenkin@thpoon.com> mozilla-1.0_rc2.ebuild:
Updated to 1.0rc2.
*mozilla-1.0_rc1-r1 (1 May 2002)
1 Apr 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.0_rc1-r1.ebuild :
Added XFT support.
27 Apr 2002; pvdabeel <pvdabeel@gentoo.org> :
ppc(/sparc) fix 0.9.9 and 1.0-rc1
older ebuild should be masked out or fixed
24 Apr 2002; M.Schlemmer <azarah@gentoo.org> :
Slotted the latest ones.
13 Apr 2002; M.Schlemmer <azarah@gentoo.org> mozilla-0.9.9-r[12].ebuild :
Disable xterm updating. Hopefully this will fix the "beep" during console
problem.
*mozilla-0.9.9-r2 (12 Apr 2002)
12 Apr 2002; Spider <spider@gentoo.org>
Update all glib dependencies to use glib-1.2* in preparation of
unmasking the glib-2.0.1 packages. Update libpng dependency
20 Mar 2002; Chad Huneycutt <chadh@gentoo.org> mozilla-0.9.9-r1.ebuild :
-changed virtual jdk depend to virtual/jre-r1 per karltk's advice for new
java-config functionality
-added java-config to DEPEND
15 Feb 2002; M.Schlemmer <azarah@gentoo.org> mozilla-0.9.8-r3.ebuild :
Hopefully fix package building dud mozilla binary. Further fixes to stale
components and chrome problem.
*mozilla-0.9.8-r2 (7 Feb 2002)
7 Feb 2002; M.Schlemmer <azarah@gentoo.org> mozilla-0.9.8-r2.ebuild :
Rip out libtimer_gtk.so source again, as we just do not need it around
when generating components.reg. Add support for ebuild to remove
libtimer_gtk.so if it is around.
*mozilla-0.9.8-r1 (6 Feb 2002)
6 Feb 2002; M.Schlemmer <azarah@gentoo.org> mozilla-0.9.8-r1.ebuild :
Add source for missing libtimer_gtk.so library (timer-0.9.7.tar.bz2).
*mozilla-0.9.7-r2 (3 Feb 2002)
3 Feb 2002; M.Schlemmer <azarah@gentoo.org> mozilla-0.9.7-r2.ebuild :
Add ${FILESDIR}/mozilla-0.9.7-post.patch to fix a bug in the current version
of mozilla not posting forms in all cases. Resolves bug #349.
*mozilla-0.9.7-r1 (1 Feb 2002)
1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
Added initial ChangeLog which should be updated whenever the package is
updated in any way. This changelog is targetted to users. This means that the
comments should well explained and written in clean English. The details about
writing correct changelogs are explained in the skel.ChangeLog file which you
can find in the root directory of the portage repository.
|