summaryrefslogtreecommitdiff
blob: 1cd8725e68e7639b008a767e62c324c4af27e4af (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
# ChangeLog for dev-java/icedtea
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/icedtea/ChangeLog,v 1.139 2015/07/21 22:10:28 chewi Exp $

  21 Jul 2015; James Le Cuirot <chewi@gentoo.org> -icedtea-6.1.13.5.ebuild,
  icedtea-6.1.13.7.ebuild:
  Drop vulnerable version wrt bug #537940. This removes the last 1.6 VM for arm
  but later versions are preferable for HotSpot. I had hoped to do the same for
  ppc64 but upstream haven't been able to resolve a segfault in icedtea-7. This
  is resolved in the upcoming icedtea-3.

  11 Jul 2015; James Le Cuirot <chewi@gentoo.org> icedtea-6.1.13.5.ebuild,
  -icedtea-7.2.4.8.ebuild:
  Drop java on ia64 and also drop old version.

  20 Jun 2015; James Le Cuirot <chewi@gentoo.org> icedtea-6.1.13.7.ebuild,
  icedtea-7.2.5.5.ebuild:
  Remove redundant --with-ecj-jar code as javac from gcj-jdk always takes
  precedence. Remove redundant bootstrap_impossible code as this is no longer
  relevant. Remove references to the old VM handles as the dependencies will
  ensure that the new ones are always present anyway.

  23 May 2015; James Le Cuirot <chewi@gentoo.org> icedtea-7.2.5.5.ebuild:
  ~arm keyword but only for 7. We're phasing 6 out so I don't think we'll bother
  for arm any more. Disallow building with icedtea-6 until bug #531082 is
  resolved.

  21 May 2015; James Le Cuirot <chewi@gentoo.org> +files/6-more-memory.patch,
  +files/7-more-memory.patch, icedtea-6.1.13.7.ebuild, icedtea-7.2.5.5.ebuild:
  Add memory patches for ppc/CACAO and keyword latest versions for ~ppc.

  07 May 2015;  <chewi@gentoo.org> icedtea-6.1.13.5.ebuild,
  icedtea-6.1.13.7.ebuild, icedtea-7.2.4.8.ebuild, icedtea-7.2.5.5.ebuild:
  Fix libpng dependency as you can't build against the non-0 SLOTs.

*icedtea-7.2.5.5 (06 May 2015)
*icedtea-6.1.13.7 (06 May 2015)

  06 May 2015; James Le Cuirot <chewi@gentoo.org> +icedtea-6.1.13.7.ebuild,
  +icedtea-7.2.5.5.ebuild, -files/icedtea-7-ecj_jar.patch,
  -icedtea-6.1.13.6.ebuild, -icedtea-7.2.5.4.ebuild,
  files/fontconfig.Gentoo.properties.src:
  Version bump. Closes #531686 and #541270. Also fix Asian font issue wrt bug
  #390663. Address security bug #524560 but older versions currently remain due
  to other keywords.

  20 Mar 2015; James Le Cuirot <chewi@gentoo.org> -icedtea-6.1.12.7.ebuild,
  -icedtea-6.1.13.3.ebuild, -icedtea-6.1.13.4.ebuild,
  -icedtea-6.1.13.5-r1.ebuild, -icedtea-7.2.4.3.ebuild, -icedtea-7.2.4.7.ebuild,
  -icedtea-7.2.5.3.ebuild, icedtea-6.1.13.6.ebuild, icedtea-7.2.5.4.ebuild:
  Clear a raft of old versions at gnu_andrew's request. Can't clear them all due
  to missing keywords on icedtea-web.

*icedtea-7.2.5.4 (23 Feb 2015)
*icedtea-6.1.13.6 (23 Feb 2015)

  23 Feb 2015; Miroslav Šulc <fordfrog@gentoo.org> +icedtea-6.1.13.6.ebuild,
  +icedtea-7.2.5.4.ebuild:
  copied ebuilds (by Andrew John Hughes <gnu_andrew@member.fsf.org>) from
  java-overlay

  21 Nov 2014; Mike Frysinger <vapier@gentoo.org> icedtea-6.1.12.7.ebuild,
  icedtea-6.1.13.3.ebuild, icedtea-6.1.13.4.ebuild, icedtea-7.2.4.3.ebuild,
  icedtea-7.2.4.7.ebuild, icedtea-7.2.4.8.ebuild, icedtea-7.2.5.3.ebuild:
  Backport makeopts_jobs to older ebuilds to stop parsing MAKEOPTS directly.

  02 Nov 2014; Sven Vermeulen <swift@gentoo.org> icedtea-6.1.12.7.ebuild,
  icedtea-6.1.13.3.ebuild, icedtea-6.1.13.4.ebuild, icedtea-6.1.13.5-r1.ebuild,
  icedtea-6.1.13.5.ebuild, icedtea-7.2.4.3.ebuild, icedtea-7.2.4.7.ebuild,
  icedtea-7.2.4.8.ebuild, icedtea-7.2.5.3.ebuild:
  Remove sec-policy/selinux-* dependency from DEPEND but keep in RDEPEND (bug
  #527698)

*icedtea-7.2.5.3 (01 Nov 2014)

  01 Nov 2014; Vlastimil Babka <caster@gentoo.org> +icedtea-7.2.5.3.ebuild,
  metadata.xml:
  Version bump, security bug #524560. Includes new useflags, see descriptions.
  Switch to icedtea-web:0 unconditionally and block icedtea-web:6, which allows
  creating missing javaws/itweb-setting symlinks for bug #504678 without file
  conflicts. Had to drop ia64 keyword temporarily.

*icedtea-6.1.13.5-r1 (01 Nov 2014)

  01 Nov 2014; Vlastimil Babka <caster@gentoo.org> +icedtea-6.1.13.5-r1.ebuild:
  Bump the openjdk tarball; switch to icedtea-web:0 unconditionally and block
  icedtea-web:6, which allows creating missing javaws/itweb-setting symlinks
  for bug #504678 without file conflicts. Had to drop keywords temporarily.

*icedtea-6.1.13.5 (18 Oct 2014)

  18 Oct 2014; Vlastimil Babka <caster@gentoo.org> +icedtea-6.1.13.5.ebuild,
  icedtea-7.2.4.8.ebuild:
  Version bump, security bug #524560. Use check-reqs for disk space, bug
  #508728, also use multiprocessing.eclass for passing the number of jobs to
  build system and some more cleanups - thanks to Arfrever Frehtes Taifersar
  Arahesis <arfrever.fta@gmail.com> for the patch. Use the HotSpot ARM32 JIT on
  arm rather than CACAO in 6.1.13.5.

*icedtea-7.2.4.8 (06 Oct 2014)
*icedtea-6.1.13.4 (06 Oct 2014)

  06 Oct 2014; Vlastimil Babka <caster@gentoo.org> +icedtea-6.1.13.4.ebuild,
  +icedtea-7.2.4.8.ebuild:
  Version bump, bug #524560.

  05 Oct 2014; Vlastimil Babka <caster@gentoo.org> icedtea-7.2.4.3.ebuild,
  icedtea-7.2.4.7.ebuild:
  USE depend on icedtea7 flag for icedtea-web:0, thanks arfrever.

  05 Oct 2014; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.13.3.ebuild,
  icedtea-7.2.4.7.ebuild:
  Depend on >=ant-core-1.8.2 as it needs no extra tasks

  05 Oct 2014; Vlastimil Babka <caster@gentoo.org> -icedtea-6.1.13.1.ebuild,
  -icedtea-6.1.13.2.ebuild, icedtea-6.1.13.3.ebuild, -icedtea-7.2.4.5.ebuild,
  -icedtea-7.2.4.6.ebuild, icedtea-7.2.4.7.ebuild:
  Fix icedtea-web dependencies, bug #500264.

  17 May 2014; Sven Vermeulen <swift@gentoo.org> icedtea-6.1.12.7.ebuild,
  icedtea-6.1.13.1.ebuild, icedtea-6.1.13.2.ebuild, icedtea-6.1.13.3.ebuild,
  icedtea-7.2.4.3.ebuild, icedtea-7.2.4.5.ebuild, icedtea-7.2.4.6.ebuild,
  icedtea-7.2.4.7.ebuild:
  Add USE=selinux dependency to sec-policy/selinux-java

  17 Apr 2014; Agostino Sarubbo <ago@gentoo.org> icedtea-6.1.13.3.ebuild:
  readd dev-java/ant-core as DEPEND

*icedtea-7.2.4.7 (17 Apr 2014)
*icedtea-6.1.13.3 (17 Apr 2014)

  17 Apr 2014; Agostino Sarubbo <ago@gentoo.org> +icedtea-6.1.13.3.ebuild,
  +icedtea-7.2.4.7.ebuild:
  Version bump to 6.1.13.3 and 7.2.4.7

*icedtea-7.2.4.6 (06 Apr 2014)

  06 Apr 2014; Agostino Sarubbo <ago@gentoo.org> +files/icedtea-7-ecj_jar.patch,
  +icedtea-7.2.4.6.ebuild, metadata.xml:
  Version bump requested by Andrew, fix bug #500176 readding dev-java/ant-core
  as DEPEND

*icedtea-6.1.13.2 (06 Apr 2014)

  06 Apr 2014; Agostino Sarubbo <ago@gentoo.org> +icedtea-6.1.13.2.ebuild,
  icedtea-6.1.12.7.ebuild, icedtea-6.1.13.1.ebuild, icedtea-7.2.4.5.ebuild:
  Version bump requested by Andrew, fix bug #500176 readding dev-java/ant-core
  as DEPEND

*icedtea-7.2.4.5 (03 Feb 2014)

  03 Feb 2014; Ralph Sennhauser <sera@gentoo.org> +icedtea-7.2.4.5.ebuild:
  Version bump

  30 Jan 2014; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.13.1.ebuild:
  Fix sandbox violation #499746

*icedtea-6.1.13.1 (29 Jan 2014)

  29 Jan 2014; Ralph Sennhauser <sera@gentoo.org> +icedtea-6.1.13.1.ebuild:
  Security bump #499464

  10 Dec 2013; Tom Wijsman <TomWij@gentoo.org> -icedtea-6.1.12.4.ebuild,
  -icedtea-6.1.12.5.ebuild, -icedtea-6.1.12.6.ebuild, -icedtea-7.2.3.12.ebuild,
  -icedtea-7.2.4.1.ebuild:
  Cleanup for security bug #489570.

  10 Dec 2013; Patrick Lauer <patrick@gentoo.org> icedtea-6.1.12.7.ebuild:
  Whitespace

  09 Dec 2013; Vlastimil Babka <caster@gentoo.org> +icedtea-6.1.12.7.ebuild:
  Version bump, security bug #489570.

*icedtea-6.1.12.7 (08 Dec 2013)

  08 Dec 2013; Vlastimil Babka <caster@gentoo.org> +icedtea-6.1.12.7.ebuild:
  Version bump, security bug #489570. USE=jbootstrap no longer default, leads
  to faster builds. Allow new icedtea-web:0 to satisfy nsplugin dep.

  21 Nov 2013; Michael Palimaka <kensington@gentoo.org> icedtea-7.2.3.12.ebuild,
  icedtea-7.2.4.3.ebuild:
  Pin virtual/jpeg SLOT to 0.

  11 Nov 2013; Vlastimil Babka <caster@gentoo.org> icedtea-7.2.4.3.ebuild:
  Depend on the newly introduced icedtea7 flag for icedtea-web:0

  30 Oct 2013; Vlastimil Babka <caster@gentoo.org> icedtea-7.2.4.3.ebuild:
  Bump lcms dep to >=2.5 due to configure checks. Thanks to 'nacon' for
  reporting on IRC.

  27 Oct 2013; Vlastimil Babka <caster@gentoo.org> icedtea-7.2.4.3.ebuild:
  Allow switching to the new shared icedtea-web:0

*icedtea-7.2.4.3 (27 Oct 2013)

  27 Oct 2013; Vlastimil Babka <caster@gentoo.org> +icedtea-7.2.4.3.ebuild:
  Version bump, security bug #489570. Icedtea-6 allowed again for building.
  USE=jbootstrap no longer default, disabling leads to much faster builds.

  09 Sep 2013; Rick Farina <zerochaos@gentoo.org> -icedtea-7.2.3.8.ebuild,
  -icedtea-7.2.3.9.ebuild:
  removing insecure ebuilds per bug https://bugs.gentoo.org/477210

*icedtea-7.2.3.12 (09 Sep 2013)

  09 Sep 2013; Rick Farina <zerochaos@gentoo.org> +icedtea-7.2.3.12.ebuild,
  metadata.xml:
  pulling new icedtea from overlay into main tree in the hopes of getting
  functional arm support

  27 Aug 2013; Michael Palimaka <kensington@gentoo.org> icedtea-6.1.12.4.ebuild,
  icedtea-6.1.12.5.ebuild, icedtea-6.1.12.6.ebuild, icedtea-7.2.3.8.ebuild,
  icedtea-7.2.3.9.ebuild, icedtea-7.2.4.1.ebuild:
  Pin virtual/jpeg SLOT to 0.

  14 Aug 2013; Patrick Lauer <patrick@gentoo.org> icedtea-7.2.3.9.ebuild:
  Whitespace

  23 Jul 2013; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.12.6.ebuild,
  icedtea-7.2.4.1.ebuild:
  Depend on >=icedtea-web-1.3.2 to prevent breakage, see
  http://blog.fuseyism.com/index.php/2013/06/19/imminent-icedtea-web-breakage/

  22 Jul 2013; Tom Wijsman <TomWij@gentoo.org> icedtea-7.2.4.1.ebuild,
  metadata.xml:
  Check for at least 9G of build space, current version is close to 8G without
  debug information and LTO.

*icedtea-6.1.12.6 (20 Jul 2013)

  20 Jul 2013; Tom Wijsman <TomWij@gentoo.org> +icedtea-6.1.12.6.ebuild,
  metadata.xml:
  Version bump to 6.1.12.6.

*icedtea-7.2.4.1 (20 Jul 2013)

  20 Jul 2013; Tom Wijsman <TomWij@gentoo.org> +icedtea-7.2.4.1.ebuild:
  Version bump to 7.2.4.1, I plan to do the 6.1.12.6 bump tomorrow; fixes bug
  #477210, reported by wbrana. Removed zero hotspot tarball fetch due to
  http://icedtea.classpath.org/hg/release/icedtea7-2.4/rev/08d655f1631e

  01 Jun 2013; Ralph Sennhauser <sera@gentoo.org> icedtea-7.2.3.9.ebuild:
  Add ant-core dep, we aren't using the java-ant-2.eclass, reported by genstorm

*icedtea-7.2.3.9 (28 May 2013)

  28 May 2013; Ralph Sennhauser <sera@gentoo.org> +icedtea-7.2.3.9.ebuild:
  Security bump #466822
  Drop ant deps, the eclass ensures package requirements. 466558
  Rename tarballs #439140
  This version doesn't build with icedtea 6

*icedtea-6.1.12.5 (22 May 2013)

  22 May 2013; Vlastimil Babka <caster@gentoo.org> +icedtea-6.1.12.5.ebuild:
  Version bump, security bug #466822.

  17 Mar 2013; Markos Chandras <hwoarang@gentoo.org> metadata.xml:
  Add proxy-maintainers to metadata.xml

*icedtea-7.2.3.8 (14 Mar 2013)
*icedtea-6.1.12.4 (14 Mar 2013)

  14 Mar 2013; Ralph Sennhauser <sera@gentoo.org> -icedtea-6.1.12.2.ebuild,
  -icedtea-6.1.12.3.ebuild, +icedtea-6.1.12.4.ebuild, -icedtea-7.2.3.6.ebuild,
  +icedtea-7.2.3.8.ebuild:
  Security bump. #461714

*icedtea-6.1.12.3 (20 Feb 2013)

  20 Feb 2013; Ralph Sennhauser <sera@gentoo.org> +icedtea-6.1.12.3.ebuild:
  Security bump #458410

*icedtea-7.2.3.6 (13 Feb 2013)
*icedtea-6.1.12.2 (13 Feb 2013)

  13 Feb 2013; Ralph Sennhauser <sera@gentoo.org> -icedtea-6.1.11.5.ebuild,
  -icedtea-6.1.12.0.ebuild, -files/icedtea-6.1.12.0-parallel-unpack.patch,
  -icedtea-6.1.12.1.ebuild, +icedtea-6.1.12.2.ebuild,
  -files/icedtea-6-pass_javac_memory_args_to_vm.patch,
  -files/icedtea-6_pax_kernel_support.patch,
  -files/icedtea-7.2.3.2-pax_mark_rmic_java.patch,
  -files/icedtea-7.2.3.3-pax_mark_rmic_java.patch, -icedtea-7.2.3.4.ebuild,
  -files/icedtea-7.2.3.4-parallel-unpack.patch, +icedtea-7.2.3.6.ebuild:
  Bump, security fixes for 7, regression fixes for 6
  Remove vulnerable

*icedtea-6.1.12.1 (11 Feb 2013)

  11 Feb 2013; Ralph Sennhauser <sera@gentoo.org> +icedtea-6.1.12.1.ebuild:
  Security bump

  05 Feb 2013; Rick Farina <zerochaos@gentoo.org> icedtea-6.1.12.0.ebuild:
  adding ~arm

  01 Feb 2013; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.12.0.ebuild,
  +files/icedtea-6.1.12.0-parallel-unpack.patch, icedtea-7.2.3.4.ebuild,
  +files/icedtea-7.2.3.4-parallel-unpack.patch:
  Fix parallel unpacking for cacao and jamvm. #453608

*icedtea-6.1.12.0 (31 Jan 2013)

  31 Jan 2013; Ralph Sennhauser <sera@gentoo.org> -icedtea-6.1.11.4.ebuild,
  +icedtea-6.1.12.0.ebuild, -icedtea-7.2.3.2.ebuild, -icedtea-7.2.3.3.ebuild:
  Version bump, import from java-overlay
  Remove old /vulnerable

  23 Jan 2013; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.11.5.ebuild,
  icedtea-7.2.3.4.ebuild:
  Use jamvm and replace -Os with -O2 on arm. #IT1266 #IT1267

*icedtea-7.2.3.4 (16 Jan 2013)

  16 Jan 2013; Ralph Sennhauser <sera@gentoo.org> +icedtea-7.2.3.4.ebuild:
  Security bump. #452432

*icedtea-7.2.3.3 (18 Oct 2012)
*icedtea-6.1.11.5 (18 Oct 2012)

  18 Oct 2012; Ralph Sennhauser <sera@gentoo.org> +icedtea-6.1.11.5.ebuild,
  +icedtea-7.2.3.3.ebuild, +files/icedtea-7.2.3.3-pax_mark_rmic_java.patch:
  Security bump. #438750

  28 Sep 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.11.4.ebuild,
  icedtea-7.2.3.2.ebuild:
  Remove obsolete docompress workaround. #433685

  26 Sep 2012; Ralph Sennhauser <sera@gentoo.org> -icedtea-6.1.11.2.ebuild,
  -icedtea-6.1.11.3.ebuild, icedtea-6.1.11.4.ebuild,
  -files/icedtea-7-compile_for_7_cacao_mem.patch,
  -files/icedtea-7.2.0-explicit-gthread.patch,
  -files/icedtea-7.2.0_pax_kernel_support.patch, -icedtea-7.2.1.ebuild,
  -icedtea-7.2.1.1.ebuild, -files/icedtea-7.2.1.1-pax_mark_rmic_java.patch,
  -files/icedtea-7.2.1.1-pr986-cacao_memory_fix.patch, -icedtea-7.2.2.ebuild,
  -icedtea-7.2.2.1.ebuild, -files/icedtea-7.2.2.1-pax_mark_rmic_java.patch,
  -files/icedtea-7.2.2.1-pr986-cacao_memory_fix.patch,
  -files/icedtea-7.2.2.1-warnings_are_errors.patch,
  -files/icedtea-7.2.2-no_suffix.patch, -icedtea-7.2.3.1.ebuild,
  -files/icedtea-7.2.3.1-pax_mark_rmic_java.patch, icedtea-7.2.3.2.ebuild,
  -files/icedtea-7-compiler_detection_cleanup.patch,
  -files/icedtea-7-no_suffix.patch:
  Fix package.env entry of rhino. #433283
  Remove vulnarable. #433389

*icedtea-6.1.11.4 (02 Sep 2012)

  02 Sep 2012; Vlastimil Babka <caster@gentoo.org> +icedtea-6.1.11.4.ebuild:
  Version bump from java-overlay, security bug #433389.

*icedtea-7.2.3.2 (02 Sep 2012)

  02 Sep 2012; Vlastimil Babka <caster@gentoo.org> +icedtea-7.2.3.2.ebuild,
  +files/icedtea-7.2.3.2-pax_mark_rmic_java.patch:
  Version bump from java-overlay, security bug #433389.

*icedtea-7.2.3.1 (31 Aug 2012)

  31 Aug 2012; Vlastimil Babka <caster@gentoo.org> +icedtea-7.2.3.1.ebuild,
  +files/icedtea-7.2.3.1-pax_mark_rmic_java.patch:
  Version bump, security bug #433389.

  27 Jun 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-7.2.2.1.ebuild,
  +files/icedtea-7.2.2.1-warnings_are_errors.patch:
  Make werror a configure option and disable it so icedtea 7 can be built using
  gcc 4.7. #310503 #418359
  Many thanks to the various people providing support in #418359

  24 Jun 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.11.3.ebuild,
  files/icedtea-6_pax_kernel_support.patch, icedtea-7.2.1.1.ebuild,
  +files/icedtea-7.2.1.1-pax_mark_rmic_java.patch, icedtea-7.2.2.1.ebuild,
  +files/icedtea-7.2.2.1-pax_mark_rmic_java.patch:
  Fix building with PaX enabled kernels. #422525

  19 Jun 2012; Ralph Sennhauser <sera@gentoo.org> -icedtea-6.1.10.6.ebuild,
  -icedtea-6.1.11.1.ebuild, -files/icedtea-6.1.11.1-cacao_jvm.cfg.patch,
  -icedtea-7.2.0.1.ebuild, metadata.xml:
  Drop 1.10 and 2.0 branches.

*icedtea-7.2.2.1 (19 Jun 2012)
*icedtea-7.2.1.1 (19 Jun 2012)
*icedtea-6.1.11.3 (19 Jun 2012)

  19 Jun 2012; Ralph Sennhauser <sera@gentoo.org> +icedtea-6.1.11.3.ebuild,
  +files/icedtea-6-pass_javac_memory_args_to_vm.patch,
  +files/icedtea-7.2.2.1-pr986-cacao_memory_fix.patch,
  +files/icedtea-7-compile_for_7_cacao_mem.patch, +icedtea-7.2.1.1.ebuild,
  +files/icedtea-7.2.1.1-pr986-cacao_memory_fix.patch, +icedtea-7.2.2.1.ebuild,
  +files/icedtea-7-compiler_detection_cleanup.patch,
  +files/icedtea-7-no_suffix.patch, metadata.xml:
  Security bump. Imported from java-overlay. #421031

*icedtea-7.2.2 (10 Jun 2012)

  10 Jun 2012; Ralph Sennhauser <sera@gentoo.org> +icedtea-7.2.2.ebuild,
  +files/icedtea-7.2.2-no_suffix.patch:
  Version bump.

*icedtea-6.1.11.2 (14 May 2012)

  14 May 2012; Ralph Sennhauser <sera@gentoo.org> +icedtea-6.1.11.2.ebuild:
  Version bump.

  03 May 2012; Jeff Horelick <jdhore@gentoo.org> icedtea-6.1.10.6.ebuild,
  icedtea-6.1.11.1.ebuild, icedtea-7.2.0.1.ebuild, icedtea-7.2.1.ebuild:
  dev-util/pkgconfig -> virtual/pkgconfig

  15 Apr 2012; Mike Frysinger <vapier@gentoo.org> icedtea-6.1.11.1.ebuild:
  Add back ia64 love #349020 by Dennis Schridde.

  15 Apr 2012; Mike Frysinger <vapier@gentoo.org> icedtea-7.2.1.ebuild:
  Add back ia64 love #349020 by Dennis Schridde.

  29 Mar 2012; Ralph Sennhauser <sera@gentoo.org> -icedtea-6.1.10.5.ebuild,
  -icedtea-6.1.11.ebuild, -icedtea-7.2.0-r1.ebuild, -icedtea-7.2.0-r2.ebuild,
  -icedtea-7.2.0-r3.ebuild:
  remove vulnerable. #404095

  29 Mar 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.11.1.ebuild,
  +files/icedtea-6.1.11.1-cacao_jvm.cfg.patch:
  Add upstream patch for builing cacao on ppc(64). #403159
  Put back ~ppc ~ppc64 for IcedTea 6 1.11 branch.

  15 Mar 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.10.6.ebuild,
  icedtea-6.1.11.1.ebuild, icedtea-7.2.0.1.ebuild,
  +files/icedtea-7.2.0-explicit-gthread.patch, icedtea-7.2.1.ebuild:
  - Use JAVA_PKG_WANT_BUILD_VM to limit build VM. This now respects system VM
  setting if usable and simplifies pkg_setup.
  - Add JamVM for alternative archs with IcedTea 7
  - Fix building against >=glib-2.31. #402481
  Thanks to Marien Zwart <marienz@gentoo.org> for the patch.
  - Simplify USE=jbootstrap logic for icedtea-7.

  25 Feb 2012; Ralph Sennhauser <sera@gentoo.org>
  +files/icedtea-7.2.0_pax_kernel_support.patch:
  Add missing patch

*icedtea-7.2.1 (24 Feb 2012)
*icedtea-7.2.0.1 (24 Feb 2012)
*icedtea-6.1.10.6 (24 Feb 2012)

  24 Feb 2012; Ralph Sennhauser <sera@gentoo.org> +icedtea-6.1.10.6.ebuild,
  icedtea-6.1.11.ebuild, icedtea-6.1.11.1.ebuild, +icedtea-7.2.0.1.ebuild,
  +icedtea-7.2.1.ebuild:
  Version bump, security bug #404095.
  No vm currently available for IcedTea 7 on alternative archs.
  Temporarely drop ~ppc ~ppc64 for IcedTea 6 1.11 branch. #403159
  For archs other than x86 and amd64 icedtea-6.1.10.6 likely works best.

*icedtea-6.1.11.1 (18 Feb 2012)

  18 Feb 2012; Vlastimil Babka <caster@gentoo.org> +icedtea-6.1.11.1.ebuild:
  Version bump, security bug #404095.

  08 Feb 2012; Ralph Sennhauser <sera@gentoo.org> -icedtea-6.1.10.4-r1.ebuild,
  -icedtea-6.1.10.4-r2.ebuild, -icedtea-6.1.10.4-r3.ebuild, metadata.xml:
  Remove old, remove no longer used local use descriptions.
  Restore ChangeLog truncated by mistake.

  08 Feb 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.10.5.ebuild,
  icedtea-6.1.11.ebuild, icedtea-7.2.0-r3.ebuild:
  Install sytem.lockfile and systemRootModFile for use of icedtea in sandboxed
  environments. #402507

  06 Feb 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.10.5.ebuild,
  icedtea-6.1.11.ebuild, icedtea-7.2.0-r3.ebuild:
  Add missing DEPEND on unzip. #402353

*icedtea-6.1.11 (06 Feb 2012)
*icedtea-6.1.10.5 (06 Feb 2012)

  06 Feb 2012; Ralph Sennhauser <sera@gentoo.org> +icedtea-6.1.10.5.ebuild,
  +icedtea-6.1.11.ebuild, +files/icedtea-6_pax_kernel_support.patch,
  metadata.xml:
  Version bump, move from java-overlay.
  Always uses CACAO as best alternative JVM if HotSpot isn't available.
  USE=-X, don't install X11GraphicsEnvironment. #399367
  Add revdep mask for reduced installs. (-X, -alsa, -cups) #400691, #401621

  21 Dec 2011; Ralph Sennhauser <sera@gentoo.org> icedtea-7.2.0-r3.ebuild:
  Fix dosym usage. #395391

  02 Dec 2011; Ralph Sennhauser <sera@gentoo.org> ChangeLog:
  Restore ChangeLog truncated by mistake, bug #391253.

*icedtea-7.2.0-r3 (02 Dec 2011)
*icedtea-6.1.10.4-r3 (02 Dec 2011)

  02 Dec 2011; Ralph Sennhauser <sera@gentoo.org> +icedtea-6.1.10.4-r3.ebuild,
  +icedtea-7.2.0-r3.ebuild, metadata.xml:
  - Fix bootstrap build for PaX enabled kernels. #389751
  - Add missing dependency on ecj for use jbootstrap #392337
  - Don't use eclipse-ecj:3.7 for icedtea:6 #392587
  - Add various missing dependencies according to scanelf results.
  icedtea-7: dev-libs/atk sys-devel/gcc sys-libs/glibc x11-libs/cairo
  x11-libs/gdk-pixbuf x11-libs/pango nss? ( dev-libs/nss )
  icedtea-6: dev-libs/glib sys-devel/gcc sys-libs/glibc
  - Fix libffi dependency for non ppc archs.
  - Make dependencies optional at runtime as for icedtea-bin for installing via
  binpkg. Use flags are X alsa cups.
  - Allow building cacao and jamvm as additional VMs. To use run java -cacao
  respectively java -jamvm. Use flags are cacao and jamvm.

*icedtea-7.2.0-r2 (28 Nov 2011)
*icedtea-6.1.10.4-r2 (28 Nov 2011)

  28 Nov 2011; Ralph Sennhauser <sera@gentoo.org> +icedtea-6.1.10.4-r2.ebuild,
  +icedtea-7.2.0-r2.ebuild, +files/fontconfig.Gentoo.properties.src,
  files/icedtea.env, metadata.xml:
  Install Gentoo specific fontconfig properties file. #390663
  Add missing dependency on pkgconfig. #391987
  Add use flag X and cjk to install expected fonts. #349916
  Add use flag source and install src.zip conditionally.
  Add use flag jbootstrap and make bootstrap optional where possible.
  Remove use flag xrender and require libXrender for icedtea:6, icedtea:7 does
  this already. #382867
  Use @SLOT@ substitution in set_java_env.
  Prefixify.

  25 Nov 2011; Vlastimil Babka <caster@gentoo.org> ChangeLog:
  Restore Changelog truncated by mistake, bug #391253.

  21 Nov 2011; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.10.4-r1.ebuild,
  icedtea-7.2.0-r1.ebuild:
  Use java-vm-2.eclass to set PaX markings

  18 Nov 2011; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.10.4-r1.ebuild,
  icedtea-7.2.0-r1.ebuild:
  Remove unneeded pkg_postinst

  18 Nov 2011; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.10.4-r1.ebuild,
  icedtea-7.2.0-r1.ebuild:
  Add missing cpio dep and remove the old libXext version variant, bug #389599.

  18 Nov 2011; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.10.4-r1.ebuild,
  icedtea-7.2.0-r1.ebuild:
  Remove 'cacao' and 'jamvm' USE flags. Also remove 'zero' flag and have it
  used only for ppc/ppc64. This functionality was experimental and brought more
  problems than benefits. Also remove the bootstrapping with cacao due to
  failures. Fixes numerous bugs.

  18 Nov 2011; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.10.4-r1.ebuild,
  icedtea-7.2.0-r1.ebuild:
  Add additional PaX markings to executables for x86. Bug 389751

  18 Nov 2011; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.10.4-r1.ebuild,
  icedtea-7.2.0-r1.ebuild:
  Fix detection of parallel jobs from MAKEOPTS to handle all syntax variants.
  Fixes bug #337827 and #389791. Using syntax from waf-utils.eclass

  18 Nov 2011; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.10.4-r1.ebuild,
  icedtea-7.2.0-r1.ebuild:
  Add --disable-bootstrap on PaX enabled hosts when building using IcedTea7.
  Bug #389751.

  13 Nov 2011; Ralph Sennhauser <sera@gentoo.org> icedtea-7.2.0-r1.ebuild:
  Fix building with PaX enabled kernels. Bug #389751. Thanks to Daniel Kuehn
  <enhaisa@gmail.com> and Magnus Granberg <zorry@gentoo.org> for their help
  finding the patch

  12 Nov 2011; Ralph Sennhauser <sera@gentoo.org> icedtea-7.2.0-r1.ebuild:
  Use java-vm_sandbox-predict for installing the controle file

  11 Nov 2011; Vlastimil Babka <caster@gentoo.org> icedtea-7.2.0-r1.ebuild:
  Support building using icedtea-bin-7.

  10 Nov 2011; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.10.4-r1.ebuild,
  icedtea-7.2.0-r1.ebuild:
  Fix building with unusal locales, bug #330433 #389717

  08 Nov 2011; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.10.4-r1.ebuild,
  icedtea-7.2.0-r1.ebuild:
  Allow building of icedtea with icedtea-bin-6, bug 389885

  07 Nov 2011; Vlastimil Babka <caster@gentoo.org> -icedtea-6.1.10.4.ebuild,
  icedtea-6.1.10.4-r1.ebuild, icedtea-7.2.0-r1.ebuild:
  Prepare for icedtea-bin version and VMHANDLE migration.

  06 Nov 2011; Vlastimil Babka <caster@gentoo.org> icedtea-7.2.0-r1.ebuild:
  Fix build due to missing ant class when xalan and xerces are not installed,
  bug #389625.

  05 Nov 2011; Vlastimil Babka <caster@gentoo.org> icedtea-7.2.0-r1.ebuild:
  Relax lcms dep to allow the stable 2.0a satisfy it.

  05 Nov 2011; Diego E. Pettenò <flameeyes@gentoo.org> icedtea-7.2.0-r1.ebuild:
  QA fix: add missing cpio dependency.

  04 Nov 2011; Vlastimil Babka <caster@gentoo.org> icedtea-7.2.0-r1.ebuild:
  Add ~x86 keyword.

*icedtea-7.2.0-r1 (04 Nov 2011)

  04 Nov 2011; Vlastimil Babka <caster@gentoo.org> +icedtea-7.2.0-r1.ebuild:
  Version bump from the java-overlay, bug #382485.

  04 Nov 2011; Vlastimil Babka <caster@gentoo.org>
  -files/6.1.10.2-371405-linux_version.patch, -files/6.1.9.6-sparc.patch:
  Remove unused patches.

*icedtea-6.1.10.4-r1 (04 Nov 2011)

  04 Nov 2011; Vlastimil Babka <caster@gentoo.org> +icedtea-6.1.10.4-r1.ebuild:
  Revbump to use EAPI=4 and change the VMHANDLE icedtea6 to the standard
  icedtea-6. System vm setting is upgraded automatically. Any user-vm setting
  have to be migrated manually.

  30 Oct 2011; Vlastimil Babka <caster@gentoo.org> -icedtea-6.1.10.2.ebuild,
  -icedtea-6.1.10.3.ebuild, icedtea-6.1.10.4.ebuild:
  Package move icedtea6-bin to icedtea-bin.

*icedtea-6.1.10.4 (21 Oct 2011)

  21 Oct 2011; Vlastimil Babka <caster@gentoo.org> +icedtea-6.1.10.4.ebuild:
  Version bump, security bug #387637.

  09 Sep 2011; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.10.2.ebuild,
  icedtea-6.1.10.3.ebuild:
  Use /usr/lib instead of get_libdir for the vmhome path, bug #380853.

*icedtea-6.1.10.3 (22 Jul 2011)

  22 Jul 2011; Vlastimil Babka <caster@gentoo.org> +icedtea-6.1.10.3.ebuild:
  Version bump, from java-overlay.

  17 Jul 2011; Vlastimil Babka <caster@gentoo.org> -icedtea-6.1.9.7-r1.ebuild,
  -icedtea-6.1.10.ebuild, -icedtea-6.1.10.1.ebuild, icedtea-6.1.10.2.ebuild,
  +files/6.1.10.2-371405-linux_version.patch:
  Apply patch for Linux 3.* compatibility from overlay, fixing buf #371405.
  Remove old versions.

*icedtea-6.1.10.2 (09 Jun 2011)

  09 Jun 2011; Vlastimil Babka <caster@gentoo.org> +icedtea-6.1.10.2.ebuild:
  Version bump, security bug #370787.

  22 Apr 2011; Jeroen Roovers <jer@gentoo.org> metadata.xml:
  Spelling.

*icedtea-6.1.10.1 (08 Apr 2011)

  08 Apr 2011; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.9.7-r1.ebuild,
  icedtea-6.1.10.ebuild, +icedtea-6.1.10.1.ebuild, metadata.xml:
  Version bump, bug #361921. Restrict libpng deps on older versions.

  29 Mar 2011; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.9.7-r1.ebuild,
  icedtea-6.1.10.ebuild:
  Slot GTK+ deps.

*icedtea-6.1.10 (05 Mar 2011)

  05 Mar 2011; <caster@gentoo.org> -icedtea-6.1.9.6.ebuild,
  +icedtea-6.1.10.ebuild, metadata.xml:
  Version bump, bug #357153.

*icedtea-6.1.9.7-r1 (18 Feb 2011)

  18 Feb 2011; Vlastimil Babka <caster@gentoo.org> -files/6.1.9.4-sparc.patch,
  -icedtea-6.1.9.4.ebuild, -icedtea-6.1.9.5.ebuild, +icedtea-6.1.9.7-r1.ebuild,
  -files/6.1.9.5-sparc.patch, -files/icedtea-old.env:
  Version bump, security bug #355127. Webstart and nsplugin are now deferred to
  separate icedtea-web package via PDEPEND.

*icedtea-6.1.9.6 (09 Feb 2011)

  09 Feb 2011; Vlastimil Babka <caster@gentoo.org> +files/6.1.9.6-sparc.patch,
  +icedtea-6.1.9.6.ebuild:
  Version bump, security bug #354231.

*icedtea-6.1.9.5 (02 Feb 2011)

  02 Feb 2011; Vlastimil Babka <caster@gentoo.org> +files/6.1.9.5-sparc.patch,
  +icedtea-6.1.9.5.ebuild, +files/icedtea-old.env, -files/6.1.9.3-sparc.patch,
  -icedtea-6.1.9.3.ebuild, icedtea-6.1.9.4.ebuild, files/icedtea.env:
  Version bump, security bug #353418. Use get_libdir to set proper lib dir in
  the env file.

  21 Jan 2011; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.9.3.ebuild,
  icedtea-6.1.9.4.ebuild:
  Use virtual/jpeg, bug #347953.

  21 Jan 2011; Vlastimil Babka <caster@gentoo.org> +files/6.1.9.4-sparc.patch:
  Add missing patch from the overlay, sorry. Bug #352314.

*icedtea-6.1.9.4 (21 Jan 2011)

  21 Jan 2011; Vlastimil Babka <caster@gentoo.org> -icedtea-6.1.9.1.ebuild,
  -icedtea-6.1.9.2.ebuild, +icedtea-6.1.9.4.ebuild:
  Version bump, including security fix for CVE-2010-4351: IcedTea JNLP
  SecurityManager bypass. Bug #352035.

  20 Jan 2011; Kacper Kowalik <xarthisius@gentoo.org>
  icedtea-6.1.9.3.ebuild:
  Mark ~ppc/~ppc64 wrt #308513. Thanks to Kris Hepler <khepler@gmail.com>
  for testing.

  12 Dec 2010; Vlastimil Babka <caster@gentoo.org> +files/6.1.9.3-sparc.patch,
  icedtea-6.1.9.3.ebuild:
  Add patch for sparc, bug #344659.

  02 Dec 2010; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.9.3.ebuild,
  metadata.xml:
  Check that webstart flag is enabled if nsplugin flag is enabled. Document
  this in metadata.xml.

*icedtea-6.1.9.3 (02 Dec 2010)

  02 Dec 2010; Vlastimil Babka <caster@gentoo.org> +icedtea-6.1.9.3.ebuild:
  Version bump.

  26 Nov 2010; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.9.1.ebuild,
  icedtea-6.1.9.2.ebuild:
  Use versionator for ICEDTEA_VER

*icedtea-6.1.9.2 (25 Nov 2010)

  25 Nov 2010; Vlastimil Babka <caster@gentoo.org> +icedtea-6.1.9.2.ebuild,
  metadata.xml:
  Security version bump, bug #346799, thanks to Andrew John Hughes
  (gnu_andrew@member.fsf.org). Also adds webstart useflag.

  14 Nov 2010; Vlastimil Babka <caster@gentoo.org>
  -files/6.1.8.0-systemtap-gcc-4.5.patch, -icedtea-6.1.8.0.ebuild,
  -icedtea-6.1.8.1.ebuild, -icedtea-6.1.9.ebuild:
  Remove old.

  14 Nov 2010; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.8.0.ebuild,
  icedtea-6.1.8.1.ebuild, icedtea-6.1.9.ebuild, icedtea-6.1.9.1.ebuild:
  Fix eselect-ecj deps.

*icedtea-6.1.9.1 (13 Oct 2010)

  13 Oct 2010; Vlastimil Babka <caster@gentoo.org> +icedtea-6.1.9.1.ebuild,
  metadata.xml:
  Version bump, security bug #340819.

*icedtea-6.1.9 (09 Sep 2010)

  09 Sep 2010; Vlastimil Babka <caster@gentoo.org> +icedtea-6.1.9.ebuild:
  Version bump from java-overlay.

*icedtea-6.1.8.1 (30 Jul 2010)

  30 Jul 2010; Vlastimil Babka <caster@gentoo.org> -files/1.7.2-free.patch,
  -files/6.1.7.3-systemtap-gcc-4.5.patch, -icedtea-6.1.7.2-r1.ebuild,
  -icedtea-6.1.7.3.ebuild, +icedtea-6.1.8.1.ebuild, metadata.xml:
  Security version bump, bug #330205. Remove the older 1.7.x.

*icedtea-6.1.7.3 (03 May 2010)

  03 May 2010; Vlastimil Babka <caster@gentoo.org>
  +files/6.1.7.3-systemtap-gcc-4.5.patch,
  +files/6.1.8.0-systemtap-gcc-4.5.patch, -icedtea-6.1.7.1.ebuild,
  +icedtea-6.1.7.3.ebuild, icedtea-6.1.8.0.ebuild:
  Fix building with gcc-4.5 and USE=systemtap - fixes bug #317343. Bump the
  6.1.7.2-r1 to 6.7.1.3 (which is the same)for easier sync with the overlay.

  15 Apr 2010; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.8.0.ebuild:
  Add ant-nodeps to DEPEND since it's used in ANT_TASKS variable. Bug
  #315457.

*icedtea-6.1.8.0 (14 Apr 2010)

  14 Apr 2010; Vlastimil Babka <caster@gentoo.org> +icedtea-6.1.8.0.ebuild:
  Version bump, based on java-overlay ebuild. Remove the npplugin flag as
  upstream removed the old plugin - the npplugin is now installed simply
  with USE=nsplugin.

  31 Mar 2010; Vlastimil Babka <caster@gentoo.org> -icedtea-6.1.7.2.ebuild:
  Remove the unpatched revision.

*icedtea-6.1.7.2-r1 (31 Mar 2010)

  31 Mar 2010; Vlastimil Babka <caster@gentoo.org> +files/1.7.2-free.patch,
  +icedtea-6.1.7.2-r1.ebuild:
  Revbump to fix buffer overflow in npplugin.

*icedtea-6.1.7.2 (31 Mar 2010)

  31 Mar 2010; Vlastimil Babka <caster@gentoo.org> +icedtea-6.1.7.2.ebuild:
  Version bump, security bug #312297.

*icedtea-6.1.7.1 (04 Mar 2010)

  04 Mar 2010; Vlastimil Babka <caster@gentoo.org> +icedtea-6.1.7.1.ebuild,
  +files/generate-cacerts.pl, +files/icedtea.env, +metadata.xml:
  Import of ebuild by Andrew John Hughes (gnu_andrew@member.fsf.org) from
  java-overlay.