summaryrefslogtreecommitdiff
blob: 1df92160a1fd960f409a6f5d8089f808e3c2738e (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
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
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
# ChangeLog for www-servers/tomcat
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/www-servers/tomcat/ChangeLog,v 1.367 2015/08/04 08:27:48 ago Exp $

  04 Aug 2015; Agostino Sarubbo <ago@gentoo.org> tomcat-6.0.44-r0.ebuild,
  tomcat-7.0.59-r2.ebuild:
  Stable for ppc64, wrt bug #458890

  04 Aug 2015; Agostino Sarubbo <ago@gentoo.org> tomcat-6.0.44-r0.ebuild,
  tomcat-7.0.59-r2.ebuild:
  Stable for ppc, wrt bug #458890

  23 Jul 2015; Agostino Sarubbo <ago@gentoo.org> tomcat-6.0.44-r0.ebuild,
  tomcat-7.0.59-r2.ebuild, tomcat-8.0.23-r2.ebuild:
  Stable for x86, wrt bug #458890

  23 Jul 2015; Agostino Sarubbo <ago@gentoo.org> tomcat-6.0.44-r0.ebuild,
  tomcat-7.0.59-r2.ebuild, tomcat-8.0.23-r2.ebuild:
  Stable for amd64, wrt bug #458890

  22 Jul 2015; Patrice Clement <monsieurp@gentoo.org> tomcat-7.0.59-r1.ebuild,
  tomcat-7.0.59-r2.ebuild, tomcat-7.0.59.ebuild:
  Override java.7.home property unconditionally. This was causing tomcat's
  javadoc generation to fail.

  22 Jul 2015; Patrice Clement <monsieurp@gentoo.org> tomcat-6.0.44-r0.ebuild,
  tomcat-7.0.59-r2.ebuild, tomcat-8.0.23-r2.ebuild:
  Feed dodir and fperms functions with the ${dest} variable. This variable is
  already formatted with the $CATALINA_BASE full path. Fix security bug 458890.

*tomcat-6.0.44-r0 (21 Jul 2015)
*tomcat-7.0.59-r2 (21 Jul 2015)
*tomcat-8.0.23-r2 (21 Jul 2015)

  21 Jul 2015; Patrice Clement <monsieurp@gentoo.org> +tomcat-6.0.44-r0.ebuild,
  +tomcat-7.0.59-r2.ebuild, +tomcat-8.0.23-r2.ebuild:
  Create logs directory in $CATALINA_BASE and set up perms to 0750. Fix security
  bug 458890.

  12 Jul 2015; Patrick Lauer <patrick@gentoo.org> -tomcat-8.0.22-r1.ebuild,
  -tomcat-8.0.22.ebuild:
  Remove versions with unsatisfiable dependencies

  15 Jun 2015; Patrice Clement <monsieurp@gentoo.org>
  -files/tomcat-6.0.41-build.xml.patch, -files/tomcat-6.0.43-build.xml.patch,
  -files/tomcat-7.0.56-build.xml.patch, -files/tomcat-7.0.57-build.xml.patch,
  -tomcat-6.0.41.ebuild, -tomcat-6.0.43.ebuild, -tomcat-7.0.56.ebuild,
  -tomcat-7.0.57.ebuild:
  Remove old.

  15 Jun 2015; Agostino Sarubbo <ago@gentoo.org> tomcat-6.0.44.ebuild,
  tomcat-7.0.59.ebuild:
  Stable for ppc, wrt bug #549536

  10 Jun 2015; Agostino Sarubbo <ago@gentoo.org> tomcat-6.0.44.ebuild,
  tomcat-7.0.59.ebuild:
  Stable for ppc64, wrt bug #549536

*tomcat-8.0.22-r1 (09 Jun 2015)
*tomcat-7.0.59-r1 (09 Jun 2015)
*tomcat-8.0.23-r1 (09 Jun 2015)

  09 Jun 2015; Patrice Clement <monsieurp@gentoo.org> +tomcat-7.0.59-r1.ebuild,
  +tomcat-8.0.22-r1.ebuild, +tomcat-8.0.23-r1.ebuild:
  Remove jakarta-jstl dependency. Fix bug 551032.

  08 Jun 2015; Patrice Clement <monsieurp@gentoo.org> tomcat-7.0.59.ebuild:
  Add back ~ppc and ~ppc64 keywords to make repoman happy.

  05 Jun 2015; Agostino Sarubbo <ago@gentoo.org> tomcat-6.0.44.ebuild,
  tomcat-7.0.59.ebuild:
  Stable for x86, wrt bug #549536

  05 Jun 2015; Agostino Sarubbo <ago@gentoo.org> tomcat-6.0.44.ebuild,
  tomcat-7.0.59.ebuild:
  Stable for amd64, wrt bug #549536

*tomcat-7.0.57 (03 Jun 2015)
*tomcat-7.0.56 (03 Jun 2015)
*tomcat-6.0.41 (03 Jun 2015)
*tomcat-6.0.43 (03 Jun 2015)

  03 Jun 2015; Patrice Clement <monsieurp@gentoo.org>
  +files/tomcat-6.0.41-build.xml.patch, +files/tomcat-6.0.43-build.xml.patch,
  +files/tomcat-7.0.56-build.xml.patch, +files/tomcat-7.0.57-build.xml.patch,
  +tomcat-6.0.41.ebuild, +tomcat-6.0.43.ebuild, +tomcat-7.0.56.ebuild,
  +tomcat-7.0.57.ebuild:
  Restore vulnerable ebuilds until security team stabilise the new version. See
  bug 549536.

  03 Jun 2015; Patrice Clement <monsieurp@gentoo.org>
  -files/tomcat-7.0.56-build.xml.patch, -files/tomcat-7.0.57-build.xml.patch,
  -tomcat-7.0.56.ebuild, -tomcat-7.0.57.ebuild:
  Remove vulnerable versions < Tomcat 7.0.59. Fix security bug 549536.

*tomcat-6.0.44 (03 Jun 2015)

  03 Jun 2015; Patrice Clement <monsieurp@gentoo.org>
  +files/tomcat-6.0.44-build.xml.patch, +tomcat-6.0.44.ebuild,
  -files/tomcat-6.0.41-build.xml.patch, -files/tomcat-6.0.43-build.xml.patch,
  -tomcat-6.0.41.ebuild, -tomcat-6.0.43.ebuild:
  Tomcat 6.0.44 version bump. EAPI 5 bump. Remove vulnerable versions. Fix
  security bug 549536.

  26 May 2015; Miroslav Šulc <fordfrog@gentoo.org>
  -files/tomcat-8.0.20-build.xml.patch, -files/tomcat-8.0.21-build.xml.patch:
  removed obsolete files

*tomcat-8.0.23 (26 May 2015)

  26 May 2015; Miroslav Šulc <fordfrog@gentoo.org> +tomcat-8.0.23.ebuild,
  +files/tomcat-8.0.23-build.xml.patch:
  version bump

  26 May 2015; Miroslav Šulc <fordfrog@gentoo.org> -tomcat-8.0.18.ebuild,
  -tomcat-8.0.20.ebuild, -tomcat-8.0.21.ebuild,
  -files/tomcat-8.0.18-build.xml.patch:
  removed obsolete ebuilds

*tomcat-8.0.22 (07 May 2015)

  07 May 2015; Miroslav Šulc <fordfrog@gentoo.org> +tomcat-8.0.22.ebuild,
  +files/tomcat-8.0.22-build.xml.patch:
  version bump

  19 Apr 2015; Pacho Ramos <pacho@gentoo.org> tomcat-7.0.57.ebuild:
  x86 stable wrt bug #539596

*tomcat-8.0.21 (28 Mar 2015)

  28 Mar 2015; Miroslav Šulc <fordfrog@gentoo.org> +tomcat-8.0.21.ebuild,
  +files/tomcat-8.0.21-build.xml.patch:
  version bump

*tomcat-8.0.20 (24 Feb 2015)

  24 Feb 2015; Miroslav Šulc <fordfrog@gentoo.org> +tomcat-8.0.20.ebuild,
  +files/tomcat-8.0.20-build.xml.patch:
  version bump

  20 Feb 2015; Miroslav Šulc <fordfrog@gentoo.org> tomcat-8.0.18.ebuild:
  changed to eapi 5, simplified find command

*tomcat-8.0.18 (20 Feb 2015)

  20 Feb 2015; Miroslav Šulc <fordfrog@gentoo.org> +tomcat-8.0.18.ebuild,
  +files/tomcat-8.0.18-build.xml.patch:
  version bump (per bug #540696, ebuild by William L. Thomson Jr.
  <wlt@obsidian-studios.com>)

*tomcat-6.0.43 (10 Feb 2015)

  10 Feb 2015; Miroslav Šulc <fordfrog@gentoo.org> +tomcat-6.0.43.ebuild,
  +files/tomcat-6.0.43-build.xml.patch:
  version bump

*tomcat-7.0.59 (10 Feb 2015)

  10 Feb 2015; Miroslav Šulc <fordfrog@gentoo.org> +tomcat-7.0.59.ebuild,
  +files/tomcat-7.0.59-build.xml.patch:
  version bump

  22 Dec 2014; Johann Schmitz <ercpe@gentoo.org>
  -files/tomcat-6.0.37-build.xml.patch, -files/tomcat-6.0.39-build.xml.patch,
  -files/tomcat-7.0.42-build.xml.patch, -files/tomcat-7.0.47-build.xml.patch,
  -files/tomcat-7.0.52-build.xml.patch, -tomcat-6.0.37.ebuild,
  -tomcat-6.0.39.ebuild, -tomcat-7.0.42.ebuild, -tomcat-7.0.47.ebuild,
  -tomcat-7.0.52.ebuild:
  Dropped vulnerable versions

*tomcat-7.0.57 (14 Dec 2014)

  14 Dec 2014; Johann Schmitz <ercpe@gentoo.org>
  +files/tomcat-7.0.57-build.xml.patch, +tomcat-7.0.57.ebuild:
  Version bump to 7.0.57 with fix for bug #503090  * JDK/JRE 1.7 is required for
  +websockets. * JDK 1.7 restriction for javadocs removed from build.xml   This
  will open up CVE-2013-1571, but this is true for any other package in the tree
  build with USE="doc" and an old JDK.

  29 Nov 2014; Agostino Sarubbo <ago@gentoo.org> tomcat-6.0.41.ebuild,
  tomcat-7.0.56.ebuild:
  Stable for ppc64, wrt bug #519590

  29 Nov 2014; Agostino Sarubbo <ago@gentoo.org> tomcat-6.0.41.ebuild,
  tomcat-7.0.56.ebuild:
  Stable for ppc, wrt bug #519590

  13 Nov 2014; Agostino Sarubbo <ago@gentoo.org> tomcat-6.0.41.ebuild,
  tomcat-7.0.56.ebuild:
  Stable for x86, wrt bug #519590

  13 Nov 2014; Agostino Sarubbo <ago@gentoo.org> tomcat-6.0.41.ebuild,
  tomcat-7.0.56.ebuild:
  Stable for amd64, wrt bug #519590

  11 Nov 2014; Johann Schmitz <ercpe@gentoo.org> metadata.xml,
  tomcat-7.0.56.ebuild:
  Use new websocket use flag (requires java7) to build websocket as it won't
  work on java < 7.

  11 Nov 2014; Johann Schmitz <ercpe@gentoo.org>
  files/tomcat-7.0.56-build.xml.patch, tomcat-7.0.56.ebuild:
  Only remove .jar files, not directories; Fixed my stupid patch file (bug
  #528908)

*tomcat-7.0.56 (02 Nov 2014)

  02 Nov 2014; Johann Schmitz <ercpe@gentoo.org>
  +files/tomcat-7.0.56-build.xml.patch, +tomcat-7.0.56.ebuild:
  Version bump to 7.0.56

*tomcat-6.0.41 (02 Nov 2014)

  02 Nov 2014; Johann Schmitz <ercpe@gentoo.org>
  +files/tomcat-6.0.41-build.xml.patch, +files/tomcat-instance-manager-r1.bash,
  +tomcat-6.0.41.ebuild:
  Version bump of www-server/tomcat to 6.0.41

*tomcat-7.0.52 (19 Feb 2014)
*tomcat-6.0.39 (19 Feb 2014)

  19 Feb 2014; Miroslav Šulc <fordfrog@gentoo.org> +tomcat-6.0.39.ebuild,
  +tomcat-7.0.52.ebuild, +files/tomcat-6.0.39-build.xml.patch,
  +files/tomcat-7.0.52-build.xml.patch:
  bumped to versions 6.0.39 and 7.0.52

  08 Jan 2014; Mike Frysinger <vapier@gentoo.org> tomcat-6.0.37.ebuild:
  Inherit the user eclass for enewuser/etc...

  27 Oct 2013; Miroslav Šulc <fordfrog@gentoo.org>
  -files/tomcat-6.0.36-build.xml.patch, -files/tomcat-7.0.32-build.xml.patch,
  -files/tomcat-7.0.39-build.xml.patch, -files/tomcat-7.0.41-build.xml.patch:
  removed obsolete files

*tomcat-7.0.47 (27 Oct 2013)

  27 Oct 2013; Miroslav Šulc <fordfrog@gentoo.org> +tomcat-7.0.47.ebuild,
  +files/tomcat-7.0.47-build.xml.patch:
  version bump

  08 Oct 2013; Tom Wijsman <TomWij@gentoo.org> -tomcat-6.0.36.ebuild,
  -tomcat-7.0.32.ebuild, -tomcat-7.0.39.ebuild, -tomcat-7.0.41.ebuild:
  Dropped vulnerable versions (CVE-2012-3544,CVE-2013-{2067,2071}) for security
  bug #469434.

  07 Oct 2013; Agostino Sarubbo <ago@gentoo.org> tomcat-6.0.37.ebuild,
  tomcat-7.0.42.ebuild:
  Stable for ppc64, wrt bug #469434

  07 Oct 2013; Agostino Sarubbo <ago@gentoo.org> tomcat-6.0.37.ebuild,
  tomcat-7.0.42.ebuild:
  Stable for ppc, wrt bug #469434

  06 Oct 2013; Agostino Sarubbo <ago@gentoo.org> tomcat-6.0.37.ebuild,
  tomcat-7.0.42.ebuild:
  Stable for x86, wrt bug #469434

  05 Oct 2013; Agostino Sarubbo <ago@gentoo.org> tomcat-6.0.37.ebuild,
  tomcat-7.0.42.ebuild:
  Stable for amd64, wrt bug #469434

*tomcat-7.0.42 (08 Jul 2013)

  08 Jul 2013; Miroslav Šulc <fordfrog@gentoo.org> +tomcat-7.0.42.ebuild,
  +files/tomcat-7.0.42-build.xml.patch:
  version bump

  11 Jun 2013; Miroslav Šulc <fordfrog@gentoo.org> -tomcat-7.0.33.ebuild,
  -tomcat-7.0.34.ebuild, -tomcat-7.0.35.ebuild, -tomcat-7.0.37.ebuild,
  -files/tomcat-7.0.33-build.xml.patch, -files/tomcat-7.0.34-build.xml.patch,
  -files/tomcat-7.0.35-build.xml.patch, -files/tomcat-7.0.37-build.xml.patch:
  removed obsolete ebuilds

*tomcat-7.0.41 (11 Jun 2013)
*tomcat-6.0.37 (11 Jun 2013)

  11 Jun 2013; Miroslav Šulc <fordfrog@gentoo.org> +tomcat-6.0.37.ebuild,
  +tomcat-7.0.41.ebuild, +files/tomcat-6.0.37-build.xml.patch,
  +files/tomcat-7.0.41-build.xml.patch:
  version bump

*tomcat-7.0.39 (28 Mar 2013)

  28 Mar 2013; Miroslav Šulc <fordfrog@gentoo.org> +tomcat-7.0.39.ebuild,
  +files/tomcat-7.0.39-build.xml.patch:
  version bump

*tomcat-7.0.37 (19 Feb 2013)

  19 Feb 2013; Miroslav Šulc <fordfrog@gentoo.org> +tomcat-7.0.37.ebuild,
  +files/tomcat-7.0.37-build.xml.patch:
  version bump

*tomcat-7.0.35 (17 Jan 2013)

  17 Jan 2013; Miroslav Šulc <fordfrog@gentoo.org> +tomcat-7.0.35.ebuild,
  +files/tomcat-7.0.35-build.xml.patch:
  version bump

*tomcat-7.0.34 (12 Dec 2012)

  12 Dec 2012; Miroslav Šulc <fordfrog@gentoo.org> +tomcat-7.0.34.ebuild,
  +files/tomcat-7.0.34-build.xml.patch:
  version bump

  07 Dec 2012; Miroslav Šulc <fordfrog@gentoo.org> tomcat-6.0.36.ebuild,
  tomcat-7.0.32.ebuild, tomcat-7.0.33.ebuild:
  Updated elog with migration information

  06 Dec 2012; Miroslav Šulc <fordfrog@gentoo.org>
  -files/tomcat-7.0.30-build.xml.patch:
  removed obsolete file

  06 Dec 2012; Miroslav Šulc <fordfrog@gentoo.org>
  -files/tomcat-6.0.35-build.xml.patch, -files/6/catalina.policy,
  -files/6/tomcat.init.2, -files/6/tomcat.init.4, -files/7/tomcat.conf,
  -tomcat-6.0.35.ebuild, -tomcat-7.0.23-r3.ebuild, -tomcat-7.0.27.ebuild,
  -files/tomcat-7.0.29-build.xml.patch, -files/6/tomcat.conf,
  -files/6/tomcat.init.3, -files/7/7.0.23-build-xml.patch,
  -files/7/7.0.26-build-xml.patch, -files/7/7.0.27-build-xml.patch,
  -files/7/7.0.28-build-xml.patch, -files/7/7.0.29-build-xml.patch,
  -files/7/tomcat.init, -tomcat-6.0.35-r1.ebuild, -tomcat-7.0.26.ebuild,
  -tomcat-7.0.28.ebuild, -tomcat-7.0.29.ebuild, -tomcat-7.0.29-r1.ebuild,
  -tomcat-7.0.30.ebuild:
  removed obsolete ebuilds

  06 Dec 2012; <ago@gentoo.org> tomcat-7.0.32.ebuild:
  Stable for ppc64, wrt bug #446146

  06 Dec 2012; <ago@gentoo.org> tomcat-6.0.36.ebuild:
  Stable for ppc64, wrt bug #446152

  06 Dec 2012; <ago@gentoo.org> tomcat-7.0.32.ebuild:
  Stable for ppc, wrt bug #446146

  06 Dec 2012; <ago@gentoo.org> tomcat-6.0.36.ebuild:
  Stable for ppc, wrt bug #446152

  06 Dec 2012; <ago@gentoo.org> tomcat-7.0.32.ebuild:
  Stable for x86, wrt bug #446146

  06 Dec 2012; <ago@gentoo.org> tomcat-6.0.36.ebuild:
  Stable for x86, wrt bug #446152

  06 Dec 2012; <ago@gentoo.org> tomcat-7.0.32.ebuild:
  Stable for amd64, wrt bug #446146

  06 Dec 2012; <ago@gentoo.org> tomcat-6.0.36.ebuild:
  Stable for amd64, wrt bug #446152

*tomcat-7.0.33 (22 Nov 2012)

  22 Nov 2012; Miroslav Šulc <fordfrog@gentoo.org> +tomcat-7.0.33.ebuild,
  +files/tomcat-7.0.33-build.xml.patch:
  version bump

  31 Oct 2012; Christoph Junghans <ottxor@gentoo.org> tomcat-7.0.32.ebuild:
  added prefix keywords

*tomcat-7.0.32 (29 Oct 2012)
*tomcat-6.0.36 (29 Oct 2012)

  29 Oct 2012; Miroslav Šulc <fordfrog@gentoo.org> +tomcat-6.0.36.ebuild,
  +files/tomcat-6.0.36-build.xml.patch, +tomcat-7.0.32.ebuild,
  +files/tomcat-7.0.32-build.xml.patch:
  version bump

*tomcat-7.0.30 (06 Sep 2012)

  06 Sep 2012; Miroslav Šulc <fordfrog@gentoo.org> +tomcat-7.0.30.ebuild,
  +files/tomcat-7.0.30-build.xml.patch:
  version bump

  24 Aug 2012; Michael Weber <xmw@gentoo.org> tomcat-7.0.27.ebuild:
  ppc stable (bug 414375).

  25 Jul 2012; Ralph Sennhauser <sera@gentoo.org> files/tomcat.init:
  Pass to vm instead of catalina in init script. Thanks to Märt Bakhoff
  <spam3910807@gmail.com> #427664

*tomcat-7.0.29-r1 (20 Jul 2012)
*tomcat-6.0.35-r1 (20 Jul 2012)

  20 Jul 2012; Ralph Sennhauser <sera@gentoo.org> +tomcat-6.0.35-r1.ebuild,
  +files/tomcat-6.0.35-build.xml.patch, +tomcat-7.0.29-r1.ebuild,
  +files/tomcat-7.0.29-build.xml.patch, +files/tomcat.conf, +files/tomcat.init,
  +files/tomcat-instance-manager.bash, metadata.xml:
  Full rewrite.
  Add tomcat-instance-manager.bash to convienintly create and remove multiple
  instances.
  Don't symlink jars but use java-config as appropriate.
  Migrate init script to baselayout2 including major cleanup.
  Add use extra-webapps to build and install the docs and examples web apps.
  Use USE=doc for javadocs.
  Major cleanup of the ebuild, like dropping elog massages obsolete for ages.
  Don't copy manager and host-manager to catalina base but use a shared
  instance in catalina home which gets updated with a package
  update.
  Actually install sources if requested.
  Initial Gentoo Prefix support.
  #180519 : don kill ROOT application
  #191611 : init script improvements
  #254526 : emerge --config, implemented with tomcat-instance-manager.bash
  #283273, #363931 : build docs and examples 
  #309211 : handling of manager / host-manager
  #333153 : arbitrary classpath per instance
  #381693 : init fails with non existent CATALINA_TMPDIR
  #406285, #411597 : support multiple instances
  #407979 : fails if /run is tmpfs
  #420383 : forces invalid java compiler

*tomcat-7.0.29 (08 Jul 2012)

  08 Jul 2012; Miroslav Šulc <fordfrog@gentoo.org>
  +files/7/7.0.29-build-xml.patch, +tomcat-7.0.29.ebuild:
  version bump

*tomcat-7.0.28 (19 Jun 2012)

  19 Jun 2012; Miroslav Šulc <fordfrog@gentoo.org>
  +files/7/7.0.28-build-xml.patch, +tomcat-7.0.28.ebuild:
  Version bump

  04 Jun 2012; Johannes Huber <johu@gentoo.org> tomcat-7.0.27.ebuild:
  Stable for x86, wrt bug #414375

  02 May 2012; Agostino Sarubbo <ago@gentoo.org> tomcat-7.0.27.ebuild:
  Stable for amd64, wrt bug #414375

*tomcat-7.0.27 (05 Apr 2012)

  05 Apr 2012; Miroslav Šulc <fordfrog@gentoo.org>
  +files/7/7.0.27-build-xml.patch, +tomcat-7.0.27.ebuild:
  Version bump

  25 Mar 2012; Miroslav Šulc <fordfrog@gentoo.org>
  -files/7/7.0.25-build-xml.patch, -tomcat-6.0.32-r1.ebuild,
  -tomcat-7.0.25.ebuild:
  Removed obsolete versions

  25 Mar 2012; Agostino Sarubbo <ago@gentoo.org> tomcat-7.0.26.ebuild:
  Stable for amd64, wrt bug #409609

  12 Mar 2012; Brent Baude <ranger@gentoo.org> tomcat-6.0.35.ebuild:
  Marking tomcat-6.0.35 ppc64 for bug 395933

  12 Mar 2012; Brent Baude <ranger@gentoo.org> tomcat-7.0.23-r3.ebuild:
  Marking tomcat-7.0.23-r3 ppc64 for bug 395933

  10 Mar 2012; Brent Baude <ranger@gentoo.org> tomcat-6.0.35.ebuild:
  Marking tomcat-6.0.35 ppc for bug 395933

  10 Mar 2012; Brent Baude <ranger@gentoo.org> tomcat-7.0.23-r3.ebuild:
  Marking tomcat-7.0.23-r3 ppc for bug 395923

  23 Feb 2012; Agostino Sarubbo <ago@gentoo.org> tomcat-7.0.25.ebuild:
  Stable for amd64, wrt bug #405307

*tomcat-7.0.26 (22 Feb 2012)

  22 Feb 2012; Miroslav Šulc <fordfrog@gentoo.org>
  +files/7/7.0.26-build-xml.patch, +tomcat-7.0.26.ebuild:
  Version bump

*tomcat-7.0.25 (21 Jan 2012)

  21 Jan 2012; Miroslav Šulc <fordfrog@gentoo.org>
  +files/7/7.0.25-build-xml.patch, +tomcat-7.0.25.ebuild:
  Version bump

  06 Jan 2012; Miroslav Šulc <fordfrog@gentoo.org> -tomcat-6.0.33.ebuild:
  Removed old version

  04 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> tomcat-6.0.35.ebuild:
  x86 stable wrt bug #395933

  30 Dec 2011; Miroslav Šulc <fordfrog@gentoo.org>
  -files/7/7.0.22-build-xml.patch, -tomcat-7.0.22-r1.ebuild:
  Removed old version

  24 Dec 2011; Agostino Sarubbo <ago@gentoo.org> tomcat-6.0.35.ebuild:
  Stable for AMD64, wrt bug #395933

  24 Dec 2011; Agostino Sarubbo <ago@gentoo.org> tomcat-7.0.23-r3.ebuild:
  Stable for AMD64, wrt bug #395923

  24 Dec 2011; Miroslav Šulc <fordfrog@gentoo.org>
  -files/5.5/26-main_tomcat_catalina_jasper_build_xml.patch,
  -tomcat-5.5.27-r5.ebuild, -files/5.5/5.5.27-dynamic-JSSE13Factory.patch,
  -files/5.5/build-jspc-classpath.patch, -files/5.5/catalina.policy,
  -files/5.5/examples-cal.patch,
  -files/5.5/jsr152_jsr154_examples_build_xml.patch, -files/5.5/tomcat.conf.2,
  -files/5.5/tomcat.init.2, -tomcat-5.5.27-r4.ebuild, metadata.xml:
  Tomcat 5.5 moved from main tree to java-overlay because it's heading towards
  its EOL in 2012-09-30. Also the current version (5.5.27) is affected by
  several security issues and it is unmaintained in our main tree. If you need
  to use Tomcat 5.5, please use the ebuilds from java-overlay.

*tomcat-7.0.23-r3 (24 Dec 2011)

  24 Dec 2011; Miroslav Šulc <fordfrog@gentoo.org> -tomcat-7.0.23-r2.ebuild,
  +tomcat-7.0.23-r3.ebuild:
  Removed the doc symlink because copying of doc is handled in post_inst.

*tomcat-6.0.35 (24 Dec 2011)

  24 Dec 2011; Miroslav Šulc <fordfrog@gentoo.org> +files/6/tomcat.init.4,
  +tomcat-6.0.35.ebuild:
  Version bump. This release fixes CVE-2011-3190. Also fixed issue with
  documentation installation (bug #357437, thanks to Matt O
  <locke105@gmail.com> for the fix). Also fixed warnings from init script.

*tomcat-7.0.23-r2 (24 Dec 2011)

  24 Dec 2011; Miroslav Šulc <fordfrog@gentoo.org> -tomcat-7.0.23-r1.ebuild,
  +tomcat-7.0.23-r2.ebuild:
  Fixed installation of documentation (bug #393511, thanks to ron widler
  <ron@einfach.org> for the fix). Also added symlink to docs to catalina base
  webapps which fixes display of documentation from Tomcat default web app.

*tomcat-7.0.23-r1 (15 Dec 2011)

  15 Dec 2011; Miroslav Šulc <fordfrog@gentoo.org> -tomcat-7.0.23.ebuild,
  +tomcat-7.0.23-r1.ebuild:
  Fixed bug with storing SESSIONS.ser in work directory. It cannot be symlink
  because tomcat by default does not allow working with symlink paths.

  14 Dec 2011; Agostino Sarubbo <ago@gentoo.org> tomcat-7.0.22-r1.ebuild:
  Stable for AMD64, wrt bug #392393

*tomcat-7.0.23 (29 Nov 2011)

  29 Nov 2011; Miroslav Šulc <fordfrog@gentoo.org>
  +files/7/7.0.23-build-xml.patch, +tomcat-7.0.23.ebuild:
  Version bump

  13 Nov 2011; Markus Meier <maekke@gentoo.org> tomcat-6.0.33.ebuild:
  x86 stable, bug #388131

  03 Nov 2011; Mike Frysinger <vapier@gentoo.org> tomcat-5.5.27-r4.ebuild,
  tomcat-5.5.27-r5.ebuild:
  Use new egethome helper rather than calling getent directly.

  27 Oct 2011; Tony Vroon <chainsaw@gentoo.org> tomcat-6.0.33.ebuild:
  Marked stable on AMD64 based on arch testing by Ian "idella4" Delaney &
  Agostino "ago" Sarubbo in bug #388131.

  22 Oct 2011; Miroslav Šulc <fordfrog@gentoo.org> -files/6/build-xml.patch,
  -files/6/examples-cal.patch, -files/6/tomcat.init,
  -files/7/7.0.21-build-xml.patch, -tomcat-6.0.26.ebuild,
  -files/7/build-xml.patch, -tomcat-6.0.26-r2.ebuild,
  -files/7/examples-cal.patch, -tomcat-6.0.28-r1.ebuild,
  -tomcat-6.0.29-r1.ebuild, -tomcat-6.0.32-r2.ebuild, -tomcat-7.0.21-r1.ebuild:
  Removed obsolete files

*tomcat-7.0.22-r1 (19 Oct 2011)

  19 Oct 2011; Miroslav Šulc <fordfrog@gentoo.org> -tomcat-7.0.22.ebuild,
  +tomcat-7.0.22-r1.ebuild:
  In tomcat 7 switched to ecj 3.7 which is finally in tree

*tomcat-7.0.22 (18 Oct 2011)

  18 Oct 2011; Miroslav Šulc <fordfrog@gentoo.org>
  +files/7/7.0.22-build-xml.patch, +tomcat-7.0.22.ebuild:
  Version bump

*tomcat-7.0.21-r1 (18 Oct 2011)

  18 Oct 2011; Miroslav Šulc <fordfrog@gentoo.org> files/7/tomcat.init,
  -tomcat-7.0.21.ebuild, +tomcat-7.0.21-r1.ebuild:
  Changed opts to extra_commands in initd script (bug #386753). Also replaced
  deprecated --chuid with --user.

  07 Sep 2011; Miroslav Šulc <fordfrog@gentoo.org>
  -files/7/7.0.20-build-xml.patch, -tomcat-7.0.20.ebuild:
  Removed slot 7 version affected by CVE-2011-3190

  02 Sep 2011; Miroslav Šulc <fordfrog@gentoo.org>
  -files/7/7.0.14-build-xml.patch, -files/7/7.0.16-build-xml.patch,
  -files/7/7.0.19-build-xml.patch, -tomcat-7.0.14.ebuild,
  -tomcat-7.0.16.ebuild, -tomcat-7.0.19.ebuild:
  Removed old versions

*tomcat-7.0.21 (02 Sep 2011)

  02 Sep 2011; Miroslav Šulc <fordfrog@gentoo.org>
  +files/7/7.0.21-build-xml.patch, +tomcat-7.0.21.ebuild:
  Version bump

*tomcat-6.0.33 (22 Aug 2011)

  22 Aug 2011; Miroslav Šulc <fordfrog@gentoo.org> +tomcat-6.0.33.ebuild:
  Version bump

*tomcat-7.0.20 (15 Aug 2011)

  15 Aug 2011; Miroslav Šulc <fordfrog@gentoo.org>
  +files/7/7.0.20-build-xml.patch, +tomcat-7.0.20.ebuild:
  Version bump

*tomcat-7.0.19 (19 Jul 2011)

  19 Jul 2011; Miroslav Šulc <fordfrog@gentoo.org>
  +files/7/7.0.19-build-xml.patch, +tomcat-7.0.19.ebuild:
  Version bump. Upstream tomcat depends on ecj 3.7 now, but we do not have this
  version in tree yet, so our 7.0.19 still depends on ecj 3.6.

*tomcat-7.0.16 (22 Jun 2011)

  22 Jun 2011; Miroslav Šulc <fordfrog@gentoo.org>
  +files/7/7.0.16-build-xml.patch, -files/7/7.0.12-build-xml.patch,
  +tomcat-7.0.16.ebuild:
  Version bump

  17 May 2011; Miroslav Šulc <fordfrog@gentoo.org> -tomcat-7.0.12.ebuild:
  Removing version 7.0.12, affected by CVE-2011-1582

*tomcat-7.0.14 (14 May 2011)

  14 May 2011; Miroslav Šulc <fordfrog@gentoo.org>
  +files/7/7.0.14-build-xml.patch, +tomcat-7.0.14.ebuild:
  Version bump

  08 Apr 2011; <elvanor@gentoo.org> files/6/tomcat.init.2,
  files/6/tomcat.init.3:
  Fixed again init scripts so that catalina.out is not empty if running
  without OpenRC.

*tomcat-7.0.12 (07 Apr 2011)

  07 Apr 2011; Miroslav Šulc <fordfrog@gentoo.org>
  +files/7/7.0.12-build-xml.patch, -files/7/7.0.8-build-xml.patch,
  -files/7/7.0.10-build-xml.patch, -files/7/7.0.11-build-xml.patch,
  -tomcat-7.0.11.ebuild, +tomcat-7.0.12.ebuild:
  Bumped to latest version. Removed older version as it contains security
  issue. Also removed orphaned files.

  05 Apr 2011; <elvanor@gentoo.org> files/6/tomcat.init.2:
  Modified init script for bug #361235 / #191611. Removed the --startas
  /bin/bash which was apparently causing the problems.

  13 Mar 2011; Miroslav Šulc <fordfrog@gentoo.org> -tomcat-7.0.8.ebuild,
  -tomcat-7.0.10.ebuild:
  Removed tomcat 7.x versions affected by security vulnerability as stated in
  bug #358607

  11 Mar 2011; Miroslav Šulc <fordfrog@gentoo.org>
  -files/7/7.0.6-build-xml.patch, -tomcat-7.0.5-r1.ebuild,
  -tomcat-7.0.6.ebuild:
  Removed old versions

*tomcat-7.0.11 (11 Mar 2011)

  11 Mar 2011; Miroslav Šulc <fordfrog@gentoo.org>
  +files/7/7.0.11-build-xml.patch, +tomcat-7.0.11.ebuild:
  Version bump

*tomcat-7.0.10 (08 Mar 2011)

  08 Mar 2011; Miroslav Šulc <fordfrog@gentoo.org>
  +files/7/7.0.10-build-xml.patch, +tomcat-7.0.10.ebuild:
  Version bump

*tomcat-6.0.32-r2 (14 Feb 2011)

  14 Feb 2011; Miroslav Šulc <fordfrog@gentoo.org> +files/6/tomcat.init.3,
  +tomcat-6.0.32-r2.ebuild:
  Fixed bug #326979 (thanks to Pavel Goran <via-gentoo@pvgoran.name> for the
  fix)

  13 Feb 2011; Markos Chandras <hwoarang@gentoo.org> tomcat-6.0.32-r1.ebuild:
  Stable on amd64 wrt bug #329937

  13 Feb 2011; Christian Faulhammer <fauli@gentoo.org>
  tomcat-6.0.32-r1.ebuild:
  stable x86, security bug 329937

  12 Feb 2011; Kacper Kowalik <xarthisius@gentoo.org>
  tomcat-6.0.32-r1.ebuild:
  ppc/ppc64 stable wrt #329937

*tomcat-6.0.32-r1 (12 Feb 2011)

  12 Feb 2011; Miroslav Šulc <fordfrog@gentoo.org> -tomcat-6.0.32.ebuild,
  +tomcat-6.0.32-r1.ebuild:
  Fixed problem with JSP compilation (bug #354447)

  10 Feb 2011; Miroslav Šulc <fordfrog@gentoo.org> metadata.xml:
  Removing mike@weisso.com (Mike Weissman) from maintainer as I did not see any
  activity from him lately. If the removal is not correct then please re-add
  him.

*tomcat-6.0.32 (10 Feb 2011)

  10 Feb 2011; Miroslav Šulc <fordfrog@gentoo.org> +tomcat-6.0.32.ebuild:
  Version bump

*tomcat-7.0.8 (10 Feb 2011)

  10 Feb 2011; Miroslav Šulc <fordfrog@gentoo.org>
  +files/7/7.0.8-build-xml.patch, +tomcat-7.0.8.ebuild:
  Version bump

*tomcat-7.0.6 (30 Jan 2011)

  30 Jan 2011; Miroslav Šulc <fordfrog@gentoo.org>
  +files/7/7.0.6-build-xml.patch, +tomcat-7.0.6.ebuild:
  Version bump

*tomcat-5.5.27-r5 (19 Jan 2011)

  19 Jan 2011; Miroslav Šulc <fordfrog@gentoo.org>
  +files/5.5/build-jspc-classpath.patch, +tomcat-5.5.27-r5.ebuild:
  Fixed bug #339603, thanks to Isaac Richter <LaughingJudge@gmail.com>

*tomcat-7.0.5-r1 (18 Jan 2011)
*tomcat-6.0.29-r1 (18 Jan 2011)
*tomcat-6.0.28-r1 (18 Jan 2011)
*tomcat-6.0.26-r2 (18 Jan 2011)

  18 Jan 2011; Miroslav Šulc <fordfrog@gentoo.org> -tomcat-6.0.26-r1.ebuild,
  +tomcat-6.0.26-r2.ebuild, -tomcat-6.0.28.ebuild, +tomcat-6.0.28-r1.ebuild,
  -tomcat-6.0.29.ebuild, +tomcat-6.0.29-r1.ebuild, -tomcat-7.0.5.ebuild,
  +tomcat-7.0.5-r1.ebuild:
  Fixed bug #350645 in all versions except 5.5.27 where it does not seem to
  occur, thanks to gentoo@ddrs.ath.cx pointing it out and for the fix

*tomcat-7.0.5 (21 Dec 2010)

  21 Dec 2010; Alistair Bush <ali_bush@gentoo.org> +files/7/build-xml.patch,
  +files/7/examples-cal.patch, +files/7/tomcat.init, +tomcat-7.0.5.ebuild,
  +files/7/tomcat.conf:
  Version Bump. Thanks to wltjr for all the work.

*tomcat-6.0.29 (31 Aug 2010)

  31 Aug 2010; Krzysztof Pawlik <nelchael@gentoo.org> +tomcat-6.0.29.ebuild:
  Version bump.

  25 Jul 2010; Petteri Räty <betelgeuse@gentoo.org> tomcat-6.0.28.ebuild:
  Block tomcat-native older than 1.1.20. Fixes bug #316545.

*tomcat-6.0.28 (10 Jul 2010)

  10 Jul 2010; Petteri Räty <betelgeuse@gentoo.org> +tomcat-6.0.28.ebuild:
  Version bump. Includes security fixes according to upstream ChangeLog.

*tomcat-6.0.26-r1 (06 Jun 2010)

  06 Jun 2010; Vlastimil Babka <caster@gentoo.org> +files/6/tomcat.init.2,
  -tomcat-6.0.20.ebuild, -tomcat-6.0.20-r1.ebuild, +tomcat-6.0.26-r1.ebuild:
  Revbump with updated init script by wltjr, including overlay changes by
  weisso. Adds forcestop option to kill tomcat when normal stop doesn't
  work. Note that CLASSPATH is now unset in the init script, as global
  CLASSPATH is deprecated and should be set for tomcat specifically. Fixes
  bugs #191611, #243348, #310029, #294846. Remove old.

  10 Apr 2010; Vlastimil Babka <caster@gentoo.org> tomcat-6.0.26.ebuild:
  Always use ecj to compile on amd64 to prevent insufficient heap, fixes bug
  #312293.

  29 Mar 2010; Markus Meier <maekke@gentoo.org> tomcat-6.0.26.ebuild:
  amd64 stable, bug #303719

  29 Mar 2010; Christian Faulhammer <fauli@gentoo.org> tomcat-6.0.26.ebuild:
  stable x86, security bug 303719

  26 Mar 2010; Brent Baude <ranger@gentoo.org> tomcat-6.0.26.ebuild:
  Marking tomcat-6.0.26 ppc for bug 303719

  26 Mar 2010; Brent Baude <ranger@gentoo.org> tomcat-6.0.26.ebuild:
  Marking tomcat-6.0.26 ppc64 for bug 303719

*tomcat-6.0.26 (16 Mar 2010)

  16 Mar 2010; Alistair Bush <ali_bush@gentoo.org> +tomcat-6.0.26.ebuild:
  Version Bump.

  17 Nov 2009; Vlastimil Babka <caster@gentoo.org> -tomcat-5.5.27-r3.ebuild:
  Remove old.

  02 Nov 2009; Markus Meier <maekke@gentoo.org> tomcat-5.5.27-r4.ebuild:
  amd64/x86 stable, bug #291480

*tomcat-5.5.27-r4 (03 Oct 2009)

  03 Oct 2009; Vlastimil Babka <caster@gentoo.org> +tomcat-5.5.27-r4.ebuild:
  Revbump to remove java5 useflag, and default to java5.

  03 Jul 2009; Alistair Bush <ali_bush@gentoo.org> -tomcat-6.0.18-r3.ebuild:
  Remove revision with security problems. see #272566

*tomcat-6.0.20-r1 (03 Jul 2009)

  03 Jul 2009; Alistair Bush <ali_bush@gentoo.org> +tomcat-6.0.20-r1.ebuild:
  Bump to fix bug #276059.  Thanks to weisso.

  27 Jun 2009; Alex Legler <a3li@gentoo.org> tomcat-6.0.20.ebuild:
  amd64 stable, security bug 272566.

  27 Jun 2009; Brent Baude <ranger@gentoo.org> tomcat-6.0.20.ebuild:
  Marking tomcat-6.0.20 ppc64 and ppc for bug 272566

  25 Jun 2009; Christian Faulhammer <fauli@gentoo.org> tomcat-6.0.20.ebuild:
  stable x86, security bug 272566

*tomcat-6.0.20 (17 Jun 2009)

  17 Jun 2009; Petteri Räty <betelgeuse@gentoo.org> +tomcat-6.0.20.ebuild:
  Version bump for bug #273931. Fixes multiple security issue (bug #272566
  and bug #273566).

  29 Mar 2009; Petteri Räty <betelgeuse@gentoo.org>
  -tomcat-5.5.27-r1.ebuild, -tomcat-5.5.27-r2.ebuild,
  -tomcat-6.0.18-r1.ebuild, -tomcat-6.0.18-r2.ebuild:
  Remove revisions with a security problems.

  18 Mar 2009; Brent Baude <ranger@gentoo.org> tomcat-6.0.18-r3.ebuild:
  Marking tomcat-6.0.18-r3 ppc for bug 261469

  18 Mar 2009; Brent Baude <ranger@gentoo.org> tomcat-6.0.18-r2.ebuild:
  stable ppc, bug 255469

  11 Mar 2009; Brent Baude <ranger@gentoo.org> tomcat-6.0.18-r3.ebuild:
  Marking tomcat-6.0.18-r3 ppc64 for bug 261469

  07 Mar 2009; Markus Meier <maekke@gentoo.org> tomcat-5.5.27-r3.ebuild,
  tomcat-6.0.18-r3.ebuild:
  amd64/x86 stable, bug #261469

*tomcat-6.0.18-r3 (06 Mar 2009)
*tomcat-5.5.27-r3 (06 Mar 2009)

  06 Mar 2009; Petteri Räty <betelgeuse@gentoo.org>
  +files/5.5/examples-cal.patch, +files/6/examples-cal.patch,
  +tomcat-5.5.27-r3.ebuild, +tomcat-6.0.18-r3.ebuild:
  Add patch for XSS issue in examples for security bug #261460. Use use deps
  in 5.5.

  27 Jan 2009; Brent Baude <ranger@gentoo.org> tomcat-6.0.18-r2.ebuild:
  stable ppc64, bug 255469

  23 Jan 2009; Markus Meier <maekke@gentoo.org> tomcat-6.0.18-r2.ebuild:
  amd64/x86 stable, bug #255469

  13 Jan 2009; Petteri Räty <betelgeuse@gentoo.org> -tomcat-5.5.26.ebuild,
  -tomcat-5.5.27.ebuild, -tomcat-6.0.16.ebuild, -tomcat-6.0.18.ebuild:
  Remove old ebuilds with known vulnerabilities.

  20 Dec 2008; Serkan Kaba <serkan@gentoo.org> files/5.5/tomcat.init.2,
  files/6/tomcat.init:
  Fix initscripts for openrc-0.4.0 reported in bug #243348. Thanks to Mike
  Weissman <mike@weisso.com> for testing and the patch.

*tomcat-6.0.18-r2 (19 Dec 2008)
*tomcat-5.5.27-r2 (19 Dec 2008)

  19 Dec 2008; Alistair Bush <ali_bush@gentoo.org> files/5.5/tomcat.conf.2,
  files/6/tomcat.conf, files/5.5/tomcat.init.2, files/6/tomcat.init,
  +tomcat-5.5.27-r2.ebuild, +tomcat-6.0.18-r2.ebuild:
  Bump tomcat. Update init script to test for temp dir to fix #246362.

  10 Dec 2008; Petteri Räty <betelgeuse@gentoo.org> metadata.xml:
  Add weisso as proxy maintainer.

  08 Dec 2008; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
  metadata.xml:
  Removing wltjr as a maintainer since he was retired.

  02 Dec 2008; Brent Baude <ranger@gentoo.org> tomcat-6.0.18-r1.ebuild:
  stable ppc64, bug 243162

  25 Oct 2008; nixnut <nixnut@gentoo.org> tomcat-6.0.18-r1.ebuild:
  Stable on ppc wrt bug 243162

  24 Oct 2008; Markus Meier <maekke@gentoo.org> tomcat-6.0.18-r1.ebuild:
  amd64/x86 stable, bug #243162

*tomcat-6.0.18-r1 (21 Oct 2008)

  21 Oct 2008; Miroslav Šulc <fordfrog@gentoo.org>
  +tomcat-6.0.18-r1.ebuild:
  Fixed bug #242826 (invalid tomcat version reported), patch by Yoann
  Pannier <gentoo-bugs.d@umsar.org>.

  17 Sep 2008; Markus Meier <maekke@gentoo.org> tomcat-5.5.27-r1.ebuild:
  amd64/x86 stable, bug #225477

  17 Sep 2008; Petteri Räty <betelgeuse@gentoo.org>
  tomcat-5.5.27-r1.ebuild:
  Detect if tomcat-servlet-api is built with java5 support but for tomcat
  java5 is off.

  17 Sep 2008; Petteri Räty <betelgeuse@gentoo.org>
  tomcat-5.5.27-r1.ebuild:
  Add reference to upstream bug for JSSE13Factory.

*tomcat-5.5.27-r1 (17 Sep 2008)

  17 Sep 2008; Petteri Räty <betelgeuse@gentoo.org>
  +files/5.5/5.5.27-dynamic-JSSE13Factory.patch, +tomcat-5.5.27-r1.ebuild:
  Remove the need for com.sun.* classes at compile time.

  12 Sep 2008; Petteri Räty <betelgeuse@gentoo.org> tomcat-5.5.27.ebuild:
  Use jdk-with-com-sun:0 for java5 use flag and jdk-with-com-sun:1.4 without
  it.

  12 Sep 2008; Miroslav Šulc <fordfrog@gentoo.org> tomcat-5.5.27.ebuild:
  Fixed compilation so JDK with com.sun.* packages is used as tomcat needs
  it

*tomcat-5.5.27 (11 Sep 2008)

  11 Sep 2008; Miroslav Šulc <fordfrog@gentoo.org> +tomcat-5.5.27.ebuild:
  Version bump

  24 Aug 2008; Markus Rothe <corsair@gentoo.org> tomcat-6.0.18.ebuild:
  Stable on ppc64; bug #234684

  22 Aug 2008; Doug Goldstein <cardoe@gentoo.org> metadata.xml:
  add GLEP 56 USE flag desc from use.local.desc

  15 Aug 2008; Markus Meier <maekke@gentoo.org> tomcat-6.0.18.ebuild:
  amd64/x86 stable, bug #234684

  14 Aug 2008; nixnut <nixnut@gentoo.org> tomcat-6.0.18.ebuild:
  Stable on ppc wrt bug 234684

*tomcat-6.0.18 (02 Aug 2008)

  02 Aug 2008; William L. Thomson Jr. <wltjr@gentoo.org>
  +tomcat-6.0.18.ebuild:
  Bumped to latest release, addresses recent security issue. Compiles and
  installs, should be good, but little time. Comitted from Houston Aiport,
  committer on way to LWE 08

  13 May 2008; William L. Thomson Jr. <wltjr@gentoo.org>
  -files/5.5/main_tomcat_catalina_jasper_build_xml.patch,
  -files/5.5/webdav.patch, -files/6/webdav.patch, -tomcat-5.5.25.ebuild,
  -tomcat-5.5.25-r1.ebuild, tomcat-5.5.26.ebuild, -tomcat-6.0.14.ebuild,
  -tomcat-6.0.14-r1.ebuild, tomcat-6.0.16.ebuild:
  Removed previous versions in same slot as stable. Added remaining EAPI=1
  and switched to new slot deps.

  17 Mar 2008; Markus Meier <maekke@gentoo.org> tomcat-5.5.26.ebuild,
  tomcat-6.0.16.ebuild:
  amd64 stable, security bug #196066

  22 Feb 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  tomcat-6.0.16.ebuild:
  ppc stable, bug #196066

  11 Feb 2008; Brent Baude <ranger@gentoo.org> tomcat-6.0.16.ebuild:
  Marking tomcat-6.0.16 ppc64 for bug 196066

  10 Feb 2008; Markus Meier <maekke@gentoo.org> tomcat-5.5.26.ebuild,
  tomcat-6.0.16.ebuild:
  x86 stable, security bug #196066

*tomcat-6.0.16 (07 Feb 2008)

  07 Feb 2008; William L. Thomson Jr. <wltjr@gentoo.org>
  +tomcat-6.0.16.ebuild:
  Bumped 6.0 to latest release

*tomcat-5.5.26 (05 Feb 2008)

  05 Feb 2008; William L. Thomson Jr. <wltjr@gentoo.org>
  +files/5.5/26-main_tomcat_catalina_jasper_build_xml.patch,
  +tomcat-5.5.26.ebuild:
  Bumped 5.5 to latest release

  21 Jan 2008; Vlastimil Babka <caster@gentoo.org> tomcat-5.5.25.ebuild,
  tomcat-5.5.25-r1.ebuild:
  Restrict junit dependency to proper slot.

  10 Jan 2008; Vlastimil Babka <caster@gentoo.org> tomcat-6.0.14.ebuild,
  tomcat-6.0.14-r1.ebuild:
  Restrict junit dependency.

  18 Oct 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  tomcat-6.0.14-r1.ebuild:
  ppc stable, bug #196066

  17 Oct 2007; Markus Rothe <corsair@gentoo.org> tomcat-6.0.14-r1.ebuild:
  Stable on ppc64; bug #196066

  17 Oct 2007; Christian Faulhammer <opfer@gentoo.org>
  tomcat-6.0.14-r1.ebuild:
  stable x86, security bug 196066

  17 Oct 2007; Christian Faulhammer <opfer@gentoo.org>
  tomcat-5.5.25-r1.ebuild:
  stable x86, security bug 196066

  17 Oct 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.5.25-r1.ebuild, tomcat-6.0.14-r1.ebuild:
  amd64 stable, bug #196066.

*tomcat-6.0.14-r1 (16 Oct 2007)
*tomcat-5.5.25-r1 (16 Oct 2007)

  16 Oct 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  -files/5.5/jasper_build_xml.patch,
  -files/5.5/jsr154_examples_build_xml.patch,
  -files/5.5/jsr152_examples_build_xml.patch,
  -files/5.5/main_build_xml.patch, -files/5.5/catalina_build_xml.patch,
  -files/5.5/tomcat_build_xml.patch, +files/5.5/webdav.patch,
  +files/6/webdav.patch, -tomcat-5.5.23-r6.ebuild, +tomcat-5.5.25-r1.ebuild,
  +tomcat-6.0.14-r1.ebuild:
  Added patch for webdav per security bug #196066. Removed past version, and
  various patches for that version.

  12 Oct 2007; Roy Marples <uberlord@gentoo.org> tomcat-5.5.25.ebuild:
  Added ~x86-fbsd back again, #195571

  12 Oct 2007; Christian Faulhammer <opfer@gentoo.org> tomcat-5.5.25.ebuild:
  stable x86, security bug 195571

  12 Oct 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.5.25.ebuild, tomcat-6.0.14.ebuild:
  amd64 stable, bug #195571. Added quotes, still missing from older soon to be
  removed versions.

  21 Sep 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.5.25.ebuild:
  Removed the from if clause :( no clue how that was added.

*tomcat-5.5.25 (08 Sep 2007)

  08 Sep 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  +files/5.5/jsr152_jsr154_examples_build_xml.patch,
  +files/5.5/main_tomcat_catalina_jasper_build_xml.patch,
  +tomcat-5.5.25.ebuild:
  Bumped to latest release, unified multiple patch files into two, partly
  result of having to re-create patches. Dropped ~x86-fbsd keyword due to it
  missing on a dep per bug #191729.

  08 Sep 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  -files/5.5/tomcat.conf, -files/5.5/tomcat.init, -tomcat-5.5.23-r1.ebuild,
  -tomcat-6.0.13-r3.ebuild:
  House cleaning, removed older versions and older conf/init files from
  removed 5.5

  31 Aug 2007; Christian Faulhammer <opfer@gentoo.org> tomcat-6.0.14.ebuild:
  stable x86, security bug 188871

  29 Aug 2007; Markus Rothe <corsair@gentoo.org> tomcat-6.0.14.ebuild:
  Stable on ppc64; bug #188871

  24 Aug 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-6.0.14.ebuild:
  amd64 stable, bug #188871.

  24 Aug 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  tomcat-6.0.14.ebuild:
  ppc stable, bug #188871

  15 Aug 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-6.0.13-r3.ebuild:
  amd64 stable, bug #188734.

  15 Aug 2007; Christian Faulhammer <opfer@gentoo.org>
  tomcat-6.0.13-r3.ebuild:
  stable x86, bug 188734

  14 Aug 2007; Markus Rothe <corsair@gentoo.org> tomcat-6.0.13-r3.ebuild:
  Stable on ppc64; bug #188734

*tomcat-6.0.14 (13 Aug 2007)

  13 Aug 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  +tomcat-6.0.14.ebuild:
  Bumped to latest release

  10 Aug 2007; Christian Faulhammer <opfer@gentoo.org>
  tomcat-5.5.23-r6.ebuild:
  stable x86, bug 187183

  02 Aug 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.5.23-r6.ebuild:
  amd64 stable, bug #187183

  01 Jul 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.5.23-r6.ebuild:
  Switched to using automatic split-ant stuff via WANT_ANT_TASKS, related to
  last modification.

  01 Jul 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.5.23-r6.ebuild:
  Added ant-trax to dep fix for bug #183849

  17 Jun 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.5.23-r1.ebuild, tomcat-5.5.23-r6.ebuild,
  -tomcat-6.0.13-r1.ebuild, tomcat-6.0.13-r3.ebuild:
  Added warnings in pkg_postinst about the two vulnerabilities, per bug #182262

  07 Jun 2007; Markus Rothe <corsair@gentoo.org> tomcat-6.0.13-r3.ebuild:
  Added ~ppc64; bug #178701

*tomcat-6.0.13-r3 (31 May 2007)
*tomcat-5.5.23-r6 (31 May 2007)

  31 May 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  files/5.5/tomcat.conf.2, files/6/tomcat.conf, -tomcat-5.5.23-r5.ebuild,
  +tomcat-5.5.23-r6.ebuild, -tomcat-6.0.13-r2.ebuild,
  +tomcat-6.0.13-r3.ebuild:
  Fix for bug #180474

*tomcat-6.0.13-r2 (31 May 2007)

  31 May 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  +tomcat-6.0.13-r2.ebuild:
  Re-worked directory creation and permissions. Some modifications to make IDE
  integration a bit more friendly. While not reducing security on servers.

  28 May 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-6.0.13-r1.ebuild:
  Added arch & jdk detection to determine if compiler needs to be switched.
  Alternative to increasing mem via -Xmx. Fix for bug # 178980

  25 May 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-6.0.13-r1.ebuild:
  Added call to java-pkg-2_pkg_setup in pkg_setup per bug #179745

*tomcat-5.5.23-r5 (20 May 2007)

  20 May 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  files/5.5/tomcat.conf.2, files/5.5/tomcat.init.2,
  -tomcat-5.5.23-r4.ebuild, +tomcat-5.5.23-r5.ebuild:
  Switched init/conf.d file to use GENTOO_VM instead of JAVA_HOME.

  20 May 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  files/5.5/tomcat.init.2:
  Fixed init script error -> eerror.

*tomcat-5.5.23-r4 (20 May 2007)

  20 May 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  files/5.5/tomcat.init.2, -tomcat-5.5.23-r3.ebuild,
  +tomcat-5.5.23-r4.ebuild:
  Added code to init script to check VM version, fix for bug #179119

*tomcat-6.0.13-r1 (17 May 2007)
*tomcat-5.5.23-r3 (17 May 2007)

  17 May 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  files/5.5/tomcat.init.2, files/6/tomcat.init, -tomcat-5.5.23-r2.ebuild,
  +tomcat-5.5.23-r3.ebuild, -tomcat-6.0.13.ebuild, +tomcat-6.0.13-r1.ebuild:
  Fixed init scripts to capture stdout/stderr. Work around for s-s-d lack of
  --stdout/--stderr.

*tomcat-6.0.13 (15 May 2007)

  15 May 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  files/6/build-xml.patch, -tomcat-6.0.10-r5.ebuild, +tomcat-6.0.13.ebuild:
  Bumped to latest version, removed previous version.

  15 May 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  files/5.5/tomcat.init.2, files/6/tomcat.init:
  Additional fixes for bug #174498

*tomcat-6.0.10-r5 (09 May 2007)
*tomcat-5.5.23-r2 (09 May 2007)

  09 May 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  +files/5.5/tomcat.init.2, files/6/tomcat.conf, +files/5.5/tomcat.conf.2,
  files/6/tomcat.init, +tomcat-5.5.23-r2.ebuild, -tomcat-6.0.10-r4.ebuild,
  +tomcat-6.0.10-r5.ebuild:
  Fixes for bugs # 174498, 175393, 176097, 176701, & 176796

  29 Apr 2007; Petteri Räty <betelgeuse@gentoo.org>
  tomcat-5.5.23-r1.ebuild:
  RDEPEND on dev-java/ant-core and call java-pkg-2_pkg_setup in pkg_setup.

*tomcat-6.0.10-r4 (23 Apr 2007)

  23 Apr 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  -tomcat-6.0.10-r3.ebuild, +tomcat-6.0.10-r4.ebuild:
  Moved jakarta-jstl from RDEPEND -> COMMON_DEPEND. Als removing those jars
  after unpack so they are not present during build.

*tomcat-6.0.10-r3 (19 Apr 2007)

  19 Apr 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  files/6/tomcat.conf, files/6/tomcat.init, -tomcat-6.0.10-r2.ebuild,
  +tomcat-6.0.10-r3.ebuild:
  Multiple bug fixes, bugs #171487, #174498, #175016, & #175189.

  07 Apr 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  -files/5.5.20/catalinabuild-xml.patch,
  -files/5.5.20/jsr152_examples_build-xml.patch,
  -files/5.5.20/mainbuild-xml.patch, -files/5.5.20/jasperbuild-xml.patch,
  -files/5.5.20/jsr152build-xml-examples.patch,
  -files/5.5.20/jsr154_examples_build-xml.patch,
  -files/5.5.20/jsr154build-xml-examples.patch, -files/5.5.20/tomcat.conf,
  -files/5.5.20/tomcat.init, -files/5.5.20/tomcat_build-xml.patch,
  -files/5.5.20/tomcatbuild-xml.patch, -tomcat-5.5.20-r8.ebuild,
  tomcat-5.5.23-r1.ebuild:
  Stable on amd64, security bug #173122. Removed older vulnerable version.

  05 Apr 2007; William L. Thomson Jr. <wltjr@gentoo.org> ChangeLog,
  Manifest:
  Fixed changelog borkage

*tomcat-6.0.10-r2 (04 Apr 2007)

  04 Apr 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  -tomcat-6.0.10-r1.ebuild, +tomcat-6.0.10-r2.ebuild:
  Additional sed to correct server webapp context. Switched from copying
  context's to symlinking. Unbundled examples jakarta-jstl jars when USE flag
  is set.

  03 Apr 2007; Christian Faulhammer <opfer@gentoo.org>
  tomcat-5.5.23-r1.ebuild:
  x86 stable, security bug 173122

*tomcat-5.5.23-r1 (02 Apr 2007)

  02 Apr 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  -tomcat-5.5.23.ebuild, +tomcat-5.5.23-r1.ebuild:
  Modified ebuild to work with split-ant, or not since it needs to be
  stabilized ASAP, and split ant is not stable yet.

  30 Mar 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.5.20-r8.ebuild, tomcat-5.5.23.ebuild, tomcat-6.0.10-r1.ebuild:
  Updated dep on commons-modeler to >=2.0 per bug #172734. Also added ewarn
  output about missing dbcp.jar per bug #144276

  29 Mar 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  -files/5.0.28/build.xml-01.patch, -files/5.0.28/gentoo.diff,
  -files/5.0.28/setclasspath.patch, -files/5.0.28/build.xml-02.patch,
  -files/5.0.28/jikes.diff, -files/5.0.28/tomcat.conf,
  -files/5.0.28/log4j.properties, -files/5.0.28/tomcat.conf-r1,
  -files/5.0.28/scripts.patch, -files/5.0.28/tomcat.env,
  -files/5.0.28/tomcat.init, -tomcat-5.0.28-r14.ebuild,
  -tomcat-5.5.20-r10.ebuild:
  House cleaning, removed 5.0.28 and 5.5.20-r10 since 5.5.23/6.0.10 will be
  stabilized next.

*tomcat-6.0.10-r1 (20 Mar 2007)

  20 Mar 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  -tomcat-6.0.10.ebuild, +tomcat-6.0.10-r1.ebuild:
  Registered jars per bug #171496. Copy one bin dir instead of two. Replace
  copy of commons-daemon.jar with symlink via jar-from

  12 Mar 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.5.20-r8.ebuild, tomcat-5.5.20-r10.ebuild, tomcat-5.5.23.ebuild,
  tomcat-6.0.10.ebuild:
  Restored full changelog, corrected virtual deps, dropped some comments from
  6.0.10, replaced legacy instances of java-config -p with java-pkg_getjar
  from eclass.

*tomcat-5.5.23 (09 Mar 2007)

  09 Mar 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  -files/5.5.22/catalinabuild-xml.patch,
  -files/5.5.22/jasperbuild-xml.patch,
  -files/5.5.22/jsr152_examples_build-xml.patch,
  -files/5.5.22/jsr152build-xml-examples.patch,
  -files/5.5.22/jsr154_examples_build-xml.patch,
  -files/5.5.22/jsr154build-xml-examples.patch,
  -files/5.5.22/mainbuild-xml.patch, -files/5.5.22/tomcat.conf,
  -files/5.5.22/tomcat.init, -files/5.5.22/tomcatbuild-xml.patch,
  +files/5.5/catalina_build_xml.patch,
  +files/5.5/jsr152_examples_build_xml.patch, +files/5.5/tomcat.init,
  +files/5.5/jasper_build_xml.patch,
  +files/5.5/jsr154_examples_build_xml.patch,
  +files/5.5/main_build_xml.patch, +files/5.5/tomcat.conf,
  +files/5.5/tomcat_build_xml.patch, -tomcat-5.5.22_pre-r1.ebuild,
  +tomcat-5.5.23.ebuild:
  Bumped 5.5 to latest release, removed pre-release version

*tomcat-6.0.10 (01 Mar 2007)

  01 Mar 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  -tomcat-6.0.9_beta.ebuild, -tomcat-6.0.10_pre.ebuild,
  +tomcat-6.0.10.ebuild:
  Brand new 0 day release version of Tomcat 6.0.x :). Removed older
  development versions. Long live tc 6.0.x die <=5.5.x

  27 Feb 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.5.20-r10.ebuild, tomcat-5.5.22_pre-r1.ebuild:
  Ebuild cleanups

*tomcat-5.5.22_pre-r1 (15 Feb 2007)

  15 Feb 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.5.20-r10.ebuild, -tomcat-5.5.22_pre.ebuild,
  +tomcat-5.5.22_pre-r1.ebuild, tomcat-6.0.9_beta.ebuild,
  tomcat-6.0.10_pre.ebuild:
  Corrected ant deps and tasks. Switched 5.5.20-r10 & 5.5.22_pre-r1 to ecj
  3.2. Also correct their deps, too many were dropped when java5 USE flag is
  set.

*tomcat-5.5.22_pre (13 Feb 2007)

  13 Feb 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  +files/5.5.22/catalinabuild-xml.patch,
  +files/5.5.22/jasperbuild-xml.patch,
  +files/5.5.22/jsr152_examples_build-xml.patch,
  +files/5.5.22/jsr152build-xml-examples.patch,
  +files/5.5.22/jsr154_examples_build-xml.patch,
  +files/5.5.22/jsr154build-xml-examples.patch,
  +files/5.5.22/mainbuild-xml.patch, +files/5.5.22/tomcat.conf,
  +files/5.5.22/tomcat.init, +files/5.5.22/tomcatbuild-xml.patch,
  +tomcat-5.5.22_pre.ebuild:
  Bumped 5.5 to latest development release

*tomcat-6.0.10_pre (13 Feb 2007)

  13 Feb 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  +tomcat-6.0.10_pre.ebuild:
  Bumped package to latest development release

  09 Feb 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.5.20-r10.ebuild, tomcat-6.0.9_beta.ebuild:
  Updated split ant deps

*tomcat-6.0.9_beta (08 Feb 2007)

  08 Feb 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  -tomcat-6.0.7_beta-r6.ebuild, -tomcat-6.0.8_alpha-r3.ebuild,
  -tomcat-6.0.9_alpha.ebuild, +tomcat-6.0.9_beta.ebuild:
  Bump to latest beta, removed older versions

  04 Feb 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.0.28-r14.ebuild, tomcat-5.5.20-r8.ebuild,
  tomcat-5.5.20-r10.ebuild, tomcat-6.0.7_beta-r6.ebuild,
  tomcat-6.0.8_alpha-r3.ebuild, tomcat-6.0.9_alpha.ebuild:
  Updated package description

  03 Feb 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  -files/5.0.27/gentoo.diff, -files/5.0.27/tomcat.conf,
  -files/5.0.27/jikes.diff, -files/5.0.27/tomcat.env,
  -files/5.0.27/tomcat.init, -tomcat-5.0.27-r6.ebuild,
  -tomcat-5.5.20-r7.ebuild:
  Removed old versions of package

  03 Feb 2007; Steve Dibb <beandog@gentoo.org> tomcat-5.5.20-r8.ebuild:
  amd64 stable, bug 163982

*tomcat-6.0.9_alpha (02 Feb 2007)

  02 Feb 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  +tomcat-6.0.9_alpha.ebuild:
  -m Bumped package to latest alpha

  31 Jan 2007; Vlastimil Babka <caster@gentoo.org>
  tomcat-6.0.7_beta-r6.ebuild, tomcat-6.0.8_alpha-r3.ebuild:
  Fix tomcat-servlet-api deps for bug #164557.

  30 Jan 2007; Christian Faulhammer <opfer@gentoo.org>
  tomcat-5.5.20-r8.ebuild:
  stable x86; bug #163982

*tomcat-6.0.8_alpha-r3 (28 Jan 2007)
*tomcat-6.0.7_beta-r6 (28 Jan 2007)

  28 Jan 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  files/6/build-xml.patch, -tomcat-6.0.7_beta-r5.ebuild,
  +tomcat-6.0.7_beta-r6.ebuild, -tomcat-6.0.8_alpha-r2.ebuild,
  +tomcat-6.0.8_alpha-r3.ebuild:
  Fixed issue with examples not being compiled and/or complete. Thanks to
  nostromo who provided some help there. Updated patch for examples
  compilation and to make docs compilation depend on doc USE flag. A few other
  syntax and policy corrections

*tomcat-6.0.8_alpha-r2 (28 Jan 2007)
*tomcat-6.0.7_beta-r5 (28 Jan 2007)
*tomcat-5.5.20-r10 (28 Jan 2007)

  28 Jan 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  files/5.5.20/tomcat.init, files/6/tomcat.init, -tomcat-5.5.20-r9.ebuild,
  +tomcat-5.5.20-r10.ebuild, -tomcat-6.0.7_beta-r4.ebuild,
  +tomcat-6.0.7_beta-r5.ebuild, -tomcat-6.0.8_alpha-r1.ebuild,
  +tomcat-6.0.8_alpha-r2.ebuild:
  Updated init script to capture std out per bug# 162379

*tomcat-5.5.20-r9 (27 Jan 2007)

  27 Jan 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  +files/5.5.20/jsr154_examples_build-xml.patch,
  +files/5.5.20/tomcat_build-xml.patch,
  +files/5.5.20/jsr152_examples_build-xml.patch, +tomcat-5.5.20-r9.ebuild,
  tomcat-6.0.7_beta-r4.ebuild, tomcat-6.0.8_alpha-r1.ebuild:
  Finally stopped building jsp/servlet-api.jars despite not using them after
  being built. Updated compilation of examples to use system
  jsp/servlet-api.jars. Switched from soon to be deprecated servletapi to
  tomcat-servlet-api. Dropped dep on ant in 6.0.x in order to use new split
  ant.

*tomcat-6.0.8_alpha-r1 (26 Jan 2007)
*tomcat-6.0.7_beta-r4 (26 Jan 2007)

  26 Jan 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  files/6/build-xml.patch, -tomcat-6.0.7_beta-r3.ebuild,
  +tomcat-6.0.7_beta-r4.ebuild, -tomcat-6.0.8_alpha.ebuild,
  +tomcat-6.0.8_alpha-r1.ebuild:
  Updating 6.0.x to dep on tomcat-servlet-api. Modified patch to no longer
  build or install servletapi from tomcat package. Dropped force of ecj
  compiler for now, added commented out code to deal with oom/heap issues if
  they pop up again. Synced ebuilds and backported ~ppc keyword.

  26 Jan 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-6.0.8_alpha.ebuild:
  Added ~ppc per user request

  26 Jan 2007; Vlastimil Babka <caster@gentoo.org> tomcat-5.5.20-r7.ebuild,
  tomcat-5.5.20-r8.ebuild:
  Make compatible with split-ant - was breaking with admin flag because there
  was a different servletapi slot on ant's classpath without specifying only
  the needed tasks. Older ant versions are not affected by this change.

*tomcat-6.0.8_alpha (20 Jan 2007)
*tomcat-6.0.7_beta-r3 (20 Jan 2007)

  20 Jan 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  -tomcat-6.0.7_beta-r2.ebuild, +tomcat-6.0.7_beta-r3.ebuild,
  +tomcat-6.0.8_alpha.ebuild:
  Bumped 6 to latest alpha, and dropped jni use flag. Due to it pulling in dep
  when USE flag is set, but dep still being installed when USE flag is unset.

*tomcat-6.0.7_beta-r2 (10 Jan 2007)
*tomcat-5.5.20-r8 (10 Jan 2007)

  10 Jan 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  files/5.5.20/tomcat.init, files/6/tomcat.init, -tomcat-5.5.20-r6.ebuild,
  tomcat-5.5.20-r7.ebuild, +tomcat-5.5.20-r8.ebuild,
  -tomcat-6.0.7_beta-r1.ebuild, +tomcat-6.0.7_beta-r2.ebuild:
  Updated 5.5.20 and 6.0.7 init scripts, again :( previous version was borked.
  Trying to capture std out, which seems to be going no where atm.

*tomcat-6.0.7_beta-r1 (10 Jan 2007)
*tomcat-5.5.20-r7 (10 Jan 2007)

  10 Jan 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  files/5.5.20/tomcat.init, files/6/tomcat.init, -tomcat-5.5.20-r5.ebuild,
  tomcat-5.5.20-r6.ebuild, +tomcat-5.5.20-r7.ebuild,
  -tomcat-6.0.7_beta.ebuild, +tomcat-6.0.7_beta-r1.ebuild:
  Updated 5.5.20 and 6.0.7 init scripts

*tomcat-6.0.7_beta (10 Jan 2007)

  10 Jan 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  -tomcat-6.0.7_alpha-r3.ebuild, +tomcat-6.0.7_beta.ebuild:
  Bumped 6.0.7 to beta from alpha

  09 Jan 2007; Diego Pettenò <flameeyes@gentoo.org>
  tomcat-6.0.7_alpha-r3.ebuild:
  Add ~x86-fbsd keyword.

  09 Jan 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.0.27-r6.ebuild, tomcat-5.0.28-r14.ebuild,
  tomcat-5.5.20-r5.ebuild, tomcat-5.5.20-r6.ebuild,
  tomcat-6.0.7_alpha-r3.ebuild:
  Updated einfo -> elog

*tomcat-6.0.7_alpha-r3 (05 Jan 2007)

  05 Jan 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  -tomcat-6.0.7_alpha-r2.ebuild, +tomcat-6.0.7_alpha-r3.ebuild:
  Change functionality of jni use flag from compiling/installing to dep on a
  package that does both, tomcat-native :)

*tomcat-6.0.7_alpha-r2 (01 Jan 2007)

  01 Jan 2007; William L. Thomson Jr. <wltjr@gentoo.org>
  -tomcat-6.0.7_alpha-r1.ebuild, +tomcat-6.0.7_alpha-r2.ebuild:
  Got the native stuff compilling and installed. Not sure about runtime. I
  can't load it. Basically jni USE flag works now :)

*tomcat-6.0.7_alpha-r1 (31 Dec 2006)

  31 Dec 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  -tomcat-6.0.7_alpha.ebuild, +tomcat-6.0.7_alpha-r1.ebuild:
  Address bin/*.sh stuff not having execute bit set. Possibly upstream
  bug/problem.

*tomcat-5.5.20-r6 (30 Dec 2006)

  30 Dec 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  -tomcat-5.5.20-r4.ebuild, tomcat-5.5.20-r5.ebuild,
  +tomcat-5.5.20-r6.ebuild:
  Modified 5.5.20 ebuilds to respect symlink and not copy the jars per bug
  #159169.

  27 Dec 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.5.20-r5.ebuild, tomcat-6.0.7_alpha.ebuild:
  Updated virtuals for 1.6

  27 Dec 2006; Timothy Redaelli <drizzt@gentoo.org> tomcat-5.5.20-r5.ebuild:
  Readded ~x86-fbsd keyword.

*tomcat-6.0.7_alpha (27 Dec 2006)

  27 Dec 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.5.20-r4.ebuild, tomcat-5.5.20-r5.ebuild, -tomcat-6.0.6.ebuild,
  +tomcat-6.0.7_alpha.ebuild:
  Bumped 6.0 to latest alpha. Fixed home page link on 5.5 ebuilds. Dropped
  ~x86-fbsd keyword from 5.5.20-r5 due to dev-java/commons-httpclient-2.0 not
  being keyworded for that arch.

  26 Dec 2006; Petteri Räty <betelgeuse@gentoo.org>
  tomcat-5.5.20-r4.ebuild, tomcat-5.5.20-r5.ebuild:
  Changed dev-java/commons-httpclient dependency to only match one slot.

  22 Dec 2006; Petteri Räty <betelgeuse@gentoo.org>
  tomcat-5.5.20-r5.ebuild:
  Depend on >=dev-java/java-config-2.0.31 and let it handle the java5 use flag
  properly.

  22 Dec 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.5.20-r4.ebuild, tomcat-5.5.20-r5.ebuild:
  Added ~amd64 keyword to 5.5.20-r5. Dropped * from 1.5 virtuals

*tomcat-6.0.6 (18 Dec 2006)

  18 Dec 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  -tomcat-6.0.4.ebuild, +tomcat-6.0.6.ebuild:
  Bumped Tomcat 6.x to latest alpha

  13 Dec 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.0.28-r14.ebuild, tomcat-5.5.20-r4.ebuild,
  tomcat-5.5.20-r5.ebuild:
  Removed unused TOMCAT_HOME variable from 5.0.28 and 5.5.x ebuilds. Also
  corrected a typo in 5.5.x, all per comments on bug #157956

*tomcat-5.5.20-r5 (11 Dec 2006)
*tomcat-5.5.20-r4 (11 Dec 2006)

  11 Dec 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  -tomcat-5.5.20-r2.ebuild, -tomcat-5.5.20-r3.ebuild,
  +tomcat-5.5.20-r4.ebuild, +tomcat-5.5.20-r5.ebuild:
  Fixed issue with newer commons-fileupload depending on commons-io, and
  commons-io was not linked into Tomcat before breaking manager app war
  upload/deployment. Also fixed location where commons-fileupload is linked.
  But doing that pre-compile and might need to post install, since commons-io
  is being linked into server/lib as well as proper location.

  09 Dec 2006; Diego Pettenò <flameeyes@gentoo.org>
  tomcat-5.5.20-r3.ebuild:
  Add ~x86-fbsd keyword.

*tomcat-5.5.20-r3 (08 Dec 2006)

  08 Dec 2006; Petteri Räty <betelgeuse@gentoo.org>
  +tomcat-5.5.20-r3.ebuild:
  Using new splitted mx4j-core to reduce the dependencies when the java5 use
  flag is off. Dropped amd64 keywords because mx4j-core is not keyworded yet.

*tomcat-6.0.4 (08 Dec 2006)

  08 Dec 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  -files/5.5.17/catalinabuild-xml.patch,
  -files/5.5.17/jsr152build-xml-examples.patch,
  -files/5.5.17/mainbuild-xml.patch, -files/5.5.17/tomcatbuild-xml.patch,
  -files/5.5.17/jasperbuild-xml.patch,
  -files/5.5.17/jsr154build-xml-examples.patch, -files/5.5.17/tomcat.conf,
  -files/5.5.17/tomcat.env, -files/5.5.17/tomcat.init,
  -files/5.5.17/tomcatbuild-xml-docs.patch,
  -files/5.5.17/tomcatbuild-xml-examples.patch,
  -files/6.0.2/build-xml.patch, -files/6.0.2/tomcat.conf,
  -files/6.0.2/tomcat.init, +files/6/build-xml.patch, +files/6/tomcat.conf,
  +files/6/tomcat.init, -tomcat-6.0.2.ebuild, +tomcat-6.0.4.ebuild:
  Rev bumped 6.0.x ebuild, consolidated files for the slot instead of per
  version. Removed obsolete 5.5.17 files.

  07 Dec 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.5.20-r2.ebuild:
  Removed false dep on jaxen from 5.5.20.

  06 Dec 2006; Petteri Räty <betelgeuse@gentoo.org>
  tomcat-5.5.20-r2.ebuild:
  It's java-pkg_filter-compiler not java-pkg_filter.

  05 Dec 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.0.28-r14.ebuild, tomcat-5.5.20-r2.ebuild, tomcat-6.0.2.ebuild:
  Adding -ppc -pp64 to all 5.5 and 6.0 ebuilds due to missing sun.ssl.* stuff
  in IBM jdks. Added code to filter ecj on 5.5 ebuild. Cleaned up 6.0.2 ebuild
  a bit.

  30 Nov 2006; Vlastimil Babka <caster@gentoo.org> tomcat-5.0.28-r14.ebuild:
  Update xerces dep for upcoming 2.6 slotmove.

  28 Nov 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.0.27-r6.ebuild, -tomcat-5.5.17-r7.ebuild:
  Removed older ebuilds, dropped ~amd64 and x86 keywords from 5.0.27. Since
  that version is only being kept atm for ppc/ppc64. Despite it being binary,
  having bundled deps, and lots of bugs.

  28 Nov 2006; Joshua Nichols <nichoj@gentoo.org> tomcat-5.5.20-r2.ebuild:
  Stabilized on amd64 (see bug #155622).

  23 Nov 2006; Christian Faulhammer <opfer@gentoo.org>
  tomcat-5.5.20-r2.ebuild:
  stable x86, bug #155622

*tomcat-6.0.2 (20 Nov 2006)

  20 Nov 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  +files/6.0.2/build-xml.patch, +files/6.0.2/tomcat.conf,
  +files/6.0.2/tomcat.init, +tomcat-6.0.2.ebuild:
  Initial ebuild for Tomcat 6.0.2 alpha, despite sources/ebuild not named as
  such. Compiles, runs and should be some what useable. Although will be
  package masked, since it's alpha sources. jni USE flag should not be used,
  still working on that part, help there appreciated

  04 Nov 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  -tomcat-5.5.20.ebuild, -tomcat-5.5.20-r1.ebuild:
  Ebuild cleanup, removed older revisions

  18 Oct 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.5.20-r2.ebuild:
  Fixed problem with ant calling targets that don't exist, like javadoc.

*tomcat-5.5.20-r2 (18 Oct 2006)

  18 Oct 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  -files/5.5.20/tomcat.env, files/5.5.20/tomcatbuild-xml.patch,
  -files/5.5.20/tomcatbuild-xml-docs.patch,
  -files/5.5.20/tomcatbuild-xml-examples.patch, +tomcat-5.5.20-r2.ebuild:
  Created new patch re-writing some existing and adding a few new, ant targets
  for admin/example webapps. Should resolve bug #150715

  14 Oct 2006; Joshua Nichols <nichoj@gentoo.org> tomcat-5.0.28-r14.ebuild:
  Added call to java-pkg_pkg_setup, for bug #142708

  05 Oct 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  tomcat-5.0.27-r6.ebuild:
  Dropping sparc keywords, see #96229

  28 Sep 2006; William L. Thomson Jr. <wltjr@gentoo.org> Manifest:
  Redigested, ew

*tomcat-5.5.20 (28 Sep 2006)

  28 Sep 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  +files/5.5.20/catalinabuild-xml.patch,
  +files/5.5.20/jasperbuild-xml.patch,
  +files/5.5.20/jsr152build-xml-examples.patch,
  +files/5.5.20/jsr154build-xml-examples.patch,
  +files/5.5.20/mainbuild-xml.patch, +files/5.5.20/tomcat.conf,
  +files/5.5.20/tomcat.env, +files/5.5.20/tomcat.init,
  +files/5.5.20/tomcatbuild-xml.patch,
  +files/5.5.20/tomcatbuild-xml-docs.patch,
  +files/5.5.20/tomcatbuild-xml-examples.patch, +tomcat-5.5.20.ebuild:
  New 0 day ebuild for Tomcat 5.5.20. Introduce admin use flag that will
  control the struts dep and if the admin webapp will be present.

  27 Sep 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.5.17-r7.ebuild:
  Corrected invalid atom =dev-java/sun-jaf per bug # 149317. Also corrected
  the package xml-apis.jar comes from. Was changed to xml-commons-external-1.3
  but was mistakenly changed back when updating the ebuild for java5 use flag
  and 1.5 jdks

  26 Sep 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.5.17-r7.ebuild:
  Changed sun-jaf-1 to sun-jaf since it's slotted 0 not 1

  26 Sep 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  tomcat-5.5.17-r7.ebuild:
  Forgot to apply sun-javamail-bin -> sun-javamail and gnu-jaf -> sun-jaf
  changes with jars passed to ant

*tomcat-5.5.17-r7 (26 Sep 2006)

  26 Sep 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  files/5.5.17/tomcat.init, +tomcat-5.5.17-r7.ebuild:
  Fixed error recently created in Tomcat 5.5.17 init script with omission of
  /conf after ${CATALINA_BASE} for conf files. ooops! Also switched deps from
  sun-javamail-bin to sun-javamail, and from gnu-jaf to sun-jaf

  23 Sep 2006; Bryan Østergaard <kloeri@gentoo.org>
  tomcat-5.0.27-r6.ebuild:
  Remove ~alpha keyword.

*tomcat-5.0.28-r14 (20 Sep 2006)

  20 Sep 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  files/5.0.28/tomcat.init, -tomcat-5.0.28-r12.ebuild,
  -tomcat-5.0.28-r13.ebuild, +tomcat-5.0.28-r14.ebuild:
  Synced recent modifications of 5.5.17 init script with 5.0.28. Removed older
  5.0.28 ebuilds

*tomcat-5.5.17-r6 (20 Sep 2006)

  20 Sep 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  files/5.5.17/tomcat.init, -tomcat-5.5.17-r4.ebuild,
  -tomcat-5.5.17-r5.ebuild, +tomcat-5.5.17-r6.ebuild:
  Fixed init script to set ${CATALINA_TMPDIR} per bug #148387

*tomcat-5.5.17-r5 (20 Sep 2006)

  20 Sep 2006; William L. Thomson Jr. <wltjr@gentoo.org>
  files/5.5.17/tomcat.init, -tomcat-5.5.17-r3.ebuild,
  +tomcat-5.5.17-r5.ebuild:
  Fixed init script to respect ${CATALINA_BASE} per bug # 148331. Removed older ebuild

*tomcat-5.5.17-r4 (09 Sep 2006)
*tomcat-5.0.28-r13 (09 Sep 2006)

  09 Sep 2006; William L. Thomson Jr. <wltjr@gentoo.org> files/5.0.28/tomcat.conf,
  files/5.0.28/tomcat.init, +tomcat-5.0.28-r13.ebuild,
  -tomcat-5.5.17-r1.ebuild, -tomcat-5.5.17-r2.ebuild,
  +tomcat-5.5.17-r4.ebuild:
  Removed eant || die from ebuilds. Sync 5.0.28 ebuild with one in overlay
  that is more current. Removed older versions of 5.5.17 ebuild.

  09 Sep 2006; Petteri Räty <betelgeuse@gentoo.org>
  tomcat-5.5.17-r3.ebuild:
  Fixed Tomcat to compile with JAVA_PKG_STRICT.

*tomcat-5.5.17-r3 (05 Sep 2006)

  05 Sep 2006; William L. Thomson Jr. <wltjr@gentoo.org> +tomcat-5.5.17-r3.ebuild:
  Added back struts stuff that was lost when applying a 1.5 patch

  04 Sep 2006; William L. Thomson Jr. <wltjr@gentoo.org> tomcat-5.5.17-r2.ebuild:
  Take two on ebuild fix

  04 Sep 2006; William L. Thomson Jr. <wltjr@gentoo.org> ChangeLog:
  Manifest did not get committed

  04 Sep 2006; William L. Thomson Jr. <wltjr@gentoo.org> tomcat-5.5.17-r2.ebuild:
  Fixed problem with newest Tomcat ebuild. When java5 USE flag was in use it
  would mess up creation of directories. One of which contains many symlinks
  needed during compile. No revision buump, since it's fixing a broken
  revision bump previously committed.

  04 Sep 2006; William L. Thomson Jr. <wltjr@gentoo.org> metadata.xml:
  Updated metadata.xml to reflect new maintainer, me :)

*tomcat-5.5.17-r1 (07 Jul 2006)

  07 Jul 2006; Joshua Nichols <jnichols@gentoo.org>
  files/5.5.17/tomcat.init, -tomcat-5.5.17.ebuild, +tomcat-5.5.17-r1.ebuild:
  Removed commons-logging.jar from init.d script, which can cause problems
  with logging. Only commons-logging-api.jar is needed.

  03 Jul 2006; Joshua Nichols <nichoj@gentoo.org>
  +files/5.5.17/catalinabuild-xml.patch,
  +files/5.5.17/jasperbuild-xml.patch, +files/5.5.17/mainbuild-xml.patch,
  +files/5.5.17/tomcat.conf, +files/5.5.17/tomcat.env,
  +files/5.5.17/tomcat.init, +files/5.5.17/tomcatbuild-xml.patch:
  Version bump.

  27 Apr 2006; Alec Warner <antarus@gentoo.org>
  files/digest-tomcat-5.0.27-r6, files/digest-tomcat-5.0.28-r12, Manifest:
  Fixing SHA256 digest, pass four

  11 Mar 2006; Petteri Räty <betelgeuse@gentoo.org>
  tomcat-5.0.28-r12.ebuild:
  Moved enewgroup and enewuser calls to pkg_setup from src_install for bug
  #124680.

  11 Mar 2006; Petteri Räty <betelgeuse@gentoo.org>
  tomcat-5.0.27-r6.ebuild, -tomcat-5.0.28-r9.ebuild,
  -tomcat-5.0.28-r10.ebuild, tomcat-5.0.28-r12.ebuild:
  Changed SRC_URI to reflect changes upstream. Fixes bug #124237. Thanks to
  Beech Horn <beech@metalshark.co.uk> for reporting. Also removed old
  revisions.

  30 Dec 2005; Petteri Räty <betelgeuse@gentoo.org>
  tomcat-5.0.27-r6.ebuild, tomcat-5.0.28-r9.ebuild,
  tomcat-5.0.28-r10.ebuild, tomcat-5.0.28-r12.ebuild:
  The Tomcat homepage is now http://tomcat.apache.org/ .

*tomcat-5.0.28-r12 (14 Dec 2005)

  14 Dec 2005; Petteri Räty <betelgeuse@gentoo.org>
  -tomcat-5.0.28-r11.ebuild, +tomcat-5.0.28-r12.ebuild:
  Tomcat needs a newer xml-apis.jar from xml-commons-external to work instead
  of the older version found in xml-commons.

*tomcat-5.0.28-r11 (06 Dec 2005)

  06 Dec 2005; Petteri Räty <betelgeuse@gentoo.org>
  +files/5.0.28/setclasspath.patch, -tomcat-5.0.28-r8.ebuild,
  +tomcat-5.0.28-r11.ebuild:
  Fixed bug #112530 so users should now be able to set a custom CLASSPATH in
  /etc/conf.d/tomcat-5. Also changed tomcat to use xml-apis from xml-commons
  instead of xerces because the jar in xerces is a packed one.

*tomcat-5.0.28-r10 (14 Nov 2005)

  14 Nov 2005; Petteri Räty <betelgeuse@gentoo.org>
  files/5.0.28/tomcat.conf-r1, files/5.0.28/tomcat.init,
  +tomcat-5.0.28-r10.ebuild:
  New revision with support for changing the home directory of the tomcat user
  with emerge --config. Fixes bug #109079. Also the init script now creates a
  pidfile.

*tomcat-5.0.28-r9 (17 Oct 2005)

  17 Oct 2005; Petteri Räty <betelgeuse@gentoo.org>
  +tomcat-5.0.28-r9.ebuild:
  Fixed installation of default ${CATALINA_BASE}/shared/ reported in bug #106906.

*tomcat-5.0.28-r8 (15 Oct 2005)

  15 Oct 2005; Thomas Matthijs <axxo@gentoo.org> tomcat-5.0.27-r6.ebuild,
  -tomcat-5.0.28-r4.ebuild, -tomcat-5.0.28-r6.ebuild,
  -tomcat-5.0.28-r7.ebuild, +tomcat-5.0.28-r8.ebuild:
  move dev-java/jmx dev-java/sun-jmx

*tomcat-5.0.28-r7 (22 Sep 2005)

  22 Sep 2005; Petteri Räty <betelgeuse@gentoo.org>
  files/5.0.28/tomcat.init, +tomcat-5.0.28-r7.ebuild:
  Added --background to stop too in the init script. Also fixed some
  permissions and cleaned directory creation code.

*tomcat-5.0.28-r6 (20 Sep 2005)

  20 Sep 2005; Petteri Räty <betelgeuse@gentoo.org>
  files/5.0.28/tomcat.init, tomcat-5.0.28-r4.ebuild,
  -tomcat-5.0.28-r5.ebuild, +tomcat-5.0.28-r6.ebuild:
  Struts is now slotted so fixed the dependencies. In the latest revision
  fixed bug #99704. Thanks to David Owen <fugue88@hotmail.com> for reporting.
  Also startup problems from bug #103925 should now be fixed.

*tomcat-5.0.28-r5 (14 Sep 2005)

  14 Sep 2005; Gustavo Felisberto <humpback@gentoo.org>;
  +files/5.0.28/log4j.properties, files/5.0.28/tomcat.conf,
  +tomcat-5.0.28-r5.ebuild:
  Added a proper log4j properties file, changed the ebuild to install the
  log4j file. This is all related to bugs #103925 and #88002

  26 Aug 2005; Diego Pettenò <flameeyes@gentoo.org>
  tomcat-5.0.28-r4.ebuild:
  Don't use root group as it doesn't exists on BSD-like userlands.

  25 May 2005; Jan Brinkmann <luckyduck@gentoo.org> tomcat-5.0.28-r4.ebuild:
  permission issue fixed, see #93778

  20 May 2005; Jan Brinkmann <luckyduck@gentoo.org> tomcat-5.0.28-r4.ebuild:
  fixed problems with first time installation, see #93322

  17 May 2005; Jan Brinkmann <luckyduck@gentoo.org> tomcat-5.0.28-r4.ebuild:
  further fixes & cleanups / improvements, thanks axxo :-)

*tomcat-5.0.28-r4 (17 May 2005)

  17 May 2005; Jan Brinkmann <luckyduck@gentoo.org>
  -tomcat-5.0.28-r3.ebuild, +tomcat-5.0.28-r4.ebuild:
  revision bump, indicate the changes

  17 May 2005; Jan Brinkmann <luckyduck@gentoo.org> tomcat-5.0.28-r3.ebuild:
  permission changes

*tomcat-5.0.27-r6 (15 May 2005)

  15 May 2005; Jan Brinkmann <luckyduck@gentoo.org>
  -tomcat-5.0.27-r5.ebuild, +tomcat-5.0.27-r6.ebuild,
  tomcat-5.0.28-r3.ebuild:
  fixed problem with userpriv, see #92663. default shutdown password now gets
  replaced with a random one, see #92281

*tomcat-5.0.28-r3 (14 May 2005)

  14 May 2005; Jan Brinkmann <luckyduck@gentoo.org>
  -tomcat-5.0.28-r2.ebuild, +tomcat-5.0.28-r3.ebuild:
  updated commons-beanutils dependency to reflect new slotting. see #71952

  07 May 2005; Jason Wever <weeve@gentoo.org> tomcat-5.0.28-r2.ebuild:
  Added ~sparc keyword.

*tomcat-5.0.27-r5 (13 Apr 2005)

  13 Apr 2005; Jan Brinkmann <luckyduck@gentoo.org> -tomcat-5.0.27-r4.ebuild,
  +tomcat-5.0.27-r5.ebuild:
  now the old ebuild also makes use of newenvd, fixes #79625

  09 Apr 2005; Markus Rothe <corsair@gentoo.org> tomcat-5.0.28-r2.ebuild:
  This version doesn't build on ppc64 (added -ppc64 to KEYWORDS)

  04 Apr 2005; Thomas Matthijs <axxo@gentoo.org> tomcat-5.0.28-r2.ebuild:
  change dep to reflect commons-httpclient slotting

  28 Mar 2005; Jan Brinkmann <luckyduck@gentoo.org> files/5.0.28/tomcat.init,
  tomcat-5.0.28-r2.ebuild:
  introduced support for the examples useflag, also modified the init script to
  fix #86905

  27 Mar 2005; Jan Brinkmann <luckyduck@gentoo.org> tomcat-5.0.28-r2.ebuild:
  moved from dev-java/regexp to dev-java/jakarta-regexp dependency. see #71336

  22 Mar 2005; Jan Brinkmann <luckyduck@gentoo.org> -tomcat-5.0.28-r1.ebuild,
  tomcat-5.0.28-r2.ebuild, -tomcat-5.0.28.ebuild:
  removed a packed struts.jar. generall cleanup, removed old versions.

  20 Mar 2005; Jan Brinkmann <luckyduck@gentoo.org> -files/3.3.2/gentoo.diff,
  -files/3.3.2/tomcat.conf, -files/3.3.2/tomcat.init,
  -files/4.1.30/gentoo.diff, -files/4.1.30/jikes.diff,
  -files/4.1.30/tomcat.conf, -files/4.1.30/tomcat.init,
  -tomcat-3.3.2-r2.ebuild, -tomcat-4.1.30-r5.ebuild:
  cleanup, removed old vulnerable versions. see #85383

*tomcat-5.0.28-r2 (19 Mar 2005)

  19 Mar 2005; Jan Brinkmann <luckyduck@gentoo.org> +tomcat-5.0.28-r2.ebuild:
  version bump to indicate the changes i recently did.

  19 Mar 2005; Jan Brinkmann <luckyduck@gentoo.org> tomcat-5.0.27-r4.ebuild,
  tomcat-5.0.28-r1.ebuild:
  now normal users can access all jars of tomcat-5.0.28-r1 via java-config -p.
  also fixed #83113, dos related files are not getting installed any longer.

*tomcat-5.0.28-r1 (07 Mar 2005)

  07 Mar 2005; Jan Brinkmann <luckyduck@gentoo.org> +tomcat-5.0.28-r1.ebuild:
  revision bump to indicate the log4j addition to the classpath, all users with
  tomcat 5.0.28 should update to 5.0.28-r1

  06 Mar 2005; Jan Brinkmann <luckyduck@gentoo.org>
  files/5.0.28/scripts.patch:
  added log4j to classpath in catalina.sh, fixes #84206. thanks to Santiago Gala
  <sgala@apache.org> for the report and the fix.

  13 Feb 2005; Jan Brinkmann <luckyduck@gentoo.org>
  files/5.0.28/build.xml-02.patch, files/5.0.28/gentoo.diff,
  +files/5.0.28/scripts.patch, files/5.0.28/tomcat.conf,
  files/5.0.28/tomcat.env, files/5.0.28/tomcat.init, tomcat-5.0.28.ebuild:
  tomcat now builds from source and installs jar files using dojar, also removed
  a packed jars issue. fixes #18352

  09 Feb 2005; Jan Brinkmann <luckyduck@gentoo.org> +files/5.0.27/tomcat.env,
  +files/5.0.28/tomcat.env, tomcat-5.0.27-r4.ebuild, tomcat-5.0.28.ebuild:
  added env.d file for tomcat to export CATALINA_HOME. fixes #79625

  08 Feb 2005; Jan Brinkmann <luckyduck@gentoo.org> metadata.xml:
  updated maintainer informations.

  18 Dec 2004; Karl Trygve Kalleberg <karltk@gentoo.org> tomcat-5.0.28.ebuild:
  Fixes #74858 thanks to Petteri Räty <petteri.raty@welho.com>

  17 Nov 2004; Markus Rothe <corsair@gentoo.org> tomcat-5.0.27-r4.ebuild,
  tomcat-5.0.28.ebuild:
  marked ~ppc64; bug #55690

  17 Oct 2004; Thomas Matthijs <axxo@gentoo.org> files/5.0.28/jikes.diff:
  fix path in jikes patch, #67847

*tomcat-5.0.28 (09 Oct 2004)

  09 Oct 2004; Thomas Matthijs <axxo@gentoo.org>
  +files/5.0.28/build.xml-01.patch, +files/5.0.28/build.xml-02.patch,
  +files/5.0.28/gentoo.diff, +files/5.0.28/jikes.diff,
  +files/5.0.28/tomcat.conf, +files/5.0.28/tomcat.init,
  +tomcat-5.0.28.ebuild:
  Version bump + now builds from source, Thanks too Mark Wolfe
  <mwolfe@netspace.net.au> for his work on this. #18352

  08 Oct 2004; Thomas Matthijs <axxo@gentoo.org> files/3.3.2/tomcat.init,
  files/4.1.30/tomcat.init, files/5.0.27/tomcat.init:
  use net instead of need net in init.d script

  08 Sep 2004; Danny van Dyk <kugelfang@gentoo.org> tomcat-4.1.30-r5.ebuild:
  Marked ~amd64.

  05 Sep 2004; Sven Wegener <swegener@gentoo.org> :
  Fixed ChangeLog header.

  03 Sep 2004; Thomas Matthijs <axxo@gentoo.org> tomcat-3.3.2-r2.ebuild,
  -tomcat-4.1.30-r4.ebuild, tomcat-4.1.30-r5.ebuild, -tomcat-5.0.27-r3.ebuild:
  remove broken + keyword x86

  03 Sep 2004; Pieter Van den Abeele <pvdabeel@gentoo.org>
  tomcat-3.3.2-r2.ebuild, tomcat-4.1.30-r4.ebuild, tomcat-4.1.30-r5.ebuild,
  tomcat-5.0.27-r3.ebuild:
  Masked stable for ppc

  01 Sep 2004; Thomas Matthijs <axxo@gentoo.org> tomcat-4.1.30-r5.ebuild,
  tomcat-5.0.27-r4.ebuild:
  keepdir work,temp so they are not removed when upgrading, bug 62468

*tomcat-4.1.30-r5 (26 Aug 2004)
*tomcat-5.0.27-r4 (26 Aug 2004)

  26 Aug 2004; Thomas Matthijs <axxo@gentoo.org> files/4.1.30/tomcat.init,
  files/5.0.27/tomcat.init, +tomcat-4.1.30-r5.ebuild,
  +tomcat-5.0.27-r4.ebuild:
  escape params in init script, bug 61822

*tomcat-3.3.2-r2 (08 Aug 2004)
*tomcat-4.1.30-r4 (08 Aug 2004)

  08 Aug 2004; Stuart Herbert <stuart@gentoo.org> +metadata.xml,
  +files/3.3.2/gentoo.diff, +files/3.3.2/tomcat.conf,
  +files/3.3.2/tomcat.init, +files/4.1.30/gentoo.diff,
  +files/4.1.30/jikes.diff, +files/4.1.30/tomcat.conf,
  +files/4.1.30/tomcat.init, +files/5.0.27/gentoo.diff,
  +files/5.0.27/jikes.diff, +files/5.0.27/tomcat.conf,
  +files/5.0.27/tomcat.init, +tomcat-3.3.2-r2.ebuild,
  +tomcat-4.1.30-r4.ebuild, +tomcat-5.0.27-r3.ebuild:
  Moved from net-www/tomcat to www-servers/tomcat.

*tomcat-4.1.30-r4 (06 Aug 2004)

  06 Aug 2004; Thomas Matthijs <axxo@gentoo.org> tomcat-3.3.2-r2.ebuild,
  tomcat-4.1.30-r4.ebuild, tomcat-5.0.27-r3.ebuild:
  fix doc chown

*tomcat-5.0.27-r3 (06 Aug 2004)

  06 Aug 2004; Thomas Matthijs <axxo@gentoo.org> tomcat-5.0.27-r3.ebuild:
  ~amd64

  06 Aug 2004; Thomas Matthijs <axxo@gentoo.org> -files/3.3.2/21tomcat,
  -files/4.1.30/21tomcat, -files/5.0.27/21tomcat, -tomcat-3.3.2-r1.ebuild,
  -tomcat-3.3.2.ebuild, -tomcat-4.1.30-r2.ebuild, -tomcat-4.1.30-r3.ebuild,
  -tomcat-5.0.27-r1.ebuild, -tomcat-5.0.27-r2.ebuild:
  fix premissions (again sorry), should fix 59232 && 58616

*tomcat-3.3.2-r1 (03 Aug 2004)
*tomcat-4.1.30-r3 (03 Aug 2004)
*tomcat-5.0.27-r2 (03 Aug 2004)

  03 Aug 2004; Thomas Matthijs <axxo@gentoo.org> +tomcat-3.3.2-r1.ebuild,
  +tomcat-4.1.30-r3.ebuild, +tomcat-5.0.27-r2.ebuild:
  fix premissions

  30 Jul 2004; Thomas Matthijs <axxo@gentoo.org> -tomcat-4.1.30-r1.ebuild,
  -tomcat-4.1.30.ebuild, -tomcat-5.0.27.ebuild:
  cleanup

*tomcat-4.1.30-r2 (30 Jul 2004)

  30 Jul 2004; Thomas Matthijs <axxo@gentoo.org> files/4.1.30/gentoo.diff,
  +tomcat-4.1.30-r2.ebuild:
  fix patch to source the correct file, 58835

*tomcat-4.1.30-r1 (29 Jul 2004)
*tomcat-5.0.27-r1 (29 Jul 2004)

  29 Jul 2004; Thomas Matthijs <axxo@gentoo.org> +tomcat-4.1.30-r1.ebuild,
  +tomcat-5.0.27-r1.ebuild:
  revision bump to force updating, peaple that upgraded from 5.0.18 will
  otherwise have problems

  29 Jul 2004; Thomas Matthijs <axxo@gentoo.org> files/4.1.30/gentoo.diff,
  +files/4.1.30/jikes.diff, files/4.1.30/tomcat.conf,
  files/5.0.27/gentoo.diff, +files/5.0.27/jikes.diff,
  files/5.0.27/tomcat.conf, tomcat-4.1.30.ebuild, tomcat-5.0.27.ebuild:
  added jikes use flag, enabling it will configure tomcat to use jikes

  28 Jul 2004; Thomas Matthijs <axxo@gentoo.org> files/4.1.30/gentoo.diff,
  files/4.1.30/tomcat.conf, files/5.0.27/gentoo.diff,
  files/5.0.27/tomcat.conf, tomcat-4.1.30.ebuild, tomcat-5.0.27.ebuild:
  added commented config defaults to use jikes compile,added doc use flag,
  closes 58670

  28 Jul 2004; Thomas Matthijs <axxo@gentoo.org> files/3.3.2/tomcat.init,
  files/4.1.30/tomcat.init, files/5.0.27/tomcat.init, tomcat-3.3.2.ebuild,
  tomcat-4.1.30.ebuild, tomcat-5.0.27.ebuild:
  changed init scripts, changed default shell/homedir for tomcat user, added
  warning about the new init scripts

*tomcat-3.3.2 (27 Jul 2004)
*tomcat-4.1.30 (27 Jul 2004)
*tomcat-5.0.27 (27 Jul 2004)

  27 Jul 2004; Thomas Matthijs <axxo@gentoo.org> metadata.xml,
  +files/3.3.2/21tomcat, +files/3.3.2/gentoo.diff, +files/3.3.2/tomcat.conf,
  +files/3.3.2/tomcat.init, -files/4.1.29/21tomcat, -files/4.1.29/gentoo.diff,
  -files/4.1.29/tomcat.conf, -files/4.1.29/tomcat.init,
  +files/4.1.30/21tomcat, +files/4.1.30/gentoo.diff,
  +files/4.1.30/tomcat.conf, +files/4.1.30/tomcat.init,
  -files/5.0.18/21tomcat, -files/5.0.18/gentoo.diff, -files/5.0.18/jikes.diff,
  -files/5.0.18/tomcat.conf, -files/5.0.18/tomcat.init,
  -files/5.0.25/21tomcat, -files/5.0.25/gentoo.diff,
  -files/5.0.25/tomcat.conf, -files/5.0.25/tomcat.init,
  +files/5.0.27/21tomcat, +files/5.0.27/gentoo.diff,
  +files/5.0.27/tomcat.conf, +files/5.0.27/tomcat.init, +tomcat-3.3.2.ebuild,
  -tomcat-4.1.29.ebuild, +tomcat-4.1.30.ebuild, -tomcat-5.0.18.ebuild,
  -tomcat-5.0.25.ebuild, +tomcat-5.0.27.ebuild:
  a whole bunch of new ebuilds, slot'ed, they should all work next to eatch
  other (don't forget to change the ports)

  25 Jun 2004; Aron Griffis <agriffis@gentoo.org> tomcat-5.0.18.ebuild:
  QA - fix use invocation

  08 Jun 2004; Bryan Østergaard <kloeri@gentoo.org> tomcat-5.0.18.ebuild:
  Stable on alpha.

*tomcat-5.0.25 (19 May 2004)

  19 May 2004; Chris Aniszczyk <zx@gentoo.org> +files/5.0.25/21tomcat,
  +files/5.0.25/gentoo.diff, +files/5.0.25/tomcat.conf,
  +files/5.0.25/tomcat.init, +tomcat-5.0.25.ebuild:
  New tomcat and new layout scheme.
  Thanks to Tim Chen for the initial ebuild.

  27 Apr 2004; Aron Griffis <agriffis@gentoo.org> tomcat-4.1.29.ebuild:
  Add inherit eutils

  10 Apr 2004; Travis Tilley <lv@gentoo.org> tomcat-5.0.18.ebuild:
  added ~amd64 keyword

  21 Mar 2004; Martin Holzer <mholzer@gentoo.org> tomcat-5.0.18.ebuild:
  adding categorie. see 45110 for details

  24 Feb 2004; Chris Aniszczyk <zx@gentoo.org> tomcat-4.1.29.ebuild:
  Heh, variable order fix ;) Bug #42071

  24 Feb 2004; Chris Aniszczyk <zx@gentoo.org> tomcat-5.0.18.ebuild,
  files/5.0.18/jikes.diff, files/5.0.18/tomcat.conf:
  Added jikes and doc support. Thanks to Luca Santarelli
  <hrk@users.sourceforge.net> for some patches. Bug #42175

*tomcat-5.0.18 (15 Feb 2004)
*tomcat-4.1.29 (15 Feb 2004)

  15 Feb 2004; <zx@gentoo.org> tomcat-4.1.29.ebuild, tomcat-5.0.18.ebuild:
  Massive bugfixes + version bumps. Huge thanks to Chetan Sarva
  <gentoo-bugs@fw2.net> for the ebuilds + various fixes. This update adds 5.0.18
  and 4.1.29 tomcat versions. It also fixes the following bugs:
  
  Bug #38949
  
  Bug #38952
  
  Bug #21772
  
  Bug #38358
  
  Bug #21744
  
  Bug #22040
  
  Bug #19723
  
  Bug #39819
  
  Bug #26994
  
  Bug #32408
  
  Bug #35094

  15 Dec 2003; <spider@gentoo.org> tomcat-4.1.24-r1.ebuild:
  QA: fixing chown user.group to user:group, bug #35127

  16 Oct 2003; Sergey Kuleshov <svyatogor@gentoo.org> tomcat-4.1.24-r1.ebuild:
  Fixed permissions for /etc/conf.d/tomcat

*tomcat-4.1.24-r1 (27 May 2003)

  27 May 2003; Dylan Carlson <absinthe@gentoo.org> tomcat-4.1.24-r1.ebuild:
  /opt/tomcat/conf was vulnerable to local users who are snooping the
  tomcat-users.xml file for passwords. The new ebuild fixes this problem for new
  installations.
  
  If you have an existing installation of Tomcat you can do the following:
  
  1. # /etc/init.d/tomcat stop
  2. # chmod -R 750 /opt/tomcat/
  3. # /etc/init.d/tomcat start
  
  Thanks to "D.Tuinstra" <tuinstra@inteo.com> for pointing out the
  vulnerability.

*tomcat-4.1.24 (25 Mar 2003)

  10 Apr 2003; Dylan Carlson <absinthe@gentoo.org> tomcat-4.1.24.ebuild:
  Minor fix to pkg_postinst() comments; fix to env.d/21tomcat install;
  added RDEPEND for sed.

  06 Apr 2003; Dylan Carlson <absinthe@gentoo.org> tomcat-4.1.24.ebuild:
  x86 ppc sparc moved to stable.

  28 Mar 2003; Dylan Carlson <absinthe@gentoo.org> files/4.1.24/tomcat.conf:
  Fixed sed path in conf.d/tomcat.

  25 Mar 2003; Dylan Carlson <absinthe@gentoo.org> omcat-4.1.24.ebuild, 
  files/4.1.24/21tomcat, tomcat-4.1.24.ebuild, files/4.1.24/21tomcat,
  files/4.1.24/gentoo.diff, files/4.1.24/tomcat.conf, files/4.1.24/tomcat.init:
  Version bump.  
  
  Also a few changes thanks to user feedback from Anthony Murray: 
  Fixes to init script, and changed conf.d/JAVA_HOME back to automatically
  set itself.  Closes bug #17907.

*tomcat-4.1.18-r1 (22 Mar 2003)

  22 Mar 2003; Dylan Carlson <absinthe@gentoo.org> tomcat-4.1.18-r1.ebuild,
  files/4.1.18/gentoo.diff, files/4.1.18/tomcat.conf,
  files/4.1.18/tomcat.init:
  Significant changes.  This ebuild now bears close resemblance to 
  net-www/orion.
  
  1. Tomcat now runs as user 'tomcat' by default. 
  2. All classes and JARs get installed into /usr/share/tomcat. 
  3. All logs go to /var/log/tomcat. 
  4. Init script was modified to use JAVA_HOME as set in /etc/conf.d/tomcat. 
     This is because we don't want the init script making any assumptions as 
     to what JVM the user wants to run for Tomcat. 
  5. JSSE and JPDA are supported as startup modes in /etc/conf.d/tomcat. 
     ( If you have a Sun Java 1.4 SDK or later, you have JSSE and JPDA 
     included. )
  
  Feedback on these changes would be appreciated, so we can get this
  ebuild moved to stable.
  	http://bugs.gentoo.org/
  	http://stable.gentoo.org/

*tomcat-4.1.18 (16 Mar 2003)

  16 Mar 2003; Dylan Carlson <absinthe@gentoo.org> tomcat-4.1.18.ebuild:
  New ebuild started from submission in bug # 11796. minor fixes; added
  servlet.jar as a shared library for packages that might require it at build
  time. Thanks to Mark Mealman <mmealman@tarsis.org> and gtonic <tom@wahuu.at>
  for their contributions.

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
 
*tomcat-4.0.6 (15 Oct 2002)

  15 Oct 2002; Maik Schreiber <blizzy@gentoo.org> : New version -
  security update. Closes bug #8931.

  26 Sep 2002; Maik Schreiber <blizzy@gentoo.org> files/21tomcat:
  Added CONFIG_PROTECT=/opt/jakarta/tomcat/conf so that configuration
  files don't get lost when installing a new version.

*tomcat-4.0.5 (25 Sep 2002)

  25 Sep 2002; Daniel Ahlberg <aliz@gentoo.org> :
  Security update. Ebuild provided by Adrian Almenar <aalmenar@conectium.com>.

*tomcat-4.0.4 (23 Jun 2002)

  14 Sep 2002; Owen Stampflee <owen@gentoo.org> :
  Added PPC to KEYWORDS.

  14 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> tomcat-4.0.4.ebuild :
  Added KEYWORDS.

  23 Jun 2002; William McArthur <sandymac@gentoo.org> tomcat-4.0.4.ebuild files/digest-tomcat-4.0.4 :
 
  New upstream version. Added a .keep file to the logs dir to prevent the logs
  from being removed during an upgrade if there were no log files.

*tomcat-4.0.3 (03 Jun 2002)

  14 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> tomcat-4.0.3.ebuild :
  Added KEYWORDS, SLOT.

  03 Jun 2002; Karl Trygve Kalleberg <karltk@gentoo.org> tomcat-4.0.3.ebuild files/digest-tomcat-4.0.3 :
 
  New upstream version.

*tomcat-4.0.1 (1 Feb 2002)

  14 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> tomcat-4.0.1.ebuild :
  Added KEYWORDS, SLOT.

  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.

*tomcat-3.2.2.ebuild (14 Jul 2002)

  01 Jul 2002; Karl Trygve Kalleberg <karltk@gentoo.org> tomcat-3.2.2.ebuild files/digest-tomcat-3.2.2 :

  This package has been masked for a while. Finally removed to get rid of 
  dev-java/jaxp entirely.
   
  14 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> tomcat-3.2.2.ebuild :
  Added KEYWORDS, SLOT.