summaryrefslogtreecommitdiff
blob: 0994642f896f05d0d787065aba49eb641128556a (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
# ChangeLog for net-www/apache
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-www/apache/ChangeLog,v 1.426 2005/10/02 01:50:44 kloeri Exp $

  02 Oct 2005; Bryan Østergaard <kloeri@gentoo.org>
  apache-1.3.33-r12.ebuild, apache-2.0.54-r31.ebuild:
  ia64 stable.

  24 Sep 2005; Bryan Østergaard <kloeri@gentoo.org>
  apache-2.0.54-r31.ebuild:
  Fix link to apache-upgrading doc.

  24 Sep 2005; Bryan Østergaard <kloeri@gentoo.org>
  apache-1.3.33-r12.ebuild, apache-2.0.54-r31.ebuild:
  Stable on alpha.

  20 Sep 2005; Marcus D. Hanwell <cryos@gentoo.org>
  apache-1.3.33-r12.ebuild:
  Stable on amd64, bug 106421, thanks to aja@gentoo.org.

  19 Sep 2005; Michael Hanselmann <hansmi@gentoo.org>
  apache-1.3.33-r12.ebuild:
  Stable on hppa, ppc.

  19 Sep 2005; Michael Hanselmann <hansmi@gentoo.org>
  apache-2.0.54-r31.ebuild:
  Stable on hppa and ppc.

  19 Sep 2005; Markus Rothe <corsair@gentoo.org> apache-1.3.33-r12.ebuild,
  apache-2.0.54-r31.ebuild:
  Stable on ppc64 (bug #106421)

  18 Sep 2005; Marcus D. Hanwell <cryos@gentoo.org>
  apache-2.0.54-r31.ebuild:
  Stable on amd64, bug 106421.

  18 Sep 2005; Michael Stewart <vericgar@gentoo.org>
  apache-2.0.54-r31.ebuild:
  New tarball to fix ExtendedStatus issue

  18 Sep 2005; Michael Stewart <vericgar@gentoo.org>
  apache-1.3.33-r12.ebuild:
  Stable on x86

*apache-2.0.54-r31 (18 Sep 2005)
*apache-1.3.33-r12 (18 Sep 2005)

  18 Sep 2005; Michael Stewart <vericgar@gentoo.org>
  +apache-1.3.33-r12.ebuild, +apache-2.0.54-r31.ebuild:
  Apache is now multilib aware

  18 Sep 2005; Bryan Østergaard <kloeri@gentoo.org>
  apache-1.3.33-r6.ebuild:
  Stable on ia64, bug 104807.

  17 Sep 2005; Michael Stewart <vericgar@gentoo.org> ChangeLog:
  Modify incremental DirectoryIndex patch to work with gcc-2. Fixes bug 100025

  17 Sep 2005; Aron Griffis <agriffis@gentoo.org> ChangeLog:
  Mark 2.0.54-r15 stable on ia64

  16 Sep 2005; Simon Stelling <blubb@gentoo.org> apache-1.3.33-r6.ebuild,
  apache-2.0.54-r15.ebuild:
  stable on amd64 wrt bug 104807

  15 Sep 2005; Bryan Østergaard <kloeri@gentoo.org>
  apache-1.3.33-r6.ebuild, apache-2.0.54-r15.ebuild:
  Stable on alpha, bug 104807.

  15 Sep 2005; Michael Stewart <vericgar@gentoo.org>
  apache-2.0.54-r30.ebuild:
  Added error checking for ldap USE-flag. Fixes bug #105972.

  12 Sep 2005; Jason Wever <weeve@gentoo.org> apache-1.3.33-r6.ebuild,
  apache-2.0.54-r15.ebuild:
  Marked stable on SPARC wrt security bug #104807.

  11 Sep 2005; Michael Hanselmann <hansmi@gentoo.org>
  apache-1.3.33-r6.ebuild, apache-2.0.54-r15.ebuild:
  Stable on hppa and ppc.

  11 Sep 2005; Markus Rothe <corsair@gentoo.org> apache-1.3.33-r6.ebuild,
  apache-2.0.54-r15.ebuild:
  Stable on ppc64

*apache-2.0.54-r15 (10 Sep 2005)

  10 Sep 2005; Michael Stewart <vericgar@gentoo.org>
  +apache-2.0.54-r15.ebuild:
  Security bump for CAN-2005-2491 and CAN-2005-2700. Fixes bugs 103554 and 104807

*apache-1.3.33-r11 (10 Sep 2005)
*apache-1.3.33-r6 (10 Sep 2005)

  10 Sep 2005; Michael Stewart <vericgar@gentoo.org>
  +apache-1.3.33-r6.ebuild, +apache-1.3.33-r11.ebuild:
  Security bump to address CAN-2005-2700. Fixes bug 104807

  10 Sep 2005; Michael Stewart <vericgar@gentoo.org> -apache-2.0.50.ebuild,
  -apache-2.0.51.ebuild, -apache-2.0.51-r1.ebuild, -apache-2.0.52.ebuild,
  -apache-2.0.52-r1.ebuild, -apache-2.0.52-r2.ebuild,
  -apache-2.0.54-r7.ebuild, -apache-2.0.54-r8.ebuild,
  -apache-2.0.54-r10.ebuild, -apache-2.0.54-r11.ebuild,
  -apache-2.0.54-r12.ebuild, -apache-2.0.54-r13.ebuild,
  -apache-2.0.54-r14.ebuild:
  Removing old versions and revisions. Note that new-style for apache is now
  -r30 and above.

*apache-2.0.54-r30 (10 Sep 2005)

  10 Sep 2005; Michael Stewart <vericgar@gentoo.org>
  +apache-2.0.54-r30.ebuild:
  Security bump for CAN-2005-2491 and CAN-2005-2700. Fixes bugs 103554 and 104807 for new-style.

  04 Sep 2005; Hardave Riar <hardave@gentoo.org> apache-2.0.54-r9.ebuild:
  Stable on mips, bug #102991.

  21 Aug 2005; Luis Medinas <metalgod@gentoo.org> apache-2.0.54-r9.ebuild:
  Marked Stable on AMD64. Fixes bug #102991.

  21 Aug 2005; Markus Rothe <corsair@gentoo.org> apache-2.0.54-r9.ebuild:
  Stable on ppc64 (bug #102991)

  21 Aug 2005; Fernando J. Pereda <ferdy@gentoo.org> Manifest:
  fix manifest

  21 Aug 2005; Fernando J. Pereda <ferdy@gentoo.org>
  apache-2.0.54-r9.ebuild:
  alpha stable wrt bug #102991

  20 Aug 2005; Josh Grebe <squash@gentoo.org> apache-2.0.54-r9.ebuild:
  -m Stable on sparc, bug #102991

  20 Aug 2005; Michael Hanselmann <hansmi@gentoo.org>
  apache-2.0.54-r9.ebuild:
  Stable on ppc and hppa.

*apache-2.0.54-r14 (20 Aug 2005)
*apache-2.0.54-r9 (20 Aug 2005)

  20 Aug 2005; Michael Stewart <vericgar@gentoo.org>
  +apache-2.0.54-r9.ebuild, +apache-2.0.54-r14.ebuild:
  Add patch to fix byterange bug that can cause a DoS. Fixes bug 102991

  28 Jul 2005; Michael Stewart <vericgar@gentoo.org>
  +apache-2.0.54-r13.ebuild:
  Check to see if apache is running on reload, error out if it isn't. Fixes
  bugs 98496 and 99987

*apache-2.0.54-r13 (28 Jul 2005)

  28 Jul 2005; Michael Stewart <vericgar@gentoo.org>
  +apache-2.0.54-r13.ebuild:
  Added IfDefines around the default virtual host and default SSL virtual
  host. Fixes bug 100624. Note that this breaks backwards compatibility with
  previous revisions, users will need to add DEFAULT_VHOST and
  SSL_DEFAULT_VHOST to APACHE2_OPTS in /etc/conf.d/apache2 after running
  etc-update

  16 Jul 2005; Joseph Jezak <josejx@gentoo.org> apache-1.3.33-r1.ebuild:
  Marked ppc stable for bug #86052.

  13 Jul 2005; Bryan Østergaard <kloeri@gentoo.org>
  apache-2.0.54-r8.ebuild:
  Stable on alpha + ia64, bug 98358.

  13 Jul 2005; Simon Stelling <blubb@gentoo.org> apache-2.0.54-r8.ebuild:
  stable on amd64 per bug 98358

  13 Jul 2005; bret curtis <psi29a@gentoo.org> apache-2.0.54-r12.ebuild:
  added to ~mips

  13 Jul 2005; Michael Stewart <vericgar@gentoo.org>
  apache-1.3.33-r10.ebuild, apache-2.0.54-r12.ebuild:
  New tarball: Splits the default vhost into it's own file, makes all
  references to configuration files absolute, clears up general user
  confusion. Fixes bugs 84133, 91745, 92024, 92891, 94168.

  12 Jul 2005; Michael Stewart <vericgar@gentoo.org>
  apache-2.0.54-r8.ebuild:
  Added apache user creation as it's no longer in baselayout. Fixed bug 98755

*apache-1.3.33-r10 (12 Jul 2005)
*apache-1.3.33-r5 (12 Jul 2005)

  12 Jul 2005; Michael Stewart <vericgar@gentoo.org>
  +apache-1.3.33-r5.ebuild, +apache-1.3.33-r10.ebuild:
  Support systems that don't use PAM, fixes bug 75922

  11 Jul 2005; Hardave Riar <hardave@gentoo.org> apache-2.0.54-r8.ebuild:
  Stable on mips, bug #98358.

  11 Jul 2005; Markus Rothe <corsair@gentoo.org> apache-2.0.54-r8.ebuild:
  Stable on ppc64 (bug #98358)

  10 Jul 2005; Jason Wever <weeve@gentoo.org> apache-2.0.54-r8.ebuild:
  Stable on SPARC wrt security bug #98358.

  10 Jul 2005; Tobias Scherbaum <dertobi123@gentoo.org>
  apache-2.0.54-r8.ebuild:
  ppc stable, bug #98358

  10 Jul 2005; Rene Nussbaumer <killerfox@gentoo.org>
  apache-2.0.54-r8.ebuild:
  Stable on hppa. bug #98358

*apache-2.0.54-r12 (10 Jul 2005)
*apache-2.0.54-r8 (10 Jul 2005)

  10 Jul 2005; Michael Stewart <vericgar@gentoo.org>
  +apache-2.0.54-r8.ebuild, +apache-2.0.54-r12.ebuild:
  Security fix: added patch to address CAN-2005-2088, bug 98358

  08 Jul 2005; Hardave Riar <hardave@gentoo.org> apache-2.0.54-r7.ebuild:
  Stable on mips.

  07 Jul 2005; Michael Stewart <vericgar@gentoo.org>
  apache-2.0.54-r7.ebuild:
  Removed 00_apache_manual.conf as a simpler solution is already in place.
  Fixes bug #98162

  05 Jul 2005; Sven Wegener <swegener@gentoo.org> apache-1.3.29-r2.ebuild,
  apache-1.3.31-r1.ebuild, apache-1.3.31-r2.ebuild, apache-1.3.31-r3.ebuild,
  apache-1.3.32.ebuild, apache-1.3.32-r1.ebuild, apache-1.3.33.ebuild,
  apache-1.3.33-r1.ebuild, apache-1.3.33-r2.ebuild, apache-1.3.33-r3.ebuild,
  apache-1.3.33-r4.ebuild, apache-2.0.50.ebuild, apache-2.0.51.ebuild,
  apache-2.0.51-r1.ebuild, apache-2.0.52.ebuild, apache-2.0.52-r1.ebuild,
  apache-2.0.52-r2.ebuild, apache-2.0.54-r7.ebuild,
  apache-2.0.54-r10.ebuild, apache-2.0.54-r11.ebuild:
  Added selinux to IUSE.

  27 Jun 2005; Simon Stelling <blubb@gentoo.org> apache-1.3.33-r1.ebuild:
  stable on amd64

*apache-2.0.54-r11 (08 Jun 2005)

  08 Jun 2005; Bryan Østergaard <kloeri@gentoo.org>
  +apache-2.0.54-r11.ebuild:
  Fix </IfDefine INFO> issue reported by Seemant Kulleen.

*apache-2.0.54-r10 (07 Jun 2005)

  07 Jun 2005; Michael Stewart <vericgar@gentoo.org> +apache-2.0.54-r10.ebuild:
  New tarball: Made it easier to enable /server-info for troubleshooting
  New style will now always be > -r10 until it's marked stable

*apache-2.0.54-r7 (07 Jun 2005)

  07 Jun 2005; Michael Stewart <vericgar@gentoo.org> +apache-2.0.54-r7.ebuild:
  Fix installation of configuration so that it's now owned by root instead of
  apache

  01 Jun 2005; Michael Tindal <urilith@gentoo.org> apache-2.0.54-r6.ebuild:
  Bail if more than one MPM is specified.

  01 Jun 2005; Michael Tindal <urilith@gentoo.org> apache-2.0.54-r6.ebuild:
  Fix the ebuild not selecting a default MPM if no MPM use flags are present.

*apache-2.0.54-r6 (01 Jun 2005)

  01 Jun 2005; Michael Tindal <urilith@gentoo.org> +apache-2.0.54-r6.ebuild:
  Removed multiple MPM support from apache due to problems it was causing
  external modules. Revision bumped from r5 to r6.

  21 May 2005; Jan Brinkmann <luckyduck@gentoo.org> apache-2.0.54-r4.ebuild:
  stable on amd64

  18 May 2005; Rene Nussbaumer <killerfox@gentoo.org>
  apache-1.3.33-r1.ebuild:
  stable on hppa; bug #86052

  18 May 2005; Markus Rothe <corsair@gentoo.org> apache-1.3.33-r1.ebuild:
  Stable on ppc64

  13 May 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  apache-2.0.54-r4.ebuild:
  Stable on sparc

  13 May 2005; Markus Rothe <corsair@gentoo.org> apache-2.0.54-r4.ebuild:
  Stable on ppc64

  13 May 2005; Lars Weiler <pylon@gentoo.org> apache-2.0.54-r4.ebuild:
  Stable on ppc; bug #91737 (again).

  12 May 2005; Bryan Østergaard <kloeri@gentoo.org>
  apache-2.0.54-r4.ebuild:
  Stable on ia64, bug 91737.

  12 May 2005; Bryan Østergaard <kloeri@gentoo.org>
  apache-2.0.54-r4.ebuild:
  Stable on alpha, bug 91737.

  12 May 2005; Guy Martin <gmsoft@gentoo.org> apache-2.0.54-r4.ebuild:
  Stable on hppa.

  12 May 2005; Elfyn McBratney <beu@gentoo.org> apache-2.0.54-r4.ebuild:
  Stable on x86, bug #91737.

*apache-2.0.54-r5 (12 May 2005)
*apache-2.0.54-r4 (12 May 2005)

  12 May 2005; Bryan Østergaard <kloeri@gentoo.org>
  +apache-2.0.54-r4.ebuild, +apache-2.0.54-r5.ebuild:
  Fixed ebuilds, bug 92348 and bug 91737.

  12 May 2005; Lars Weiler <pylon@gentoo.org> apache-2.0.54-r2.ebuild:
  Stable on ppc; bug #91737.

  12 May 2005; Markus Rothe <corsair@gentoo.org> apache-2.0.54-r2.ebuild:
  Stable on ppc64; bug #91737

*apache-2.0.54-r3 (12 May 2005)
*apache-2.0.54-r2 (12 May 2005)

  12 May 2005; Elfyn McBratney <beu@gentoo.org> +apache-2.0.54-r2.ebuild,
  +apache-2.0.54-r3.ebuild:
  Revision bumps to satisfy security bug #91737. 2.0.54-r2 is the (old-style)
  ebuild going stable, 2.0.54-r3 is the new-style ebuild. -r2 stable on x86.

  11 May 2005; Bryan Østergaard <kloeri@gentoo.org> metadata.xml:
  apache is a group effort so remove Hollow as maintainer.

  10 May 2005; Elfyn McBratney <beu@gentoo.org> :
  Fix digest.

  10 May 2005; Bret Curtis <psi29a@gentoo.org> apache-2.0.52-r3.ebuild:
  marked for testing, ~mips

*apache-2.0.54-r1 (10 May 2005)
*apache-2.0.53-r1 (10 May 2005)
*apache-2.0.52-r4 (10 May 2005)

  10 May 2005; Elfyn McBratney <beu@gentoo.org> +apache-2.0.52-r4.ebuild,
  +apache-2.0.53-r1.ebuild, +apache-2.0.54-r1.ebuild:
  Version bumps for LFS-removal.

  09 May 2005; Aron Griffis <agriffis@gentoo.org> apache-1.3.33-r1.ebuild:
  stable on ia64 #86052

  06 May 2005; Bryan Østergaard <kloeri@gentoo.org> apache-2.0.54.ebuild:
  Fix broken SRC_URI.

  05 May 2005; Bryan Østergaard <kloeri@gentoo.org>
  apache-1.3.29-r2.ebuild, apache-1.3.33-r2.ebuild, apache-1.3.33-r4.ebuild,
  apache-2.0.50.ebuild, apache-2.0.52.ebuild, apache-2.0.52-r1.ebuild,
  apache-2.0.52-r3.ebuild, apache-2.0.53.ebuild, apache-2.0.54.ebuild:
  Update SRC_URI for patches.

  04 May 2005; Elfyn McBratney <beu@gentoo.org> apache-2.0.54.ebuild:
  Move to mirror://apache.

*apache-1.3.33-r4 (03 May 2005)
*apache-1.3.33-r3 (03 May 2005)

  03 May 2005; Elfyn McBratney <beu@gentoo.org> +apache-1.3.33-r3.ebuild,
  +apache-1.3.33-r4.ebuild:
  More bumps - the -r1 and -r2 bumps didn't play nicely together what with -r1
  existing as new- and old-style with the same name.

  25 Apr 2005; Elfyn McBratney <beu@gentoo.org> apache-2.0.51.ebuild,
  apache-2.0.52.ebuild, apache-2.0.52-r1.ebuild, apache-2.0.52-r3.ebuild,
  apache-2.0.53.ebuild, apache-2.0.54.ebuild:
  Add missing openldap dependency and drop the whitespace in function
  declarations to make gentoo-syntax happy.

  20 Apr 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  apache-1.3.33-r1.ebuild:
  Stable on sparc wrt #86052

  16 Apr 2005; Benedikt Boehm <hollow@gentoo.org> apache-2.0.54.ebuild:
  Added logrotate script - bug 80263

  14 Apr 2005; Markus Rothe <corsair@gentoo.org> apache-1.3.33-r2.ebuild:
  Back to ~ppc64, as hollow sais this version isn't stable - bug #88639

*apache-2.0.54 (13 Apr 2005)

  13 Apr 2005; Christian Parpart <trapni@gentoo.org> +apache-2.0.54.ebuild:
  version bump. not yet released, so hard masked anyway. Needs a SRC_URI
  adjustment on official release as well.

  11 Apr 2005; Markus Rothe <corsair@gentoo.org> apache-1.3.33-r2.ebuild:
  Stable on ppc64; bug #88639

  09 Apr 2005; Christian Parpart <trapni@gentoo.org>
  apache-1.3.29-r2.ebuild, apache-1.3.31.ebuild, apache-1.3.31-r1.ebuild,
  apache-1.3.31-r2.ebuild, apache-1.3.31-r3.ebuild, apache-1.3.32.ebuild,
  apache-1.3.32-r1.ebuild, apache-1.3.33.ebuild, apache-1.3.33-r1.ebuild:
  adding blocks to apr and apr-util for obsolete apache1 ebuilds as well, so,
  that users wanting to upgrade are enforced to unmerge their old apache
  before they emerge the newer versions

  09 Apr 2005; Christian Parpart <trapni@gentoo.org> apache-2.0.50.ebuild,
  apache-2.0.51.ebuild, apache-2.0.51-r1.ebuild, apache-2.0.52.ebuild,
  apache-2.0.52-r1.ebuild, apache-2.0.52-r2.ebuild:
  adding blocks to apr and apr-util for obsolete apache2 ebuilds, so, that
  users wanting to upgrad are enforced to unmerge before they emerge the newer
  versions

  09 Apr 2005; Benedikt Boehm <hollow@gentoo.org> apache-1.3.33-r1.ebuild:
  fixed dependency issues, see bug #86052 and mod_ssl changelog for details

  03 Apr 2005; Elfyn McBratney <beu@gentoo.org> apache-1.3.33-r1.ebuild:
  Back into testing for you - hard masked; going back in once arches
  have confirmed that it's working correctly with mod_ssl (or someone
  from the apache herd nurses its stabilisation *wink* ;)

  21 Mar 2005; Elfyn McBratney <beu@gentoo.org> apache-1.3.33-r1.ebuild:
  Stable on x86 (bug #86052).

*apache-1.3.33-r2 (20 Mar 2005)

  20 Mar 2005; Elfyn McBratney <beu@gentoo.org> apache-1.3.33-r1.ebuild,
  +apache-1.3.33-r2.ebuild:
  Version bump to fix incompatabilities with mod_ssl and older dbm libs.
  1.3.33-r1 -> -r2.  Marked stable on x86 for bug #86052.

  20 Mar 2005; Elfyn McBratney <beu@gentoo.org> apache-1.3.29-r2.ebuild,
  apache-1.3.31-r1.ebuild, apache-1.3.31-r2.ebuild, apache-1.3.31-r3.ebuild,
  apache-1.3.31.ebuild, apache-1.3.32-r1.ebuild, apache-1.3.32.ebuild,
  apache-1.3.33-r1.ebuild, apache-1.3.33.ebuild, apache-2.0.50.ebuild,
  apache-2.0.51-r1.ebuild, apache-2.0.51.ebuild, apache-2.0.52-r1.ebuild,
  apache-2.0.52-r2.ebuild, apache-2.0.52.ebuild:
  Ebuild cleanup; drop sys-apps/sed from DEPEND and ht_fix_file a few more
  helper scripts.

  20 Mar 2005; Elfyn McBratney <beu@gentoo.org> apache-2.0.52-r3.ebuild,
  apache-2.0.53.ebuild:
  Make it a little more clearer that the metux and peruser MPM's are not
	in the slightest bit supported.

  09 Mar 2005; Markus Rothe <corsair@gentoo.org> apache-1.3.33-r1.ebuild:
  Added ~ppc64 to KEYWORDS

  07 Mar 2005; Elfyn McBratney <beu@gentoo.org> apache-2.0.53.ebuild:
  Remove all traces of metuxmpm. ;-)

  05 Mar 2005; Elfyn McBratney <beu@gentoo.org> apache-2.0.52-r3.ebuild,
  apache-2.0.53.ebuild:
  Depend on the 'best version' of apr-util, too.

  05 Mar 2005; Elfyn McBratney <beu@gentoo.org> apache-2.0.52-r3.ebuild,
  apache-2.0.53.ebuild:
  Depend on the 'best version' of apr.

  04 Mar 2005; Elfyn McBratney <beu@gentoo.org> apache-2.0.53.ebuild:
  Drop metux MPM support.

*apache-2.0.53 (04 Mar 2005)

  04 Mar 2005; Elfyn McBratney <beu@gentoo.org> +apache-2.0.53.ebuild:
  Version bump, closes bug #81267

  27 Feb 2005; Michael Stewart <vericgar@gentoo.org> apache-2.0.52-r3.ebuild:
  Remove mips, s390, arm due to apr and apr-util dependency. Bug 77455

  26 Feb 2005; Michael Stewart <vericgar@gentoo.org> apache-2.0.52-r3.ebuild:
  Adding debugging support

  24 Feb 2005; Elfyn McBratney <beu@gentoo.org> apache-2.0.52-r1.ebuild:
  Always create /var/cache/apache2 (closes bug #83187).

  24 Feb 2005; Elfyn McBratney <beu@gentoo.org> apache-2.0.52-r1.ebuild:
  Create /var/log/apache2 and /etc/apache2/conf/ssl (former closes bug #76044).

  21 Feb 2005; Elfyn McBratney <beu@gentoo.org> apache-2.0.52-r3.ebuild:
  Call gentestcrt.sh in pkg_postinst (thanks to Seemant for noticing).

  20 Feb 2005; Michael Stewart <vericgar@gentoo.org> apache-1.3.33-r1.ebuild,
  apache-2.0.52-r3.ebuild:
  Fix SSL test certificate generation; New patch that creates AddDirectoryIndex
  and RemoveDirectoryIndex directives - fixes bug #50611

  18 Feb 2005; Elfyn McBratney <beu@gentoo.org> apache-1.3.33-r1.ebuild,
  apache-2.0.52-r3.ebuild:
  Only reference the gentoo mirrors for the patchball's.

  18 Feb 2005; Elfyn McBratney <beu@gentoo.org> apache-1.3.33-r1.ebuild,
  apache-2.0.52-r3.ebuild:
  Updated patchball (apachectl now exits with an error if lynx is not installed).

  05 Feb 2005; Christian Parpart <trapni@gentoo.org>
  apache-1.3.33-r1.ebuild, apache-2.0.52-r3.ebuild:
  Added enewgroup/enewuser for apache

  01 Feb 2005; Christian Parpart <trapni@gentoo.org> :
  dropping php useflag and DEPEND

  22 Jan 2005; Christian Parpart <trapni@gentoo.org> :
  apache now DEPENDs on new net-www/gentoo-webroot-default

  10 Jan 2005; Michael Stewart <vericgar@gentoo.org> apache-2.0.52-r3.ebuild:
  Updating keywords on 2.0.52-r3 to match -r2, not sure how I missed this before
  the merge

  09 Jan 2005; Sven Wegener <swegener@gentoo.org> apache-1.3.33-r1.ebuild:
  Added missing parentheses in SRC_URI/*DEPEND/LICENSE.

*apache-2.0.52-r3 (08 Jan 2005)

  08 Jan 2005; Michael Stewart <vericgar@gentoo.org> +apache-2.0.52-r3.ebuild:
  Apache herd package refresh

*apache-1.3.33-r1 (09 Jan 2005)

  09 Jan 2005; Benedikt Boehm <hollow@gentoo.org> metadata.xml,
  +apache-1.3.33-r1.ebuild:
  Apache herd package refresh

  29 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> :
  Change encoding to UTF-8 for GLEP 31 compliance

*apache-2.0.52-r2 (23 Dec 2004)

  23 Dec 2004; Stuart Herbert <stuart@gentoo.org> apache-2.0.52-r2.ebuild:
  Improvements for first-time installation of Apache

  15 Dec 2004; Bryan Østergaard <kloeri@gentoo.org> :
  Fix broken digest, bug 74531.

  14 Dec 2004; Bryan Østergaard <kloeri@gentoo.org> apache-1.3.33.ebuild:
  Also fix src_uri in apache-1.x.

  14 Dec 2004; Bryan Østergaard <kloeri@gentoo.org>
  apache-2.0.52-r1.ebuild:
  Use mirror://apache/.. in SRC_URI.

  14 Dec 2004; Stuart Herbert <stuart@gentoo.org> :
  Fix for SSL directory bug + moved all configuration files out of CVS and into
  the apache-conf tarball created by urilith.

  24 Nov 2004; Sven Wegener <swegener@gentoo.org> :
  Removed unused digest entries. Added missing digest entries.

  09 Nov 2004; Simon Stelling <blubb@gentoo.org> apache-2.0.52-r1.ebuild:
  stable on amd64. bug #70138

  09 Nov 2004; Gustavo Zacarias <gustavoz@gentoo.org> apache-1.3.33.ebuild:
  Stable on sparc wrt Stuart ;)

  09 Nov 2004; Michael Tindal <urilith@gentoo.org>
  files/2.0.49/40_mod_ssl.conf:
  SELinux fixes for bugs

  07 Nov 2004; Joshua Kinard <kumba@gentoo.org> apache-1.3.32-r1.ebuild,
  apache-2.0.52-r1.ebuild:
  Marked stable on mips (Bugs #68564, #70138).

  05 Nov 2004; Michael Tindal <urilith@gentoo.org> :
  Fix circular dependency on mod_ssl, bug #69793

  05 Nov 2004; Olivier Crete <tester@gentoo.org> apache-2.0.52-r1.ebuild:
  Stable on x86 wrt security bug 70138

  06 Nov 2004; Bryan Østergaard <kloeri@gentoo.org>
  apache-2.0.52-r1.ebuild:
  Stable on alpha, bug 70138.

  05 Nov 2004; Markus Rothe <corsair@gentoo.org> apache-2.0.52-r1.ebuild:
  Stable on ppc64; bug #70138

  05 Nov 2004; <SeJo@gentoo.org> apache-2.0.52-r1.ebuild:
  stable on ppc gdsla: 70138

  05 Nov 2004; Gustavo Zacarias <gustavoz@gentoo.org> apache-2.0.52-r1.ebuild:
  Stable on sparc wrt #70138

*apache-2.0.52-r1 (05 Nov 2004)

  05 Nov 2004; Michael Tindal <urilith@gentoo.org> +apache-2.0.52-r1.ebuild:
  Security fix for CAN-2004-0942, bug

  05 Nov 2004; Michael Tindal <urilith@gentoo.org>
  -files/2.0.40/40_mod_ssl.conf,
  -files/2.0.40/41_mod_ssl.default-vhost.conf,
  -files/2.0.40/45_mod_dav.conf, -files/2.0.40/46_mod_ldap.conf,
  -files/2.0.40/apache2-builtin-mods, -files/2.0.40/apache2.conf,
  -files/2.0.40/apache2.confd, -files/2.0.40/apache2.initd,
  -files/2.0.40/apache2logserverstatus, -files/2.0.40/apache2splitlogfile,
  -files/2.0.40/commonapache2.conf, -files/2.0.40/dynamic-vhosts.conf,
  -files/2.0.40/gentestcrt.sh, -files/2.0.40/highperformance.conf,
  -files/2.0.40/httpd.conf, -files/2.0.40/ssl.conf,
  -files/2.0.40/vhosts.conf, -files/2.0.40/virtual-homepages.conf,
  -files/2.0.48-r1/apache2.conf, -files/2.0.48-r1/apache2.confd,
  -files/2.0.48-r1/apache2.initd, -files/2.0.48-r1/commonapache2.conf,
  -files/2.0.49/apache2.conf, -files/2.0.49/commonapache2.conf,
  -files/2.0.49/dynamic-vhosts.conf, -files/2.0.49/vhosts.conf,
  -files/2.0.49/virtual-homepages.conf:
  More cleanups to make repoman happy.  Cleaning out some stale files in files/.
  Configuration has been moved to apache2-conf.tar.bz2 on the mirrors to stop
  repoman from complaining about file size.  Ill get to 1.3.x later tonight.

  04 Nov 2004; Michael Tindal <urilith@gentoo.org>
  -files/httpd-2.0.49-ssl_engine_kernel.patch,
  -files/patches/2.0.49-r1/00_ssl_engine.patch,
  -files/patches/2.0.49-r1/01_ssl_engine_kernel.patch,
  -files/patches/2.0.50-r1/00_ssl_engine.patch:
  Removed old patches repoman was complaining about.

  30 Oct 2004; Bryan Østergaard <kloeri@gentoo.org> apache-1.3.33.ebuild:
  Stable on alpha, bug 68564.

  29 Oct 2004; Michael Hanselmann <hansmi@gentoo.org> apache-1.3.33.ebuild:
  Stable on ppc.

  29 Oct 2004; Stuart Herbert <stuart@gentoo.org> apache-1.3.32-r1.ebuild,
  apache-1.3.33.ebuild:
  Added ssl USE flag support

  29 Oct 2004; Stuart Herbert <stuart@gentoo.org> apache-1.3.32-r1.ebuild,
  apache-1.3.33.ebuild:
  Marked stable on x86

  29 Oct 2004; Stuart Herbert <stuart@gentoo.org> apache-1.3.33.ebuild:
  Updated to use existing mod_ssl for now

*apache-1.3.33 (29 Oct 2004)

  29 Oct 2004; Stuart Herbert <stuart@gentoo.org> +apache-1.3.33.ebuild:
  Added masked ebuild, pending release of upstream's mod_ssl

  26 Oct 2004; Bryan Østergaard <kloeri@gentoo.org>
  apache-1.3.32-r1.ebuild:
  Stable on alpha, bug 68564.

  26 Oct 2004; <SeJo@gentoo.org> apache-1.3.32-r1.ebuild:
  stable on ppc gsla: 68564

  26 Oct 2004; Karol Wojtaszek <sekretarz@gentoo.org>
  apache-1.3.32-r1.ebuild:
  Stable on amd64, bug #68564

  25 Oct 2004; Jason Wever <weeve@gentoo.org> apache-1.3.32-r1.ebuild:
  Stable on sparc wrt security bug #68564.

*apache-1.3.32-r1 (25 Oct 2004)

  25 Oct 2004; Rob Holland <tigger@gentoo.org> +apache-1.3.32-r1.ebuild:
  Security fix. #68564. Work done on behalf of stuart@gentoo.org

*apache-1.3.32 (23 Oct 2004)

  23 Oct 2004; Stuart Herbert <stuart@gentoo.org> +apache-1.3.32.ebuild:
  Version bump

  15 Oct 2004; Danny van Dyk <kugelfang@gentoo.org> apache-2.0.52.ebuild:
  Marked stable on amd64.

  14 Oct 2004; Hardave Riar <hardave@gentoo.org> apache-2.0.52.ebuild:
  stable on mips, bug #66807

  13 Oct 2004; Olivier Crete <tester@gentoo.org> apache-2.0.52.ebuild:
  Marking stable on x86 wrt security bug #66807

  09 Oct 2004; Tom Gall <tgall@gentoo.org> apache-2.0.52.ebuild:
  stable on ppc64, bug #66807

  09 Oct 2004; <SeJo@gentoo.org> apache-2.0.52.ebuild:
  stable ppc gsla: 66807

  09 Oct 2004; Bryan Østergaard <kloeri@gentoo.org> apache-2.0.52.ebuild:
  Stable on alpha, bug 66807.

*apache-2.0.52 (08 Oct 2004)

  08 Oct 2004; Jason Wever <weeve@gentoo.org> apache-2.0.52.ebuild:
  Stable on sparc wrt security bug #66807.

  23 Sep 2004; Olivier Crete <tester@gentoo.org> apache-2.0.51-r1.ebuild:
  Stable on x86 wrt security bug #64804

  22 Sep 2004; Bryan Østergaard <kloeri@gentoo.org>
  apache-2.0.51-r1.ebuild:
  Stable on alpha, bug 64804.

  22 Sep 2004; Joshua Kinard <kumba@gentoo.org> apache-2.0.51-r1.ebuild:
  Marked stable on mips.

  21 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> apache-2.0.51-r1.ebuild:
  Stable on sparc wrt #64804

  21 Sep 2004; Stuart Herbert <stuart@gentoo.org> apache-2.0.51-r1.ebuild,
  apache-2.0.51.ebuild:
  Added dep on autconf-2.59-r4; fixes bug #64365; thanks to Thomas Stein
  <himbeere@leowol.com> for the fix

  21 Sep 2004; <SeJo@gentoo.org> apache-2.0.51-r1.ebuild:
  stable on ppc gsla bug: 64804

*apache-2.0.51-r1 (21 Sep 2004)

  21 Sep 2004; Stuart Herbert <stuart@gentoo.org> +apache-2.0.51-r1.ebuild:
  Added security patch from UPSTREAM for security issue CAN-2004-0811; thanks to
  chipig for the heads up

  17 Sep 2004; Bryan Østergaard,,, <kloeri@gentoo.org> apache-2.0.51.ebuild:
  Stable on alpha.

  16 Sep 2004; Stephen P. Becker <geoman@gentoo.org> apache-2.0.51.ebuild:
  Stable on mips.

  16 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> apache-2.0.51.ebuild:
  Stable on ppc64 wrt #62626 #63948 #64145 and Stuart

  16 Sep 2004; Guy Martin <gmsoft@gentoo.org> apache-2.0.51.ebuild:
  Stable on hppa.

  16 Sep 2004; Danny van Dyk <kugelfang@gentoo.org> apache-2.0.51.ebuild:
  Marked stable on amd64.

  16 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> apache-2.0.51.ebuild:
  Stable on sparc wrt #62626

  16 Sep 2004; Stuart Herbert <stuart@gentoo.org> apache-2.0.51.ebuild:
  Stable on x86

  16 Sep 2004; <SeJo@gentoo.org> apache-2.0.51.ebuild:
  stable ppc bug: 62626

  16 Sep 2004; Stuart Herbert <stuart@gentoo.org> -apache-2.0.49-r3.ebuild,
  -apache-2.0.49-r4.ebuild, -apache-2.0.50-r1.ebuild,
  -apache-2.0.50-r2.ebuild, -apache-2.0.50-r3.ebuild, -apache-2.0.50.ebuild:
  Obsolete version; removed by eversionrm tool

  16 Sep 2004; Stuart Herbert <stuart@gentoo.org> -apache-2.0.49-r3.ebuild,
  -apache-2.0.49-r4.ebuild, -apache-2.0.50-r1.ebuild,
  -apache-2.0.50-r2.ebuild, -apache-2.0.50.ebuild:
  Obsolete version; removed by eversionrm tool

  16 Sep 2004; Stuart Herbert <stuart@gentoo.org> -apache-2.0.49-r3.ebuild,
  -apache-2.0.49-r4.ebuild, -apache-2.0.50-r1.ebuild, -apache-2.0.50.ebuild:
  Obsolete version; removed by eversionrm tool

  16 Sep 2004; Stuart Herbert <stuart@gentoo.org> -apache-2.0.49-r3.ebuild,
  -apache-2.0.49-r4.ebuild, -apache-2.0.50.ebuild:
  Obsolete version; removed by eversionrm tool

  16 Sep 2004; Stuart Herbert <stuart@gentoo.org> -apache-2.0.49-r3.ebuild,
  -apache-2.0.49-r4.ebuild:
  Obsolete version; removed by eversionrm tool

  16 Sep 2004; Stuart Herbert <stuart@gentoo.org> -apache-2.0.49-r3.ebuild:
  Obsolete version; removed by eversionrm tool

*apache-2.0.51 (15 Sep 2004)

  15 Sep 2004; Stuart Herbert <stuart@gentoo.org> +apache-2.0.51.ebuild:
  Version bump

  15 Sep 2004; Danny van Dyk <kugelfang@gentoo.org> apache-2.0.50-r3.ebuild:
  Stable on amd64. BUG #62626.

  14 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> apache-2.0.50-r3.ebuild:
  Stable on sparc wrt #62626 take 2, #63948

  14 Sep 2004; Danny van Dyk <kugelfang@gentoo.org> apache-2.0.50-r2.ebuild:
  Marked stable on amd64.

  13 Sep 2004; Guy Martin <gmsoft@gentoo.org> apache-2.0.50-r2.ebuild:
  Stable on hppa.

  13 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> apache-2.0.50-r2.ebuild:
  Stable on sparc wrt #62626

*apache-2.0.50-r3 (14 Sep 2004)

  14 Sep 2004; Stuart Herbert <stuart@gentoo.org> +apache-2.0.50-r3.ebuild:
  Added patch for security issue CAN-2004-0809; see bug #63948

*apache-2.0.50-r2 (13 Sep 2004)

  13 Sep 2004; Stuart Herbert <stuart@gentoo.org> +apache-2.0.50-r2.ebuild:
  Fix for CAN-2004-0751 (see Gentoo bug #62626)

  08 Sep 2004; Joshua Kinard <kumba@gentoo.org> apache-2.0.50-r1.ebuild:
  Marked stable on mips.

  09 Sep 2004; Bryan Østergaard <kloeri@gentoo.org> apache-2.0.50-r1.ebuild:
  Stable on alpha, bug 62626.

  08 Sep 2004; Olivier Crete <tester@gentoo.org> apache-2.0.50-r1.ebuild:
  Marking stable on x86 per bug 62626

  08 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> apache-2.0.50-r1.ebuild:
  Stable on sparc wrt #62626

*apache-2.0.50-r1 (07 Sep 2004)

  07 Sep 2004; Stuart Herbert <stuart@gentoo.org>
  +files/patches/2.0.50-r1/00_ssl_engine.patch,
  +files/patches/2.0.50-r1/Readme.PATCHES, +apache-2.0.50-r1.ebuild:
  Fix for bug #62626

  06 Sep 2004; Ciaran McCreesh <ciaranm@gentoo.org> apache-2.0.49-r3.ebuild,
  apache-2.0.49-r4.ebuild, apache-2.0.50.ebuild:
  Switch to use epause and ebeep, bug #62950

  01 Sep 2004; Travis Tilley <lv@gentoo.org> apache-1.3.31-r3.ebuild:
  stable on amd64

  30 Aug 2004; <solar@gentoo.org> apache-1.3.29-r2.ebuild,
  apache-1.3.31-r1.ebuild, apache-1.3.31-r2.ebuild, apache-1.3.31-r3.ebuild:
  QA fix: add whitespace to DEPENDS

  28 Aug 2004; Guy Martin <gmsoft@gentoo.org> apache-1.3.31-r3.ebuild:
  Marked stable on hppa.

  21 Aug 2004; Joshua Kinard <kumba@gentoo.org> apache-2.0.50.ebuild:
  Marked stable on mips.

  18 Aug 2004; Jason Wever <weeve@gentoo.org> apache-1.3.31-r3.ebuild:
  Stable on sparc wrt security bug #59715.

  18 Aug 2004; Hardave Riar <hardave@gentoo.org> apache-1.3.31-r3.ebuild:
  Stable on mips. Bug #59715

  18 Aug 2004; Aron Griffis <agriffis@gentoo.org> apache-1.3.31-r3.ebuild:
  stable on alpha and ia64 #59715

  17 Aug 2004; Stuart Herbert <stuart@gentoo.org> apache-1.3.31-r3.ebuild:
  Stable on x86

  17 Aug 2004; Stuart Herbert <stuart@gentoo.org> apache-1.3.31-r3.ebuild:
  Fixed problem with looking for a patch in the wrong place

*apache-1.3.31-r3 (17 Aug 2004)

  17 Aug 2004; Stuart Herbert <stuart@gentoo.org> +apache-1.3.31-r3.ebuild:
  Bumped the mod_ssl patch to match the separate mod_ssl package

  11 Aug 2004; Michael Sterrett <mr_bones_@gentoo.org>
  apache-2.0.49-r3.ebuild, apache-2.0.49-r4.ebuild:
  gnuconfig_update in src_unpack

  03 Aug 2004; <agriffis@gentoo.org> apache-1.3.31-r2.ebuild,
  apache-2.0.50.ebuild:
  stable on alpha and ia64

  02 Aug 2004; Chuck Short <zul@gentoo.org> apache-2.0.50.ebuild:
  -doc fix. Closes #50060.

  27 Jul 2004; Chuck Short <zul@gentoo.org> files/00_apache_manual.conf:
  Added multiviews support for manual. Closes #57792.

  27 Jul 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r3.ebuild,
  apache-2.0.49-r4.ebuild, apache-2.0.50.ebuild:
  Uclibc support. Patch from solar@gentoo.org

  21 Jul 2004; Gustavo Zacarias <gustavoz@gentoo.org> apache-2.0.50.ebuild:
  Stable on hppa

  10 Jul 2004; Chuck Short <zul@gentoo.org> apache-2.0.50.ebuild:
  Marked stable for x86 and sparc.

  10 Jul 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r4.ebuild:
  Apparently I cant spell.

  09 Jul 2004; Chuck Short <zul@gentoo.org> files/2.0.49/commonapache2.conf:
  Fixed buglet. Closes #56457.

  09 Jul 2004; Chuck Short <zul@gentoo.org> apache-1.3.29-r2.ebuild,
  apache-1.3.31-r1.ebuild, apache-1.3.31-r2.ebuild, apache-2.0.49-r3.ebuild,
  apache-2.0.49-r4.ebuild, apache-2.0.50.ebuild:
  Added selinux support. Closes #56380.

  07 Jul 2004; Aron Griffis <agriffis@gentoo.org> apache-2.0.49-r4.ebuild:
  stable on ia64 #5541

  04 Jul 2004; Michael Hanselmann <hansmi@gentoo.org> apache-2.0.49-r4.ebuild:
  Stable on ppc.

  03 Jul 2004; Bryan Østergaard <kloeri@gentoo.org> apache-2.0.49-r4.ebuild:
  Stable on alpha, bug #55441.

  02 Jul 2004; Gustavo Zacarias <gustavoz@gentoo.org> apache-2.0.49-r4.ebuild:
  Stable on hppa

*apache-2.0.50 (02 Jul 2004)

  02 Jul 2004; Chuck Short <zul@gentoo.org> apache-2.0.50.ebuild:
  Version bump, closes #5570
  Mod_proxy updates, closes #55599

  29 Jun 2004; Ian Leitch <port001@gentoo.org> apache-2.0.49-r4.ebuild:
  Marked stable on x86 - #55441

  29 Jun 2004; Ciaran McCreesh <ciaranm@gentoo.org> apache-2.0.49-r4.ebuild:
  Stable on mips, bug #55441

  29 Jun 2004; Ciaran McCreesh <ciaranm@gentoo.org> apache-2.0.49-r4.ebuild:
  Stable on sparc, bug #55441

  29 Jun 2004; Jeremy Huddleston <eradicator@gentoo.org>
  apache-2.0.49-r4.ebuild:
  Stable amd64.  Fixed MANUAL_VERSION.

*apache-2.0.49-r4 (28 Jun 2004)

  28 Jun 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r4.ebuild:
  Version bump. Closes #5541.
  - Added patch to fix apache dos. CAN-2004-0493.

  28 Jun 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r1.ebuild:
  Removed old versions.

  25 Jun 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r3.ebuild:
  Replaced version berkdb detection with something that is much more smarter.
  Shamelessly taken from the php.eclass. Closes #54932.

  21 Jun 2004; Danny van Dyk <kugelfang@gentoo.org> apache-1.3.31-r2.ebuild:
  Marked stable on amd64.

  21 Jun 2004; Luca Barbato <lu_zero@gentoo.org> apache-1.3.31-r2.ebuild:
  Marked ppc

  19 Jun 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r2.ebuild,
  files/patches/2.0.49-r2/00_gentoo_base.patch,
  files/patches/2.0.49-r2/01_apache_ldap_fixes.patch,
  files/patches/2.0.49-r2/01_gentoo_cvs_sync.patch,
  files/patches/2.0.49-r2/01_gentoo_ipv6.patch,
  files/patches/2.0.49-r2/01_ssl_engine_kernel.patch,
  files/patches/2.0.49-r2/01_ssl_verify_client.patch,
  files/patches/2.0.49-r2/03_redhat_xfsz.patch,
  files/patches/2.0.49-r2/04_ssl_makefile.patch,
  files/patches/2.0.49-r2/Readme.PATCHES:
  Ebuild cleanup. -r2 was marked unstable while -r3 was marked stable. Removed
  -r2.

  19 Jun 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r3.ebuild,
  files/patches/2.0.49-r3/00_gentoo_base.patch,
  files/patches/2.0.49-r3/01_apache_ldap_fixes.patch,
  files/patches/2.0.49-r3/01_gentoo_cgi.patch,
  files/patches/2.0.49-r3/01_gentoo_cvs_sync.patch,
  files/patches/2.0.49-r3/01_gentoo_ipv6.patch,
  files/patches/2.0.49-r3/01_ssl_engine_kernel.patch,
  files/patches/2.0.49-r3/01_ssl_verify_client.patch,
  files/patches/2.0.49-r3/03_redhat_xfsz.patch,
  files/patches/2.0.49-r3/04_ssl_makefile.patch:
  Moved patches to mirror://gentoo at seemants request.

  16 Jun 2004; Guy Martin <gmsoft@gentoo.org> apache-1.3.31-r2.ebuild:
  Marked stable on hppa.

  15 Jun 2004; Brandon Hale <tseng@gentoo.org> apache-1.3.31-r2.ebuild:
  Stable on x86, bug #53544

  14 Jun 2004; Chuck Short <zul@gentoo.org> files/apachesplitlogfile:
  Fixed typo.

  13 Jun 2004; Chuck Short <zul@gentoo.org> files/apachesplitlogfile,
  files/2.0.49/apache2splitlogfile:
  Added change from Phillip Gaschuetz <pg@corpex.de> Use strtime rather than the
  date command. Closes #53350.

  12 Jun 2004; Joshua Kinard <kumba@gentoo.org> apache-1.3.31-r2.ebuild:
  Marked stable on mips.

  12 Jun 2004; Jason Wever <weeve@gentoo.org> apache-1.3.31-r2.ebuild:
  Stable on sparc wrt bug #53544.

  12 Jun 2004; Bryan Østergaard <kloeri@gentoo.org> apache-1.3.31-r2.ebuild:
  Stable on alpha, bug #53544.

*apache-1.3.31-r2 (11 Jun 2004)

  11 Jun 2004; Chuck Short <zul@gentoo.org> apache-1.3.31-r2.ebuild,
  files/patches/1.3.31-r2/00_apache_proxy_security_fix.patch,
  files/patches/1.3.31-r2/00_gentoo_apachectl.patch,
  files/patches/1.3.31-r2/00_gentoo_base.patch,
  files/patches/1.3.31-r2/00_gentoo_db4_detect.patch,
  files/patches/1.3.31-r2/00_gentoo_suexec_pam.patch:
  Added patch for mod_proxy security hole. Closes #53544.

  09 Jun 2004; Guy Martin <gmsoft@gentoo.org> apache-1.3.31-r1.ebuild,
  apache-2.0.49-r3.ebuild:
  Marked stable on hppa.

  08 Jun 2004; Daniel Ostrow <dostrow@gentoo.org> apache-1.3.31-r1.ebuild,
  apache-2.0.49-r3.ebuild:
  Stable on ppc.

  10 Jun 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r1.ebuild,
  apache-2.0.49-r2.ebuild, apache-2.0.49-r3.ebuild,
  files/00_apache_manual.conf:
  Make apache easier to maintain.

  07 Jun 2004; Aron Griffis <agriffis@gentoo.org> apache-1.3.31-r1.ebuild,
  apache-2.0.49-r3.ebuild:
  Stable on ia64

  06 Jun 2004; Chuck Short <zul@gentoo.org> apache-1.3.31-r1.ebuild:
  mod_rewrite needs db-1.85-r1 to compile properly. Closes #52201.

  06 Jun 2004; Chuck Short <zul@gentoo.org> apache-1.3.31.ebuild:
  Added dependency on sys-libs/db-1.85-r1.

  06 Jun 2004; Chuck Short <zul@gentoo.org> apache-1.3.29-r1.ebuild:
  Ebuild cleanup. We dont want 1.3.29-r1.

*apache-1.3.29-r1 (06 Jun 2004)

  06 Jun 2004; Michael Sterrett <mr_bones_@gentoo.org>
  apache-1.3.29-r1.ebuild:
  resurrect apache-1.3.29-r1.ebuild since the deps for net-www/mod_ssl were
  broken

  06 Jun 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r1.ebuild,
  apache-2.0.49-r2.ebuild, apache-2.0.49-r3.ebuild:
  Strip out in CFLAGS that apache doesnt like. If you must know apache configure
  bails out saying that the CFLAGS have changed between the buildconf and
  configure if there are any extra spaces in the CFLAGS. :-).

  05 Jun 2004; Chuck Short <zul@gentoo.org> apache-1.3.29-r1.ebuild,
  apache-2.0.48-r4.ebuild, apache-2.0.49.ebuild:
  Removed old ebuilds.

  03 Jun 2004; Chuck Short <zul@gentoo.org> files/2.0.49/commonapache2.conf,
  files/conf/commonapache.conf:
  Added option to execute perl scripts in subdirs. Closes #38130. Option is
  turned off by default.

  03 Jun 2004; Chuck Short <zul@gentoo.org> apache-1.3.31-r1.ebuild,
  apache-2.0.49-r3.ebuild:
  Marked stable for x86.

  03 Jun 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r3.ebuild,
  files/patches/2.0.49-r3/00_gentoo_base.patch,
  files/patches/2.0.49-r3/01_apache_ldap_fixes.patch,
  files/patches/2.0.49-r3/01_gentoo_cgi.patch,
  files/patches/2.0.49-r3/01_gentoo_cvs_sync.patch,
  files/patches/2.0.49-r3/01_gentoo_ipv6.patch,
  files/patches/2.0.49-r3/01_ssl_engine_kernel.patch,
  files/patches/2.0.49-r3/01_ssl_verify_client.patch,
  files/patches/2.0.49-r3/03_redhat_xfsz.patch,
  files/patches/2.0.49-r3/04_ssl_makefile.patch:
  Changed patch location.

  02 Jun 2004; Danny van Dyk <kugelfang@gentoo.org> apache-1.3.31-r1.ebuild,
  apache-2.0.49-r3.ebuild:
  Marked stable on amd64.

  01 Jun 2004; Tom Gall <tgall@gentoo.org> apache-2.0.49-r3.ebuild:
  marked stable on ppc64, bug #52719 

  01 Jun 2004; Joshua Kinard <kumba@gentoo.org> apache-1.3.31-r1.ebuild,
  apache-2.0.49-r3.ebuild:
  Marked stable on sparc and mips.

  02 Jun 2004; Bryan Østergaard <kloeri@gentoo.org> apache-1.3.31-r1.ebuild,
  apache-2.0.49-r3.ebuild:
  Stable on alpha, bug 51368.

  01 Jun 2004; Grant Goodyear <g2boojum@gentoo.org> apache-2.0.49-r3.ebuild:
  Fixed ebuild to use the -r2 patch directory for patches.

*apache-2.0.49-r3 (01 Jun 2004)

  01 Jun 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r3.ebuild:
  Version bump.

  29 May 2004; Chuck Short <zul@gentoo.org>
  files/patches/1.3.31-r1/00_gentoo_apachectl.patch,
  files/patches/1.3.31-r1/00_gentoo_base.patch,
  files/patches/1.3.31-r1/00_gentoo_db4_detect.patch,
  files/patches/1.3.31-r1/00_gentoo_suexec_pam.patch:
  Re-added patches for 1.3.31-r1.

  29 May 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r1.ebuild,
  apache-2.0.49-r2.ebuild, apache-2.0.49.ebuild,
  files/httpd-2.0.49-ssl_engine_kernel.patch,
  files/patches/2.0.49-r1/01_ssl_engine_kernel.patch,
  files/patches/2.0.49-r2/01_ssl_engine_kernel.patch:
  Added ssl patch. Helps close #51368.

*apache-1.3.31-r1 (29 May 2004)

  29 May 2004; Chuck Short <zul@gentoo.org> apache-1.3.31-r1.ebuild:
  Version bump, to use the new mod_ssl whitch takes cares of some security
  holes. See #51638.

  26 May 2004; Stuart Herbert <stuart@gentoo.org> apache-2.0.49-r1.ebuild,
  apache-2.0.49-r2.ebuild, files/patches/2.0.49-r1/04_ssl_makefile.patch,
  files/patches/2.0.49-r1/Readme.PATCHES,
  files/patches/2.0.49-r2/04_ssl_makefile.patch,
  files/patches/2.0.49-r2/Readme.PATCHES:
  Fix for bug #52065; thanks to tigger^ for the details

  25 May 2004; Danny van Dyk <kugelfang@gentoo.org> apache-1.3.31.ebuild:
  Marked stable on amd64.

  25 May 2004; Guy Martin <gmsoft@gentoo.org> apache-1.3.31.ebuild:
  Marked stable on hppa.

  25 May 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r2.ebuild:
  Fix repoman error.

  25 May 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r2.ebuild:
  Added static support for adding mod_ldap.

  24 May 2004; Bryan Østergaard <kloeri@gentoo.org> apache-1.3.31.ebuild:
  Stable on alpha.

  23 May 2004; Christian Birchinger <joker@gentoo.org> apache-1.3.31.ebuild:
  Added sparc stable keyword

  25 May 2004; Chuck Short <zul@gentoo.org> apache-1.3.29-r1.ebuild,
  apache-1.3.29-r2.ebuild:
  Updated depends.

  23 May 2004; Luca Barbato <lu_zero@gentoo.org> apache-1.3.31.ebuild:
  Marked ppc

  23 May 2004; Joshua Kinard <kumba@gentoo.org> apache-1.3.31.ebuild:
  Marked stable on mips.

  25 May 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r1.ebuild,
  apache-2.0.49-r2.ebuild:
  Fixed possible bug if DATADIR had changed.

  25 May 2004; Chuck Short <zul@gentoo.org> apache-1.3.31.ebuild:
  Marked stable for x86.

  21 May 2004; Michael McCabe <randy@gentoo.org> apache-2.0.49-r2.ebuild:
  Stable on s390

  23 May 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r1.ebuild,
  apache-2.0.49-r2.ebuild, files/patches/2.0.49-r1/01_apache_ldap_fixes.patch,
  files/patches/2.0.49-r2/01_apache_ldap_fixes.patch,
  files/patches/2.0.49-r2/Readme.PATCHES:
  Added upstream patches for LDAP.

  23 May 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r1.ebuild,
  apache-2.0.49-r2.ebuild, files/patches/2.0.49-r1/01_apache_ldap_fixes.patch:
  Added upstream patches for LDAP. Closes #51683.

  20 May 2004; Joshua Kinard <kumba@gentoo.org> apache-2.0.49-r1.ebuild,
  apache-2.0.49-r2.ebuild:
  Added gnuconfig support for mips.

  21 May 2004; Chuck Short <zul@gentoo.org> files/2.0.48-r1/apache2.conf:
  Commented out the experimental modules for 2.0.48-r1. Closes #51188.

*apache-2.0.49-r2 (21 May 2004)

  21 May 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r2.ebuild,
  files/patches/2.0.49-r2/00_gentoo_base.patch,
  files/patches/2.0.49-r2/01_gentoo_cgi.patch,
  files/patches/2.0.49-r2/01_gentoo_cvs_sync.patch,
  files/patches/2.0.49-r2/01_gentoo_ipv6.patch,
  files/patches/2.0.49-r2/01_ssl_verify_client.patch,
  files/patches/2.0.49-r2/03_redhat_xfsz.patch,
  files/patches/2.0.49-r2/Readme.PATCHES:
  New version.
  - Bugfixes from upstream.
  - Added support for large log files. ( > 2GB ).
  - Added fedora core patches.

  17 May 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r1.ebuild,
  apache-2.0.49.ebuild, files/httpd-2.0.49-cgi.patch:
  Added fix for mod_cgi vulnerability. Closes 29893.

  17 May 2004; Chuck Short <zul@gentoo.org> files/2.0.49/apache2.initd:
  Fix typo in init script.

  14 May 2004; Joshua Kinard <kumba@gentoo.org> apache-1.3.29-r2.ebuild,
  apache-2.0.49-r1.ebuild:
  Marked Stable on mips.

  15 May 2004; Chuck Short <zul@gentoo.org> files/2.0.49/apache2.initd:
  apache2 init scripts for 2.0.49 now executes /usr/lib/apache2/envvars for
  apache2 environment variables. If you need to add environments variables for
  this is the place to do it. Closes #46925 and #30616.

*apache-1.3.31 (12 May 2004)

  12 May 2004; Chuck Short <zul@gentoo.org> apache-1.3.31.ebuild:
  Re-added EAPI and SHARED_CORE.

  12 May 2004; Chuck Short <zul@gentoo.org> apache-1.3.31.ebuild:
  To trigger happy. removed.

*apache-1.3.31 (12 May 2004)

  12 May 2004; Chuck Short <zul@gentoo.org> apache-1.3.31.ebuild:
  - Version bump
  - Added support for db4.1
  - Patches are now located in patches/${PV}.

  08 May 2004; David Holm <dholm@gentoo.org> apache-2.0.49-r1.ebuild:
  Stable on ppc.

  09 May 2004; Chuck Short <zul@gentoo.org>
  files/patches/1.3.31/00_gentoo_apachectl.patch,
  files/patches/1.3.31/00_gentoo_base.patch,
  files/patches/1.3.31/00_gentoo_db4_detect.patch,
  files/patches/1.3.31/00_gentoo_suexec_pam.patch,
  files/patches/1.3.31/Readme.PATCHES:
  Added patches for 1.3.31 in readyness for relase next week.

  06 May 2004; Aron Griffis <agriffis@gentoo.org> apache-2.0.49-r1.ebuild:
  Stable on ia64

  06 May 2004; Jon Portnoy <avenj@gentoo.org> apache-2.0.49-r1.ebuild :
  Stable on AMD64.

  07 May 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r1.ebuild,
  apache-2.0.49.ebuild:
  Improved error message on what to do if ./configure failed.

  06 May 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r1.ebuild:
  If use docs is enabled make the symlink for apache-manual if not. Dont. The
  manual is going to be installed anyways because its apart of the setup for
  apache. Closes #50060.

  06 May 2004; <zul@gentoo.org> apache-1.3.29-r1.ebuild:
  Added dependency on db. Closes #49556.

  04 May 2004; Jason Wever <weeve@gentoo.org> apache-2.0.49-r1.ebuild:
  Stable on sparc.

  04 May 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r1.ebuild:
  Makeopts fix. Closes #49843.

  04 May 2004; Chuck Short <zul@gentoo.org> files/2.0.49/apache2.initd:
  Added postgres to init script.

  04 May 2004; Chuck Short <zul@gentoo.org> files/apache.rc6:
  Added postgres to init script.

  02 May 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r1.ebuild:
  Backed out patches.

  02 May 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r1.ebuild,
  files/patches/2.0.49-r1/Readme.PATCHES:
  Updated patches readme.

  02 May 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r1.ebuild:
  Marked stable on alpha.

  02 May 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r1.ebuild,
  files/patches/2.0.49-r1/00_ssl_engine.patch,
  files/patches/2.0.49-r1/Readme.PATCHES:
  Added two patches for ssl issues.

  01 May 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r1.ebuild:
  Marked stable for x86.

  27 Apr 2004; Aron Griffis <agriffis@gentoo.org> apache-1.3.29-r1.ebuild:
  Add inherit eutils

  29 Apr 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r1.ebuild:
  Added support for the apache-manual wrapper. To enable it. Add "doc" to your
  use-flags. Closes #48066.

*apache-1.3.29-r2 (26 Apr 2004)

  26 Apr 2004; Chuck Short <zul@gentoo.org> apache-1.3.29-r2.ebuild,
  files/apache-1.3.29-usertrack_bug.patch:
  Ebuild cleanup. Added workaround patch work CookieName patch.

  24 Apr 2004; Chuck Short <zul@gentoo.org> apache-2.0.48-r4.ebuild,
  apache-2.0.49-r1.ebuild, apache-2.0.49.ebuild:
  Added get_number_of_jobs to make sure that makeopts are sane. Closes #38299.

  23 Apr 2004; Chuck Short <zul@gentoo.org>
  files/apache-1.3.27_db4_gentoo.patch:
  Updated 1.3.29 db4 patch to support db4.1. Closes #48795.

  22 Apr 2004; Chuck Short <zul@gentoo.org> files/apachesplitlogfile:
  Fixed error message in apachesplitlogfiles to make it more understandable.
  Closes #48499.

  20 Apr 2004; Chuck Short <zul@gentoo.org> files/common/config.layout:
  Fix another typo.

  20 Apr 2004; Chuck Short <zul@gentoo.org> apache-2.0.48-r4.ebuild:
  Fixes qa issue in 48335.

  20 Apr 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r1.ebuild:
  Changed --with-random to --with-devrandom, closes #48432.

  17 Apr 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r1.ebuild:
  Reverted back to install syntax for /var/log/apache2. Closes #48063.

  16 Apr 2004; Chuck Short <zul@gentoo.org> files/2.0.49/commonapache2.conf:
  Fixed typo, closes #46028.

  15 Apr 2004; Chuck Short <zul@gentoo.org> files/2.0.49/commonapache2.conf:
  Added mod_perl2 support to commonapache2.conf. Closes #33149.

  15 Apr 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r1.ebuild:
  Added missing ipv6 patch.

*apache-2.0.49-r1 (15 Apr 2004)

  15 Apr 2004; Chuck Short <zul@gentoo.org> apache-2.0.49-r1.ebuild,
  files/httpd-2.0.49-ipv6.patch, files/common/apr-config.layout,
  files/common/apr-util-config.layout, files/common/config.layout:
  Version bump.
  Bunch of fixes for reported bugs with apache:
  - Added ipv6 patch. Closes 42007.
  - Added UserDIR detection. Closes #46772.
  - Added the threads use flag. Closes #35568.
  - Added berkely db version detection. Closes #39562.
  Ebuild cleanus as well.

  10 Apr 2004; Chuck Short <zul@gentoo.org> files/apache2:
  Improved apache2 rottelog format.

  09 Apr 2004; Robin H. Johnson <robbat2@gentoo.org> apache-1.3.27-r3.ebuild,
  apache-1.3.27-r4.ebuild, apache-1.3.28-r1.ebuild, apache-1.3.28.ebuild,
  apache-1.3.29.ebuild, apache-2.0.46.ebuild, apache-2.0.47-r1.ebuild,
  apache-2.0.47.ebuild, apache-2.0.48-r1.ebuild, apache-2.0.48-r2.ebuild,
  apache-2.0.48-r3.ebuild, apache-2.0.48.ebuild,
  files/apache-1.3.28-zombie-cgi.patch, files/apache-2.0.44-gentoo.diff,
  files/apache-2.0.45-gentoo.diff, files/apache-2.0.46-gentoo.diff,
  files/apache-2.0.47-gentoo.diff:
  remove old ebuilds, keep latest stable and unstable for each arch

  09 Apr 2004; Joshua Kinard <kumba@gentoo.org> apache-1.3.29-r1.ebuild,
  apache-2.0.49.ebuild:
  Marked stable on mips.

  08 Apr 2004; Stuart Herbert <stuart@gentoo.org> files/2.0.49/apache2.initd:
  Fix for bug #44559 - problems with apache2 init script

  05 Apr 2004; Chuck Short <zul@gentoo.org> apache-2.0.48-r1.ebuild,
  apache-2.0.48-r2.ebuild, apache-2.0.48-r3.ebuild, apache-2.0.48-r4.ebuild,
  apache-2.0.48.ebuild, files/httpd-2.0.48-ipv6.patch:
  Fixed IPV6 start error. IPV6 works as expected under 2.0.48. Closes #32389.

  04 Apr 2004; Chuck Short <zul@gentoo.org> files/apache.confd,
  files/apache.rc6:
  Keep the $PERL5LIB sane when starting apache. Closes #34615.

  04 Apr 2004; Chuck Short <zul@gentoo.org> files/conf/apache.conf:
  Added LimitRequestBody directive, commented out ofcourse, since it 
  might affect other applications if it wasnt. Closes #34516.

  03 Apr 2004; Chuck Short <zul@gentoo.org> apache-2.0.48.ebuild,
  files/conf/commonapache.conf:
  Added multiviews for /usr/share/doc. Closes #30862.

  02 Apr 2004; Robin H. Johnson <robbat2@gentoo.org> apache-2.0.49.ebuild:
  fix bug #46585.

  02 Apr 2004; Chuck Short <zul@gentoo.org> apache-2.0.49.ebuild,
  files/apache2:
  Added apache2 log rotate. Closes #42537.

  01 Apr 2004; Chuck Short <zul@gentoo.org> metadata.xml:
  Updated metadata.xml.

  01 Apr 2004; Chuck Short <zul@gentoo.org> apache-1.3.29.ebuild:
  mod_db_auth patch backported to apache_1.3.29.
  Closes #43558.

  01 Apr 2004; Chuck Short <zul@gentoo.org> apache-1.3.29-r1.ebuild,
  files/apache-1.3.29_mod_auth_db.patch:
  Added patch so that mod_auth_db will compile with db4.1 and above. This patch
  should not be needed in the next release.

  29 Mar 2004; Chuck Short <zul@gentoo.org> files/conf/Vhosts.conf:
  Fixed typo in Vhosts.conf config file, closes #34335.

  28 Mar 2004; <randy@gentoo.org> apache-2.0.48-r4.ebuild:
  adding s390 keywords

  26 Mar 2004; <zul@gentoo.org> files/2.0.49/gentestcrt.sh:
  Copied missing gentestcrt.sh from ${FILESDIR}/2.0.40. Closes #45786.

  26 Mar 2004; Robin H. Johnson <robbat2@gentoo.org>
  files/2.0.49/apache2.initd:
  fix bug #45774.

  24 Mar 2004; Chris Aniszczyk <zx@gentoo.org> apache-2.0.49.ebuild:
  Marking stable on hppa.

  23 Mar 2004; Brandon Hale <tseng@gentoo.org> apache-2.0.49.ebuild:
  Marked stable on x86 for Ms. A Escriva-Sammer. Hugs all around.

  23 Mar 2004; Aron Griffis <agriffis@gentoo.org> apache-2.0.49.ebuild:
  stable on alpha and ia64

  23 Mar 2004; Luca Barbato <lu_zero@gentoo.org> apache-2.0.49.ebuild:
  Stable on ppc

  22 Mar 2004; Jon Portnoy <avenj@gentoo.org> apache-2.0.49.ebuild :
  Stable on AMD64.

*apache-2.0.49 (22 Mar 2004)

  22 Mar 2004; Jason Wever <weeve@gentoo.org> apache-2.0.49.ebuild:
  Marked stable on sparc wrt bug #45206.

  22 Mar 2004; Stuart Herbert <stuart@gentoo.org>
  files/2.0.49/40_mod_ssl.conf, files/2.0.49/41_mod_ssl.default-vhost.conf,
  files/2.0.49/45_mod_dav.conf, files/2.0.49/46_mod_ldap.conf,
  files/2.0.49/apache2-builtin-mods, files/2.0.49/apache2.conf,
  files/2.0.49/apache2.confd, files/2.0.49/apache2.initd,
  files/2.0.49/apache2logserverstatus, files/2.0.49/apache2splitlogfile,
  files/2.0.49/commonapache2.conf, files/2.0.49/dynamic-vhosts.conf,
  files/2.0.49/vhosts.conf, files/2.0.49/virtual-homepages.conf:
  Version bump - fixes security bug 45206, and bug #45418
  
  Updated ebuild to no longer rely on files in files/2.0.40 directory.  We
  can get rid of that once we're happy that this ebuild is stable.
  
  Changed the vhosts configuration.  Now ships with all vhost config files
  commented out by default.

  Fixed the 'has_version in global scope' warning.

  11 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org>
  apache-1.3.29-r1.ebuild:
  ppc64 needs dev-libs/mm first

  06 Feb 2004; Lars Weiler <pylon@gentoo.org> apache-2.0.48-r4.ebuild:
  Tested on ppc.  Making stable.

*apache-2.0.48-r4 (28 Jan 2004)

  28 Jan 2004; Robin H. Johnson <robbat2@gentoo.org> apache-2.0.48-r4.ebuild:
  fix bug #39027 for old versions of portage.

  20 Jan 2004; Robin H. Johnson <robbat2@gentoo.org>
  files/2.0.48-r1/apache2.initd:
  fix bug #38787, remember to always update your conf.d files!
  
  19 Jan 2004; <tuxus@gentoo.org> apache-1.3.29-r1.ebuild:
  Added ~mips to KEYWORDS.

  17 Jan 2004; Robin H. Johnson <robbat2@gentoo.org>
  files/2.0.48-r1/apache2.initd:
  add some catches/warnings to .48-r2 init.d script

*apache-2.0.48-r3 (18 Jan 2004)

  18 Jan 2004; rob holland <tigger@gentoo.org> apache-2.0.48-r1.ebuild,
  apache-2.0.48-r3.ebuild, files/apache-2.0.48-export.diff:
  Added export patch to fix compilation on some boxes. #32588.
  Reported by marco@md2.ath.cx. Pointer from Chris Nott.

  14 Jan 2004; Robin H. Johnson <robbat2@gentoo.org> apache-1.3.27-r3.ebuild,
  apache-1.3.27-r4.ebuild, apache-1.3.28-r1.ebuild, apache-1.3.28.ebuild,
  apache-1.3.29-r1.ebuild, apache-1.3.29.ebuild, apache-2.0.46.ebuild,
  apache-2.0.47-r1.ebuild, apache-2.0.47.ebuild, apache-2.0.48-r1.ebuild,
  apache-2.0.48-r2.ebuild, apache-2.0.48.ebuild:
  fix bug #38040. cleanup all apache2 DEPENDS to block mips from ldap until they
  have openldap supported.

*apache-2.0.48-r2 (12 Jan 2004)

  12 Jan 2004; Robin H. Johnson <robbat2@gentoo.org> apache-2.0.48-r2.ebuild,
  files/2.0.48-r1/apache2.conf, files/2.0.48-r1/apache2.confd,
  files/2.0.48-r1/apache2.initd, files/2.0.48-r1/commonapache2.conf:
  change ServerRoot to /usr/lib/apache2 to get rid of all access to binaries via
  /etc. fix bug #37962 by improving the init/conf files.

  10 Jan 2004; <agriffis@gentoo.org> apache-1.3.29-r1.ebuild,
  apache-2.0.48-r1.ebuild:
  stable on ia64

  25 Dec 2003; Robin H. Johnson <robbat2@gentoo.org> apache-1.3.27-r3.ebuild,
  apache-1.3.27-r4.ebuild, apache-1.3.28-r1.ebuild, apache-1.3.28.ebuild,
  apache-1.3.29-r1.ebuild, apache-1.3.29.ebuild:
  change to keepdir as per bug #35308

  15 Dec 2003; Guy Martin <gmsoft@gentoo.org> apache-2.0.48-r1.ebuild:
  Marked stable on hppa.

  03 Dec 2003; Robin H. Johnson <robbat2@gentoo.org> apache-2.0.48-r1.ebuild:
  properly fix bug #32444

  28 Nov 2003; Robin H. Johnson <robbat2@gentoo.org> apache-2.0.48-r1.ebuild:
  workaround for  bug #32444 - disable SCTP support

  19 Nov 2003; Daniel Robbins <drobbins@gentoo.org> apache-1.3.29-r1.ebuild:
  unmasking on all arches so we can get out the much-delayed GLSA 200310-03.
  
  16 Nov 2003; Aron Griffis <agriffis@gentoo.org> apache-2.0.48-r1.ebuild:
  Stable on alpha

*apache-1.3.29-r1 (04 Nov 2003)
*apache-2.0.48-r1 (04 Nov 2003)

  04 Nov 2003; Donny Davies <woodchip@gentoo.org> apache-1.3.29-r1.ebuild,
  apache-2.0.48-r1.ebuild:
  Fix/close #32361.

*apache-1.3.29 (02 Nov 2003)

  02 Nov 2003; Martin Holzer <mholzer@gentoo.org> apache-1.3.29.ebuild:
  Version bumped.

  31 Oct 2003; Jason Wever <weeve@gentoo.org> apache-2.0.48.ebuild:
  Marked stable on sparc in accordance with GLSA 200310-04.

  30 Oct 2003; Robin H. Johnson <robbat2@gentoo.org> apache-2.0.48.ebuild:
  fix for bug #24215, be aware that it may break on non-Linux Portage.

  30 Oct 2003; Rajiv Aaron Manglani <rajiv@gentoo.org> files/apache.rc6,
  files/2.0.40/apache2.initd:
  initscript fixes.

  30 Oct 2003; Donny Davies <woodchip@gentoo.org> files/apache.rc6,
  files/2.0.40/apache2.initd:
  Fixo; Use full path to start-stop-daemon.  Thanks klieber.

*apache-2.0.48 (30 Oct 2003)

  30 Oct 2003; Donny Davies <woodchip@gentoo.org> apache-2.0.48.ebuild,
  files/apache-2.0.48-gentoo.diff, files/2.0.40/40_mod_ssl.conf,
  files/2.0.40/apache2-builtin-mods, files/2.0.40/apache2.initd,
  files/2.0.40/vhosts.con, files/apache.rc6:
  Bump for security fixes.  Remove dupe 'mod_alias' from apache2-builtin-mods.
  Re-diff our patch; added two mod_ssl fixes from Rawhide and fix hardcoded
  path to /usr/sbin/suexec2.  Fix/close #31427, #32035, #31787, #31503, #30161.
  Added comments to the patchfile (please maintain these).

  30 Oct 2003; Jason Wever <weeve@gentoo.org> apache-2.0.47.ebuild:
  Marked stable for sparc.

  16 Oct 2003; Paul de Vrieze <pauldv@gentoo.org> apache-1.3.28-r1.ebuild,
  files/apache-1.3.27_db4_gentoo.patch:
  Make sure that a db version lower than 4.1 is installed and fix the checking
  script to get the right headers.

  06 Oct 2003; Jason Wever <weeve@gentoo.org> apache-1.3.28.ebuild:
  Marked stable for sparc.

  04 Oct 2003; Brad House <brad_mssw@gentoo.org> apache-1.3.28.ebuild:
  add ~amd64 flag

  29 Sep 2003; Donny Davies <woodchip@gentoo.org> apache-1.3.28.ebuild,
  metadata.xml:
  Add metadata and repoman fix.

  29 Sep 2003; Donny Davies <woodchip@gentoo.org> apache-1.3.27-r4.ebuild,
  apache-1.3.28.ebuild, apache-2.0.46.ebuild, apache-2.0.47.ebuild:
  Cleanup for #29843.

*apache-1.3.28-r1 (27 Sep 2003)

  27 Sep 2003; Donny Davies <woodchip@gentoo.org> apache-1.3.28-r1.ebuild,
  files/apache-1.3.27_db4_gentoo.patch, files/apache-1.3.28-zombie-cgi.patch,
  files/apache.rc6, files/2.0.40/apache2.confd,
  files/2.0.40/commonapache2.conf, files/conf/apache.conf,
  files/conf/commonapache.conf:
  Move --datadir to /var/www/localhost; prepare for the upcoming vhost-config
  and webapp-config tools.  Added patches to fix #26632 and #29124.  Hopefully
  fix #28552 and #28619.  Fix #29606 and #29329.

*apache-2.0.47-r1 (24 Sep 2003)

  24 Sep 2003; Donny Davies <woodchip@gentoo.org> apache-2.0.47-r1.ebuild,
  files/apache-2.0.47-gentoo.diff, files/2.0.40/41_mod_ssl.default-vhost.conf,
  files/2.0.40/apache2.conf, files/2.0.40/apache2.confd,
  files/2.0.40/apache2.initd, files/2.0.40/commonapache2.conf:
  Fix #25258, #25999.  Add RH patches to fix parallel build and *.conf crash.
  Move --datadir to /var/www/localhost; prepare for the upcoming vhost-config
  and webapp-config tools.

  25 Aug 2003; Jason Wever <weeve@gentoo.org> apache-1.3.27-r3.ebuild,
  apache-1.3.27-r4.ebuild, apache-1.3.28.ebuild, apache-2.0.46.ebuild,
  apache-2.0.47.ebuild:
  Added AcceptMutex fixes for sparcs for bug #7172.

  26 Jul 2003; Donny Davies <woodchip@gentoo.org> apache-1.3.28.ebuild:
  Fix #25212.  Mark x86 stable.

*apache-1.3.28 (23 Jul 2003)

  25 Jul 2003; Guy Martin <gmsoft@gentoo.org> apache-1.3.28.ebuild :
  Marked stable on hppa.

  23 Jul 2003; Donny Davies <woodchip@gentoo.org> apache-1.3.28.ebuild:
  Security update.  Will un-arch-mask after a few "it works for me" reports.

  20 Jul 2003; Donny Davies <woodchip@gentoo.org>
  files/2.0.40/commonapache2.conf:
  Close #24627, two smallish typos.

  14 Jul 2003; Donny Davies <woodchip@gentoo.org> apache-2.0.47.ebuild:
  Re-add dev-util/yacc; modules/ssl calls yacc on modules/ssl/ssl_expr_parse.y

  12 Jul 2003; Donny Davies <woodchip@gentoo.org> apache-2.0.47.ebuild:
  Marked x86 stable.

  11 Jul 2003; Donny Davies <woodchip@gentoo.org> apache-1.3.27-r4.ebuild,
  files/apache-1.3.27-apachectl.patch:
  Tidy the user/group bits and apachectl.

  11 Jul 2003; Donny Davies <woodchip@gentoo.org> files/apache.rc6,
  files/2.0.40/apache2.initd:
  Close #23854.

*apache-2.0.47 (09 Jul 2003)

  25 Jul 2003; Guy Martin <gmsoft@gentoo.org> apache-2.0.47.ebuild :
  Marked stable on hppa.

  09 Jul 2003; Mike Frysinger <vapier@gentoo.org> :
  Filter out largefile support on glibc-2.2.x

  09 Jul 2003; Donny Davies <woodchip@gentoo.org> apache-1.3.27-r1.ebuild,
  apache-1.3.27-r2.ebuild, apache-1.3.27.ebuild, apache-2.0.43-r1.ebuild,
  apache-2.0.44.ebuild, apache-2.0.45.ebuild, apache-2.0.47.ebuild:
  Bump to latest release.  Remove dev-util/yacc from DEPEND (I dont see
  what needs this).  Cosmetic clean-up of certificate creation message.

  22 Jun 2003; Paul de Vrieze <pauldv@gentoo.org> apache-1.3.27-r4.ebuild:
  Fix the compilation with versioned symbols in db

  17 Jun 2003; Donny Davies <woodchip@gentoo.org> apache-2.0.46.ebuild:
  Close #13191; GNU deprecated the -1 shortcuts (/me shakes head).
  Add fixes to use `getent' instead of grepping through /etc/{passwd,group}.

*apache-2.0.46 (28 May 2003)

  04 Jun 2003; Donny Davies <woodchip@gentoo.org> apache-2.0.46.ebuild:
  Close #12637.

  28 May 2003; Donny Davies <woodchip@gentoo.org> Manifest, apache-2.0.46.ebuild,
  files/apache-2.0.46-gentoo.diff:
  Chase latest release; re-diff the patch.

*apache-2.0.45 (06 Apr 2003)

  22 May 2003; Donny Davies <woodchip@gentoo.org> commonapache2.conf:
  Close #12006.

  06 Apr 2003; Donny Davies <woodchip@gentoo.org> apache-2.0.45.ebuild,
  files/apache-2.0.45-gentoo.diff, files/2.0.40/40_mod_ssl.conf,
  files/2.0.40/apache2.initd, files/2.0.40/commonapache2.conf:
  New version.  Added optional ldap mods, couple of small config
  file cleanups.  Fix bugs #17651, 17145. 

*apache-1.3.27-r4 (23 Feb 2003)

  26 Mar 2003; Thomas Raschbacher <lordvan@gentoo.org> apache-1.3.27-r[34].ebuild:
  changed mod_ssl_ver to 2.8.14 fixing bug #18172
  changed mod_ssl_ver in -r4 so that it doesn't contain apache version for ipv6 patch use
	
  25 Feb 2003; Donny Davies <woodchip@gentoo.org> apache.rc6, apache2.initd :
  Send USR1 signal only to parent in reload(); #16326.

  12 Mar 2003; Zach Welch <zwelch@gentoo.org> apache-1.3.27-r4.ebuild:
  add arm keyword

  23 Feb 2003; Martin Holzer <mholzer@gentoo.org> apache-1.3.27-r4.ebuild files/digest-apache-1.3.27-r4 ChangeLog :
  Added openssl to DEPEND.

  24 Feb 2003; Martin Holzer <mholzer@gentoo.org> apache-1.3.27-r4.ebuild ChangeLog :
  Removed Changes done from -r2 to -r4.

*apache-1.3.27-r3 (23 Feb 2003)

  24 Feb 2003; Martin Holzer <mholzer@gentoo.org> apache-1.3.27-r3.ebuild ChangeLog :
  Removed Changes done from -r1 to -r3.

  23 Feb 2003; Martin Holzer <mholzer@gentoo.org> apache-1.3.27-r3.ebuild files/digest-apache-1.3.27-r3 ChangeLog :
  Added openssl to DEPEND.

  23 Feb 2003; Donny Davies <woodchip@gentoo.org> :
  Fix #14561, #14589, #14724, #14818, #15592, #15806, #16158.

*apache-2.0.44 (21 Jan 2003)

  26 Mar 2003; Jason Wever <weeve@gentoo.org> apache-2.0.44.ebuild:
  Added ~sparc to keywords.

  15 Mar 2003; Jan Seidel <tuxus@gentoo.org> :
  Added ~mips to KEYWORDS

  18 Feb 2003;  <seemant@gentoo.org> apache-2.0.44.ebuild :
  added yacc as a DEPEND

  12 Feb 2003; Guy Martin <gmsoft@gentoo.org> :
  Added hppa to keywords.

  21 Jan 2003; Donny Davies <woodchip@gentoo.org> apache-2.0.44.ebuild,
  commonapache2.conf :  Version bump, #14300, add fix for #13152, close #13304.

*apache-1.3.27-r2 (16 Dec 2002)

  16 Dec 2002; Donny Davies <woodchip@gentoo.org> : #11209; Added pam support
  to suexec, and ipv6 support/patch. Thanks to Andrey Ulanov <drey@rt.mipt.ru>.

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
 
*apache-2.0.43-r1 (28 Nov 2002)

  12 Feb 2003; Seemant Kulleen <seemant@gentoo.org> apache-2.0.43-r1.ebuild :
  cosmetic fixes

  15 Dec 2002; Bjoern Brauel <bjb@gentoo.org> apache-2.0.43-r1.ebuild :
  Add alpha to KEYWORDS

  28 Nov 2002; Donny Davies <woodchip@gentoo.org> : Updated layout!
  Getting closer to fully deprecating Apache1.  Third party module
  integration is now somewhat simplified; simply install the desired
  module and edit /etc/conf.d/apache2.  There's no longer the need
  for the 'ebuild /var/db/pkg/.../foo.ebuild config' dance.  Yay.

*apache-2.0.43 (02 Nov 2002)

  02 Nov 2002; Donny Davies <woodchip@gentoo.org> : Chase latest; #9967.

*apache-1.3.27-r1 (12 Oct 2002)

  12 Oct 2002; Donny Davies <woodchip@gentoo.org> :
  Added redhat db-4 patch, tweaked sys-libs/db dependency to make things
  more sane.  Swept up patches into a single diff.  Added (Gentoo/Linux)
  to the server_version string.  Clean out old junk.  Help out with #8759.

*apache-1.3.27 (06 Oct 2002)

  06 Oct 2002; Nicholas Jones <carpaski@gentoo.org> :
  GLSA update. Version Bump with files dir moved to gentoo mirrors.

*apache-2.0.40-r1 (04 Sept 2002)

  14 Sep 2002; Nicholas Jones <carpaski@gentoo.org> :
  Added the capability for a graceful restart. Should ensure that
  the server, when restarted, actually dies before it's started again.

  04 Sep 2002; Nicholas Jones <carpaski@gentoo.org> :
  Made it path compliant. Fixed the modules files. Fixed the init.d and
  conf.d files. Still needs default configs and more tuning.

*apache-2.0.40 (15 Aug 2002)

  15 Aug 2002; Michael J. Cohen <mjc@gentoo.org> :
  Initial release, needs a few modules cleaned up as well as paths

*apache-1.3.26-r4 (3 Jul 2002)

  02 Oct 2002; Donny Davies <woodchip@gentoo.org> apache-1.3.26-r4.ebuild :
  Fix for #6149.

  28 Sep 2002; Daniel Ahlberg <aliz@gentoo.org> files/apache.rc6 :
  Made restart send signal to  apache processes instead of httpd processes. Thanks to ska-fan
  in #gentoo-dev for finding this.

  19 Sep 2002; Michael Frysinger <vapier@gentoo.org> apache-1.3.26-r4.ebuild files/apache.rc6 :
  Fixed the grep expressions for DATA_DIR and GID ... #8124
  Fixed 'use named' (was already added to 2.0.x just not 1.3.x) ... #5556

  17 Sep 2002; Nicholas Jones <carpaski@gentoo.org> :
  Fixed the graceful restart... It wasn't paying heed to ${APACHE_OPTS}

  14 Sep 2002; Nicholas Jones <carpaski@gentoo.org> :
  Added the capability for a graceful restart. Should ensure that
  the server, when restarted, actually dies before it's started again.

  14 Sep 2002; Donny Davies <woodchip@gentoo.org> mime_type_fix :
  Add x-ogg; #7245.  Cleanup.

  14 Aug 2002; Pieter Van den Abeele <pvdabeel@gentoo.org> :
  Added ppc keyword

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

  14 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> apache-1.3.26-r4.ebuild :
  Added KEYWORDS.

  3 Jul 2002; Brandon Low <lostlogic@gentoo.org> apache-1.3.26-r4.ebuild:
  Just .keep some directories we make so that they will be handled more 
  sanely in unmerge and clean operations.

*apache-1.3.26-r3 (2 Jul 2002)

  19 Sep 2002; Michael Frysinger <vapier@gentoo.org> apache-1.3.26-r3.ebuild :
  Fixed the grep expressions for DATA_DIR ... #8124

  14 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> apache-1.3.26-r3.ebuild :
  Added KEYWORDS.

  2 Jul 2002; Jon Nelson <jnelson@gentoo.org> apache-1.3.26-r3.ebuild:
  Basically, move stuff from pkg_setup() to postinst.

*apache-1.3.26-r2 (22 Jun 2002)

  14 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> apache-1.3.26-r2.ebuild :
  Added KEYWORDS.

  22 Jun 2002; Nicholas Jones <carpaski@gentoo.org> :
  Bugfix... Configs weren't actually changed properly.
  Moved sed on DATA_DIR after configs were coppied from ${FILESDIR} 

*apache-1.3.26-r1 (20 Jun 2002)

  14 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> apache-1.3.26-r1.ebuild :
  Added KEYWORDS.

  20 Jun 2002; Nicholas Jones <carpaski@gentoo.org> :
  Another attempt at fixing the LDAP user issue. Change the user check.
  Also added in checks to make sure that DATA_DIR is set.

  Turn 'install-quiet' back on.	

*apache-1.3.26 (19 Jun 2002)

  19 Jun 2002; Nicholas Jones <carpaski@gentoo.org> :
  The real exploit fix. Also patched a mdk patch so that it applied.

*apache-1.3.24-r6 (18 Jun 2002)

  14 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> apache-1.3.24-r6.ebuild :
  Added KEYWORDS.

  18 Jun 2002; Nicholas Jones <carpaski@gentoo.org> :
  ADDED PATCH FOR PROXY-HTTP1.1-CHUNKS EXPLOIT
  Fixed bug #2313 -- Better checks for group/user
  Fixed bug #3533 -- User can setup user/group and the homedir
                     of the apache user will be the data directory

*apache-1.3.24-r2 (4 May 2002)

  14 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> apache-1.3.24-r2.ebuild :
  Added KEYWORDS.

  4 May 2002; Donny Davies <woodchip@gentoo.org> :
  Added LICENSE, SLOT, $Headers.

  26 Apr 2002; Donny Davies <woodchip@gentoo.org> :
  Made the user/group id's 81 in pkg_setup after thusly adding them to
  Gentoo's baselayout.  No need to upgrade folks; cosmetic-only fix.

  10 Apr 2002; Donny Davies <woodchip@gentoo.org> apache-1.3.24-r1.ebuild,
  files/conf/commonapache.conf :
  Corrected the apache user's home directory (/var/www -> /home/httpd).
  Corrected the icons directory (/var/www/icons -> /home/httpd/icons).
  Ripped the php mime types from the commonapache.conf file.  I moved
  them to the php package, as an addon config snippet.
  (/etc/apache/conf/mod_php.conf)

*apache-1.3.24-r1 (9 Apr 2002)

  9 Apr 2002; Donny Davies <woodchip@gentoo.org> apache-1.3.24-r1.ebuild :
  data is now in /home/httpd/{htdocs,icons,cgi-bin} (new standard location for Gentoo)
  server now runs as user/group apache
  mod_ssl was split into a separate package
  link with the mm library; provides modules with shared memory pools (EAPI_MM=SYSTEM)
  link with the system expat library
  all modules are now built using SHARED_CHAIN (smaller mod sizes)
  several patches from debian/mandrake are included.  the most interesting one is the
  mandrake serverroot patch which makes configuring and organizing apache easier.
  the EAPI patch is now unconditionally included.  previously you only got it if you
  had ssl in your USE variable.
  provide an easy way to tune up the HARD_SERVER_LIMIT
  created a build-time config file for the modules distributed with apache.  now you
  can finely tune your own modules selection, and have your choices preserved across
  upgrades.  a gentoo-only feature ;)
  suexec is now fixed and restricted to user/group apache.
  added some support scripts (from mandrake).  two of these allow easy addition and
  removal of third-party modules into your apache.conf.  this should make writing
  ebuilds for extra mods easier.  see net-www/mod_* for examples.
  the config files are now in /etc/apache/conf, conveniently organized into
  separate directories for addon-modules and vhosts.  this simplifies things for
  everybody and especially for those with complicated/large sites.

*apache-1.3.24 (27 Mar 2002)

  27 Mar 2002; Donny Davies <woodchip@gentoo.org> apache-1.3.24.ebuild :
  Bump up to apache-1.3.24, mod_ssl-2.8.8; fixes some security issues. This port is
  being re-written, will be ready soon.

*apache-1.3.23 (4 Feb 2002)

  4 Feb 2002; Donny Davies <woodchip@gentoo.org> apache-1.3.23.ebuild :
  Bump apache to 1.3.23, mod_ssl to 2.8.6-1.3.23.

*apache-1.3.22-r6 (1 Feb 2002)

  1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :  
  Added initial ChangeLog which should be updated whenever the package is
  updated in any way. This changelog is targetted to users. This means that the
  comments should well explained and written in clean English. The details about
  writing correct changelogs are explained in the skel.ChangeLog file which you
  can find in the root directory of the portage repository.