summaryrefslogtreecommitdiff
blob: a8e7bcdb4147c03e607266f41a7f1806e07ef438 (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
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
# ChangeLog for dev-java/sun-jdk
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/sun-jdk/ChangeLog,v 1.233 2008/03/30 23:57:24 robbat2 Exp $

  30 Mar 2008; Robin H. Johnson <robbat2@gentoo.org>
  sun-jdk-1.5.0.15-r1.ebuild:
  Force mtime to change to try and resolve bug #215288.

  28 Mar 2008; Vlastimil Babka <caster@gentoo.org>
  sun-jdk-1.5.0.15-r1.ebuild, sun-jdk-1.6.0.05-r1.ebuild:
  Fix CDS generation on hardened, bug #215225.

*sun-jdk-1.6.0.05-r1 (27 Mar 2008)
*sun-jdk-1.5.0.15-r1 (27 Mar 2008)

  27 Mar 2008; Vlastimil Babka <caster@gentoo.org> -sun-jdk-1.4.2.16.ebuild,
  -sun-jdk-1.5.0.13.ebuild, -sun-jdk-1.5.0.14.ebuild,
  +sun-jdk-1.5.0.15-r1.ebuild, -sun-jdk-1.6.0.03.ebuild,
  -sun-jdk-1.6.0.04.ebuild, +sun-jdk-1.6.0.05-r1.ebuild:
  Remove vulnerable versions. Revbump to create Class Data Sharing
  archive(s), bug #207282.

  27 Mar 2008; Markus Meier <maekke@gentoo.org> sun-jdk-1.5.0.15.ebuild,
  sun-jdk-1.6.0.05.ebuild:
  amd64 stable, security bug #212425

  27 Mar 2008; Christian Faulhammer <opfer@gentoo.org>
  sun-jdk-1.6.0.05.ebuild:
  stable x86, security bug 212425

  27 Mar 2008; Christian Faulhammer <opfer@gentoo.org>
  sun-jdk-1.5.0.15.ebuild:
  stable x86, security bug 212425

*sun-jdk-1.6.0.05 (26 Mar 2008)
*sun-jdk-1.5.0.15 (26 Mar 2008)

  26 Mar 2008; Vlastimil Babka <caster@gentoo.org> +sun-jdk-1.5.0.15.ebuild,
  +sun-jdk-1.6.0.05.ebuild:
  Version bump, security bug #212425.

  06 Mar 2008; Christian Faulhammer <opfer@gentoo.org>
  sun-jdk-1.4.2.17.ebuild:
  stable x86, security bug 212425

*sun-jdk-1.4.2.17 (05 Mar 2008)

  05 Mar 2008; Vlastimil Babka <caster@gentoo.org> +sun-jdk-1.4.2.17.ebuild:
  Version bump, security bug #212425.

  23 Jan 2008; Vlastimil Babka <caster@gentoo.org> sun-jdk-1.6.0.04.ebuild:
  Put back dependency on java-sdk-docs with USE=doc - bug #207181.

*sun-jdk-1.6.0.04 (18 Jan 2008)
*sun-jdk-1.5.0.14 (18 Jan 2008)

  18 Jan 2008; Vlastimil Babka <caster@gentoo.org> files/sun-jdk-1.5.env,
  +sun-jdk-1.5.0.14.ebuild, +sun-jdk-1.6.0.04.ebuild:
  Version bump, bug #205772. Also fix BOOTCLASSPATH for 1.5 - bug #206069.

  16 Dec 2007; Vlastimil Babka <caster@gentoo.org> sun-jdk-1.4.2.16.ebuild,
  sun-jdk-1.5.0.13.ebuild, sun-jdk-1.6.0.03.ebuild:
  Add odbc USE flag and revdep-rebuild control file for bug #177925, tweak the
  deps.

  25 Nov 2007; Vlastimil Babka <caster@gentoo.org> sun-jdk-1.4.2.16.ebuild,
  sun-jdk-1.5.0.13.ebuild, sun-jdk-1.6.0.03.ebuild:
  Remove the now pointless distfiles readability check.

  03 Nov 2007; Vlastimil Babka <caster@gentoo.org> -sun-jdk-1.4.2.15.ebuild,
  -sun-jdk-1.5.0.12.ebuild, -sun-jdk-1.6.0.02.ebuild:
  Remove old versions.

  12 Oct 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  sun-jdk-1.4.2.16.ebuild, sun-jdk-1.5.0.13.ebuild, sun-jdk-1.6.0.03.ebuild:
  amd64 stable, bug #194711. Added quotes, still missing from older soon to be
  removed versions.

  05 Oct 2007; Petteri Räty <betelgeuse@gentoo.org>
  sun-jdk-1.4.2.16.ebuild:
  Add quoting for variables.

  04 Oct 2007; Christian Faulhammer <opfer@gentoo.org>
  sun-jdk-1.6.0.03.ebuild:
  stable x86, security bug 194711

  04 Oct 2007; Christian Faulhammer <opfer@gentoo.org>
  sun-jdk-1.5.0.13.ebuild:
  stable x86, security bug 194711

  04 Oct 2007; Christian Faulhammer <opfer@gentoo.org>
  sun-jdk-1.4.2.16.ebuild:
  stable x86, security bug 194711

*sun-jdk-1.4.2.16 (04 Oct 2007)

  04 Oct 2007; Petteri Räty <betelgeuse@gentoo.org>
  +sun-jdk-1.4.2.16.ebuild:
  Version bump for security bug #194711.

*sun-jdk-1.6.0.03 (27 Sep 2007)
*sun-jdk-1.5.0.13 (27 Sep 2007)

  27 Sep 2007; Petteri Räty <betelgeuse@gentoo.org>
  +sun-jdk-1.5.0.13.ebuild, +sun-jdk-1.6.0.03.ebuild:
  Version bumps.

  21 Aug 2007; Christian Faulhammer <opfer@gentoo.org>
  sun-jdk-1.6.0.02.ebuild:
  stable x86, bug 189277

  22 Jul 2007; Vlastimil Babka <caster@gentoo.org> -sun-jdk-1.4.2.14.ebuild,
  -sun-jdk-1.5.0.11.ebuild, -sun-jdk-1.5.0.11-r1.ebuild,
  -sun-jdk-1.6.0-r1.ebuild, -sun-jdk-1.6.0-r2.ebuild,
  -sun-jdk-1.6.0.01.ebuild:
  Cleanup.

  22 Jul 2007; Wulf C. Krueger <philantrop@gentoo.org>
  sun-jdk-1.5.0.12.ebuild:
  Marked stable on amd64 as per bug 185256.

  22 Jul 2007; Hans de Graaff <graaff@gentoo.org> sun-jdk-1.4.2.14.ebuild,
  sun-jdk-1.4.2.15.ebuild, sun-jdk-1.5.0.11.ebuild,
  sun-jdk-1.5.0.11-r1.ebuild, sun-jdk-1.5.0.12.ebuild,
  sun-jdk-1.6.0-r1.ebuild, sun-jdk-1.6.0-r2.ebuild, sun-jdk-1.6.0.01.ebuild,
  sun-jdk-1.6.0.02.ebuild:
  Drop virtual/x11 references.

  15 Jul 2007; Christian Faulhammer <opfer@gentoo.org>
  sun-jdk-1.5.0.12.ebuild:
  stable x86, security bug 185256

*sun-jdk-1.6.0.02 (12 Jul 2007)

  12 Jul 2007; Petteri Räty <betelgeuse@gentoo.org>
  +sun-jdk-1.6.0.02.ebuild:
  Version bump for bug #184407.

  02 Jul 2007; Christian Faulhammer <opfer@gentoo.org>
  sun-jdk-1.4.2.15.ebuild:
  stable x86, security bug 183580

  02 Jul 2007; Piotr Jaroszyński <peper@gentoo.org>
  sun-jdk-1.5.0.11.ebuild, sun-jdk-1.5.0.11-r1.ebuild,
  sun-jdk-1.5.0.12.ebuild, sun-jdk-1.6.0-r1.ebuild, sun-jdk-1.6.0-r2.ebuild,
  sun-jdk-1.6.0.01.ebuild:
  (QA) RESTRICT clean up.

  28 Jun 2007; Petteri Räty <betelgeuse@gentoo.org>
  sun-jdk-1.4.2.15.ebuild:
  Remove indirect deps from DEPEND.

*sun-jdk-1.4.2.15 (28 Jun 2007)

  28 Jun 2007; Petteri Räty <betelgeuse@gentoo.org>
  +sun-jdk-1.4.2.15.ebuild:
  Version bump.

*sun-jdk-1.5.0.12 (11 Jun 2007)

  11 Jun 2007; Petteri Räty <betelgeuse@gentoo.org>
  +sun-jdk-1.5.0.12.ebuild:
  Version bump.

*sun-jdk-1.6.0.01 (02 Jun 2007)

  02 Jun 2007; Petteri Räty <betelgeuse@gentoo.org>
  +sun-jdk-1.6.0.01.ebuild:
  Version bump. Fixes security bug #178851 and bug #172854.

  04 May 2007; Vlastimil Babka <caster@gentoo.org> sun-jdk-1.4.2.14.ebuild:
  Fix src_unpack() to workaround bash bug triggered by paludis, bug #176979 by
  Bo Ørsted Andresen <bo.andresen@zlin.dk>.

  02 May 2007; Vlastimil Babka <caster@gentoo.org> -sun-jdk-1.4.2.13.ebuild,
  -sun-jdk-1.4.2.13-r1.ebuild, -sun-jdk-1.4.2.13-r2.ebuild:
  Remove vulnerable versions.

  02 May 2007; Raúl Porcel <armin76@gentoo.org> sun-jdk-1.4.2.14.ebuild:
  x86 stable wrt security bug 176675

*sun-jdk-1.4.2.14 (01 May 2007)

  01 May 2007; Vlastimil Babka <caster@gentoo.org> +sun-jdk-1.4.2.14.ebuild,
  -sun-jdk-1.5.0.10.ebuild:
  Version bump for security bug #176675; src.zip moved completely for bug
  #2241; remove 1.5.0.10 vulnerable to the same security bug.

  30 Apr 2007; Petteri Räty <betelgeuse@gentoo.org> files/sun-jdk-1.6.env:
  Remove sunrsasign.jar from BOOTCLASSPATH as it hasn't been in use since 1.4.

  29 Apr 2007; Petteri Räty <betelgeuse@gentoo.org> files/sun-jdk-1.6.env:
  Fix BOOTCLASSPATH to match sun.boot.class.path property.

*sun-jdk-1.6.0-r2 (19 Apr 2007)
*sun-jdk-1.5.0.11-r1 (19 Apr 2007)

  19 Apr 2007; Petteri Räty <betelgeuse@gentoo.org>
  +sun-jdk-1.5.0.11-r1.ebuild, +sun-jdk-1.6.0-r2.ebuild:
  Fix the location of src.zip to match Sun specified JDK directory layout. See
  bug #2241 for more details.

*sun-jdk-1.4.2.13-r2 (19 Apr 2007)

  19 Apr 2007; Petteri Räty <betelgeuse@gentoo.org>
  +sun-jdk-1.4.2.13-r2.ebuild:
  Fix pax markings, 1.4 needs -srpm for bug #174951. And change the location
  of the installed src.zip file to match sun jdk file layout.

  11 Apr 2007; Peter Weller <welp@gentoo.org> sun-jdk-1.5.0.11.ebuild:
  Stable on amd64 wrt bug 173197

  07 Apr 2007; Petteri Räty <betelgeuse@gentoo.org>
  sun-jdk-1.6.0-r1.ebuild:
  Cleanup distfile handling.

  06 Apr 2007; Christian Faulhammer <opfer@gentoo.org>
  sun-jdk-1.5.0.11.ebuild:
  stable x86, bug 173197

*sun-jdk-1.4.2.13-r1 (03 Mar 2007)

  03 Mar 2007; Petteri Räty <betelgeuse@gentoo.org>
  +sun-jdk-1.4.2.13-r1.ebuild:
  Migrate to pax-utils.eclass. Fixes bug #169141.

  11 Feb 2007; Joshua Nichols <nichoj@gentoo.org> sun-jdk-1.6.0-r1.ebuild:
  Applied fix for bug #166397 to 1.6.0-r1.

  11 Feb 2007; Joshua Nichols <nichoj@gentoo.org> sun-jdk-1.5.0.11.ebuild:
  Addressed bug #166397. Only will sed .desktop file and install it if the
  .desktop file exists.

  11 Feb 2007; Petteri Räty <betelgeuse@gentoo.org>
  sun-jdk-1.4.2.13.ebuild, sun-jdk-1.5.0.10.ebuild, sun-jdk-1.5.0.11.ebuild,
  sun-jdk-1.6.0-r1.ebuild:
  Ebuild cleanup. Monolithic X is not supported any more.

*sun-jdk-1.5.0.11 (11 Feb 2007)

  11 Feb 2007; Petteri Räty <betelgeuse@gentoo.org>
  +sun-jdk-1.5.0.11.ebuild:
  Version bump for bug #166305.

  23 Jan 2007; Vlastimil Babka <caster@gentoo.org> -sun-jdk-1.5.0.09.ebuild:
  Remove vulnerable version.

  23 Jan 2007; Steve Dibb <beandog@gentoo.org> sun-jdk-1.5.0.10.ebuild:
  amd64 stable, security bug 162511

  16 Jan 2007; Christian Faulhammer <opfer@gentoo.org>
  sun-jdk-1.5.0.10.ebuild:
  stable x86, bug #162363

  12 Jan 2007; Vlastimil Babka <caster@gentoo.org> sun-jdk-1.6.0-r1.ebuild:
  Make libstdc++ dependency x86-only - amd64 version doesn't contain
  libdeploy.so, the only file linking to it. Bug #161536.

  11 Jan 2007; Petteri Räty <betelgeuse@gentoo.org>
  -sun-jdk-1.5.0.09-r1.ebuild, -sun-jdk-1.6.0.ebuild:
  Removed unused versions.

  11 Jan 2007; Petteri Räty <betelgeuse@gentoo.org>
  sun-jdk-1.6.0-r1.ebuild:
  Added dependency on virtual/libstdc++-3.3. Fixes bug #161536.

  10 Jan 2007; Vlastimil Babka <caster@gentoo.org>
  -sun-jdk-1.4.2.12-r2.ebuild, sun-jdk-1.4.2.13.ebuild,
  -sun-jdk-1.5.0.08.ebuild:
  Remove versions vulnerable to bug #158659. Remove amd64 keyword from
  1.4.2.13 which was added by mistake.

  09 Jan 2007; <malc@gentoo.org> sun-jdk-1.4.2.13.ebuild,
  sun-jdk-1.5.0.09.ebuild:
  Stable on amd64 wrt bug #158659

  05 Jan 2007; Vlastimil Babka <caster@gentoo.org> sun-jdk-1.5.0.08.ebuild,
  sun-jdk-1.5.0.09.ebuild, sun-jdk-1.5.0.09-r1.ebuild:
  Convert einfo to elog.

  23 Dec 2006; Andrej Kacian <ticho@gentoo.org> sun-jdk-1.4.2.13.ebuild:
  Stable on x86, bug #158659.

  23 Dec 2006; Andrej Kacian <ticho@gentoo.org> sun-jdk-1.5.0.09.ebuild:
  Stable on x86, bug #158659.

  17 Dec 2006; Petteri Räty <betelgeuse@gentoo.org>
  sun-jdk-1.6.0-r1.ebuild:
  Change the desktop entry to be more similar to earlier slots.

*sun-jdk-1.6.0-r1 (16 Dec 2006)

  16 Dec 2006; Vlastimil Babka <caster@gentoo.org> +sun-jdk-1.6.0-r1.ebuild:
  Fix the control panel desktop menuitem wrt bug #158243 by nunogt
  <nunogt@gmail.com>.

*sun-jdk-1.6.0 (13 Dec 2006)

  13 Dec 2006; Vlastimil Babka <caster@gentoo.org> +files/sun-jdk-1.6.env,
  +sun-jdk-1.6.0.ebuild:
  A minor version bump I bet nobody cares about (bug #133657).

*sun-jdk-1.5.0.10 (03 Dec 2006)

  03 Dec 2006; Petteri Räty <betelgeuse@gentoo.org>
  +sun-jdk-1.5.0.10.ebuild:
  Version bump using the new pax-utils.eclass (bug #156135). Thanks to Kevin
  F. Quinn <kevquinn@gentoo.org>.

*sun-jdk-1.4.2.13 (23 Nov 2006)

  23 Nov 2006; Vlastimil Babka <caster@gentoo.org> +sun-jdk-1.4.2.13.ebuild:
  Version bump wrt bug #155822.

*sun-jdk-1.5.0.09-r1 (22 Nov 2006)

  22 Nov 2006; Vlastimil Babka <caster@gentoo.org>
  +files/fontconfig.Gentoo.properties, +sun-jdk-1.5.0.09-r1.ebuild:
  Revbump to fix bug #56444 with fontconfig.properties based on RedHat 9.0,
  provided by MATSUU Takuto <matsuu@gentoo.org>.

*sun-jdk-1.5.0.09 (21 Nov 2006)

  21 Nov 2006; Joshua Nichols <nichoj@gentoo.org> +sun-jdk-1.5.0.09.ebuild:
  Version bump, see bug #150421.

  21 Nov 2006; Joshua Nichols <nichoj@gentoo.org>
  sun-jdk-1.4.2.12-r2.ebuild:
  Fixed test expression used for unpacking, see bug #89927.

  17 Oct 2006; Joshua Nichols <nichoj@gentoo.org> -files/sun-jdk-1.2.2.017,
  -files/sun-jdk-1.3.1.17, -files/sun-jdk-1.3.env, -files/sun-jdk-1.4.2.10,
  -sun-jdk-1.4.2.10-r2.ebuild, -sun-jdk-1.4.2.12.ebuild,
  -sun-jdk-1.4.2.12-r1.ebuild:
  Pruned old revisions, as well as stray files.

  14 Oct 2006; Joshua Nichols <nichoj@gentoo.org> sun-jdk-1.5.0.08.ebuild:
  Stabilizing on amd64 as part of new Java system, bug #147254.

  14 Oct 2006; Joshua Jackson <tsunam@gentoo.org>
  sun-jdk-1.4.2.12-r2.ebuild, sun-jdk-1.5.0.08.ebuild:
  New java stable on x86; bug #147254

  28 Sep 2006; Joshua Nichols <nichoj@gentoo.org> sun-jdk-1.4.2.12.ebuild,
  sun-jdk-1.4.2.12-r1.ebuild, sun-jdk-1.5.0.08.ebuild:
  Removed unnecessary dependencies.

*sun-jdk-1.4.2.12-r2 (19 Sep 2006)

  19 Sep 2006; Vlastimil Babka <caster@gentoo.org>
  +sun-jdk-1.4.2.12-r2.ebuild:
  Revision bump to add javaws symlinks wrt bug #147259. Also added QA_TEXTRELS
  and removed virtual/x11 from RDEPEND.

  03 Sep 2006; Joshua Nichols <nichoj@gentoo.org> -sun-jdk-1.2.2.017.ebuild,
  -sun-jdk-1.3.1.17.ebuild, -sun-jdk-1.3.1.17-r10.ebuild:
  Removing versions that have known security issues, bug #140495.

  01 Sep 2006; Joshua Nichols <nichoj@gentoo.org> -sun-jdk-1.5.0.07.ebuild,
  -sun-jdk-1.5.0.07-r1.ebuild, -sun-jdk-1.5.0.07-r2.ebuild,
  -sun-jdk-1.5.0.07-r3.ebuild, sun-jdk-1.5.0.08.ebuild:
  Removed JAVA_VM_NO_GENERATION1, because default behavior now is not to
  install for generation-1. Pruned old revisions.

  01 Sep 2006; Joshua Nichols <nichoj@gentoo.org>
  sun-jdk-1.3.1.17-r10.ebuild, sun-jdk-1.4.2.12-r1.ebuild:
  Added metadata to indicate packages support generation-1.

  16 Aug 2006; Joshua Nichols <nichoj@gentoo.org> sun-jdk-1.5.0.08.ebuild:
  Removed RESTRICT='stricter', and used QA_TEXTRELS instead to specify
  specific files.

*sun-jdk-1.5.0.08 (16 Aug 2006)

  16 Aug 2006; Joshua Nichols <nichoj@gentoo.org> sun-jdk-1.5.0.07.ebuild,
  sun-jdk-1.5.0.07-r1.ebuild, sun-jdk-1.5.0.07-r2.ebuild,
  sun-jdk-1.5.0.07-r3.ebuild, +sun-jdk-1.5.0.08.ebuild:
  Version bump, bug #143970

*sun-jdk-1.5.0.07-r3 (29 Jul 2006)
*sun-jdk-1.4.2.12-r1 (29 Jul 2006)

  29 Jul 2006; Petteri Räty <betelgeuse@gentoo.org>
  sun-jdk-1.4.2.12.ebuild, +sun-jdk-1.4.2.12-r1.ebuild,
  sun-jdk-1.5.0.07-r2.ebuild, +sun-jdk-1.5.0.07-r3.ebuild:
  Made sun_java.desktop installation SLOT compatible. Fixes bug #138834. Also
  added examples that was missing from the IUSE of 1.4.2.12.

*sun-jdk-1.5.0.07-r2 (29 Jul 2006)

  29 Jul 2006; Joshua Nichols <nichoj@gentoo.org>
  +sun-jdk-1.5.0.07-r2.ebuild:
  Revision bump to add back jce support (bug #141878). Patch provided by Caster.

*sun-jdk-1.5.0.07-r1 (23 Jul 2006)

  23 Jul 2006; Joshua Nichols <jnichols@gentoo.org>
  +sun-jdk-1.5.0.07-r1.ebuild:
  Revision bump to use DLJ distfiles (bug #133590).

  06 Jul 2006; Krzysiek Pawlik <nelchael@gentoo.org>
  sun-jdk-1.2.2.017.ebuild, sun-jdk-1.3.1.17.ebuild,
  sun-jdk-1.3.1.17-r10.ebuild, sun-jdk-1.4.2.10-r2.ebuild,
  sun-jdk-1.4.2.12.ebuild, sun-jdk-1.5.0.07.ebuild:
  Removed PROVIDE.

  03 Jul 2006; Petteri Räty <betelgeuse@gentoo.org>
  sun-jdk-1.2.2.017.ebuild, sun-jdk-1.3.1.17.ebuild,
  sun-jdk-1.3.1.17-r10.ebuild:
  Removed useless dependencies on virtual/libc.

*sun-jdk-1.3.1.17-r10 (02 Jul 2006)

  02 Jul 2006; Joshua Nichols <nichoj@gentoo.org>
  +sun-jdk-1.3.1.17-r10.ebuild:
  Updated sun-jdk-1.3 to generation-2

  01 Jul 2006; Joshua Nichols <jnichols@gentoo.org> -files/sun-jdk-1.5.0.06,
  -sun-jdk-1.5.0.06-r2.ebuild:
  Removing unmigrated sun-jdk-1.5

  27 Jun 2006; Joshua Nichols <nichoj@gentoo.org> sun-jdk-1.5.0.07.ebuild:
  Added missing examples USE flag (bug #138179)

*sun-jdk-1.5.0.07 (25 Jun 2006)
*sun-jdk-1.4.2.12 (25 Jun 2006)

  25 Jun 2006; Joshua Nichols <nichoj@gentoo.org> +files/sun-jdk-1.4.env,
  +files/sun-jdk-1.5.env, +sun-jdk-1.4.2.12.ebuild, +sun-jdk-1.5.0.07.ebuild:
  Version bumps, plus support for new Java system.

  12 Mar 2006; Petteri Räty <betelgeuse@gentoo.org>
  -files/sun-jdk-1.3.1.16, sun-jdk-1.3.1.17.ebuild,
  sun-jdk-1.4.2.10-r2.ebuild, sun-jdk-1.5.0.06-r2.ebuild:
  Changed eerrors about needing virtual/x11 to ewarns to fix bug #124258.

  12 Mar 2006; Petteri Räty <betelgeuse@gentoo.org>
  -sun-jdk-1.3.1.16.ebuild, -sun-jdk-1.4.2.10.ebuild,
  -sun-jdk-1.4.2.10-r1.ebuild, -sun-jdk-1.5.0.06.ebuild,
  -sun-jdk-1.5.0.06-r1.ebuild:
  Removed old versions/revisions.

  08 Feb 2006; Saleem Abdulrasool <compnerd@gentoo.org>
  sun-jdk-1.3.1.17.ebuild:
  stable on x86 as per (bug #122156)

*sun-jdk-1.5.0.06-r2 (19 Jan 2006)
*sun-jdk-1.4.2.10-r2 (19 Jan 2006)

  19 Jan 2006; Joshua Nichols <nichoj@gentoo.org>
  +sun-jdk-1.4.2.10-r2.ebuild, +sun-jdk-1.5.0.06-r2.ebuild:
  Added fixes for bug #23579.

  16 Jan 2006; Joshua Nichols <nichoj@gentoo.org>
  sun-jdk-1.4.2.10-r1.ebuild:
  Accidentally marked 1.4.2.10-r1 stable on x86.

*sun-jdk-1.5.0.06-r1 (16 Jan 2006)
*sun-jdk-1.4.2.10-r1 (16 Jan 2006)

  16 Jan 2006; Joshua Nichols <nichoj@gentoo.org>
  +sun-jdk-1.4.2.10-r1.ebuild, +sun-jdk-1.5.0.06-r1.ebuild:
  No longer installs libjsoundalsa.so with USE=-alsa, to fix bug #115734.

  14 Jan 2006; Joshua Nichols <nichoj@gentoo.org> sun-jdk-1.2.2.017.ebuild,
  sun-jdk-1.3.1.16.ebuild, sun-jdk-1.3.1.17.ebuild, sun-jdk-1.4.2.10.ebuild,
  sun-jdk-1.5.0.06.ebuild:
  Removed redundant dependencies provided by java.eclass (bug #118651).

  08 Jan 2006; Joshua Nichols <nichoj@gentoo.org> files/sun-jdk-1.4.2.10:
  Fixed LDPATH (bug #110561).

  28 Dec 2005; Petteri Räty <betelgeuse@gentoo.org>
  -files/sun-jdk-1.4.2.09, -files/sun-jdk-1.5.0.05, -files/javaws-waitid.c,
  -sun-jdk-1.4.2.09.ebuild, -sun-jdk-1.5.0.05.ebuild:
  Removed old versions.

  28 Dec 2005; Petteri Räty <betelgeuse@gentoo.org>
  sun-jdk-1.2.2.017.ebuild, sun-jdk-1.3.1.16.ebuild,
  sun-jdk-1.4.2.09.ebuild, sun-jdk-1.4.2.10.ebuild, sun-jdk-1.5.0.05.ebuild,
  sun-jdk-1.5.0.06.ebuild:
  Disabled stricter for all versions because the upstream binaries have text
  relocations.

*sun-jdk-1.3.1.17 (28 Dec 2005)

  28 Dec 2005; Petteri Räty <betelgeuse@gentoo.org>
  +files/sun-jdk-1.3.1.17, +sun-jdk-1.3.1.17.ebuild:
  Version bump and added proper dependencies. Fixes bug #115738.

  16 Dec 2005; Thomas Matthijs <axxo@gentoo.org> sun-jdk-1.4.2.10.ebuild:
  No longer needs the javaws hack, was fixed upstream #115772

  09 Dec 2005; Petteri Räty <betelgeuse@gentoo.org>
  sun-jdk-1.4.2.10.ebuild, sun-jdk-1.5.0.06.ebuild:
  Removed lib-compat from dependencies because it is not needed by 1.4.2 or
  1.5, fixes bug #115011. Also added proper dependencies to
  sun-jdk-1.4.2.10.ebuild.

*sun-jdk-1.5.0.06 (07 Dec 2005)

  07 Dec 2005; Petteri Räty <betelgeuse@gentoo.org>
  +files/sun-jdk-1.5.0.06, +sun-jdk-1.5.0.06.ebuild:
  Version bump (fixes bug #114334). Added alsa and X use flags to get
  proper dependencies and removed the installation of the LICENSE file.
  This version also fixes the upstream bug #69979.

  29 Nov 2005; Thomas Matthijs <axxo@gentoo.org> sun-jdk-1.4.2.10.ebuild:
  Keyword x86

*sun-jdk-1.4.2.10 (15 Nov 2005)

  15 Nov 2005; Thomas Matthijs <axxo@gentoo.org> +files/sun-jdk-1.4.2.10,
  sun-jdk-1.4.2.09.ebuild, +sun-jdk-1.4.2.10.ebuild:
  version bump

  11 Nov 2005; Thomas Matthijs <axxo@gentoo.org> sun-jdk-1.4.2.09.ebuild,
  sun-jdk-1.5.0.05.ebuild:
  Only install demo and samples when examples use flag in on

  18 Oct 2005; Aron Griffis <agriffis@gentoo.org> sun-jdk-1.3.1.13.ebuild,
  sun-jdk-1.3.1.16.ebuild, sun-jdk-1.4.2.08.ebuild,
  sun-jdk-1.4.2.08-r1.ebuild, sun-jdk-1.4.2.09.ebuild,
  sun-jdk-1.5.0.04.ebuild, sun-jdk-1.5.0.05.ebuild:
  Warn about deprecated browserplugin useflag

  18 Oct 2005; Aron Griffis <agriffis@gentoo.org> sun-jdk-1.3.1.13.ebuild,
  sun-jdk-1.3.1.16.ebuild, sun-jdk-1.4.2.08.ebuild,
  sun-jdk-1.4.2.08-r1.ebuild, sun-jdk-1.4.2.09.ebuild,
  sun-jdk-1.5.0.04.ebuild, sun-jdk-1.5.0.05.ebuild:
  Respect the global USE=nsplugin instead of the local USE=browserplugin

*sun-jdk-1.3.1.16 (13 Oct 2005)

  13 Oct 2005; Thomas Matthijs <axxo@gentoo.org> +files/sun-jdk-1.3.1.16,
  +sun-jdk-1.3.1.16.ebuild:
  version bump #109103

  30 Sep 2005; Thomas Matthijs <axxo@gentoo.org> sun-jdk-1.4.2.08.ebuild,
  sun-jdk-1.4.2.08-r1.ebuild, sun-jdk-1.4.2.09.ebuild:
  depend on glibc bug #102423

*sun-jdk-1.5.0.05 (16 Sep 2005)

  16 Sep 2005; Thomas Matthijs <axxo@gentoo.org> +sun-jdk-1.5.0.05.ebuild:
  version bump

  10 Sep 2005; Thomas Matthijs <axxo@gentoo.org> sun-jdk-1.3.1.13.ebuild,
  sun-jdk-1.4.2.08.ebuild, sun-jdk-1.4.2.08-r1.ebuild,
  sun-jdk-1.4.2.09.ebuild, sun-jdk-1.5.0.04.ebuild:
  fix hardende email contact #91549

  26 Aug 2005; Diego Pettenò <flameeyes@gentoo.org>
  sun-jdk-1.4.2.09.ebuild, sun-jdk-1.5.0.04.ebuild:
  Fix cp -a usage for Gentoo/FreeBSD.

*sun-jdk-1.4.2.09 (10 Aug 2005)

  10 Aug 2005; Petteri Räty <betelgeuse@gentoo.org>
  +files/sun-jdk-1.4.2.09, +sun-jdk-1.4.2.09.ebuild:
  Version bump. Resolves bug #102048.

  26 Jul 2005; Thomas Matthijs <axxo@gentoo.org> sun-jdk-1.4.2.08-r1.ebuild:
  keyword x86

  26 Jul 2005; Thomas Matthijs <axxo@gentoo.org> files/sun-jdk-1.4.2.08,
  files/sun-jdk-1.5.0.04:
  fix ldpath, #100124

*sun-jdk-1.4.2.08-r1 (11 Jul 2005)

  11 Jul 2005; Thomas Matthijs <axxo@gentoo.org> -files/sun-jdk-1.5.0.02,
  -files/sun-jdk-1.5.0.03, +files/javaws-waitid.c, sun-jdk-1.2.2.017.ebuild,
  sun-jdk-1.3.1.13.ebuild, sun-jdk-1.4.2.08.ebuild,
  +sun-jdk-1.4.2.08-r1.ebuild, -sun-jdk-1.5.0.02-r1.ebuild,
  -sun-jdk-1.5.0.03.ebuild, sun-jdk-1.5.0.04.ebuild:
  bug 69542: javaws broken, add preload hack. bug 94056: useflag rename
  mozilla -> browserplugin

*sun-jdk-1.5.0.04 (28 Jun 2005)

  28 Jun 2005; Thomas Matthijs <axxo@gentoo.org> +files/sun-jdk-1.5.0.04,
  +sun-jdk-1.5.0.04.ebuild:
  version bump

  16 Jun 2005; Jan Brinkmann <luckyduck@gentoo.org> -files/sun-jdk-1.4.2.07,
  -sun-jdk-1.4.2.07-r1.ebuild:
  Removed vulnerable version wrt security bug #96092.

  18 May 2005; Thomas Matthijs <axxo@gentoo.org> sun-jdk-1.2.2.017.ebuild,
  sun-jdk-1.3.1.13.ebuild, sun-jdk-1.4.2.07-r1.ebuild,
  sun-jdk-1.4.2.08.ebuild, sun-jdk-1.5.0.02-r1.ebuild,
  sun-jdk-1.5.0.03.ebuild:
  remove obsolete java-scheme virtual. remove versions from provide: bug 93028

*sun-jdk-1.5.0.03 (04 May 2005)

  04 May 2005; Jan Brinkmann <luckyduck@gentoo.org> +files/sun-jdk-1.5.0.03,
  sun-jdk-1.3.1.13.ebuild, sun-jdk-1.4.2.07-r1.ebuild,
  sun-jdk-1.4.2.08.ebuild, sun-jdk-1.5.0.02-r1.ebuild,
  +sun-jdk-1.5.0.03.ebuild:
  we now call chpax also for the javadoc binary, see #90553. new upstream
  version, fixes #91116

  22 Apr 2005; Jan Brinkmann <luckyduck@gentoo.org> sun-jdk-1.3.1.13.ebuild,
  sun-jdk-1.4.2.07-r1.ebuild, sun-jdk-1.4.2.08.ebuild,
  sun-jdk-1.5.0.02-r1.ebuild:
  we now also disable pax flags for javah

  16 Apr 2005; Thomas Matthijs <axxo@gentoo.org> sun-jdk-1.4.2.08.ebuild:
  keyword x86

*sun-jdk-1.4.2.08 (06 Apr 2005)

  06 Apr 2005; Thomas Matthijs <axxo@gentoo.org> +files/sun-jdk-1.4.2.08,
  +sun-jdk-1.4.2.08.ebuild:
  version bump

  03 Apr 2005; Thomas Matthijs <axxo@gentoo.org> sun-jdk-1.4.2.07-r1.ebuild,
  sun-jdk-1.5.0.02-r1.ebuild:
  clean up kde/gnome use flags, tnx to Diego Pettenò
  <dgp85@users.sourceforge.net> in 81874

*sun-jdk-1.5.0.02-r1 (25 Mar 2005)
*sun-jdk-1.4.2.07-r1 (25 Mar 2005)

  25 Mar 2005; Jan Brinkmann <luckyduck@gentoo.org> -files/sun-jdk-1.4.2.05,
  -files/sun-jdk-1.4.2.06, -files/sun-jdk-1.5.0, -files/sun-jdk-1.5.0.01,
  +sun-jdk-1.4.2.07-r1.ebuild, -sun-jdk-1.4.2.07.ebuild,
  -sun-jdk-1.5.0.01.ebuild, +sun-jdk-1.5.0.02-r1.ebuild,
  -sun-jdk-1.5.0.02.ebuild, -sun-jdk-1.5.0.ebuild:
  applied patch to all versions, see #86585. also did some cleanup.

  25 Mar 2005; Jan Brinkmann <luckyduck@gentoo.org> sun-jdk-1.4.2.07.ebuild:
  applied patch which was suggested by taviso, fixes insecure temporary file
  handling. see #86585

  24 Mar 2005; Jan Brinkmann <luckyduck@gentoo.org> -sun-jdk-1.4.2.05.ebuild,
  -sun-jdk-1.4.2.06.ebuild:
  removed vulnerable versions, GLSA 200503-28

*sun-jdk-1.5.0.02 (21 Mar 2005)

  21 Mar 2005; Thomas Matthijs <axxo@gentoo.org> +files/sun-jdk-1.5.0.02,
  +sun-jdk-1.5.0.02.ebuild:
  version bump

  02 Feb 2005; Saleem Abdulrasool <compnerd@gentoo.org>
  sun-jdk-1.4.2.07.ebuild:
  Pushing 1.4.2_07 to stable; Closes bug #80288

*sun-jdk-1.4.2.07 (27 Jan 2005)

  27 Jan 2005; Saleem Abdulrasool <compnerd@gentoo.org>
  +files/sun-jdk-1.4.2.07, +sun-jdk-1.4.2.07.ebuild:
  Version bump to 1.4.2_07; Closes bug #79679.

  15 Jan 2005; Karl Trygve Kalleberg <karltk@gentoo.org>
  sun-jdk-1.5.0.01.ebuild, sun-jdk-1.5.0.ebuild:
  Added nostrip, fixes #77909, but only for 1.5.x.

  07 Jan 2005; Jan Brinkmann <luckyduck@gentoo.org> sun-jdk-1.5.0.01.ebuild,
  sun-jdk-1.5.0.ebuild:
  added missing unzip dependency which is needed when jce is used. fixes bug
  #77028.

  01 Jan 2005; Thomas Matthijs <axxo@gentoo.org> sun-jdk-1.5.0.01.ebuild,
  sun-jdk-1.5.0.ebuild:
  remove dep on virtual/lpr

*sun-jdk-1.5.0.01 (21 Dec 2004)

  21 Dec 2004; Thomas Matthijs <axxo@gentoo.org> +files/sun-jdk-1.5.0.01,
  +sun-jdk-1.5.0.01.ebuild:
  version bump

  26 Oct 2004; Thomas Matthijs <axxo@gentoo.org> sun-jdk-1.4.2.06.ebuild:
  Added r flag to chpax flags #68829

  20 Oct 2004; Thomas Matthijs <axxo@gentoo.org> sun-jdk-1.3.1.13.ebuild,
  sun-jdk-1.4.2.06.ebuild:
  keyword x86

*sun-jdk-1.4.2.06 (12 Oct 2004)

  12 Oct 2004; Thomas Matthijs <axxo@gentoo.org> +files/sun-jdk-1.4.2.06,
  +sun-jdk-1.4.2.06.ebuild:
  version bump

*sun-jdk-1.5.0 (30 Sep 2004)

  30 Sep 2004; Thomas Matthijs <axxo@gentoo.org> +files/sun-jdk-1.5.0,
  -files/sun-jdk-1.5.0_rc1, +sun-jdk-1.5.0.ebuild,
  -sun-jdk-1.5.0_rc1.ebuild:
  version bump

  29 Sep 2004; Thomas Matthijs <axxo@gentoo.org> sun-jdk-1.2.2.017.ebuild,
  sun-jdk-1.3.1.13.ebuild, sun-jdk-1.4.2.05.ebuild,
  sun-jdk-1.5.0_rc1.ebuild:
  Cleaned up plugin instalation, Moved some messages to the eclass, see #22395
  for more information

  28 Sep 2004; Sven Wegener <swegener@gentoo.org> files/sun-jdk-1.2.2.017,
  files/sun-jdk-1.3.1.13, files/sun-jdk-1.4.2.05:
  Gentoo Technologies, Inc. -> Gentoo Foundation

*sun-jdk-1.3.1.13 (23 Sep 2004)

  23 Sep 2004; Thomas Matthijs <axxo@gentoo.org> +sun-jdk-1.3.1.13.ebuild:
  version bump

  23 Sep 2004; Thomas Matthijs <axxo@gentoo.org> -files/sun-jdk-1.3.1.09,
  -files/sun-jdk-1.3.1.10, -files/sun-jdk-1.3.1.12, +files/sun-jdk-1.3.1.13,
  -sun-jdk-1.3.1.09.ebuild, -sun-jdk-1.3.1.10.ebuild,
  -sun-jdk-1.3.1.12.ebuild:
  prune older

  21 Sep 2004; Thomas Matthijs <axxo@gentoo.org> -files/sun-jdk-1.5.0_beta1,
  -files/sun-jdk-1.5.0_beta2, -files/sun-jdk-1.5.0_beta2-r1,
  -sun-jdk-1.5.0_beta1-r1.ebuild, -sun-jdk-1.5.0_beta2-r1.ebuild,
  -sun-jdk-1.5.0_beta2.ebuild:
  cleanup

  06 Sep 2004; Ciaran McCreesh <ciaranm@gentoo.org> sun-jdk-1.3.1.09.ebuild,
  sun-jdk-1.3.1.10.ebuild, sun-jdk-1.3.1.12.ebuild, sun-jdk-1.4.2.05.ebuild,
  sun-jdk-1.5.0_beta1-r1.ebuild, sun-jdk-1.5.0_beta2-r1.ebuild,
  sun-jdk-1.5.0_beta2.ebuild, sun-jdk-1.5.0_rc1.ebuild:
  Switch to use epause and ebeep, bug #62950

  03 Sep 2004; Thomas Matthijs <axxo@gentoo.org> sun-jdk-1.5.0_rc1.ebuild:
  correct sdk download url, closes 62663

*sun-jdk-1.5.0_rc1 (02 Sep 2004)

  02 Sep 2004; Karl Trygve Kalleberg <karltk@gentoo.org> files/sun-jdk-1.5.0_rc1,
  sun-jdk-1.5.0_rc1.ebuild: New upstream released. Fixes #62604, thanks to
  absinthe.

  06 Aug 2004; Thomas Matthijs <axxo@gentoo.org> -files/sun-jdk-1.4.1.06,
  -files/sun-jdk-1.4.2.03, -files/sun-jdk-1.4.2.04, -sun-jdk-1.4.1.06.ebuild,
  -sun-jdk-1.4.2.03.ebuild, -sun-jdk-1.4.2.04-r1.ebuild,
  -sun-jdk-1.4.2.04-r2.ebuild, -sun-jdk-1.4.2.04.ebuild,
  sun-jdk-1.4.2.05.ebuild:
  marking 1.4.2.05 x86. security issue with previous versions, removing

  23 Jul 2004; Jon Hood <squinky86@gentoo.org> sun-jdk-1.2.2.017.ebuild:
  Change virtual/glibc -> virtual/libc.

*sun-jdk-1.2.2.017 (16 Jul 2004)

  16 Jul 2004; Thomas Matthijs <axxo@gentoo.org> +files/sun-jdk-1.2.2.017,
  +sun-jdk-1.2.2.017.ebuild:
  Adding ebuild for 1.2 closes 20117
  Thanks too larry schuler <larryas2@fastmail.us>
  and  Douglas Pollock <douglas.pollock@magma.ca>

  15 Jul 2004; Thomas Matthijs <axxo@gentoo.org> files/sun-jdk-1.3.1.12,
  sun-jdk-1.3.1.12.ebuild:
  fix head warning, put man pages in the correct place

*sun-jdk-1.3.1.12 (14 Jul 2004)

  14 Jul 2004; Thomas Matthijs <axxo@gentoo.org> +files/sun-jdk-1.3.1.12,
  sun-jdk-1.3.1.10.ebuild, +sun-jdk-1.3.1.12.ebuild:
  remove version from src_uri
  version bump, closes 55296

*sun-jdk-1.4.2.05 (14 Jul 2004)

  14 Jul 2004; Thomas Matthijs <axxo@gentoo.org> +files/sun-jdk-1.4.2.05,
  sun-jdk-1.4.2.04-r2.ebuild, +sun-jdk-1.4.2.05.ebuild:
  src_uri clean up
  version bump closed 55866

  01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org>
  sun-jdk-1.3.1.09.ebuild, sun-jdk-1.3.1.10.ebuild:
  virtual/glibc -> virtual/libc

*sun-jdk-1.5.0_beta2-r1 (21 Jun 2004)

  21 Jun 2004; Karl Trygve Kalleberg <karltk@gentoo.org>
  Added 'jce' flag, fixes #52375, thanks to Thomas Matthijs <axxo@keanu.be>.

*sun-jdk-1.4.2.04-r2 (21 Jun 2004)

  21 Jun 2004; Karl Trygve Kalleberg <karltk@gentoo.org>
  sun-jdk-1.4.2.04-r2.ebuild: Renamed 'ssl' useflag to 'jce', fixes
  #54676, thanks to Thomas Matthijs <axxo@keanu.be>.

*sun-jdk-1.5.0_beta2 (11 Jun 2004)

  11 Jun 2004; Travis Tilley <lv@gentoo.org> +files/sun-jdk-1.5.0_beta2,
  +sun-jdk-1.5.0_beta2.ebuild:
  new beta

  02 Jun 2004; Aron Griffis <agriffis@gentoo.org> sun-jdk-1.3.1.09.ebuild,
  sun-jdk-1.3.1.10.ebuild, sun-jdk-1.4.1.06.ebuild, sun-jdk-1.4.2.03.ebuild,
  sun-jdk-1.4.2.04.ebuild, sun-jdk-1.5.0_beta1-r1.ebuild:
  Fix use invocation

  06 Apr 2004; Chris Aniszczyk <zx@gentoo.org> sun-jdk-1.4.2.04-r1.ebuild:
  Add proper dependancy on app-arch/unzip. Closes bug #46953

*sun-jdk-1.4.2.04-r1 (18 Mar 2004)

  18 Mar 2004; Lim Swee Tat,,+65-9763-4381,+65-6314-3146 <st_lim@gentoo.org>
  sun-jdk-1.4.2.04-r1.ebuild:
  Bug #44339 - Added jce-1_4_2 requirement so that users can get unlimited
  strength JCE

*sun-jdk-1.4.2.04 (10 Mar 2004)

  10 Mar 2004; Chris Aniszczyk <zx@gentoo.org> sun-jdk-1.4.2.04.ebuild,
  files/sun-jdk-1.4.2.04:
  Version bump + fixes.
  Closes #41870, #44256, #33165

  01 Mar 2004; <mkennedy@gentoo.org> files/sun-jdk-1.3.1.09,
  files/sun-jdk-1.3.1.10, files/sun-jdk-1.4.1.06, files/sun-jdk-1.4.2.03,
  files/sun-jdk-1.5.0_beta1:
  Remove CLASSPATH from environment variable list.

*sun-jdk-1.4.2.03 (18 Feb 2004)

  18 Feb 2004; Chris Aniszczyk <zx@gentoo.org> sun-jdk-1.4.2.03.ebuild,
  sun-jdk-1.5.0_beta1.ebuild:
  Bug fix 41870

*sun-jdk-1.3.1.10 (15 Feb 2004)

  15 Feb 2004; Adrian Almenar <strider@gentoo.org> sun-jdk-1.3.1.10.ebuild,
  files/sun-jdk-1.3.1.10:
  Version Bump. Thanks to Marijn Dee <M.Dee@DataDistilleries.com> for the patches.

  15 Feb 2004; Adrian Almenar <strider@gentoo.org> sun-jdk-1.3.1.09.ebuild,
  files/sun-jdk-1.3.1.09:
  Updated HOMEPAGE. Closes #38793
  Thanks to Marijn Dee <M.Dee@DataDistilleries.com> for the patches.

*sun-jdk-1.5.0_beta1-r1 (15 Feb 2004)

  15 Feb 2004; Adrian Almenar <strider@gentoo.org>
  sun-jdk-1.5.0_beta1-r1.ebuild:
  The official beta1 from sun. Closes #40450

  18 Feb 2004; Chris Aniszczyk <zx@gentoo.org> sun-jdk-1.4.2.03.ebuild,
  sun-jdk-1.5.0_beta1.ebuild:
  Bug fix dealing with desktop dirs, Bug #41870

*sun-jdk-1.5.0_beta1 (10 Jan 2004)

  10 Jan 2004; Adrian Almenar <strider@gentoo.org> sun-jdk-1.5.0_beta1.ebuild,
  files/sun-jdk-1.5.0_beta1:
  Added beta version of sun-jdk.

  10 Jan 2004; Adrian Almenar <strider@gentoo.org> sun-jdk-1.4.2.03.ebuild:
  Moving to stable.

  13 Dec 2003; Adrian Almenar <strider@gentoo.org> sun-jdk-1.3.1.09.ebuild,
  sun-jdk-1.4.2.02.ebuild, sun-jdk-1.4.2.03.ebuild:
  Added Grsecurity and PAX warning taken from blackdown-jdk 1.4.1.

  09 Dec 2003; Adrian Almenar <strider@gentoo.org> sun-jdk-1.4.1.06.ebuild,
  sun-jdk-1.4.2.03.ebuild, files/sun-jdk-1.4.2.03, files/sun-jdk-1.4.1.06:
  Version Bump for sun-jdk-1.4.1.06 and sun-jdk-1.4.2.03.

  07 Dec 2003; Adrian Almenar <strider@gentoo.org> sun-jdk-1.3.1.09.ebuild,
  sun-jdk-1.4.1.05.ebuild, sun-jdk-1.4.2.01.ebuild, sun-jdk-1.4.2.02.ebuild,
  files/sun-jdk-1.4.2.01:
  Adding some advices to pkg_postinst, Fixes to bug #31291.
  Thanks to Douglas Pollock <douglas.pollock@magma.ca> for his comment found on the sun-jdk 1.2.2 ebuild that he sent. (See the ebuilds).

  20 Nov 2003; Adrian Almenar <strider@gentoo.org> sun-jdk-1.4.1.05.ebuild:
  Moved to stable.

*sun-jdk-1.4.2.02 (09 Nov 2003)

  09 Nov 2003; Adrian Almenar <strider@gentoo.org> sun-jdk-1.4.2.02.ebuild,
  files/sun-jdk-1.4.2.02:
  Version bump.

  16 Sep 2003; Adrian Almenar <strider@gentoo.org> sun-jdk-1.4.2.01.ebuild:
  Fixed homepage URL. #28858

  12 Sep 2003; Adrian Almenar <strider@gentoo.org> sun-jdk-1.4.2.01.ebuild,
  sun-jdk-1.4.2.ebuild:
  Fixes bug #28374

*sun-jdk-1.4.1.05 (12 Sep 2003)

  12 Sep 2003; Adrian Almenar <strider@gentoo.org> sun-jdk-1.3.1.09.ebuild,
  sun-jdk-1.4.1.04.ebuild, sun-jdk-1.4.1.05.ebuild, sun-jdk-1.4.2.01.ebuild,
  sun-jdk-1.4.2.ebuild, files/sun-jdk-1.4.1.05:
  Updated sun-jdk 1.4.1.04 to 1.4.1.05, various fixes

  30 Aug 2003; Preston A. Elder <prez@gentoo.org> sun-jdk-1.4.2.01.ebuild:
  Version bump.  Made stable since the download page downloads this version.

  23 Aug 2003; Adrian Almenar <strider@gentoo.org> sun-jdk-1.4.1.04.ebuild,
  sun-jdk-1.4.2.ebuild:
  Fixes for bug #26683. Thanks to Tom Fredrik Blenning Klaussen
  <bfg-dev@blenning.no> for great part of the fix.

  15 Aug 2003; Adrian Almenar <strider@gentoo.org> sun-jdk-1.3.1.08.ebuild,
  files/sun-jdk-1.3.1.09, files/sun-jdk-1.4.1.03 files/sun-jdk-1.4.1.04,
  files/sun-jdk-1.4.2:
  Updated files to fix bug 21735.

  11 Aug 2003; Adrian Almenar <strider@gentoo.org> sun-jdk-1.4.2.ebuild:
  Updated to stable since works better than 1.4.1 and have a lot of bug fixes,
  also no one complained while it was on testing

*sun-jdk-1.3.1.09 (10 Aug 2003)

  10 Aug 2003; Adrian Almenar <strider@gentoo.org> sun-jdk-1.3.1.09.ebuild,
  files/sun-jdk-1.3.1.09:
  New revision of sun-jdk 1.3.1

  08 Aug 2003; Adrian Almenar <strider@gentoo.org> sun-jdk-1.4.1.04.ebuild:
  Update package to stable

*sun-jdk-1.4.1_04 (30 Jul 2003)

  30 Jul 2003; Adrian Almenar <strider@gentoo.org> sun-jdk-1.4.1.04.ebuild files/digest-sun-jdk-1.4.1.04 files/sun-jdk-1.4.1.04:
  Version Bump Maintenance Release for 1.4.1 Tree.

*sun-jdk-1.4.2 (29 Jul 2003)

  29 Jul 2003; Adrian Almenar <strider@gentoo.org> sun-jdk-1.4.2.ebuild files/digest-sun-jdk-1.4.2 files/sun-jdk-1.4.2:
  Version Bump. Thanks to Carsten Frewert <gentoo@frewert.de>. Fixes bug #23701.

*sun-jdk-1.4.1.03 (16 Jun 2003)

  11 Jul 2003; Daniel Ahlberg <aliz@gentoo.org> :
  Added missing changelog entry.

*sun-jdk-1.4.1.02-r1 (06 Jun 2003)
  06 Jun 2003;  Adrian Almenar <strider@gentoo.org> sun-jdk-1.4.1.03.ebuild, files/digest-sun-jdk-1.4.1.03 files/sun-jdk-1.4.1.03:
  Version Bump -- 1.4.1.03 maintenance release.

  Release notes:
  http://java.sun.com/j2se/1.4.1/ReleaseNotes.html


*sun-jdk-1.3.1.08 (24 May 2003)

  24 May 2003; Dylan Carlson <absinthe@gentoo.org> sun-jdk-1.3.1.07.ebuild,
  sun-jdk-1.3.1.07.ebuild, sun-jdk-1.3.1.08.ebuild,
  sun-jdk-1.4.1.02-r1.ebuild, sun-jdk-1.4.1.02.ebuild, files/sun-jdk-1.3.1.07,
  files/sun-jdk-1.3.1.08:
  Version bump -- 1.3.1.08 maintenance release: significant bug fixes.

  Release notes:
  http://java.sun.com/j2se/1.3/ReleaseNotes.html

  Additionally, license corrections were made for compliance to close out
  bug #19944.

  15 Dec 2002; Adrian Almenar <strider@gentoo.org>: Correct formating for all
  ebuilds so lintool doesnt complain. (Make them policy compliant).

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords

*sun-jdk-1.4.1.02-r1 (23 Apr 2003)

  23 Apr 2003; Adrian Almenar <strider@gentoo.org> sun-jdk-1.4.1.02-r1.ebuild,
  files/digest-sun-jdk-1.4.1.02-r1 files/sun-jdk-1.4.1.02:
  Fixes #18067 #19722.

*sun-jdk-1.3.1.07 (23 Mar 2003)

  23 Mar 2003; Adrian Almenar <strider@gentoo.org> sun-jdk-1.3.1.07.ebuild:
  Updated ebuild for latest 1.3 version.
  Fixes #16088 #18067 #19722.

*sun-jdk-1.4.1.02 (06 Mar 2003)

  17 Mar 2003; Adrian Almenar <strider@gentoo.org> sun-jdk-1.4.1.02.ebuild:
  Marked stable.

  09 Mar 2003; Seemant Kulleen <seemant@gentoo.org> sun-jdk-1.4.0-r5.ebuild,
  sun-jdk-1.4.0-r6.ebuild, sun-jdk-1.4.1.01-r1.ebuild,
  sun-jdk-1.4.1.01.ebuild, sun-jdk-1.4.1.02.ebuild:
  added lib-compat to RDEPEND, closing bug #15855 by Andrew Aylett
  <gentoo@aylett.co.uk>; and added -arch for mips, hppa and arm

  06 Mar 2003; Adrian Almenar <strider@gento.org> sun-jdk-1.4.1.02.ebuild, files/digest-sun-jdk-1.4.1.02, files/sun-jdk-1.4.1.02 :
  New bugfix release for sun-jdk.  Fixes bug #16855 & #16932.

*sun-jdk-1.4.1.01-r1 (21 Nov 2002)

  17 Mar 2003; Adrian Almenar <strider@gentoo.org> sun-jdk-1.4.1.01.ebuild:
  Updated HOMEPAGE to archives of old jdks.

  21 Nov 2002; phoen][x <phoenix@gentoo.org> sun-jdk-1.4.1.01.ebuild,
  files/digest-sun-jdk-1.4.1.01 :
  Switched to the new nsplugins layout.

*sun-jdk-1.3.1.06-r1 (21 Nov 2002)

  15 Dec 2002; Adrian Almenar <strider@gentoo.org> sun-jdk-1.3.1.06-r1.ebuild:
  Fixes #11116.

  03 Dec 2002; Adrian Almenar <strider@gentoo.org> files/sun-jdk-1.3.1.06
  Fixes Bug #11555

  21 Nov 2002; phoen][x <phoenix@gentoo.org> sun-jdk-1.3.1.06-r1.ebuild,
  files/digest-sun-jdk-1.3.1.06-r1 :
  Switched to the new nsplugins layout.

*sun-jdk-1.3.1.06 (03 Nov 2002)

  15 Dec 2002; Adrian Almenar <strider@gentoo.org> sun-jdk-1.3.1.06-r1.ebuild:
  Fixes #11116.

  03 Dec 2002; Adrian Almenar <strider@gentoo.org> files/sun-jdk-1.3.1.06
  Fixes Bug #11555

  03 Nov 2002; Adrian Almenar <strider@gentoo.org> sun-jdk-1.3.1.06.ebuild,
  files/digest-sun-jdk-1.3.1.06, files/sun-jdk-1.3.1.06:
  New Sun minor release. Resolves bug #9772.


  18 Oct 2002; Maik Schreiber <blizzy@gentoo.org> sun-jdk-1.4.1.01.ebuild:
  Changed "~x86" to "x86", thus enabling this release for the masses.

  17 Oct 2002; Maik Schreiber <blizzy@gentoo.org> sun-jdk-1.4.1_beta.ebuild,
  sun-jdk-1.4.1_rc1.ebuild: Changed KEYWORDS to phase out of package.mask.

*sun-jdk-1.4.1.01 (17 Oct 2002)

  17 Oct 2002; Maik Schreiber <blizzy@gentoo.org> sun-jdk-1.4.1.01.ebuild:
  New version.

  17 Oct 2002; Maik Schreiber <blizzy@gentoo.org> sun-jdk-1.3.1.04.ebuild,
  sun-jdk-1.3.1.05.ebuild, sun-jdk-1.4.0-r5.ebuild, sun-jdk-1.4.0-r6.ebuild,
  sun-jdk-1.4.1_beta.ebuild, sun-jdk-1.4.1_rc1.ebuild: Removed sourcing of
  old inherit.eclass.

  17 Oct 2002; Maik Schreiber <blizzy@gentoo.org> sun-jdk-1.3.1.04.ebuild,
  sun-jdk-1.3.1.05.ebuild, sun-jdk-1.4.0-r5.ebuild, sun-jdk-1.4.0-r6.ebuild,
  sun-jdk-1.4.1_beta.ebuild, sun-jdk-1.4.1_rc1.ebuild: Added -sparc, -sparc64
  and -alpha to KEYWORDS.

*sun-jdk-1.3.1.05 (16 Oct 2002)

  16 Oct 2002; Matthew Kennedy <mkennedy@gentoo.org>
  sun-jdk-1.3.1.05.ebuild, files/digest-sun-jdk-1.3.1.05,
  files/sun-jdk-1.3.1.05 :

  New Sun minor release. Resolves bug #9144.

*sun-jdk-1.4.0-r6 (11 Sep 2002)

  26 Sep 2002; Matthew Kennedy <mkennedy@gentoo.org>
  sun-jdk-1.4.0-r6.ebuild, sun-jdk-1.4.1_rc1.ebuild :

  Documentation fix.

  11 Sep 2002; Matthew Kennedy <mkennedy@gentoo.org>
  sun-jdk-1.4.0-r6.ebuild, ChangeLog, files/digest-sun-jdk-1.4.0-r6 :

  New Sun minor version release. Resolves bug #7707. Added note in
  download message on where to find archived releases. ChangeLog clean
  up for 80 column display.

*sun-jdk-1.4.1_rc1 (23 Aug 2002)

  07 Sep 2002; Karl Trygve Kalleberg <karltk@gentoo.org>
  sun-jdk-1.4.1_rc1.ebuild files/sun-jdk-1.3.1.02
  files/sun-jdk-1.3.1.03 sun-jdk-1.4.0-r5.ebuild
  sun-jdk-1.3.1.04.ebuild :

  Now installs environment properly. Removed old environment files.
  Fixed formatting of ebuilds. Added dep on improved java-config, to
  avoid CLASSPATH problems caused by adding "." to it.

  06 Sep 2002; Owen Stampflee <owen@gentoo.org> files/sun-jdk-1.3.1.04
  files/sun-jdk-1.4.0 files/sun-jdk-1.4.1_beta files/sun-jdk-1.4.1_rc1:
  Added "." to CLASSPATH in the env.d scripts.

  26 Aug 2002; Karl Trygve Kalleberg <karltk@gentoo.org> sun-jdk-1.4.1_rc1.ebuild:
  SLOT is now 1.4. If no VM is installed, it becomes default system VM. Added
  doc keyword to optionally install documentation.

  23 Aug 2002; Maik Schreiber <blizzy@gentoo.org>
  sun-jdk-1.4.1_rc1.ebuild, ChangeLog, files/digest-sun-jdk-1.4.1_rc1:

  New version. Cleaned up ChangeLog a bit.

*sun-jdk-1.4.1_beta (19 Aug 2002)

  26 Aug 2002; Karl Trygve Kalleberg <karltk@gentoo.org> sun-jdk-1.4.1_beta.ebuild:
  SLOT is now 1.4. If no VM is installed, it becomes default system VM. Added
  doc keyword to optionally install documentation.

  19 August 2002; Sascha Schwabbauer <cybersystem@gentoo.org>
  ChangeLog, sun-jdk-1.4.1_beta.ebuild:

  Added -ppc to the keywords.

  09 Aug 2002; Karl Trygve Kalleberg <karltk@gentoo.org> sun-jdk-1.4.1_beta.ebuild:
  Fixed version typos in the ebuild. Fixed omissions in this ChangeLog. Fixes
  #6206.

  08 Aug 2002; Maik Schreiber <blizzy@gentoo.org>
  sun-jdk-1.4.1_beta.ebuild files/digest-sun-jdk-1.4.1.ebuild
  files/sun-jdk-1.4.1_beta:

  New upstream version.

*sun-jdk-1.3.1.04 (29 Jun 2002)

  26 Aug 2002; Karl Trygve Kalleberg <karltk@gentoo.org> sun-jdk-1.3.1.04.ebuild:
  SLOT is now 1.3. If no VM is installed, it becomes default system VM. Added
  doc keyword to optionally install documentation. Now provides JRE
  1.3.1 and JDK 1.3.1.

  01 Aug 2002; Karl Trygve Kalleberg <karltk@gentoo.org> sun-jdk-1.3.1.04.ebuild:
  Added proper LICENSE, SLOT and KEYWORDS. Removed older 1.3.1 versions.

  29 Jun 2002; Matthew Kennedy <mkennedy@gentoo.org> sun-jdk-1.3.1.04.ebuild:
  Resolves bug #4319

*sun-jdk-1.4.0-r5 (25 Jun 2002)

  26 Aug 2002; Karl Trygve Kalleberg <karltk@gentoo.org> sun-jdk-1.4.0-r5.ebuild:
  SLOT is now 1.4. If no VM is installed, it becomes default system VM. Added
  doc keyword to optionally install documentation.

  01 Aug 2002; Karl Trygve Kalleberg <karltk@gentoo.org> sun-jdk-1.4.0-r5.ebuild:
  Added proper LICENSE, SLOT and KEYWORDS. Removed old revisions.

  25 Jun 2002; Matthew Kennedy <mkennedy@gentoo.org> sun-jdk-1.4.0-r5.ebuild:
  Fixed documentation/manual symlink instuctions bug. Bug #3962

*sun-jdk-1.4.0-r4 (19 Jun 2002)

  19 Jun 2002; Doug Goldstein (Cardoe) <dougg@ufl.edu> sun-jdk-1.4.0-r4.ebuild:

  Updated the filename of the binary file used to install this as Sun
  has changed it.

  Also updated the symlink that all browsers use to use the Java
  Plugin from here because it was broke.

  Also updated the ebuild to conform to lintool.

*sun-jdk-1.3.1-r3 (15 Jun 2002)

  15 May 2002; Ryan Phillips <rphillips@gentoo.org> sun-jdk-1.3.1-r3.ebuild:
  Sun changed the binary package of the current SDK... This fixes the tail + problem
  and the binary that is now provided is compiled for 586.

*sun-jdk-1.3.1.02 (04 May 2002)

  04 May 2002; Karl Trygve Kalleberg <karltk@gentoo.org> files/sun-jdk-1.3.1.02:
  Added file.

*sun-jdk-1.3.1.03 (04 May 2002)

  04 Apr 2002; Karl Trygve Kalleberg <karltk@gentoo.org> files/sun-jdk-1.3.1.03:
  Added file. Removed files/sun-jdk-1.3.1

  24 Apr 2002; Karl Trygve Kalleberg <karltk@gentoo.org> sun-jdk-1.3.1.03.ebuild
  files/digest-sun-jdk-1.3.1.03: New upstream version. Old revision (1.3.1-r3)
  renamed to 1.3.1.02.

*sun-jdk-1.4.0-r2 (18 Apr 2002)

  18 Apr 2002; Ryan Phillips <rphillips@gentoo.org> files/sun-jdk-1.4.0:
  Fixed CLASSPATH; pointing to wrong directory. (#1927)

  09 Apr 2002; Karl Trygve Kalleberg <karltk@gentoo.org> sun-jdk-1.4.0-r2.ebuild
  files/digest-sun-jdk-1.4.0-r2: Fixed missing ROOTPATH.

  Removed sun-jdk-1.4.0-r1.ebuild files/digest-sun-jdk-1.4.0-r1

*sun-jdk-1.3.1-r3 (09 Apr 2002)

  09 Apr 2002; Karl Trygve Kalleberg <karltk@gentoo.org> sun-jdk-1.3.1-r3.ebuild
  files/digest-sun-jdk-1.3.1-r3: Fixed missing ROOTPATH.

  Removed sun-jdk-1.3.1-r2.ebuild files/digest-sun-jdk-1.3.1-r2

*sun-jdk-1.3.1-r2 (18 Mar 2002)

  18 Feb 2002; Karl Trygve Kalleberg <karltk@gentoo.org> sun-jdk-1.3.1-r2.ebuild
  files/digest-sun-jdk-1.3.1-r2 files/sun-jdk-1.3.1: Added support for JVM
  switching.

  Removed old revisions.

*sun-jdk-1.4.0-r1 (18 Mar 2002)

  18 Feb 2002; Karl Trygve Kalleberg <karltk@gentoo.org> sun-jdk-1.4.0-r1.ebuild
  files/digest-sun-jdk-1.4-r1 files/sun-jdk-1.4.0: Added support for JVM switching.

  Removed old revisions.

*sun-jdk-1.4.0 (17 Feb 2002)

  17 Feb 2002; Karl Trygve Kalleberg <karltk@gentoo.org> ChangeLog
  digest/sun-jdk/sun-jdk-1.4 files/digest-sun-jdk-1.4:

  Sun's JDK version 1.4, final release. Still with mmap and faster VM.

  Ebuild submitted by Daniel Mettler <mettlerd@icu.unizh.ch>

*sun-jdk-1.4.0_pre1 (10 Feb 2002)

  10 Feb 2002; Karl Trygve Kalleberg <karltk@gentoo.org> ChangeLog,
  digest/sun-jdk/sun-jdk-1.4_pre1 files/digest-sun-jdk-1.4_pre1:

  Sun's JDK version 1.4, pre-release 1. Now with mmap and faster VM.

  Ebuild submitted by Luke Holden <alterself@prodigy.net>

*sun-jdk-1.3.1-r1 (1 Feb 2002)

  10 Feb 2002; Karl Trygve Kalleberg <karltk@gentoo.org>
  sun-jdk-1.3.1-r1 files/digest-sun-jdk-1.3.1-r1 :

  Sun's JDK version 1.3.1. Considered stable.