summaryrefslogtreecommitdiff
path: root/doc/CHANGES-2000
blob: 435ea68f8a2f38e2ab68adb46e0b3fa020d5ddb4 (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
	$NetBSD: CHANGES-2000,v 1.2 2003/02/25 11:49:25 salo Exp $

Changes to the packages collection and infrastructure in 2000:

	dclock: added Y2K patch [itojun 2000-01-01]
	Updated xvile to 9.0 [agc 2000-01-01]
	Updated libglade to 0.11 [rh 2000-01-01]
	Updated gnumeric to 0.46 [rh 2000-01-01]
	Updated libslang to 1.3.10 [mjl 2000-01-01]
	Updated slrn to 0.9.6.2 [mjl 2000-01-01]
	Updated wmakerconf to 2.4 [wiz 2000-01-02]
	Added gdk-pixbuf-0.4 [rh 2000-01-02]
	Added bonobo-0.4 [rh 2000-01-02]
	Added libstroke-0.3 [rh 2000-01-02]
	Added libgdgeda-1.6 [rh 2000-01-02]
	Updated sendmail-8.9.3 to incorporate WIDE sendmail patch for IPv6
		and other enhancements [itojun 2000-01-02]
	Updated smtpfeed-1.02 for easier installation with specially-configured
		sendmail [itojun 2000-01-02]
	gnome-python: includes "py-gtk" package now [tron 2000-01-02]
	Removed py-gtk-0.6.3 [tron 2000-01-02]
	Added libgeda-19991011 [rh 2000-01-02]
	Added geda-symbols-19991011 [rh 2000-01-02]
	Added geda-utils-19991011 [rh 2000-01-02]
	Added gschem-19991011 [rh 2000-01-02]
	Added gnetlist-19991011 [rh 2000-01-02]
	Added py-dtml-2.1.1 [tsarna 2000-01-02]
	Added gsymcheck-19991011 [rh 2000-01-02]
	Added geda-docs-19991011 [rh 2000-01-03]
	Updated geda to 19991011 [rh 2000-01-03]
	Updated pkglint to 1.92 [abs 2000-01-03]
	Added rocksndiamonds-1.4.0 [wiz 2000-01-03]
	Updated user to 19991231 [agc 2000-01-03]
	Updated maketool to 0.5.1 [fredb 2000-01-03]
	Updated kermit to 7.0.196 [fredb 2000-01-03]
	Added gkermit-1.00 [fredb 2000-01-04]
	Updated gensolpkg to 1.6 [agc 2000-01-04]
	Updated povray to 3.1g [agc 2000-01-04]
	Updated gaim to 0.9.10 [garbled 2000-01-04]
	Added xdaemon-1.0 [hubertf 2000-01-05]
	Added less-332 (only for Solaris) [bouyer 2000-01-05]
	Added libirc-0.2 [agc 2000-01-05]
	Updated communicator to 4.7 (except SunOS) [abs 2000-01-05]
	Updated navigator to 4.7 (except SunOS) [abs 2000-01-05]
	Added aperture-2.0 [jlam 2000-01-05]
	Updated pkglint to 1.94 [wiz 2000-01-05]
	Added gnapster-1.3 [rh 2000-01-06]
	Updated tiff to 3.5.4 [wiz 2000-01-06]
	Updated pkglint to 1.95 [wiz 2000-01-06]
	Updated url2pkg to 1.7. [hubertf 2000-01-06]
	Updated pth-current to 1.3a2 [wiz 2000-01-06]
	Added ac3dec-0.5.6 [abs 2000-01-06]
	Updated battleball to 2.1 [fredb 2000-01-06]
	Updated gif2png to 2.3.0 [rh 2000-01-06]
	Updated delegate to 5.9.12 [rh 2000-01-06]
	Updated xsane to 0.48 [rh 2000-01-06]
	Added ethemes-0.1 [garbled 2000-01-06]
	Added linux-locale-0.4.11 [sakamoto 2000-01-07]
	Added wmfstatus-0.3 [sakamoto 2000-01-07]
	Added xscavenger-1.4.0 [wiz 2000-01-08]
	Updated pth to 1.2.2 [rh 2000-01-08]
	Updated gcombust to 0.1.27 [rh 2000-01-08]
	Updated py-extclass to 2.1.2 [tsarna 2000-01-08]
	Updated py-dtml to 2.1.2 [tsarna 2000-01-08]
	Updated suse_base to 6.3 (glibc 2.1) [tls 2000-01-09]
	Updated suse_compat to 6.3 (glibc 2.1) [tls 2000-01-09]
	Updated suse_libc5 to 6.3 (glibc 2.1) [tls 2000-01-09]
	Updated suse_devel to 6.3 (glibc 2.1) [tls 2000-01-09]
	Updated suse_x11 to 6.3 (glibc 2.1) [tls 2000-01-09]
	Updated suse_xforms to 6.3 (glibc 2.1) [tls 2000-01-09]
	Updated suse_linux to 6.3 (glibc 2.1) [tls 2000-01-09]
	Updated recode to 3.5 [rh 2000-01-10]
	Added ap-auth-postgresql-1.1b1 [jwise 2000-01-10]
	Added mzscheme-101 [pooka 2000-01-11]
	Updated ethereal to 0.8.1 [frueauf 2000-01-11]
	Updated fetchmail to 5.2.3 [frueauf 2000-01-11]
	Updated mc to 4.5.42 [tron 2000-01-11]
	Updated gmc to 4.5.42 [tron 2000-01-11]
	Added nut-4.0 [garbled 2000-01-11]
	Updated JDK to 1.1.8-rc1 [hubertf 2000-01-11]
	Added xpmicons-1.0 [garbled 2000-01-11]
	Added t1utils-1.14 [jonb 2000-01-11]
	Added ns-remote-1.1 [abs 2000-01-12]
	Updated R to 0.90.1 [rh 2000-01-12]
	Added jakarta-tomcat-3.0 [jwise 2000-01-12]
	Added mminstance-1.8 [jonb 2000-01-12]
	Updated afterstep-current to 1.7.165 [fredb 2000-01-13]
	Updated pngcrush to 1.3.3 [rh 2000-01-13]
	Updated exmh to 2.1.1 [agc 2000-01-13]
	Added squeak-2.6 [agc 2000-01-13]
	bsd.pkg.mk: Added USE_JAVA definition [jwise 2000-01-13]
	bsd.pkg.mk: Added check in package depends section, which checks
		that the object format of an installed package is the same
		as the object format that is currently being used.
		[agc 2000-01-14]
	Updated pspp to 0.3.0 [rh 2000-01-14]
	Added cross-m68k-netbsd-1.3.0.0 [tsutsui 2000-01-14]
	Added acroread-3.01 [dmcmahill 2000-01-14]
	Added fsh-1.0 [fredb 2000-01-14]
	Added jsdk-2.0 [jwise 2000-01-14]
	Added ap-jserv-1.1b3 [jwise 2000-01-14]
	Updated mtv to 1.1.0.7 [tron 2000-01-15]
	Updated XF86Setup to 3.3.6 [tron 2000-01-15]
	Replaced rdist-6.1.4 with freerdist-0.91 [christos 2000-01-15]
	Updated ncurses to 5.0 [jlam 2000-01-15]
	Updated snort to 1.5 [wiz 2000-01-15]
	Added xpuyopuyo-0.3.1 [jlam 2000-01-15]
	Added speyes-1.2.0 [jlam 2000-01-15]
	Updated ap-jserv to 1.1 [jwise 2000-01-15]
	Updated lynx package to include KAME IPv6 patch if requested
		by setting USE_INET6=yes. [hubertf 2000-01-16]
	Added py-pcgi-2.1.2 [tsarna 2000-01-15]
	Added kdoc-2.0a30 [wulf 2000-01-16]
	Updated asapm to 2.9 [jlam 2000-01-16]
	Added jmk-fonts-3.0 [jwise 2000-01-16]
	Updated perl5 to 5.005_03 [christos 2000-01-16]
	Added rx-1.5 [jlam 2000-01-16]
	Updated zebra to 0.84a.  note that configuration flie format is changed
		from 0.7x. [itojun 2000-01-17]
	Added openssl-1.2.1pre26 [christos 2000-01-17]
	Added asp2php-0.73.4 [agc 2000-01-17]
	Removed speakfreely-crypto-7.1.  Functionality now merged with
		speakfreely-7.1. [jlam 2000-01-17]
	Added xspeakfree-0.8.1 [jlam 2000-01-17]
	Updated vim-share to 5.6 [pooka 2000-01-17]
	Updated vim to 5.6 [pooka 2000-01-17]
	Updated vim-gtk to 5.6 [pooka 2000-01-17]
	Updated vim-xaw to 5.6 [pooka 2000-01-17]
	Added jssi-1.1.2 [jwise 2000-01-17]
	Added spfc-0.2.0 [jwise 2000-01-18]
	Updated pilotmgr to 1.107p2 [tron 2000-01-18]
	Downgraded perl5 to 5.00404 [tron 2000-01-18]
	Added perl-5.00503 as "perl5-current" [tron 2000-01-18]
	Added vigor-0.009 [hubertf 2000-01-19]
	Added jdbc-postgresql-6.5.3 [jwise 2000-01-19]
	Added cdparanoia-3.a9.7 [itohy 2000-01-19]
	Updated mutt to 1.0.1 [tron 2000-01-19]
	Added avltree-1.1 [hubertf 2000-01-20]
	Updated skkinput to 2.03 [itohy 2000-01-20]
	Updated gnome-libs to 1.0.55 [tron 2000-01-20]
	Updated libgtop to 1.0.6 [tron 2000-01-20]
	Updated gnome-core to 1.0.55 [tron 2000-01-20]
	Updated xmame to 0.36b14.1 [soren 2000-01-20]
	Updated pth-current to 1.3a5 [wiz 2000-01-21]
	Updated totd to 1.1p2 [itojun 2000-01-21]
	Added netperf-2.1.3 [itojun 2000-01-21]
	Updated fetchmail to 5.2.4,
		factored out fetchmailconf [fredb 2000-01-21]
	Added fetchmailconf-5.2.4 [fredb 2000-01-21]
	Added xmx-2.1alpha.pl7 [agc 2000-01-21]
	Added apcupsd-3.5.8 [bouyer 2000-01-21]
	Updated ruby for ELF and IPv6 support [itojun 2000-01-22]
	Added links-0.82 [wiz 2000-01-22]
	Added icewm-1.0.1 [wiz 2000-01-23]
	Updated upclient to 4.0.8 [wiz 2000-01-23]
	Updated ucd-snmp to 4.0.1, with IPv6 MIB support patch
		[itojun 2000-01-23]
	Added icewm-gnome-1.0.1 [tron 2000-01-23]
	bsd.prefs.mk: set USE_INET6 to YES by default, if you are on top of
		IPv6-ready userland.  It is advised to obey the default
		for safety (remove USE_INET6 declaration from /etc/mk.conf,
		if you have any).  [itojun 2000-01-24]
	Updated grepmail to 4.11 [agc 2000-01-24]
	Added xwatchwin-1.1.1 [agc 2000-01-24]
	Added acs-0.25 [dmcmahill 2000-01-24]
	Updated pchar to 1.1.1 [soren 2000-01-25]
	Updated pload to 0.9.4pl1 [abs 2000-01-25]
	Added wmpload-0.9.4 [abs 2000-01-25]
	Updated htdig to 3.1.4 [fredb 2000-01-25]
	Updated libxml to 1.8.5 [rh 2000-01-26]
	Updated gnome-print to 0.10 [rh 2000-01-26]
	Updated gnumeric to 0.48 [rh 2000-01-26]
	Added verilog-20000120 [dmcmahill 2000-01-26]
	Added cascade-1.3.0 [dmcmahill 2000-01-26]
	Updated xsane to 0.51 [rh 2000-01-26]
	Updated rplay to 3.3.2 [jlam 2000-01-26]
	Updated delegate to 5.9.13 [rh 2000-01-27]
	Updated openssh to 1.2.2 [hubertf 2000-01-27]
	Updated fftw to 2.1.3 [drochner 2000-01-27]
	Updated fltk to 1.0.7 [jlam 2000-01-27]
	Added framemaker-5.5.6 [abs 2000-01-27]
	Updated ethereal to 0.8.2 [frueauf 2000-01-27]
	Updated sudo to 1.6.2 [jlam 2000-01-27]
	Updated sudo to 1.6.2p1 [jlam 2000-01-28]
	Added 7plus-223 [wulf 2000-01-31]
	Updated apache to 1.3.11 [christos 2000-01-31]
	Updated lesstif to 0.89.9 [drochner 2000-01-31]
	Updated dx to 4.0.10 and dxsamples to 4.0.8 [drochner 2000-01-31]
	Updated bochs to 2000_0104c [drochner 2000-01-31]
	Added oraedit-0.1.3 [jdolecek 2000-01-31]
	Updated ircII to 4.4M [mrg 2000-02-01]
	Updated xscreensaver to 3.23 (needs latest lesstif) [wiz 2000-02-01]
	Added fastjar-0.90 [rh 2000-02-01]
	Updated gcombust to 0.1.28 [rh 2000-02-01]
	Updated gnome-pim to 1.0.55 [rh 2000-02-01]
	Added quake6-0.0 [itojun 2000-02-02]
	Updated gnome to 1.0.53.1 [tron 2000-02-01]
	Updated emixer to 0.5.0 [hubertf 2000-02-02]
	Added quakedata-1.0 [itojun 2000-02-02]
	Updated qpage to 3.3 [agc 2000-02-02]
	Updated ddd to 3.2 [rh 2000-02-03]
	Updated lwp to 1.1 [fredb 2000-02-03]
	Updated pdflib to 2.01 [drochner 2000-02-03]
	Added Xbae-4.7.1 [drochner 2000-02-03]
	Added grace-5.0.5 [drochner 2000-02-03]
	bsd.pkg.mk: Support for full wildcard support added and enabled,
		for both binary and pkgsrc packages. [hubertf 2000-02-03]
	pkg_install: Support for full wildcard support added
		and enabled, for both binary and pkgsrc packages. See
		http://www.netbsd.org/Documentation/software/pkg-wildcards.html 
		for more information. [hubertf 2000-02-03]
	Updated spruce to 0.5.14 [tron 2000-02-04]
	Added mouse-pppoe-20000202 [hubertf 2000-02-04]
	Updated snort to 1.5.1 [rh 2000-02-04]
	Updated xcruise to 0.24 [minoura 2000-02-04]
	Updated pth to 1.2.3 [wiz 2000-02-05]
	Updated pth-current to 1.3b1 [wiz 2000-02-05]
	Updated wmakerconf to 2.5 [wiz 2000-02-05]
	Updated zebra to 0.84b [itojun 2000-02-06]
	Added wmCalClock-1.25 [wiz 2000-02-06]
	Updated ja-micq to 0.4.3 [wiz 2000-02-06]
	Added micq-0.4.3 [wiz 2000-02-06]
	Updated tin to 1.4.2 [wiz 2000-02-06]
	Updated esound to 0.2.17 [wiz 2000-02-06]
	Updated xarchon to 0.50 [wiz 2000-02-06]
	Updated gindent to 2.2.5 [wiz 2000-02-06]
	Updated tgif to 4.1.26 [dmcmahill 2000-02-06]
	Updated ethereal to 0.8.3 [frueauf 2000-02-06]
	Added vtun-2.0 [hubertf 2000-02-07]
	Added portsentry-1.0 [agc 2000-02-07]
	Updated mrtg to 2.8.12 [tron 2000-02-07]
	Updated vice to 1.2 [wiz 2000-02-08]
	Added gsl-0.5 [fredb 2000-02-08]
	Updated ntp4 to 4.0.99d [fredb 2000-02-08]
	Updated coda5_client to 5.3.5 [fredb 2000-02-08]
	Updated coda5_server to 5.3.5 [fredb 2000-02-08]
	Updated pngcrush to 1.3.4 [wiz 2000-02-09]
	pkgsrc/Makefile: added "readme-ipv6" target, to generate a list of
		all packages that can do IPv6, together with the category
		they belong to and a short description. [hubertf 2000-02-09]
	Updated png to 1.0.5 [tron 2000-02-09]
	Added prag-1.0.2 [itojun 2000-02-09]
	Added ijb-2.0.2 [abs 2000-02-09]
	Updated thttpd to 2.15. [hubertf 2000-02-09]
	Added p5-Mail-IMAPClient-1.07 [rh 2000-02-10]
	Added ddos-scan-20000211 [agc 2000-02-11]
	Added libffm-0.28 [garbled 2000-02-12]
	Updated libtool to 1.3.4 [fredb 2000-02-12]
	Added sendmail 8.8.8 as "sendmail88" [tron 2000-02-13]
	Updated xmcd to 2.6 [fredb 2000-02-13]
	Added darcnes-20000212 [wiz 2000-02-14]
	Added pkg_tarup-1.0 [hubertf 2000-02-14]
	Updated afterstep to 1.8.0 [fredb 2000-02-14]
	Updated verilog to 20000212 [dmcmahill 2000-02-14]
	Updated py-extclass to 2.1.4 [tsarna 2000-02-14]
	Updated py-dtml to 2.1.4 [tsarna 2000-02-14]
	Updated zope to 2.1.4 [tsarna 2000-02-14]
	Removed afterstep-current [fredb 2000-02-15]
	Added bwbasic 2.20 [pooka 2000-02-15]
	Updated wwwoffle to 2.5c [itohy 2000-02-16]
	Added gtkdiff 1.3.0 [rh 2000-02-16]
	Updated trn to 4.72 [wiz 2000-02-16]
	Updated upclient to 4.09 [wiz 2000-02-16]
	Added oregano 0.11 [rh 2000-02-16]
	Updated ap-ssl to 2.5.0 [jwise 2000-02-16]
	Updated lavaps to 1.10 [hubertf 2000-02-17]
	Added realplayerG2 [jlam 2000-02-17]
	Updated mpg123 to be IPv6 ready [itojun 2000-02-18]
	Added pccts-1.33 [wiz 2000-02-18]
	Added cdrdao-1.1.3 [wiz 2000-02-18]
	Added lftp-2.1.8 [wiz 2000-02-18]
	Added cross-mipseb-netbsd-1.3.0.0 [tsutsui 2000-02-19]
	Added cross-mipsel-netbsd-1.3.0.0 [tsutsui 2000-02-19]
	Updated skill to 3.7.8 [wiz 2000-02-19]
	Updated lsof to 4.49.2 [wiz 2000-02-19]
	Updated gcombust to 0.1.29 [rh 2000-02-19]
	Added plib-1.0.20 [rh 2000-02-19]
	Added p5-DBD-postgresql-0.93 [jwise 2000-02-19]
	Updated skill to 3.7.9 [wiz 2000-02-20]
	Added cftp-0.9.3 [wiz 2000-02-20]
	Added yacas-1.0.28 [dmcmahill 2000-02-20]
	Updated pth to 1.3.0 [wiz 2000-02-20]
	Updated icewm to 1.0.2 [wiz 2000-02-20]
	Updated icewm-gnome to 1.0.2 [wiz 2000-02-20]
	Updated darcnes to 2000-02-19 [wiz 2000-02-20]
	Updated acroread to 4.05 [soren 2000-02-20]
	Updated apache6 to 1.3.11p0 [itojun 2000-02-21]
	pkglocate: Added pkglocate shell script [agc 2000-02-21]
	Added bchunk-1.0.0 [pooka 2000-02-21]
	Updated gnapster to 1.3.5 [wiz 2000-02-21]
	Updated pth to 1.3.1 [wiz 2000-02-21]
	Updated smalleiffel to -0.77 [jlam 2000-02-21]
	Updated wwwoffle to 2.5d [itohy 2000-02-22]
	Updated libgeda to 20000220 [rh 2000-02-22]
	Updated gnetlist to 20000220 [rh 2000-02-22]
	Updated gsymcheck to 20000220 [rh 2000-02-22]
	Updated geda-utils to 20000220 [rh 2000-02-22]
	Updated geda-symbols to 20000220 [rh 2000-02-22]
	Updated geda-docs to 20000220 [rh 2000-02-22]
	Updated geda to 20000220 [rh 2000-02-22]
	Updated dap to 2.1 [scw 2000-02-22]
	Added nana-2.4 [jlam 2000-02-22]
	Updated lsof to 4.49.3 [wiz 2000-02-22]
	Added its4-1.0 [wiz 2000-02-22]
	Updated analog to 4.03 [tron 2000-02-23]
	Added slib-2c7 [jlam 2000-02-23]
	Added guile-slib-2c7 [jlam 2000-02-23]
	Updated cervisia to 0.5.0. [hubertf 2000-02-24]
	Updated libslang to 1.4.0 [mjl 2000-02-25]
	Added ap-csacek-2.1.3 [jdolecek 2000-02-25]
	Removed py-mysql [tsarna 2000-02-26]
	Added py-mysqldb-0.1.2 [tsarna 2000-02-26]
	Updated gnupg to 1.0.1 [wiz 2000-02-27]
	Updated pth to 1.3.2 [wiz 2000-02-27]
	Updated zope-mysql to 1.1.3nb1 [tsarna 2000-02-27]
	Updated tgif to 4.1.27 [dmcmahill 2000-02-27]
	Updated gnapster to 1.3.6 [wiz 2000-02-27]
	Added libwmf-0.1.17 [wiz 2000-02-27]
	Added wv-0.5.43 [wiz 2000-02-27]
	Updated inn to 2.2.2 [tron 2000-02-27]
	Updated squid to 2.3s1 [tron 2000-02-28]
	Updated emma to 0.7.5 [wiz 2000-02-28]
	Added cardboard-schedule-1.13 [jwise 2000-02-28]
	Updated yacas to 1.0.29 [dmcmahill 2000-02-29]
	Updated xwrits to 2.11 [dmcmahill 2000-02-29]
	Updated dap to 2.1.1 [scw 2000-02-29]
	Updated abiword-personal to 0.7.8 [jlam 2000-02-29]
	Updated htdig to 3.1.5 because of security problems [hubertf 2000-03-01]
	Updated bladeenc to 0.92.0-stable [simonb 2000-03-01]
	Added gwave-19990927 [dmcmahill 2000-03-01]
	Updated remind to 3.0.20 [kim 2000-03-01]
	Updated nmh to 1.0.3 because of security problems [hubertf 2000-03-01]
	Updated w3m to 0.1.6 [itojun 2000-03-02]
	Updated darcnes to 20000226 [wiz 2000-03-02]
	Added urlget-1.2 [kim 2000-03-02]
	Updated cdrecord-current to 1.8.1a01 [scw 2000-03-03]
	Updated cdrecord to 1.8 [scw 2000-03-03]
	Updated xfce to 3.3.1 [jwise 2000-03-03]
	Added mutt-current 1.1.7i [pooka 2000-03-04]
	Updated fetchmail to 5.3.0 [wiz 2000-03-04]
	Updated fetchmailconf to 5.3.0 [wiz 2000-03-04]
	Updated teTeX-share to 1.0.2 [hubertf 2000-03-06]
	Updated squid to 2.3s2 [tron 2000-03-06]
	Updated ethereal to 0.8.4 [frueauf 2000-03-07]
	Updated verilog to 0.2 [dmcmahill 2000-03-07]
	Added verilog-current-20000219 [dmcmahill 2000-03-07]
	Added doc++-3.3.13 [jlam 2000-03-07]
	Added p5-Date-Manip-5.37 [jwise 2000-03-07]
	Added latex2rtf-1.8a [wiz 2000-03-08]
	Updated darcnes to 20000305 [wiz 2000-03-08]
	Updated xephem to 3.2.3 [agc 2000-03-08]
	Updated xemacs to 21.1.9 [tron 2000-03-08]
	Updated xemacs-packages to 1.3 [tron 2000-03-08]
	Updated xchat to 1.4.0 [tron 2000-03-08]
	Updated gnome to 1.0.53.2 [tron 2000-03-08]
	Updated tgif to 4.1.28 [dmcmahill 2000-03-08]
	Updated teTeX-sharesrc to 1.0.1 [tron 2000-03-09]
	Updated teTeX-bin to 1.0.7  [tron 2000-03-09]
	Updated teTeX to 1.0.7  [tron 2000-03-09]
	bsd.pkg.mk: pick up correct required pkgs' versions when determining
		the required packages of a required packages (i.e. 2nd level
		and below) in package-depends. PACKAGE_DEPENDS_QUICK turns
		this on, it is required that all depends are installed, i.e.
		this can be only used in the PKG_ARGS and fake-pkg case, and
		not e.g. for README.html generation. [hubertf 2000-03-09]
	Updated fetchmail to 5.3.2 [itojun 2000-03-10]
	Updated fetchmailconf to 5.3.2 [itojun 2000-03-10]
	Updated zebra to 0.85 [itojun 2000-03-10]
	Added aide-0.6 [agc 2000-03-10]
	Updated emacs to 20.6 [minoura 2000-03-11]
	Updated leim to 20.6 [minoura 2000-03-11]
	Added snobol-0.99.4 [wiz 2000-03-11]
	Updated xchat to 1.4.1 [tron 2000-03-11]
	Renamed amanda-all to amanda [tron 2000-03-11]
	Updated py-mysqldb to 0.1.3 [tsarna 2000-03-11]
	Updated zope-mysql to 1.1.3nb2 [tsarna 2000-03-11]
	Added blt-2.4o [hubertf 2000-03-12]
	Added wdiff-0.5 [itojun 2000-03-12]
	Added cdif-1.15 [itojun 2000-03-12]
	Updated glib to 1.2.7 [tron 2000-03-12]
	Updated gtk+ to 1.2.7 [tron 2000-03-12]
	Updated pth to 1.3.3 [wiz 2000-03-13]
	Added rasmol-2.7.1 [wiz 2000-03-13]
	Updated user to 20000313 [agc 2000-03-13]
	Updated spruce to 0.5.17 [tron 2000-03-13]
	Updated gnome-libs to 1.0.56 [tron 2000-03-13]
	Updated gnome-core to 1.0.55.1 [tron 2000-03-13]
	Updated xmame to 0.36b16.1 [soren 2000-03-14]
	Updated mutt-current to 1.1.9i [pooka 2000-03-14]
	Updated gimp-current to 1.1.18 [tron 2000-03-14]
	Added gimp-helpbrowser 1.1.18 [tron 2000-03-14]
	Added dinotrace-9.0g [dmcmahill 2000-03-14]
	Updated gnome-users-guide to 1.0.72 [tron 2000-03-14]
	Updated gnome-print to 0.12 [tron 2000-03-14]
	Updated gnome-python to 1.0.51 [tron 2000-03-14]
	Updated gnapster to 1.3.7 [wiz 2000-03-16]
	Updated pkglint to 2.05 [wiz 2000-03-16]
	Updated ircII to 4.4Q [mrg 2000-03-16]
	Updated gnome-utils to 1.0.51 [tron 2000-03-16]
	Updated gnome to 1.0.53.3 [tron 2000-03-16]
	Updated ircII to 4.4R [mrg 2000-03-17]
	Added httperf 0.6 [thorpej 2000-03-16]
	Updated zoularis-20000317 [christos 2000-03-17]
	Updated mtr to 0.42 [tron 2000-03-17]
	Updated psmisc to 19 [jlam 2000-03-17]
	Updated remind to 3.0.21 [kim 2000-03-17]
	Updated gd to 1.8.1 [he 2000-03-17]
	Updated ircII to 4.4S [itojun 2000-03-18]
	Added tcl-postgresql-6.5.3 [jlam 2000-03-19]
	Added tk-postgresql-6.5.3 [jlam 2000-03-19]
	pkg_install: allow pkg names without versions given to "pkg_admin
		check" [hubertf 2000-03-19]
	pkg_install: in pkg_add, before the "install dependencies" loop, check
		ALL dependencies if they _can_ be installed. I.e. if a package
		wants version X installed, but version Y is already installed,
		pkg_adding that required pkg will blow up later (probably some
		pkg_add recursions down, given what we keep in the depends
		list). Now, it stops right away:
	
		 noon# pkg_add /usr/pkgsrc/packages/i386ELF/All/xdaemon-1.0.tgz
		 pkg_add: pkg `xteddy-1.*' required, but `xteddy-2.0.1' found installed.
		 Please resolve this conflict!
	
		This also works with dewey, relational and wildcard packages.
		[hubertf 2000-03-19]
	Added bounce-0.0 [fredb 2000-03-19]
	Updated ssh-1.2.27, to split IPv6 support into ssh6-1.2.27
		[itojun 2000-03-20]
	Added ssh6-1.2.27 [itojun 2000-03-20]
	Updated snort to 1.6 [agc 2000-03-20]
	Updated fortify to 1.4.6 [jlam 2000-03-20]
	Added memconf-1.23.2 (only for Solaris) [agc 2000-03-21]
	Updated analog to 4.04 [tron 2000-03-21]
	Updated png to 1.0.6 [tron 2000-03-21]
	Updated ImageMagick to 5.1.1 [tron 2000-03-21]
	Added realplayer-7nb1 [rh 2000-03-22]
	Removed rvplayer [jlam 2000-03-22]
	Removed realplayerG2 [jlam 2000-03-22]
	Added lynx-2.8.3dev22 as "lynx-current" [fredb 2000-03-23]
	Updated roller to 1.1 [kim 2000-03-23]
	Added qt1-1.44 [dmcmahill 2000-03-23]
	Added uemacs-4.0 [tron 2000-03-23]
	Updated mawk to 1.3.3 [jlam 2000-03-24]
	Added ghostscript-x11-5.50 [jlam 2000-03-24]
	Added mksunbootcd-19990513 [dmcmahill 2000-03-25]
	Added cowsay-3.02 [jlam 2000-03-25]
	Updated verilog-current to 20000318 [dmcmahill 2000-03-25]
	Updated gnuchess to 5.00 [jlam 2000-03-25]
	Updated fetchmail to 5.3.4 [itojun 2000-03-26]
	Updated fetchmailconf to 5.3.4 [itojun 2000-03-26]
	Updated openssh to 1.2.3 [itojun 2000-03-26]
	Added gnuchess-4.0.x as gnuchess4 [jlam 2000-03-26]
	Updated acs to 0.26 [dmcmahill 2000-03-26]
	Updated mirror to 2.9 [kim 2000-03-26]
	freeciv: Split the package into freeciv-share, which contains shared
		data, and into freeciv-server which contains the freeciv game
		server, and freeciv-client and freeciv-client-gtk, which
		are the freeciv clients with either an Xaw or GTK+ GUI.
		[jlam 2000-03-27]
	Removed freeciv [jlam 2000-03-27]
	Added freeciv-share-1.10.0 [jlam 2000-03-27]
	Added freeciv-server-1.10.0 [jlam 2000-03-27]
	Added freeciv-client-1.10.0 [jlam 2000-03-27]
	Added freeciv-client-gtk-1.10.0 [jlam 2000-03-27]
	Added isakmpd-20000220 [itojun 2000-03-28]
	Added tidy-20000113 [tron 2000-03-28]
	Updated qt to 2.0.2 [dmcmahill 2000-03-28]
	Updated vipec to 2.0.1 [dmcmahill 2000-03-28]
	Updated bash2 to 2.04, added option for static linking [wiz 2000-03-30]
	Updated mutt-current to 1.1.10i [pooka 2000-03-30]
	Added libstash-19990912 [rh 2000-03-30]
	Added libsscript-2.0 [rh 2000-03-30]
	Updated its4 to 1.0.1 [wiz 2000-03-31]
	Updated ap-csacek to 2.1.4 [jdolecek 2000-03-31]
	Updated tiff to 3.5.5 [wiz 2000-04-01]
	Added mg2a-1.10 [dmcmahill 2000-04-01]
	Updated gif2png to 2.3.2 [wiz 2000-04-01]
	Updated ywho to 1.2 [kim 2000-04-01]
	pkg_add: Add quick depends pre-check to detect any conflicting pkgs
		immediately on the first pkg_add run, not when deep down in
		the depends hierarchy. Should save some time esp. to people
		installing via net/modem. [hubertf 2000-04-02]
	Added popa3d-0.4 [wiz 2000-04-02]
	Updated CompuPic to 5.0-1.033 [wiz 2000-04-02]
	Updated libmikmod to 3.1.9 [pooka 2000-04-02]
	Updated mikmod to 3.1.6-a [pooka 2000-04-02]
	Added corewars-0.9.10 [rh 2000-04-02]
	Updated gnapster to 1.3.8 [rh 2000-04-02]
	Added gnome-breakout-0.2 [rh 2000-04-02]
	Updated gcombust to 0.1.31 [rh 2000-04-02]
	Updated xglobe to 0.5 [hubertf 2000-04-03]
	Updated totd to 1.1p4 [itojun 2000-04-03]
	Added ruby-gl-0.31 [sakamoto 2000-04-03]
	Added xengine-1.0.1 [sakamoto 2000-04-03]
	Updated Mesa to 3.1 [drochner 2000-04-03]
	Added racoon-0.0 [itojun 2000-04-04]
	Updated gnome-breakout to 0.3 [rh 2000-04-04]
	Updated moscow_ml to 1.44 [jdolecek 2000-04-05]
	Updated icon to 9.3.2 [pooka 2000-04-05]
	Updated lsof to 4.49.4 (release) [wiz 2000-04-06]
	Updated ac3dec to 0.6.1 [wiz 2000-04-06]
	Added checkbot-1.59 [kim 2000-04-06]
	Updated libproplist to 0.10.0 [jlam 2000-04-06]
	Updated windowmaker to 0.62.0 [jlam 2000-04-06]
	Added asr-manpages-20000406 [hubertf 2000-04-07]
	Updated intlfonts to 1.2 [itojun 2000-04-07]
	Updated thttpd to 2.16 [itojun 2000-04-07]
	Updated gnome-print to 0.16 [rh 2000-04-07]
	Updated libproplist to 0.10.1 [tron 2000-04-07]
	Updated windowmaker to 0.62.1 [tron 2000-04-07]
	Updated wmakerconf to 2.6.1 [rh 2000-04-08]
	Updated ethereal to 0.8.6 [frueauf 2000-04-08]
	Updated postfix to 19991231-pl06 [simonb 2000-04-09]
	Added pptp-1.0.2 [jtk 2000-04-09]
	Added jisx0208fonts-0.0 [itojun 2000-04-10]
	Added jisx0212fonts-0.0 [itojun 2000-04-10]
	Added jisx0213fonts-0.0 [itojun 2000-04-10]
	Updated verilog-current to 20000409 [dmcmahill 2000-04-09]
	Updated imap-uw-4.5 to include rimapd link [simonb 2000-04-10]
	ghostscript: rename ghostscript5 binary without X11 drivers to `gstty'
		and ghostscript5-x11 binary with X11 drivers to `gs'.
		[jlam 2000-04-10]
	Updated Mesa-glx to 20000407 [tron 2000-04-12]
	Added drac-1.10 [groo 2000-04-12]
	Updated ploticus to 1.36 [rh 2000-04-12]
	Updated pysol to 4.00 [sakamoto 2000-04-13]
	Updated corewars to 0.9.11 [rh 2000-04-13]
	Updated roller to 1.2 [kim 2000-04-14]
	Added gnut-0.3.21 [kim 2000-04-15]
	Updated nmh to 1.0.4 [simonb 2000-04-15]
	Updated smtpfeed to 1.05 [itojun 2000-04-15]
	Updated gnome-print to 0.18 [rh 2000-04-16]
	Updated gnumeric to 0.52 [rh 2000-04-16]
	Updated delegate to 6.1.7 [rh 2000-04-16]
	Updated photopc to 3.04 [hubertf 2000-04-17]
	Updated pth to 1.3.4 [rh 2000-04-17]
	Updated lynx-current to 2.8.3pre.6 [fredb 2000-04-17]
	Updated xquote to 2.1 [fredb 2000-04-17]
	Updated xinvest to 2.6 [fredb 2000-04-17]
	Updated rman to 3.0.8 [fredb 2000-04-17]
	Updated pth to 1.3.5 [rh 2000-04-18]
	Updated ethereal to 0.8.7 [frueauf 2000-04-18]
	Updated ddd to 3.2.1 [rh 2000-04-18]
	Updated ruby to 1.4.4 [sakamoto 2000-04-18]
	Updated ruby-gtk to 0.23 [sakamoto 2000-04-18]
	Updated gnut to 0.3.22 [deberg 2000-04-18]
	Updated pysol to 4.10 [sakamoto 2000-04-19]
	Updated gnome-breakout to 0.4 [rh 2000-04-19]
	Updated html2text to 1.2.2 [rh 2000-04-19]
	Updated R to 1.0.1 [jlam 2000-04-19]
	Updated roller to 1.3 [kim 2000-04-19]
	Updated unzip to 5.41. Decryption included and enabled by default,
		since Infozip took care of export regulation. [wiz 2000-04-20]
	Added cscope-13.0.2 [itojun 2000-04-20]
	ghostscript: ghostscript5 and ghostcript5-x11 now conflict and both
		install binaries as `gs'.  ghostscript5-x11 package is now
		a superset of the ghostscript5 package. [jlam 2000-04-20]
	Updated w3m to 0.1.8 [itohy 2000-04-21]
	Updated global to 3.55 [sakamoto 2000-04-21]
	Added smtpd-2.0 [mjl 2000-04-21]
	Updated ted to 2.8 [dmcmahill 2000-04-21]
	Updated apache to 1.3.12 [explorer 2000-04-21]
	Updated ap-ssl to 2.6.3-1.3.12 [explorer 2000-04-21]
	Updated lynx-current to 2.8.3pre.7 [fredb 2000-04-22]
	Updated gnome to 1.0.53.4 [rh 2000-04-22]
	Updated ted-en-us to 2.8 [dmcmahill 2000-04-22]
	Updated ted-en-gb to 2.8 [dmcmahill 2000-04-22]
	Updated xli to 1.16nb1 to add third-party png support [kim 2000-04-22]
	Added p5-PerlMagick-5.1.1 [kim 2000-04-22]
	Added html2ps-1.0b1 [kim 2000-04-23]
	Updated fetchmail to 5.3.8 [itojun 2000-04-24]
	Updated fetchmailconf to 5.3.8 [itojun 2000-04-24]
	Added gtk-gnutella-0.11 [itojun 2000-04-24]
	Updated mtv to 1.1.1.0 [tron 2000-04-24]
	Updated ruby-Tk to 1.4.4 [sakamoto 2000-04-24]
	Updated balsa to 0.8.0p1 [rh 2000-04-25]
	Added adzap-20000421 [rh 2000-04-25]
	Added quicklist-0.8.6 [garbled 2000-04-25]
	Updated port2pkg to 1.4 [sakamoto 2000-04-26]
	Updated pcre to 2.8 [kim 2000-04-26]
	postfix: the package now supports the Perl Compatible Regular
		Expressions library (PCRE) and Variable Envelope Return
		Paths (VERP) SMTP extension. [kim 2000-04-27]
	fetchmail: the package now supports SSL encrypted IMAP and POP3
		connections. [tron 2000-04-27]
	Added xcal-4.1 [kim 2000-04-27]
	Updated bozohttpd to 5.04 [mrg 2000-04-27]
	Updated pgaccess to 0.98.5 [rh 2000-04-27]
	Updated lesstif to 0.90.0 [tron 2000-04-27]
	Updated jdb to 1.7 [bad 2000-04-27]
	Updated zebra to 0.86 [itojun 2000-04-28]
	Updated octave to 2.0.16 [wennmach 2000-04-28]
	Updated linux-locale to 2.1.1 [sakamoto 2000-04-28]
	Updated dx to 4.1.0 [drochner 2000-04-28]
	Added qt21-2.1.0 [drochner 2000-04-28]
	Updated lv to 4.49.3 [sakamoto 2000-04-28]
	Updated nmap to 2.50 [wiz 2000-04-29]
	Updated nmap to 2.51 [wiz 2000-04-30]
	Updated communicator to 4.72 (only Linux) [sakamoto 2000-04-30]
	Updated navigator to 4.72 (only Linux) [sakamoto 2000-04-30]
	Updated verilog-current to 20000428 [dmcmahill 2000-04-30]
	Added freetype-lib-1.2 [jlam 2000-05-01]
	Added freetype-utils-1.2 [jlam 2000-05-01]
	Added ja-vflib-lib-2.24.2 [jlam 2000-05-01]
	Added ja-vflib-utils-2.24.2 [jlam 2000-05-01]
	Updated libgtop to 1.0.7 [fredb 2000-05-01]
	Updated iozone to 3.09 [pooka 2000-05-02]
	Updated samba to 2.0.7 [jlam 2000-05-02]
	Updated abiword-personal to 0.7.9 [jlam 2000-05-03]
	Updated ap-fastcgi to 2.2.2 [mjl 2000-05-03]
	Renamed xview-all to xview [tron 2000-05-04]
	Added ocaml-3.00 [groo 2000-05-05]
	Updated gtk-gnutella to 0.12 [hubertf 2000-05-05]
	Updated kdevelop to 1.2 [wulf 2000-05-05]
	Updated smtpfeed to 1.06 [itojun 2000-05-06]
	Added ghostscript-6.01 [jlam 2000-05-06]
	Added ghostscript-fonts-6.0 [jlam 2000-05-06]
	Added ghostscript-nox11-6.01 [jlam 2000-05-06]
	Added ghostscript-x11-6.01 [jlam 2000-05-06]
	Updated gcombust to 0.1.32 [rh 2000-05-07]
	Updated ptl2 to 2.1.2 [msaitoh 2000-05-07]
	Added fxtv-1.0.2 [tron 2000-05-07]
	Added xmradio-0.9b2 [tron 2000-05-07]
	Updated lynx-current to 2.8.3rel.1 [fredb 2000-05-07]
	Updated rxvt to 2.7.3 [hubertf 2000-05-08]
	Updated pdflib to 3.0 [drochner 2000-05-08]
	Updated t1lib to 1.0.1 [drochner 2000-05-08]
	Updated grace to 5.1.0 [drochner 2000-05-08]
	pkg_admin: Added "lsall" and "lsbest" commants to list all/best
		expansion of a given package. Userlevel interface to
		pkg patterns. [hubertf 2000-05-09]
	Added boost-1.14.1 [jlam 2000-05-09]
	Added xdialog-1.4.1 [jlam 2000-05-09]
	Added gtl-0.3.3 [jlam 2000-05-09]
	Updated nmap to 2.52 [hubertf 2000-05-10]
	Removed ghostscript-x11 [jlam 2000-05-10]
	Added bluefish-0.4pre11 [wulf 2000-05-10]
	Updated verilog-current to 20000506 [dmcmahill 2000-05-10]
	Updated ircII to 4.4U [mrg 2000-05-11]
	bsd.pkg.mk: added "show-pkgsrc-dir" target [agc 2000-05-11]
	Updated tfkiss to 1.2.3 [wulf 2000-05-11]
	Updated ethereal to 0.8.8 [hubertf 2000-05-11]
	Updated xlockmore to 4.16.1 [hubertf 2000-05-11]
	Updated p5-DBI to 1.13 [christos 2000-05-11]
	Updated p5-DBD-mysql to 1.2214 [christos 2000-05-11]
	Added p5-CGI-2.66 [christos 2000-05-11]
	Added opendis-0.0.3 [sommerfeld 2000-05-11]
	Updated communicator to 4.73 [abs 2000-05-11]
	Updated navigator to 4.73 [abs 2000-05-11]
	Added wmWeather-1.31 [rh 2000-05-12]
	Updated tgif to 4.1.33 [rh 2000-05-12]
	Updated mtv to 1.1.1.1 [tron 2000-05-12]
	Updated port2pkg to 1.5 [sakamoto 2000-05-12]
	Added pstree-2.14 [mjl 2000-05-12]
	Updated zoularis to 20000512 [christos 2000-05-12]
	Added category fonts [sakamoto 2000-05-12]
	Added watanabe-vfont-19930318 [sakamoto 2000-05-12]
	Added acroread-font-share-4.0 [sakamoto 2000-05-12]
	Added acroread-chsfont-4.0 [sakamoto 2000-05-12]
	Added acroread-chtfont-4.0 [sakamoto 2000-05-12]
	Added acroread-jpnfont-4.0 [sakamoto 2000-05-12]
	Added acroread-korfont-4.0 [sakamoto 2000-05-12]
	Updated gnucash to 1.3.7 [rh 2000-05-13]
	mutt: enabled IMAP over SSL support [tron 2000-05-13]
	Updated jakarta-tomcat to 3.1 [jwise 2000-05-14]
	Updated nmap to 2.53 [frueauf 2000-05-15]
	Updated pkg_install to 20000511, mostly to get some bug fixes in
		from the base system. [hubertf 2000-05-15]
	Added dpbox-6.00.00 [wulf 2000-05-15]
	Updated gnapster to 1.3.9 [tron 2000-05-16]
	Updated xjman to 0.5 [sakamoto 2000-05-16]
	Updated pkglint to 2.07 [abs 2000-05-16]
	Updated pkg_tarup to 1.0.1 [hubertf 2000-05-16]
	Updated checkbot to 1.60 [abs 2000-05-16]
	bsd.pkg.mk: Added support for bzip2 compressed distribution patches
		[fredb 2000-05-16]
	Updated mgetty+sendfax to 1.1.21 [fredb 2000-05-16]
	Updated netpbm to 9.2 [tron 2000-05-17]
	Added swarm-0.26 [agc 2000-05-17]
	Added kbanner-2.1 [itohy 2000-05-18]
	Updated ap-fastcgi to 2.2.4 [mjl 2000-05-18]
	Updated libslang to 1.4.1 [mjl 2000-05-18]
	Updated oneko to 1.2 [itohy 2000-05-18]
	Updated imap-uw to 4.7c2 [jlam 2000-05-18]
	Updated squid to 2.3s2 [tron 2000-05-19]
	Updated w3m to 0.1.9 [itohy 2000-05-19]
	Added fping [abs 2000-05-19]
	Updated cscope to 15.0.2 [wiz 2000-05-19]
	Updated nedit to 5.1.1 [mjl 2000-05-19]
	Added blackbox 0.51.3.1 [pooka 2000-05-19]
	Updated gnome-print to 0.19 [rh 2000-05-19]
	Updated postgresql to 7.0 [jlam 2000-05-20]
	Updated tcl-postgresql to 7.0 [jlam 2000-05-20]
	Updated tk-postgresql to 7.0 [jlam 2000-05-20]
	Updated xmindpath to 1.07a [wiz 2000-05-21]
	Updated bluefish to 0.4 [wulf 2000-05-21]
	Updated vfu to 3.00 [hubertf 2000-05-22]
	Added ttt-1.4 [sakamoto 2000-05-22]
	Updated balsa to 0.8.0 [rh 2000-05-22]
	Updated ap-jserv to 1.1.1 [jwise 2000-05-22]
	Added drscheme-101 [groo 2000-05-22]
	Added xbeeb [skrll 2000-05-22]
	Added opensp-1.4 [hubertf 2000-05-23]
	Updated cdrecord-current to 1.9a01 [hubertf 2000-05-23]
	Added sgi-stl [jlam 2000-05-24]
	Added sgi-stl-docs [jlam 2000-05-24]
	Added gcc 2.95.2 [tron 2000-05-24]
	Updated pgaccess to 0.98.6 [rh 2000-05-24]
	Added type1inst-0.6.1 [groo 2000-05-24]
	Updated bind9 to 9.0.0b3 [hubertf 2000-05-25]
	Updated gqview to 0.8.1 [wiz 2000-05-25]
	Updated vtun to 2.2 [kleink 2000-05-25]
	Updated lesstif to 0.91.0 [drochner 2000-05-25]
	Updated Xbae to 4.8.1 [drochner 2000-05-25]
	Added kth-krb4-1.0.1 [wennmach 2000-05-25]
	Added swing-1.1.1 [jwise 2000-05-25]
	Updated glib to 1.2.8 [rh 2000-05-26]
	Updated gtk+ to 1.2.8 [rh 2000-05-26]
	Updated ploticus to 1.37 [rh 2000-05-26]
	Updated gmake to 3.79 [hubertf 2000-05-26]
	Added p5-Socket6-0.06 [itojun 2000-05-26]
	Added xerces-j-1.1.0 [jwise 2000-05-26]
	Updated clisp to 2000-03-06 [wiz 2000-05-27]
	Updated smtpfeed to 1.07 [itojun 2000-05-29]
	Added xracer-0.96.9 [rh 2000-05-29]
	Updated xpuyopuyo to 0.3.8 [jlam 2000-05-29]
	Updated pkglint to 2.08 [dmcmahill 2000-05-29]
	Updated boost to 1.14.3 [jlam 2000-05-29]
	Added xpenguins-1.2 [hubertf 2000-05-30]
	Updated libxml to 1.8.7 [rh 2000-05-30]
	Updated gnumeric to 0.53 [rh 2000-05-30]
	Added kannel-0.8 [rh 2000-05-30]
	Added ap-auth-ldap-1.4.2 [kleink 2000-05-30]
	Added xalan-j-1.0.1 [jwise 2000-05-30]
	Updated ORBit to 0.5.1 [drochner 2000-05-30]
	Updated imlib to 1.9.8.1 [drochner 2000-05-30]
	Updated esound to 0.2.18 [drochner 2000-05-30]
	Updated gnome-libs to 1.2.1 [drochner 2000-05-30]
	Updated control-center to 1.2.0 [drochner 2000-05-30]
	Updated gdk-pixbuf to 0.8.0 [drochner 2000-05-30]
	Updated libgtop to 1.0.9 [drochner 2000-05-30]
	Updated gnome-core to 1.2.0 [drochner 2000-05-30]
	Updated verilog-current to 20000527 [dmcmahill 2000-05-30]
	Added waplet-0.01 [rh 2000-05-31]
	Updated gnome-print to 0.20 [rh 2000-05-31]
	Updated gcombust to 0.1.33 [rh 2000-05-31]
	Added fop-0.12.1 [jwise 2000-05-31]
	Added XP-0.5 [jwise 2000-05-31]
	Added XT-19991105 [jwise 2000-05-31]
	Updated openssh to 2.1.0p3 [itojun 2000-05-31]
	Updated libtool to 1.3.5 [rh 2000-05-31]
	Downgraded xerces-j to 1.0.3 [jwise 2000-05-31]
	Added xerces-j-current-1.1.0 [jwise 2000-05-31]
	Added cocoon-1.7.4 [jwise 2000-05-31]
	Updated analog to 4.11 [tron 2000-06-01]
	Updated gtop to 1.0.9 [tron 2000-06-01]
	Updated libtool to 1.3.5nb1 [rh 2000-06-01]
	bsd.pkg.mk: Renamed USE_LIBTOOL to USE_PKGLIBTOOL and added
		a new USE_LIBTOOL definition that uses our libtool
		package instead of pkglibtool.  USE_PKGLIBTOOL is
		available for compatibility with present packages,
		but is deprecated for new or updated packages.
		[rh 2000-06-01]
	Updated libglade to 0.13 [rh 2000-06-01]
	Updated gnumeric to 0.54 [rh 2000-06-01]
	Install mkisofs as part of cdrecord; don't use the outdated seperate
		mkisofs package anymore [fvdl 2000-06-01]
	Updated ggv to 0.95 [rh 2000-06-01]
	Added sl-3.03 [minoura 2000-06-01]
	Updated glade to 0.5.9 [rh 2000-06-01]
	Updated gnome-utils to 1.2.0 [rh 2000-06-01]
	Updated gnome-media to 1.2.0 [rh 2000-06-01]
	Updated gmc to 4.5.50 [rh 2000-06-01]
	Updated mc to 4.5.50 [rh 2000-06-01]
	Added cross-i386-cygwin32-1.0.0.0 [oki 2000-06-01]
	Updated pkglint to 2.09 [rh 2000-06-02]
	Added gnome-applets-1.2.0 [drochner 2000-06-02]
	Updated xscreensaver to 3.24 [fredb 2000-06-02]
	Updated darcnes to 20000530 [wiz 2000-06-03]
	Added xscreensaver-gnome-3.24 [fredb 2000-06-03]
	Updated p5-Socket6 to 0.07 [itojun 2000-06-04]
	Updated elm to 2.4ME+ PL78 (25) [jdolecek 2000-06-04]
	Updated libtool to 1.3.5nb2 [rh 2000-06-04]
	Updated libtool to 1.3.5nb3 [rh 2000-06-04]
	Updated netpbm to 9.3 [wiz 2000-06-05]
	Added uvscan-4.07e [rh 2000-06-05]
	Added uvscan-dat-4080 [rh 2000-06-05]
	Added xbin-2.3 [rh 2000-06-05]
	Added amavis-0.2.0p6 [rh 2000-06-05]
	Updated gnome-users-guide to 1.2 [tron 2000-06-05]
	Updated gnome-python to 1.0.53 [tron 2000-06-05]
	Updated vtun to 2.3 [kleink 2000-06-06]
	Updated sudo to 1.6.3p4 [mjl 2000-06-06]
	Updated x3270 to 3.2.8 [mjl 2000-06-06]
	Updated wwwoffle to 2.5e [itojun 2000-06-06]
	Updated pchar to 1.2 [soren 2000-06-06]
	Updated PTL to 2.1.3 [msaitoh 2000-06-07]
	Updated jdbc-postgresql to 7.0 [jwise 2000-06-07]
	Added sitescooper-2.2.8 [rh 2000-06-07]
	Added bbcim-0.95b5 [skrll 2000-06-07]
	Updated docbook to 4.0 [hubertf 2000-06-07]
	Added html-4.0b [hubertf 2000-06-07]
	Added arla-0.33 [wennmach 2000-06-08]
	Added xdm-krb4-3.3.6.0 [wennmach 2000-06-08]
	Added p5-Convert-ASN1-0.07 [kleink 2000-06-09]
	Updated p5-perl-ldap to 0.19 [kleink 2000-06-09]
	Updated mswordview to 0.5.14 [drochner 2000-06-09]
	Added vttest-20000208 [drochner 2000-06-10]
	Updated roller to 1.4 [kim 2000-06-10]
	Updated ethereal to 0.8.9 [frueauf 2000-06-10]
	Updated racoon to 20000612a.  It requires a kernel with 2000/6/12
		IPsec policy engine change. [itojun 2000-06-12]
	Updated plptools to 0.6nb1 [skrll 2000-06-12]
	Added whowatch-1.4 [rh 2000-06-12]
	Updated lrzsz to 0.12.20 [rh 2000-06-12]
	Updated minicom to 1.83.1 [rh 2000-06-12]
	Added camlp4-3.0 [wulf 2000-06-13]
	Updated gdbm to 1.8.0 [fredb 2000-06-13]
	Updated xdm-krb4 to 3.3.6.1 [wennmach 2000-06-13]
	Updated zebra to 0.87 [itojun 2000-06-13]
	Updated pkg_install to 20000608, to support 1.3.x systems again.
		[hubertf 2000-06-14]
	Updated racoon to 20000614a. [itojun 2000-06-14]
	Updated jisx0208fonts to 20000614.  added a 12x10 Kanji font.
		[itojun 2000-06-14]
	Updated gd to 1.8.3 [he 2000-06-14]
	Updated openssh to 2.1.1p1 [itojun 2000-06-15]
	Added jpilot-0.98.1 [rh 2000-06-15]
	Updated openldap to 1.2.11 [kleink 2000-06-15]
	Added malsync-2.0.4 [rh 2000-06-15]
	Updated vfu to 3.01 [hubertf 2000-06-15]
	Updated url2pkg to 1.10 [hubertf 2000-06-15]
	Added jpilot-libplugin-0.98.1 [rh 2000-06-15]
	Updated adzap to 20000615 [wiz 2000-06-15]
	Updated lout to 3.21 [itojun 2000-06-16]
	bsd.pkg.mk: Added print-PLIST target [hubertf 2000-06-16]
	Updated micq to 0.4.6 [tron 2000-06-16]
	Added olvwm 4.4 [pooka 2000-06-16]
	Updated delegate to 6.1.14 [rh 2000-06-17]
	Removed pth-current [soren 2000-06-18]
	Updated bind9 to 9.0.0b4 [hubertf 2000-06-19]
	Updated uvscan-dat to 4082 [rh 2000-06-19]
	Updated ap-jserv to 1.1.2 [jwise 2000-06-19]
	Added libsidplay 1.36.38 [pooka 2000-06-19]
	Updated racoon to 20000620a [itojun 2000-06-21]
	Updated boost to 1.15.0 [jlam 2000-06-20]
	Updated sidplay to 1.0.4 [pooka 2000-06-20]
	Updated xsidplay to 1.3.9 [pooka 2000-06-20]
	Updated gphoto to 0.4.3 [hubertf 2000-06-21]
	Updated slib to 2c8 [jlam 2000-06-21]
	Updated guile-slib to 2c8 [jlam 2000-06-21]
	Updated mutt to 1.2.2i [tron 2000-06-21]
	Updated w3m to 0.1.10 [itohy 2000-06-21]
	Added caml-light 0.74 [bouyer 2000-06-21]
	Updated nntpcache to 2.4-b5 [mjl 2000-06-21]
	Updated verilog to 0.3 [dmcmahill 2000-06-21]
	Updated transfig to 3.2.3 [itohy 2000-06-22]
	Updated xfig to 3.2.3a [itohy 2000-06-22]
	Updated emacs to 20.7 [minoura 2000-06-25]
	Updated leim to 20.7 [minoura 2000-06-25]
	Updated vim-share to 5.7 [pooka 2000-06-25]
	Updated vim to 5.7 [pooka 2000-06-25]
	Updated vim-gtk to 5.7 [pooka 2000-06-25]
	Updated vim-xaw to 5.7 [pooka 2000-06-25]
	Updated gnome-games to 1.2.0 [rh 2000-06-25]
	Updated gnome-core to 1.2.1 [rh 2000-06-25]
	Updated gnome-applets to 1.2.1 [rh 2000-06-25]
	Updated gnome-libs to 1.2.3 [rh 2000-06-25]
	Updated gmake to 3.79.1 [deberg 2000-06-25]
	Added SDL-1.1.3 [wiz 2000-06-26]
	Added hugelatex-1.0 [hubertf 2000-06-26]
	Added jadetex-2.2 [hubertf 2000-06-26]
	Updated gnome to 1.2.1 [rh 2000-06-26]
	Added g-wrap-0.9.4 [rh 2000-06-26]
	Updated gnucash to 1.4.1 [rh 2000-06-26]
	Updated wu-ftpd to 2.6.0nb1 fixing a possible buffer overflow
		vulnerability [rh 2000-06-26]
	Added libole2-0.1.5 [rh 2000-06-26]
	Updated gnumeric to 0.56 [rh 2000-06-26]
	Updated docbook to 4.1 [hubertf 2000-06-27]
	Updated uvscan-dat to 4083 [rh 2000-06-27]
	Updated lsof to 4.50.1 [wiz 2000-06-28]
	Added pkgdiff-0.90 [wiz 2000-06-28]
	Updated libtool to 1.3.5nb4 [mycroft 2000-11-26]
	Updated qt21 to 2.1.1 [skrll 2000-06-30]
	Updated gmp to 3.0.1 [danw 2000-06-30]
	Updated gettext to 0.10.35nb1 including bugfixes and a shared
		library [danw 2000-06-30]
	Updated racoon to 20000701a [itojun 2000-07-01]
	Updated lsof to 4.50.2 (no functional change) [wiz 2000-07-01]
	Updated links to 0.92 [wiz 2000-07-01]
	Updated pkgdiff to 0.91. pkgdiff now generates no output if the files
		don't differ, and mkpatch doesn't generate empty patches.
		[wiz 2000-07-01]
	Updated librep to 0.12.2 [danw 2000-07-01]
	Updated rep-gtk to 0.11 [danw 2000-07-01]
	Added sawfish-0.28.1 [danw 2000-07-01]
	Updated darcnes to 20000625 [wiz 2000-07-02]
	Updated openssh to 2.1.1p2 [itojun 2000-07-02]
	Added jakarta-ant-3.1 [jwise 2000-07-02]
	Updated ruby to 1.4.5 [sakamoto 2000-07-03]
	Updated ruby-Tk to 1.4.5 [sakamoto 2000-07-03]
	Added gprolog-1.1.6 [agc 2000-07-03]
	Updated pth to 1.3.6 [rh 2000-07-03]
	Updated p5-Net to 1.0703 [mjl 2000-07-03]
	Updated p5-libwww to 5.48 [mjl 2000-07-03]
	Updated p5-URI to 1.07 [mjl 2000-07-03]
	Updated p5-HTML-Parser to 3.10 [mjl 2000-07-03]
	Updated png to 1.0.7 [rh 2000-07-03]
	Added urlview-0.9 [tron 2000-07-04]
	Updated lame to 3.70 [pooka 2000-07-04]
	Updated gimp-current to 1.1.24 (1.2pre) [hubertf 2000-07-05]
	Updated gimp-helpviewer to 1.1.24 (1.2pre) [hubertf 2000-07-05]
	Added antiword-0.30 [rh 2000-07-05]
	Updated pngcrush to 1.4.5 [rh 2000-07-05]
	Updated balsa to 0.9.0 [rh 2000-07-05]
	Updated perl-current to 5.6.0 [hubertf 2000-07-05]
	Updated pkg_install to 20000705 [hubertf 2000-07-05]
	Updated ethereal to 0.8.10 [frueauf 2000-07-05]
	Updated gdk-pixbuf to 0.8.0nb1 [hubertf 2000-07-05]
	Updated gqmpeg to 0.7.2 [hubertf 2000-07-05]
	Added kxicq-03132000 [tron 2000-07-06]
	Updated mutt to 1.2.4i [tron 2000-07-07]
	Updated tgif to 4.1.34 [rh 2000-07-07]
	Added gnomeicu-0.93 [tron 2000-07-07]
	Added as31-19900126 [bjh21 2000-07-08]
	Added ruby-termios-module-0.0.4 [sakamoto 2000-07-08]
	Updated wu-ftpd to 2.6.1 [rh 2000-07-08]
	Added netbsd-doc 1.0 [hubertf 2000-07-09]
	Added netbsd-doc-print 1.0 [hubertf 2000-07-09]
	Updated wmthemes to 0.62.x [tron 2000-07-09]
	Updated dsssl-docbook-modular to 1.54 [hubertf 2000-07-10]
	Updated netbsd-doc to 1.1 [hubertf 2000-07-10]
	Updated ORBit to 0.5.2 [wiz 2000-07-10]
	Updated netpbm to 9.5 [wiz 2000-07-10]
	Updated delegate to 6.1.16 [rh 2000-07-10]
	Updated mg2a to 1.11 [tron 2000-07-10]
	Added ppp 2.3.11 [tron 2000-07-11]
	Added rp-pppoe 1.9 [tron 2000-07-11]
	Updated cups to 1.1 [jlam 2000-07-12]
	Updated url2pkg to 1.13 [wiz 2000-07-12]
	Updated sgi-stl to 3.3 [jlam 2000-07-12]
	Removed vfghostscript5 [jlam 2000-07-12]
	Removed ghostscript5 [jlam 2000-07-12]
	Removed ghostscript5-x11 [jlam 2000-07-12]
	Updated nocol to 4.3.1 [abs 2000-07-13]
	Updated sgi-stl-docs to 3.3 [jlam 2000-07-13]
	Updated uae to 0.8.12 [kristerw 2000-07-13]
	Updated boost to 1.16.1 [jlam 2000-07-13]
	Updated xmame to 0.37b4.1 [martin 2000-07-13]
	Added cross-armv2-netbsd 1.3.0.0 [bjh21 2000-07-13]
	Updated postgresql to 7.0.2 [jlam 2000-07-13]
	Updated tcl-postgresql to 7.0.2 [jlam 2000-07-13]
	Updated tk-postgresql to 7.0.2 [jlam 2000-07-13]
	Updated p5-GD to 1.30 [rh 2000-07-14]
	Added aumix-2.7 [rh 2000-07-14]
	Added priv-1.0beta [agc 2000-07-14]
	Added ispell-gaeilge-0.1 [ad 2000-07-14]
	Updated pkglint to 2.11 [hubertf 2000-07-14]
	Updated jdbc-postgresql to 7.0.2 [jwise 2000-07-14]
	Updated guile to 1.4 [jlam 2000-07-14]
	Updated openssh to 2.1.1p3 [itojun 2000-07-15]
	Added x10_heyu-1.29 [rh 2000-07-15]
	Added bottlerocket-0.04c [rh 2000-07-15]
	Added libsigc++-1.0.1 [jlam 2000-07-15]
	Updated libxml to 1.8.9 [jlam 2000-07-15]
	Updated gtk-- to 1.2.1 [jlam 2000-07-15]
	canna-server: added security patch [itojun 2000-07-15]
	Updated gnupg to 1.0.2 [wiz 2000-07-15]
	Added p5-IO-Stty-.02 [thorpej 2000-07-15]
	Added p5-IO-Tty-0.03 [thorpej 2000-07-15]
	Added p5-Expect-1.07 [thorpej 2000-07-15]
	Added cia-20000716 [tron 2000-07-16]
	Updated gnut to 0.3.29 [kim 2000-07-16]
	Added oaf-0.4.0 [rh 2000-07-16]
	Updated bonobo to 0.15 [rh 2000-07-16]
	Added p5-GDTextUtil-0.75 [rh 2000-07-16]
	Added p5-GDGraph-1.32 [rh 2000-07-16]
	Updated p5-IO-stringy to 1.212 [mjl 2000-07-16]
	Updated PTL to 2.1.4 [msaitoh 2000-07-17]
	Added asWedit-4.0.1 [rh 2000-07-17]
	Updated rp-pppoe to 2.0 [tron 2000-07-17]
	plotutils: enabled C++ support [itohy 2000-07-18]
	Added pstoedit-3.20 [itohy 2000-07-18]
	Updated racoon to 20000716a [itojun 2000-07-18]
	Updated racoon to 20000719a [itojun 2000-07-18]
	bsd.pkg.mk: Add new variables NO_BIN_ON_FTP, NO_SRC_ON_FTP,
		NO_BIN_ON_CDROM, and NO_SRC_ON_CDROM to fine-tune
		for license restrictions.  The use of NO_CDROM and
		other generic variables is now deprecated. [rh 2000-07-20]
	Added unace-1.2 [wiz 2000-07-20]
	Added easytag-0.9.3 [wiz 2000-07-21]
	Updated procmail to 3.14 [simonb 2000-07-21]
	Updated darcnes to 20000710 [wiz 2000-07-21]
	Updated freetype to 1.3.1 [jlam 2000-07-22]
	Updated freetype-lib to 1.3.1 [jlam 2000-07-22]
	Updated freetype-utils to 1.3.1 [jlam 2000-07-22]
	Updated openssh to 2.1.1p4 [jlam 2000-07-22]
	Updated libole2 to 0.1.6 [rh 2000-07-22]
	Updated cdrecord to 1.9 [rh 2000-07-22]
	Updated gcombust to 0.1.34 [rh 2000-07-22]
	Updated pngcrush to 1.4.8 [rh 2000-07-23]
	Updated sendmail to 8.11.0 [itojun 2000-07-24]
	Updated uae to 0.8.13 [martin 2000-07-24]
	Updated fetchmail to 5.4.4 [frueauf 2000-07-24]
	Updated fetchmailconf to 5.4.4 [frueauf 2000-07-24]
	Updated pkg_install to 20000724 [dmcmahill 2000-07-24]
	Updated navigator to 4.74 [tron 2000-07-25]
	Updated communicator to 4.74 [tron 2000-07-25]
	Added baci-20000725 [wulf 2000-07-25]
	Added geneweb-3.06 [wulf 2000-07-25]
	Updated lesstif to 0.91.4 [jlam 2000-07-25]
	Added lesstif12-0.91.4 [jlam 2000-07-25]
	Updated bind9 to 9.0.0rc1 [rh 2000-07-26]
	Updated smtpfeed to 1.07.1 [itojun 2000-07-26]
	Updated exim to 3.16 [ad 2000-07-26]
	Updated gensolpkg to 1.7 [agc 2000-07-26]
	Updated xscreensaver to 3.25 [frueauf 2000-07-26]
	Updated xscreensaver-gnome to 3.25 [frueauf 2000-07-26]
	Updated dsssl-docbook-modular to 1.55 [hubertf 2000-07-26]
	Updated dinotrace to 9.0k [dmcmahill 2000-07-26]
	Updated coda5_client and coda5_server to compile under -current
		[phil 2000-07-26]
	Added rvm-1.1 [phil 2000-07-26]
	Updated thttpd to 2.19 [jlam 2000-07-27]
	Added pks-0.9.4 [jlam 2000-07-27]
	Added rpc2-1.5 [phil 2000-07-27]
	bsd.bulk-pkg.mk: Targets for doing bulk builds committed
		[hubertf 2000-07-28]
	Added gtm-0.4.5 [tron 2000-07-28]
	Updated pngcrush to 1.5.0 [rh 2000-07-28]
	Added rio500-0.7 [ad 2000-07-28]
	Added fmsx-2.1 [martin 2000-07-28]
	Added xpat2-1.06 [jlam 2000-07-28]
	Updated speakfreely to 7.2 [jlam 2000-07-28]
	Updated py-extclass to 2.2.0 [tsarna 2000-07-28]
	Updated py-dtml to 2.2.0 [tsarna 2000-07-28]
	Updated py-pcgi to 2.2.0 [tsarna 2000-07-28]
	Updated py-zpublisher to 2.2.0 [tsarna 2000-07-28]
	Updated mutt to 1.2.5 [tron 2000-07-29]
	Updated nessus to 1.0.3 [frueauf 2000-07-30]
	Added libnasl-1.0.3 [frueauf 2000-07-30]
	Added nessus-libraries-1.0.3 [frueauf 2000-07-30]
	Added nessus-core-1.0.3 [frueauf 2000-07-30]
	Added nessus-plugins-1.0.3 [frueauf 2000-07-30]
	Updated racoon to 20000731a [itojun 2000-07-30]
	Updated pngcrush to 1.5.1 [rh 2000-07-30]
	Updated enlightenment to 0.16.4 [tron 2000-07-30]
	Updated pth to 1.3.7 [rh 2000-07-30]
	Added wmnet-1.06 [tron 2000-07-30]
	Added wmMoonClock-1.27 [tron 2000-07-30]
	Updated cassowary to 0.60 [jlam 2000-07-31]
	Updated icewm to 1.0.4 [jlam 2000-07-31]
	Updated icewm-gnome to 1.0.4 [jlam 2000-07-31]
	Updated ee to 0.3.12 [tron 2000-07-31]
	Updated xchat to 1.5.6 [tron 2000-07-31]
	Updated gnome to 1.2.1nb1 [tron 2000-07-31]
	Added cfitsio-2.0.37 [tron 2000-07-31]
	Added netatalk-asun-2.1.3 [abs 2000-07-31]
	Updated rp-pppoe to 2.2 [tron 2000-07-31]
	Added icqlib-1.0.0 [tron 2000-07-31]
	Added tcpillust-1.0a [itojun 2000-08-01]
	Updated png to 1.0.8 [wiz 2000-08-01]
	Added kicq 1.0.0 [tron 2000-08-01]
	Updated easytag to 0.9.5 [wiz 2000-08-02]
	Fixed infinite loop bug in rtty, from
		Andrew Flury <aflury@zembu.com> [thorpej 2000-08-02]
	Updated gqmpeg to 0.7.3 [jlam 2000-08-02]
	Updated gensolpkg to 1.8 [agc 2000-08-02]
	Updated netatalk-asun to 2.1.3nb2 [abs 2000-08-02]
	Updated logsurfer to 1.5 [cjones 2000-08-02]
	Updated rsync to 2.4.4 [wiz 2000-08-02]
	Added surfaw-0.5.4 [jlam 2000-08-02]
	Updated ircII to 4.4V [mrg 2000-08-03]
	Added yorick-1.4 [rh 2000-08-03]
	Added fbm-1.2 [rh 2000-08-03]
	Updated nessus to 1.0.4 [frueauf 2000-08-04]
	Updated nessus-core to 1.0.4 [frueauf 2000-08-04]
	Updated nessus-libraries to 1.0.4 [frueauf 2000-08-04]
	Updated nessus-plugins to 1.0.4 [frueauf 2000-08-04]
	Updated libnasl to 1.0.4 [frueauf 2000-08-04]
	Updated ethereal to 0.8.11 [frueauf 2000-08-04]
	Updated gqview to 0.8.2 [jlam 2000-08-04]
	Updated nas to 1.4 [jlam 2000-08-04]
	Updated ircII to 4.4V [mrg 2000-08-04]
	Updated fltk to 1.0.9 [jlam 2000-08-04]
	Added flwm-0.25 [jlam 2000-08-04]
	Updated abiword-personal to 0.7.10 [abs 2000-08-04]
	Added e2fsprogs-1.19 [hubertf 2000-08-05]
	Updated apcupsd to 3.6.2 [jlam 2000-08-05]
	Removed surfaw-0.5.4 [proff 2000-08-05]
	Added surfraw-0.5.5 [proff 2000-08-05]
	Updated mtv to 1.1.4 [mycroft 2000-08-05]
	Updated guile-gtk to 0.19 [jlam 2000-08-05]
	Updated libwww to 5.3.1 [fredb 2000-08-05]
	Updated realplayer to 7nb2 [jlam 2000-08-05]
	Updated fmsx to 2.2 [wiz 2000-08-06]
	Updated verilog-current to 20000805 [dmcmahill 2000-08-06]
	Updated tgif to 4.1.35 [dmcmahill 2000-08-06]
	Added ddclient-2.3.1 [hubertf 2000-08-07]
	Updated lynx-current to 2.8.4dev7 [fredb 2000-08-07]
	Updated t1utils to 1.20 [jonb 2000-08-07]
	Added gnapfetch-0.3 [jlam 2000-08-07]
	Added argtable-1.2 [jlam 2000-08-08]
	Added suse_gtk-6.3 [abs 2000-08-09]
	Updated suse_linux to 6.3nb1 [abs 2000-08-09]
	Updated dhid to 4.0.1 [hubertf 2000-08-09]
	Updated ORBit to 0.5.3 [wiz 2000-08-10]
	Updated ImageMagick to 5.2.2 [tron 2000-08-10]
	Updated tin to 1.4.4 [wiz 2000-08-10]
	Updated netpbm to 9.7 [wiz 2000-08-10]
	Updated darcnes to 20000804 [wiz 2000-08-10]
	Updated bind9 to 9.0.0rc2 [itojun 2000-08-10]
	Updated esound to 0.2.19 [wiz 2000-08-10]
	Updated nethack to 3.3.1 [pooka 2000-08-10]
	Updated nethack-lib to 3.3.1 [pooka 2000-08-10]
	Updated nethack-qt to 3.3.1 [pooka 2000-08-10]
	Updated nethack-tty to 3.3.1 [pooka 2000-08-10]
	Updated nethack-x11 to 3.3.1 [pooka 2000-08-10]
	Updated lynx to 2.8.3rel.1 [fredb 2000-08-10]
	Updated gnapster to 1.3.11 [jlam 2000-08-10]
	Updated surfraw to 0.5.6 [jlam 2000-08-10]
	Add ssh-askpass-1.0 [jlam 2000-08-10]
	Add trafshow-3.1 [itojun 2000-08-11]
	Add libnids-1.14 [itojun 2000-08-11]
	Add dsniff-2.2 [itojun 2000-08-11]
	Updated fetchmail to 5.4.5 [frueauf 2000-08-11]
	Updated fetchmailconf to 5.4.5 [frueauf 2000-08-11]
	Updated maketool to 0.6.1 [fredb 2000-08-11]
	Updated xpuyopuyo to 0.9.1 [jlam 2000-08-11]
	Updated boost to 1.17.0 [jlam 2000-08-11]
	Updated R to 1.1.0 [jlam 2000-08-11]
	Updated freeciv-share to 1.11.4 [jlam 2000-08-11]
	Updated freeciv-server to 1.11.4 [jlam 2000-08-11]
	Updated freeciv-client to 1.11.4 [jlam 2000-08-11]
	Updated freeciv-client-gtk to 1.11.4 [jlam 2000-08-11]
	Updated jwhois to 2.4.1 [jlam 2000-08-11]
	Updated lincity to 1.11 [jlam 2000-08-11]
	Updated tnt to 1.9.1 [wulf 2000-08-12]
	Updated gnut to 0.4.12 [deberg 2000-08-12]
	Updated fetchmail to 5.5.0 [frueauf 2000-08-13]
	Updated fetchmailconf to 5.5.0 [frueauf 2000-08-13]
	Updated sfio to 1999 [itojun 2000-08-13]
	Added gogo-2.35 [wiz 2000-08-13]
	Added cksfv-1.1 [wiz 2000-08-13]
	Updated p5-PerlMagick to 5.2.2 [kim 2000-08-13]
	Added postfix-20000531 in mail/postfix-current [itojun 2000-08-14]
	Updated Mesa-glx to 20000813 [tron 2000-08-14]
	Updated libnet to 1.0.1b [itojun 2000-08-14]
	Added libperl-5.6.0 in lang/libperl-current [jlam 2000-08-14]
	Updated g-wrap to 0.9.5 [jlam 2000-08-14]
	Updated 7plus to 225 [wulf 2000-08-15]
	Updated xlockmore to 4.17 [hubertf 2000-08-15]
	Updated realplayer to 7nb3 [jlam 2000-08-15]
	Updated apache6 to 1.3.12 [itojun 2000-08-15]
	Updated pkgdiff to 0.93 [abs 2000-08-15]
	Updated netatalk-asun to 2.1.3nb3 [abs 2000-08-15]
	Updated arla to 0.34.1 [wennmach 2000-08-15]
	Updated bluefish to 0.4nb1 [jlam 2000-08-15]
	Updated R to 1.1.1 [jlam 2000-08-16]
	Updated mozilla to 5.0m17 [tron 2000-08-16]
	Updated acs to 0.27 [dmcmahill 2000-08-16]
	bsd.pkg.mk: ${EXTRACT_SUFFIX} now does the right thing if
		set to ".lzh" (in addition to ".zip", ".tar", "tar.bz2",
		and "tar.gz", as before). [fredb 2000-08-16]
	Updated pkgdiff to 0.94 [wiz 2000-08-17]
	Added awka-0.7.0 [rh 2000-08-17]
	Updated pkglint to 2.13 [abs 2000-08-17]
	Added vorbis-20000818 [itojun 2000-08-18]
	Updated rman to 3.0.9 [fredb 2000-08-18]
	Updated zebra to 0.88.  users must upgrade the whole zebra daemon
		suite.  partial upgrade can cause serious issue due to the
		daemon-to-daemon protocol change.  [itojun 2000-08-18]
	Removed pkglibtool. All packages have been converted to use
		"plain" libtool instead. [wiz 2000-08-18]
	Updated communicator to 4.75 [tron 2000-08-18]
	Updated navigator to 4.75 [tron 2000-08-18]
	Removed addnerd, which has been retired in favour of user
		[wiz 2000-08-18]
	Updated ntp4 to 4.0.99k [fredb 2000-08-18]
	bsd.pkg.mk: MIRROR_DISTFILES and NO_CDROM are now dead, and
		NO_{SRC,BIN}_ON{FTP,CDROM} should be used, see packages(7).
		[hubertf 2000-08-19]
	Updated geneweb to 3.07 [wulf 2000-08-19]
	Updated gsharutils to 4.2.1 [christos 2000-08-19]
	Updated xpdf to 0.91 [fredb 2000-08-21]
	Removed xpdf-crypto (obsolete) [fredb 2000-08-21]
	Updated rsync to 2.4.5 [veego 2000-08-21]
	Added TclXML-1.2 [jwise 2000-08-21]
	Added TclDOM-1.6 [jwise 2000-08-21]
	Updated xlockmore to 4.17.1 [hubertf 2000-08-21]
	Updated ruby to 1.4.6 [sakamoto 2000-08-22]
	Updated ruby-Tk to 1.4.6 [sakamoto 2000-08-22]
	Updated plan to 1.8.4 [rh 2000-08-22]
	Added ns-plugger-common-3.2 [rh 2000-08-22]
	Added ns-plugger-communicator-3.2 [rh 2000-08-22]
	Added ns-plugger-navigator-3.2 [rh 2000-08-22]
	Updated libslang to 1.4.2 [mjl 2000-08-22]
	Added gnocatan [veego 2000-08-23]
	Updated bind9 to 9.0.0rc4 [rh 2000-08-23]
	Updated pvm to 3.4.3 [dmcmahill 2000-08-23]
	Updated bluefish to 0.5 [jlam 2000-08-23]
	Updated bozohttpd to 5.05nb1, which adds IPv6 support [jlam 2000-08-23]
	Updated moscow_ml to 2.00 [tron 2000-08-24]
	bsd.pkg.mk: Introduce USE_XPM to support XFree86 4.0's
		included Xpm library [tron 2000-08-24]
	Updated plotutils to 2.4.1 [dmcmahill 2000-08-24]
	Updated lsof to 4.51 [wiz 2000-08-25]
	Added wordperfect-personal-8 [jlam 2000-08-25]
	Added cyrus-sasl-1.5.24 [veego 2000-08-25]
	Added cyrus-imapd-1.6.24 [veego 2000-08-25]
	Removed cyrus, which is replaced by cyrus-imapd [veego 2000-08-25]
	Added pwlib 1.1pl17 [mjl 2000-08-25]
	Added openh323 1.1beta3 [mjl 2000-08-25]
	Added cmdline-1.05nb1 [jlam 2000-08-25]
	Added sdcc-2.1.9 [tron 2000-08-25]
	Updated CompuPic to 5.1.1063 [wiz 2000-08-26]
	Updated pkgdiff to 0.95 [hubertf 2000-08-26]
	Updated procmail to 3.15 [wiz 2000-08-26]
	Updated uae to 0.8.14 [kristerw 2000-08-26]
	Updated ascp to 1.0.3 [fredb 2000-08-26]
	Updated bozohttpd to 5.06 [itojun 2000-08-27]
	Updated vice to 1.5 [wiz 2000-08-27]
	Added arpd-1.0 [hubertf 2000-08-27]
	Updated perl5-current to 5.6.0nb1, which removes some modules from
		the base distribution that are externally available through
		pkgsrc [jlam 2000-08-27]
	Updated p5-Devel-DProf to 19990108 [jlam 2000-08-27]
	Added p5-Devel-Peek-1.0001 [jlam 2000-08-27]
	Updated p5-gdbm to 1.03 [jlam 2000-08-27]
	Updated p5-HTML-Parser to 3.11 [jlam 2000-08-27]
	Updated p5-URI to 1.09 [jlam 2000-08-27]
	Added p5-HTML-Tagset-3.09 [jlam 2000-08-27]
	Updated ap-perl to 1.24 [jlam 2000-08-27]
	Updated p5-Tk to 800.022 [jlam 2000-08-28]
	Updated tgif to 4.1.38 [rh 2000-08-28]
	Updated sane to 1.0.3 [rh 2000-08-28]
	Updated pkglint to 2.14 [abs 2000-08-28]
	Updated xsane to 0.61 [rh 2000-08-28]
	Added libflash-0.4.10 [rh 2000-08-28]
	Added flashplayer-0.4.10 [rh 2000-08-28]
	Updated p5-Curses to 1.05 [jlam 2000-08-28]
	Updated p5-PV to 1.4 [jlam 2000-08-28]
	Updated vipec to 2.0.4 [dmcmahill 2000-08-28]
	Updated p5-gtk to 0.7003 [jlam 2000-08-28]
	Updated perl5-current to 5.6.0nb2, which removes the CGI.pm module
		from the base distribution to prevent conflicts with a
		much newer CGI.pm available externally [jlam 2000-08-28]
	Updated p5-CGI to 2.72 [jlam 2000-08-28]
	Updated p5-Bit-Vector to 5.8 [jlam 2000-08-28]
	Updated xlockmore to 4.17.2 [hubertf 2000-08-29]
	Updated ns-remote to 1.2 [abs 2000-08-29]
	Added netmaze-0.81 [jdc 2000-08-29]
	Updated bind9 to 9.0.0rc5 [rh 2000-08-29]
	Updated balsa to 0.9.3 [rh 2000-08-29]
	Added suse_audio 6.3 [tron 2000-08-29]
	Updated suse_linux to 6.3nb2 [tron 2000-08-29]
	Added libunicode-0.4 [rh 2000-08-29]
	Updated gnucash to 1.4.5 [rh 2000-08-29]
	Updated oaf to 0.5.1 [rh 2000-08-29]
	Updated bonobo to 0.18 [rh 2000-08-29]
	Updated hylafax to 4.1b1nb1 [abs 2000-08-29]
	Updated stooop to 4.1.1 [jwise 2000-08-29]
	Updated libstroke to 3.0nb1 [jwise 2000-08-29]
	Updated tcl-gdbm to 0.8 [jwise 2000-08-29]
	Updated ap-dtcl to 0.8.1 [jwise 2000-08-29]
	Added GConf-0.8 [rh 2000-08-30]
	Added gtkhtml-0.6.1 [rh 2000-08-30]
	Updated hylafax to 4.1b1nb2 [abs 2000-08-30]
	Updated pkglint to 2.15 [abs 2000-08-30]
	Updated arla to 0.34.2 [wennmach 2000-08-30]
	Updated tcl-cgi to 1.2.0 [jwise 2000-08-30]
	Added samba-2.0.7-ja-1.2 [kei 2000-08-30]
	Updated gwave to 20000809 [dmcmahill 2000-08-30]
	Updated perl to 5.6.0nb2 [jlam 2000-08-30]
	Updated libperl to 5.6.0 [jlam 2000-08-30]
	Updated tkpiechart to 5.4 [jwise 2000-08-30]
	Removed TclXML [jwise 2000-08-30]
	Removed TclDOM [jwise 2000-08-30]
	Added tcl-xml-1.2 [jwise 2000-08-30]
	Added tcl-dom-1.6 [jwise 2000-08-30]
	Updated coda_client and coda_server to work under 1.5 and current.
		[phil 2000-08-30]
	Updated xconq to 7.3.3 [kleink 2000-08-31]
	Updated hp2xx to 3.3.2 [dmcmahill 2000-08-31]
	Updated zircon to 1.18.245 [jwise 2000-08-31]
	Updated dotfile to 2.4.1 [jwise 2000-08-31]
	Updated tcl to 8.3.2 [jwise 2000-08-31]
	Updated tk to 8.3.2 [jwise 2000-08-31]
	Removed tclman80 [jwise 2000-08-31]
	Updated mgetty+sendfax to 1.1.22 [fredb 2000-08-31]
	Added py-reportlab [tsarna 2000-08-31]
	Updated wxGTK to 2.2.1 [dmcmahill 2000-08-31]
	Updated xchat to 1.5.7 [wennmach 2000-09-01]
	Updated ns-remote to 1.3 [abs 2000-09-01]
	Added gpart-0.1g [veego 2000-09-01]
	Updated inn to 2.2.3 [veego 2000-09-01]
	Updated wv to 0.5.44 [wiz 2000-09-02]
	Added netscape-4.75 [abs 2000-09-03]
	Updated samba to 2.0.7.1.2a [kei 2000-09-03]
	Deleted japanese/samba which is merged into net/samba.
		[kei 2000-09-03]
	Renamed mozilla pkg back to Mozilla-1.0m17
		[martin 2000-09-03]
	Updated gnocatan to 0.6.1 [veego 2000-09-03]
	Updated pkglint to 2.16 [hubertf 2000-09-04]
	Updated openssh to 2.2.0p1 [itojun 2000-09-04]
	Updated dsssl-docbook-modular to 1.57 [hubertf 2000-09-04]
	Updated mp to 3.5.2 [kim 2000-09-04]
	Added xfstt-1.1 [kim 2000-09-04]
	Added p5-Text-DelimMatch-1.03 [kim 2000-09-04]
	Added p5-Term-ReadKey-2.14 [kim 2000-09-04]
	Added wml-2.0.2 [kim 2000-09-04]
	Updated pkglint to 2.20. .include lines are honoured now, and
		FILESDIR, PATCHESDIR, PKGDIR, SCRIPTSDIR, MD5_FILE, and
		PATCH_SUM_FILE aren't hardcoded anymore, but the
		corresponding Makefile variables are used. Some cleanup.
		[wiz 2000-09-05]
	Updated wml to 2.0.3 [kim 2000-09-04]
	Updated jisx0208fonts to 20000904.  repair a glyph in kaname font.
		From SUNAGAWA Keiki.  [itojun 2000-09-05]
	Added perl5-base-5.6.0 [jlam 2000-09-05]
	Updated perl5 to 5.6.0nb3, which is now a meta-pkg which installs
		perl5-base and several other modules from a standard
		installation of perl-5.6.0. [jlam 2000-09-05]
	Removed expect [jwise 2000-09-05]
	Added tcl-expect-5.32.1 [jwise 2000-09-05]
	Added tk-expect-5.32.1 [jwise 2000-09-05]
	Removed tclX [jwise 2000-09-06]
	Added tcl-tclX-8.2.0 [jwise 2000-09-06]
	Added tk-tclX-8.2.0 [jwise 2000-09-06]
	Updated libperl to 5.6.0nb1, which includes a shared dynamic loader
		needed by certain packages, e.g. www/ap-perl [jlam 2000-09-06]
	Removed scotty [jwise 2000-09-07]
	Added tcl-scotty-2.1.10 [jwise 2000-09-07]
	Added tkined-1.4.10 [jwise 2000-09-07]
	Updated uvscan-dat to 4094 [jlam 2000-09-07]
	bsd.pkg.mk: Introduce new mechanism for handling "crypto" packages.
		Now, setting MKCRYPTO=no in /etc/mk.conf disables download
		and build for any package which defines either USE_SSL or
		CRYPTO. Packages which contain strong encryption technology
		should set CRYPTO if not USE_SSL, rather than RESTRICTED.
		[fredb 2000-09-09]
	Updated pkglint to 2.21 [abs 2000-09-11]
	Updated screen to 3.9.8 [itojun 2000-09-11]
	Updated xscreensaver to 3.25nb1, in order to discriminate against older
		binary packages, use of which would lead to a circular
		dependency on and for control-panel [fredb 2000-09-11]
	Updated ap-ssl to 2.6.6 [jlam 2000-09-12]
	Updated apache to use EAPI from mod_ssl-2.6.6-1.3.12 [jlam 2000-09-12]
	Updated racoon to 20000913b [itojun 2000-09-13]
	Updated teTeX-bin to 1.0.7nb1, which removes texi2html from the
		installation and depends on textproc/texi2html.
		[jlam 2000-09-12]
	Updated xview-config to 3.2.1nb1 [jlam 2000-09-13]
	Updated xview-lib to 3.2.1nb1 [jlam 2000-09-13]
	Updated libtool to 1.3.5nb5 [skrll 2000-09-14]
	Updated mouse-pppoe to 20000912 [wiz 2000-09-15]
	Updated ethereal to 0.8.12 [hubertf 2000-09-15]
	Updated bind9 to 9.0.0 [rh 2000-09-18]
	Updated imap-uw to 4.7rc6 to fix some security problems described
		in http://www.securityfocus.com/advisories/2646
		[hubertf 2000-09-19]
	Updated pine to 4.21nb1 to fix some security problems described
		in http://www.securityfocus.com/advisories/2646
		[hubertf 2000-09-19]
	Added audit-packages-1.0 [agc 2000-09-19]
	Updated ntop to 1.1, to workaround some security problems described
		in http://www.securityfocus.com/advisories/2520
		[agc 2000-09-19]
	Updated pkglint to 2.22 [abs 2000-09-20]
	Updated pkglint to 2.23 [abs 2000-09-21]
	Updated pkglint to 2.24 [abs 2000-09-22]
	Updated racoon to 20000923a.  if you are using previous releases
		of racoon, i suggest an upgrade due to possible security
		issue (admin tcp port was open without authentication).
		[itojun 2000-09-23]
	Updated lftp to 2.2.6 [hubertf 2000-09-24]
	Updated ptl2 to 2.1.5 [msaitoh 2000-09-24]
	Updated isakmpd to 20000915 [fredb 2000-09-25]
	Updated pkglint to 2.25 [abs 2000-09-26]
	Updated xforms to 0.88nb1, to reflect loss of shared library on a.out
		[fredb 2000-09-28]
	Updated pkglint to 2.26 [abs 2000-10-02]
	Updated cfengine to 1.5.3nb3 [abs 2000-10-02]
	Updated audit-packages to 1.1 [abs 2000-10-02]
	Updated racoon to 20001004a [itojun 2000-10-04]
	Added c++-rt0-1.0 to fix -fpic/PIC lossage on 1.4/sparc 
		[hubertf 2000-10-04]
	Updated pkglint to 2.27 [abs 2000-10-05]
	Updated samba to 2.0.7.1.3 [kei 2000-10-07]
	Updated irrd to 2.0.0.20000822 to fix Y2K issues [kim 2000-10-07]
	Changed nmap-2.53 to deal with our DLT_PPP_* types, making it work
		for PPP links again. [hubertf 2000-10-08]
	Updated global to 4.0.1 [abs 2000-10-09]
	Updated racoon to 20001010a [itojun 2000-10-10]
	Updated gnupg to 1.0.3 [itojun 2000-10-11]
	Updated xdm-krb4 to 3.3.6.2 [wennmach 2000-10-12]
	Updated pkglint to 2.28 [abs 2000-10-12]
	Updated ncurses to 5.1 [jlam 2000-10-12]
	Updated libtool to 1.3.5nb6 [skrll 2000-10-12]
	Updated zebra to 0.89 [itojun 2000-10-13]
	Updated roller to 1.5 [kim 2000-10-13]
	Updated ucd-snmp to 4.1.2 [kim 2000-10-13]
	Updated apache to 1.3.14 [jlam 2000-10-13]
	Updated ap-ssl to 2.7.0 [jlam 2000-10-13]
	Updated w3m to 0.1.10.pre11 [itojun 2000-10-14]
	Updated mozilla to milestone 18 [martin 2000-10-14]
	Updated urlget to 1.3 [kim 2000-10-14]
	Updated gnuchess to 5.00nb1, to allow creating building of opening
		books in user-specified locations, and to remove installation
		of default book.  See games/gnuchess-book-* for chess opening
		books for GNU chess 5.00. [jlam 2000-10-14]
	Added gnuchess-book-chess-5.00 [jlam 2000-10-14]
	Added gnuchess-book-medium-20000511 [jlam 2000-10-14]
	Added gnuchess-book-small-20000511 [jlam 2000-10-14]
	Added crafty-17.13 [jlam 2000-10-14]
	Added crafty-book-enormous-20000511 [jlam 2000-10-14]
	Added crafty-book-large-20000511 [jlam 2000-10-14]
	Added crafty-book-medium-20000511 [jlam 2000-10-14]
	Added crafty-book-small-20000511 [jlam 2000-10-14]
	Added crafty-doc-17.0 [jlam 2000-10-14]
	Updated xboard to 4.1.0 [jlam 2000-10-14]
	Updated p5-CGI to 2.74 [jlam 2000-10-14]
	Updated p5-HTML-Parser to 3.13 [jlam 2000-10-14]
	Updated p5-HTML-Tagset to 3.02 [jlam 2000-10-14]
	Updated xlispstat to 3.52.18 [jlam 2000-10-14]
	Updated texi2html to 1.64 [jlam 2000-10-14]
	Updated p5-Digest-MD5 to 2.12 [jlam 2000-10-14]
	Updated lavaps to 1.15 [jlam 2000-10-14]
	Updated xfce to 3.5.2 [jlam 2000-10-14]
	Added p5-CGI-Application-1.2 [jlam 2000-10-14]
	Added p5-HTML-PrettyPrinter-0.03 [jlam 2000-10-14]
	Added p5-HTML-Table-1.04 [jlam 2000-10-14]
	Added p5-HTML-Template-2.0 [jlam 2000-10-14]
	Added p5-HTML-Tree-3.04 [jlam 2000-10-14]
	Added java-lang-spec-2.0 [jlam 2000-10-14]
	Added java-vm-spec-2.0 [jlam 2000-10-14]
	Updated libaudiofile to 0.1.10 [jlam 2000-10-14]
	Updated esound to 0.2.20 [jlam 2000-10-14]
	Added p5-perl-headers [jlam 2000-10-15]
	Added knightcap-3.6nb1 [jlam 2000-10-15]
	Added knightcap-brain-19980616 [jlam 2000-10-15]
	Updated SDL to 1.1.5 [wulf 2000-10-15]
	Added smpeg-0.4.1 [wulf 2000-10-15]
	Added madplay-0.11.4b [simonb 2000-10-15]
	bsd.pkg.mk: Introduce USE_MESA and USE_GLX to support XFree86 4.0's
		builtin Mesa library [rh 2000-10-15]
	Added MesaLib-3.2.1 [rh 2000-10-15]
	Added glu-3.2.1 [rh 2000-10-15]
	Added glut-3.2.1 [rh 2000-10-15]
	Updated Mesa to 3.2.1 [rh 2000-10-15]
	Added eagle-3.92r0 [rh 2000-10-15]
	Updated gcombust to 0.1.35 [rh 2000-10-15]
	Added gtk+extra-0.99.11 [rh 2000-10-15]
	Updated gcombust to 0.1.36 [rh 2000-10-15]
	Added dmake-4.1 [rh 2000-10-15]
	Updated gtkdiff to 1.6.0 [rh 2000-10-15]
	Updated postfix-current to 20001005 [itojun 2000-10-15]
	Added kpsql-1.0 [wulf 2000-10-15]
	Updated sendmail to 8.11.1 [itojun 2000-10-15]
	Added gnome-objc-1.0.40 [rh 2000-10-15]
	Added jlib-1.0.6 [rh 2000-10-15]
	Updated glade to 0.5.11 [rh 2000-10-15]
	Updated delegate to 6.1.18 [rh 2000-10-15]
	Added tacacs-4.0.1 [rh 2000-10-15]
	Added p5-SHA-1.2 [itojun 2000-10-15]
	Added egd-0.8 [itojun 2000-10-15]
	Added dante-1.1.4 [rh 2000-10-15]
	Added lilypond-1.3.86 [rh 2000-10-15]
	Updated gnome-print to 0.23 [rh 2000-10-15]
	Updated gnumeric to 0.56nb1 [rh 2000-10-15]
	Updated fetchmail to 5.5.3 [frueauf 2000-10-15]
	Updated fetchmailconf to 5.5.3 [frueauf 2000-10-15]
	Updated libnasl to 1.0.5 [frueauf 2000-10-15]
	Updated nessus to 1.0.5 [frueauf 2000-10-15]
	Updated nessus-core to 1.0.5 [frueauf 2000-10-15]
	Updated nessus-libraries to 1.0.5 [frueauf 2000-10-15]
	Updated nessus-plugins to 1.0.5 [frueauf 2000-10-15]
	Added denemo-0.5.4 [rh 2000-10-15]
	Updated plib to 1.2.0 [rh 2000-10-15]
	Added xbreaky-0.0.4 [rh 2000-10-15]
	Added gq-0.3.0 [rh 2000-10-15]
	Added p5-DBD-Sybase-0.23 [rh 2000-10-15]
	Added t1utils-1.20 [rh 2000-10-15]
	Updated squid to 2.3stable4 [veego 2000-10-15]
	Updated gnapster to 1.3.12 [tron 2000-10-15]
	Updated wmmail to 0.64 [tron 2000-10-15]
	Added mp3check-0.5.2 [tron 2000-10-15]
	Added mrt-2.2.2a.20000811 [itojun 2000-10-15]
	Added calamaris-2.39 [rh 2000-10-16]
	Added p5-IMAP-Admin-1.3.7 [rh 2000-10-16]
	Updated p5-IO-stringy to 1.216 [rh 2000-10-16]
	Added p5-Text-Template-1.23 [rh 2000-10-16]
	Updated p5-perl-ldap to 0.22 [rh 2000-10-16]
	Added civctp-demo-1.0 [abs 2000-10-16]
	Added eus-demo-1.0 [abs 2000-10-16]
	Added heretic2-demo-2.0 [abs 2000-10-16]
	Updated wv to 0.6.0 [rh 2000-10-16]
	Added blackdown-jdk-1.2.2 [tv 2000-10-16]
	Added blackdown-jre-1.2.2 [tv 2000-10-16]
	Added jbuilder-jit-1.2.15 [tv 2000-10-16]
	Updated jikes to 1.12 [tv 2000-10-16]
	Added cs4235-20001009 [hubertf 2000-10-17]
	Added dia-0.86 [hubertf 2000-10-17]
	Updated if-psprint to 1.1 [abs 2000-10-17]
	Added fix4SA110rev2-1.0 [abs 2000-10-17]
	Updated libglade to 0.14 [rh 2000-10-17]
	Updated gnome-print to 0.24 [rh 2000-10-17]
	Added gal-0.1 [rh 2000-10-17]
	Added gb-0.0.12 [rh 2000-10-17]
	Updated gnumeric to 0.57 [rh 2000-10-17]
	Updated apache to 1.3.14.1 [jlam 2000-10-17]
	Updated ap-ssl to 2.7.1 [jlam 2000-10-17]
	Added nap-1.4.3 [tron 2000-10-17]
	Updated gtk-engines to 0.10 [jlam 2000-10-17]
	Updated ORBit to 0.5.4 [jlam 2000-10-17]
	Updated gnome-libs to 1.2.5 [jlam 2000-10-17]
	Updated libxml to 0.8.10 [jlam 2000-10-17]
	Updated gdk-pixbuf to 0.9.0 [jlam 2000-10-17]
	Updated control-center to 1.2.2 [jlam 2000-10-17]
	Updated gnome-core to 1.2.2.1 [jlam 2000-10-17]
	Updated gnome-applets to 1.2.2 [jlam 2000-10-17]
	Added xmountains-2.5 [fredb 2000-10-17]
	Updated cvs to 1.11 [hubertf 2000-10-18]
	Updated lynx-current to 2.8.4dev10 [fredb 2000-10-18]
	Updated cdrdao to 1.1.4 [rh 2000-10-18]
	Added untex-1.3 [itojun 2000-10-18]
	Added detex-2.7 [itojun 2000-10-18]
	Updated libgetopt to 1.2 [wiz 2000-10-18]
	Updated xamp to 0.8.10 [rh 2000-10-18]
	Updated libgetopt to 1.3 [wiz 2000-10-18]
	Updated webalizer to 2.01.06 [mjl 2000-10-18]
	Updated arla to 0.34.5 [wennmach 2000-10-18]
	Updated fd to 1.03o [hubertf 2000-10-19]
	Added qt2-libs-2.2.1 package [skrll 2000-10-19]
	Added qt2-docs-2.2.1 package [skrll 2000-10-19]
	Added qt2-designer-2.2.1 package [skrll 2000-10-19]
	Added qt2 package [skrll 2000-10-19]
	Updated ebuilder to 0.56d [skrll 2000-10-19]
	Updated qtarch to 2.1 [skrll 2000-10-19]
	Added sysgen-1.0 [abs 2000-10-19]
	Added vidc-tools-1.0 [abs 2000-10-19]
	Added chimera-2.0a19 [fredb 2000-10-19]
	Added suse_libjpeg-6.4, needed for Opera [hubertf 2000-10-20]
	Updated xerces-j to 1.2 [jwise 2000-10-19]
	Updated xalan-j to 1.2 [jwise 2000-10-19]
	Updated fop to 0.13.0 [jwise 2000-10-19]
	Updated cocoon to 1.8 [jwise 2000-10-19]
	Updated gmc to 4.5.51 [jlam 2000-10-19]
	Updated mc to 4.5.51 [jlam 2000-10-19]
	Added ng-1.4 [hubertf 2000-10-20]
	Updated tkicb to 2.1.4nb1 [dmcmahill 2000-10-20]
	Updated pkglint to 2.29 [abs 2000-10-20]
	Updated ntop to 1.1nb1 [abs 2000-10-20]
	Added txt2html-1.28 [wennmach 2000-10-20]
	Updated xmradio to 1.0b1 [tron 2000-10-20]
	Added p5-Net-TFTP-0.10 [jwise 2000-10-20]
	Added libcrack-2.7 [rh 2000-10-21]
	Added PAM-0.72 [rh 2000-10-21]
	Added pam-ldap-77 [rh 2000-10-21]
	Added p5-ispman-0.5 [rh 2000-10-21]
	Added ispman-0.5 [rh 2000-10-21]
	Removed cvs-current package [wiz 2000-10-21]
	Updated cvs to 1.11nb1 [wiz 2000-10-21]
	Updated zip to 2.3nb1 [wiz 2000-10-21]
	Updated gal to 0.2 [rh 2000-10-21]
	Updated oaf to 0.6.0 [rh 2000-10-22]
	bsd.pkg.mk: Allow "DEPENDS_TARGET=update" for recursive update of
		outdated prerequisite packages.  Introduce new
		UPDATE_TARGET variable to handle this [rh 2000-10-22]
	Added libpspell-0.11.2 [rh 2000-10-22]
	Updated balsa to 1.0p3 [rh 2000-10-22]
	Updated gnapster to 1.4.0 [rh 2000-10-22]
	Updated SDL to 1.1.5nb1 [rh 2000-10-22]
	Added lbreakout-001018 [rh 2000-10-22]
	Updated python to 2.0 [tsarna 2000-10-22]
	Updated py-html-docs to 2.0 [tsarna 2000-10-22]
	Updated py-readline to 2.0 [tsarna 2000-10-22]
	Updated py-gdbm to 2.0 [tsarna 2000-10-22]
	Updated py-Tk to 2.0 [tsarna 2000-10-22]
	Updated py-curses  to 2.0 [tsarna 2000-10-22]
	Updated py-extclass to 2.2.2 [tsarna 2000-10-22]
	Updated py-dtml to 2.2.2 [tsarna 2000-10-22]
	Updated py-zpublisher to 2.2.2 [tsarna 2000-10-22]
	Updated py-pcgi to 2.2.2 [tsarna 2000-10-22]
	Updated zope to 2.2.2 [tsarna 2000-10-22]
	Updated py-reportlab to 1.01 [tsarna 2000-10-22]
	Added p5-Text-CSV_XS-0.20 [mjl 2000-10-23]
	Added p5-SQL-Statement-0.1016 [mjl 2000-10-23]
	Added p5-DBD-CSV-0.1022 [mjl 2000-10-23]
	Added maildrop-1.2.2 [rh 2000-10-23]
	Added tnef-0.14.1 [rh 2000-10-23]
	Updated uvscan-dat to 4100 [rh 2000-10-23]
	Updated amavis to 0.2.1p3 [rh 2000-10-23]
	Added stow-1.3.2 [agc 2000-10-23]
	Added smalltalk-1.8.2 [agc 2000-10-23]
	Added png2html-1.1 [hubertf 2000-10-23]
	Updated xpkgwedge to 1.0 [jlam 2000-10-23]
	Updated xview-config to 3.2.1nb2 [jlam 2000-10-23]
	Updated xview-lib to 3.2.1nb2 [jlam 2000-10-23]
	Updated lesstif to 0.91.8 [jlam 2000-10-23]
	Updated lesstif12 to 0.91.8 [jlam 2000-10-23]
	Added colchess-7.0 [jlam 2000-10-24]
	Added colchess-book-colchess-7.0 [jlam 2000-10-24]
	Added colchess-book-large-20000512 [jlam 2000-10-24]
	Updated cyrus-sasl to to 1.5.24nb1 [rh 2000-10-25]
	Added exchess-3.14 [jlam 2000-10-25]
	Added exchess-book-medium-20000511 [jlam 2000-10-25]
	Added exchess-book-small-20000511 [jlam 2000-10-25]
	Updated blackbox to 0.61.1 [pooka 2000-10-25]
	Added py-ldap-1.10a3 [tsarna 2000-10-25]
	Updated libsidplay to 1.36.45 [pooka 2000-10-25]
	Added ap-php4-4.0.1pl2 [jdolecek 2000-10-25]
	Updated ap-fastcgi to 2.2.8 [mjl 2000-10-26]
	Added dvidvi-1.0 [wiz 2000-10-27]
	Updated communicator to 4.76 [tron 2000-10-27]
	Updated navigator to 4.76 [tron 2000-10-27]
	Updated analog 4.13 [tron 2000-10-27]
	Updated verilog-current to 20001021 [dmcmahill 2000-10-27]
	Added opera-4.0b2 [tron 2000-10-27]
	Updated librep to 0.13.2 [jlam 2000-10-27]
	Updated rep-gtk to 0.14 [jlam 2000-10-27]
	Updated sawfish to 0.32 [jlam 2000-10-27]
	Updated lukemftp to 1.5 [agc 2000-10-27]
	Added libavl-1.4.0 [mjl 2000-10-27]
	Updated tnef to 0.15 [jwise 2000-10-27]
	Updated ethereal to 0.8.13 [mjl 2000-10-28]
	Updated thttpd to 2.20b.  note that security advisory was issued for
		2.19 and older. [itojun 2000-10-28]
	Updated darcnes to 20001011 [wiz 2000-10-29]
	Added netris-0.5 [wiz 2000-10-29]
	Added ksc5601fonts-20001029 [itojun 2000-10-29]
	Updated xsidplay to 1.5.4 [pooka 2000-10-29]
	Updated zebra to 0.89a [itojun 2000-10-29]
	Added openmotif-2.1.30 [mjl 2000-10-29]
	Updated fetchmail to 5.5.5 [frueauf 2000-10-29]
	Updated fetchmailconf to 5.5.5 [frueauf 2000-10-29]
	Added sawfish-replibs-0.32 [jlam 2000-10-29]
	Added biew-5.2.0 [mjl 2000-10-30]
	Updated roller to 1.6 [kim 2000-10-29]
	Added hanterm-3.1.3 [itojun 2000-10-30]
	Updated x3270 to 3.2.13 [mjl 2000-10-30]
	Updated p5-FCGI to 0.55 [mjl 2000-10-30]
	Updated slrn to 0.9.6.3 [mjl 2000-10-30]
	Added freeciv-manual-1.8.2.1 [wiz 2000-10-30]
	Updated ptl2 to 2.1.6 [msaitoh 2000-10-31]
	Added ssldump-0.9a2 [hubertf 2000-10-31]
	Updated surfraw to 1.0.2 [jlam 2000-10-31]
	Added popt-1.2 [wennmach 2000-10-31]
	Added alevt-1.6.0 [tron 2000-11-01]
	Added mglfonts-0.1 [hubertf 2000-11-01]
	Added mgl-0.1.9a [hubertf 2000-11-01]
	Added xscribble-20000616 [itojun 2000-11-02]
	Added minischeme-0.85 [itojun 2000-11-02]
	Added vscm-0.4 [itojun 2000-11-02]
	Added kali-0.47 [itojun 2000-11-02]
	Added umb-scheme-2.12 [itojun 2000-11-02]
	Added xcircuit-2.1b7 [dmcmahill 2000-11-02]
	Updated xmradio to 1.0 [tron 2000-11-02]
	Added latex2html-99.2beta8 [wennmach 2000-11-02]
	Added esh-0.8 [tron 2000-11-02]
	Updated boost to 1.18.1 [jlam 2000-11-02]
	Updated id3ed to 1.10.2 [hubertf 2000-11-05]
	Updated cervisia to 0.7.2 [hubertf 2000-11-05]
	Updated lftp to 2.3.4 [wiz 2000-11-05]
	Added cross-i386-netbsdpe-1.0.0.0.  note this obsoletes
		cross-i386-cygwin32. [minoura 2000-11-06]
	Updated racoon to 20001106a [itojun 2000-11-06]
	Added blas-1.0 [wennmach 2000-11-06]
	Added ftnchek-3.0.0 [wennmach 2000-11-06]
	Updated gal to 0.2.1 [rh 2000-11-06]
	Updated gnome-libs to 1.2.8 [rh 2000-11-07]
	Updated gnome-core to 1.2.3 [rh 2000-11-07]
	Added glibwww-0.2 [rh 2000-11-07]
	Added userppp-001107 [ad 2000-11-07]
	Added backgammon-1.9.1b [hubertf 2000-11-08]
	Updated pico to 3.8 [hubertf 2000-11-09]
	Updated imap-uw to 2000 [hubertf 2000-11-09]
	Updated pine to 4.30 [hubertf 2000-11-09]
	Updated skkserv to 3.9.4nb1, which adds IPv6 support [itohy 2000-11-09]
	Updated skkfep to be IPv6 ready [itohy 2000-11-09]
	Updated skkinput to be IPv6 ready [itohy 2000-11-09]
	Updated openssh to 2.3.0p1 [itojun 2000-11-09]
	Added bitchx-1.0.3.17 [wiz 2000-11-09]
	Added snes9x-1.29 [wiz 2000-11-09]
	Updated lv to 4.49.4 [itojun 2000-11-10]
	Removed mswordview (superseded by wv) [wiz 2000-11-10]
	Updated gnupg to 1.0.4 [wiz 2000-11-10]
	Updated bind8 to 8.2.2p7 [itojun 2000-11-10]
	Added libmcrypt-2.4.7 [itojun 2000-11-10]
	Added mhash-0.8.3 [itojun 2000-11-10]
	Added mcrypt-2.5.5 [itojun 2000-11-10]
	Added vncviewer-3.3.3.1 [abs 2000-11-10]
	Updated crafty to 17.14 [jlam 2000-11-10]
	Updated tgif to 4.1.40 [dmcmahill 2000-11-10]
	Updated audit-packages to 1.3 [itojun 2000-11-11]
	Updated racoon to 20001111a [itojun 2000-11-11]
	Updated yacas to 1.0.41 [dmcmahill 2000-11-11]
	Updated libnasl to 1.0.6 [frueauf 2000-11-11]
	Updated nessus-core to 1.0.6 [frueauf 2000-11-11]
	Updated nessus-libraries to 1.0.6 [frueauf 2000-11-11]
	Updated nessus-plugins to 1.0.6 [frueauf 2000-11-11]
	Updated nessus to 1.0.6 [frueauf 2000-11-11]
	Updated gnupg to 1.0.4nb1 [wiz 2000-11-12]
	Updated wxGTK to 2.2.2 [tsarna 2000-11-12]
	Updated py-wxWindows to 2.2.2 [tsarna 2000-11-12]	
	Updated bind9 to 9.0.1 [itojun 2000-11-13]
	Updated vnc to 3.3.3.2 [abs 2000-11-13]
	Updated vncviewer to 3.3.3.2 [abs 2000-11-13]
	Updated gforth to 0.5.0 [hubertf 2000-11-14]
	Updated ptl2 to 2.1.7 [msaitoh 2000-11-14]
	Updated fetchmail to 5.5.6 [frueauf 2000-11-14]
	Added ng-spice-13 [dmcmahill 2000-11-14]
	Updated pkglint to 2.30 [abs 2000-11-14]
	Updated apache6 to 1.3.14 [itojun 2000-11-14]
	Added ish-1.11 [itojun 2000-11-14]
	Updated its4 to 1.1.1 [wiz 2000-11-15]
	Updated if-psprint to 1.2 [abs 2000-11-15]
	Updated lame to 3.87 [wiz 2000-11-15]
	Removed lame-gui (merged into lame) [wiz 2000-11-15]
	Updated links to 0.93 [wiz 2000-11-15]
	Updated fetchmailconf to 5.5.6 [tron 2000-11-15]
	Updated snes9x to 1.32 [wiz 2000-11-16]
	Updated boehm-gc to 5.3 [abs 2000-11-16]
	Added xtux-0.2000.11.15 [hubertf 2000-11-17]
	Updated abs to 0.8 [rh 2000-11-17]
	Added autotrace-0.26 [rh 2000-11-17]
	Updated pkglint to 2.31 [abs 2000-11-17]
	Added krio-19990721 [agc 2000-11-17]
	Added sun-jdk-1.3.0 [tv 2000-11-17]
	Added sun-jre-1.3.0 [tv 2000-11-17]
	Removed blackdown-jdk-1.2.2 [tv 2000-11-17]
	Removed blackdown-jre-1.2.2 [tv 2000-11-17]
	Updated libtool to 1.3.5nb7 [mycroft 2000-11-26]
	Added boolean-6.2 [dmcmahill 2000-11-18]
	Updated roller to 1.7 [kim 2000-11-18]
	Updated sendmail-8.11.1 to incorporate WIDE sendmail patch which was
		disabled [taca 2000-11-19]
	Added ipal-current-20001118 [dmcmahill 2000-11-19]
	Updated tcsh to 6.10 [christos 2000-11-19]
	Updated wwwoffle to 2.6 [itojun 2000-11-20]
	Updated cgoban to 1.9.10 [toshii 2000-11-20]
	Added airportbasestationconfig-1.2.2 [tron 2000-11-20]
	Updated sdist to 1.5 [kim 2000-11-20]
	Updated ssync to 1.5 [kim 2000-11-20]
	Updated gnugo to 2.6 [toshii 2000-11-21]
	Added mule-2.3 [kei 2000-11-21]
	Added icecast-1.3.7 [hubertf 2000-11-21]
	Added liveice-0.20001121 [hubertf 2000-11-21]
	Updated ispman to 0.5nb1 [rh 2000-11-22]
	Added intercal-0.20 [wiz 2000-11-22]
	Updated acs to 0.28 [dmcmahill 2000-11-22]
	Updated madplay to 0.12.2b [wiz 2000-11-23]
	Updated checkbot to 1.62 [abs 2000-11-23]
	Added libdes-4.04b [rh 2000-11-23]
	Added pcps-8.40 [rh 2000-11-23]
	Updated dinotrace to 9.0l [dmcmahill 2000-11-23]
	Updated ethereal to 0.8.14 [abs 2000-11-23]
	Updated gwave to 20001123 [dmcmahill 2000-11-24]
	Updated ipal-current to 20001122 [dmcmahill 2000-11-24]
	Updated verilog-current to 20001119 [dmcmahill 2000-11-24]
	Updated xwrits to 2.12 [dmcmahill 2000-11-24]
	Added hdf5-1.2.2 [jtb 2000-11-24]
	Updated xemacs-packages to 1.5 [tron 2000-11-25]
	Updated xemacs to 21.1.12 [tron 2000-11-25]
	Updated oregano to 0.20 [rh 2000-11-25]
	Updated gnome-print to 0.25 [rh 2000-11-25]
	Added gnome-vfs-0.4.1 [rh 2000-11-25]
	Updated gal to 0.2.2 [rh 2000-11-25]
	Updated libole2 to 0.1.7 [rh 2000-11-25]
	Updated gb to 0.0.15 [rh 2000-11-25]
	Updated gnumeric to 0.59 [rh 2000-11-25]
	Updated bonobo to 0.26 [rh 2000-11-25]
	Updated libaudiofile to 0.1.11 [rh 2000-11-25]
	Updated libghttp to 1.0.7 [rh 2000-11-25]
	Added cweb-3.62 [jtb 2000-11-25]
	Added grap-1.10 [jtb 2000-11-25]
	Updated gnome-core to 1.2.4 [rh 2000-11-25]
	Added otter-3.0.6 [jtb 2000-11-25]
	Added ascii-3.0 [jtb 2000-11-25]
	Added xzgv-0.6 [jtb 2000-11-25]
	Added aribas-1.14 [jtb 2000-11-25]
	Added chemtool-1.2 [jtb 2000-11-25]
	Added plotmtv-1.4.1 [jtb 2000-11-25]
	Added libctl-1.2 [jtb 2000-11-25]
	Added cim-3.30 [jtb 2000-11-25]
	Updated gnome to 1.2.4 [rh 2000-11-26]
	Added randlib-1.3 [jtb 2000-11-26]
	Updated libtool to 1.3.5nb8 [mycroft 2000-11-26]
	Updated libtool to 1.3.5nb9 [mycroft 2000-11-26]
	Added p5-ExtUtils-F77-1.13 [jtb 2000-11-26]
	Added GMT-3.3.6 [jtb 2000-11-26]
	Added mcsim-4.2.0 [jtb 2000-11-26]
	Added calc-2.02f [jtb 2000-11-26]
	Added p5-File-MMagic-1.09 [kei 2000-11-27]
	Added p5-Text-Kakasi-1.04 [kei 2000-11-27]
	Added p5-Text-ChaSen-1.03 [kei 2000-11-27]
	Updated GConf to 0.11 [rh 2000-11-27]
	Added freetype2-2.0b8 [rh 2000-11-27]
	Updated fetchmail to 5.6.0 [frueauf 2000-11-27]
	Updated fetchmailconf to 5.6.0 [frueauf 2000-11-27]
	Updated postfix-current to 20001121 [itojun 2000-11-28]
	Added felt-3.05 [jtb 2000-11-28]
	Added slatec-4.1 [jtb 2000-11-28]
	Updated squid to 2.3s4nb2 [taca 2000-11-28]
	Added fftpack-4.0 [jtb 2000-11-28]
	Updated ap-fastcgi to 2.2.10 [mjl 2000-11-28]
	Added modeline-20001121 [agc 2000-11-28]
	Updated exim to 3.20 [ad 2000-11-28]
	Updated gimp-current to 1.1.29 [mycroft 2000-11-28]
	Removed gimp-helpbrowser-1.1.24 [tron 2000-11-28]
	Added nhc98-1.00 [jtb 2000-11-28]
	Updated p5-GD to 1.32 [david 2000-11-28]
	Updated p5-GDGraph to 1.33 [david 2000-11-28]
	Updated p5-GDTextUtil to 0.80 [david 2000-11-28]
	Added libbf-0.8.2b [rh 2000-11-29]
	Added libidea-0.8.2b [rh 2000-11-29]
	Updated opera to 4.0b3 [hubertf 2000-11-29]
	Added gdk-pixbuf-gnome-0.9.0nb1 containing the gnome-libs-dependent
		part of gdk-pixbuf [wiz 2000-11-29]
	Updated gdk-pixbuf to 0.9.0nb1 (removing gnome-parts) [wiz 2000-11-29]
	Added guile-oops-0.9.0 [wiz 2000-11-29]
	Updated gqview to 0.9.1 [wiz 2000-11-29]
	Updated xsane to 0.64 [wiz 2000-11-29]
	Updated wmakerconf to 2.7 [wiz 2000-11-29]
	Updated easytag to 0.11 [wiz 2000-11-29]
	Added odepack-20001129 [jtb 2000-11-29]
	Added quadpack-20001129 [jtb 2000-11-29]
	Added eispack-20001129 [jtb 2000-11-29]
	Added haskell-mode-20001129 [jtb 2000-11-29]
	Added RScheme-0.7.3.1 [jtb 2000-11-29]
	Added isic-0.05 [hubertf 2000-11-30]
	canna-server: added IPv6 patch [itojun 2000-11-30]
	Added vm-6.87 [jtb 2000-11-30]
	Added w3-4.0pre.46 [jtb 2000-11-30]
	Updated pkglint to 2.32 [wiz 2000-12-02]
	Updated sox to 12.17.1 [wiz 2000-12-02]
	Updated gnapster to 1.4.1a [wiz 2000-12-02]
	Added plplot-4.99 [jtb 2000-12-02]
	Added auctex-9.9p [jtb 2000-12-02]
	Deleted cross-sparc64-netbsd which is poisonous [mrg 2000-12-02]
	Updated gindent to 2.2.6 [wiz 2000-12-02]
	Updated SDL to 1.1.6 [wiz 2000-12-02]
	Added gnome-iconedit-1.2.0 [wiz 2000-12-03]
	Updated p5-HTML-Tagset to 3.03 [tv 2000-12-03]
	Updated p5-HTML-Tree to 3.08 [tv 2000-12-03]
	Added p5-Font-AFM-1.18 [tv 2000-12-03]
	Added p5-HTML-Format-1.23 [tv 2000-12-03]
	Updated gnucash to 1.4.8 [briggs 2000-12-03]
	Added pcvt-utils-20000611 [hubertf 2000-12-04]
	Added vslisp-4.0.1 [jtb 2000-12-04]
	Added meschach-1.2b [jtb 2000-12-04]
	Added xbuffy-3.4 [wiz 2000-12-05]
	Updated py-Numeric to 17.1.2 [drochner 2000-12-05]
	Updated rrdtool to 1.0.28 [wulf 2000-12-05]
	Updated balsa to 1.0.0 [rh 2000-12-05]
	Added bulk_mailer-1.13 [abs 2000-12-05]
	Updated if-psprint to 1.3 [abs 2000-12-05]
	Updated sudo to 1.6.3p5 [jlam 2000-12-05]
	Updated qt2-libs to 2.2.2 [drochner 2000-12-05]
	Updated qt2-docs to 2.2.2 [drochner 2000-12-05]
	Updated qt2-designer to 2.2.2 [drochner 2000-12-05]
	Updated qt2 to 2.2.2 [drochner 2000-12-05]
	Updated lsof to 4.52 [drochner 2000-12-05]
	Updated yacas to 1.0.43 [drochner 2000-12-05]
	Updated cowsay to 3.03 [drochner 2000-12-05]
	Added xteddy-2.0.1 [hubertf 2000-12-05]
	Added xdaemon-2.0 [hubertf 2000-12-05]
	Updated libcdaudio to 0.99.4 [perry 2000-12-05]
	Added brandybasic-1.05 [abs 2000-12-06]
	Added haskell-cgi-20001206 [jtb 2000-12-06]
	Added suse_glx-6.4 [wiz 2000-12-07]
	Updated lsof to 4.53 [wiz 2000-12-07]
	Updated postfix to 19991231-pl11 [wiz 2000-12-07]
	Updated p5-DBI to 1.14 [mjl 2000-12-07]
	Updated postgresql to 7.0.3 [mjl 2000-12-07]
	Updated tcl-postgresql to 7.0.3 [mjl 2000-12-07]
	Updated tk-postgresql to 7.0.3 [mjl 2000-12-07]
	Updated p5-DBD-postgresql to 0.95 [mjl 2000-12-07]
	Updated mtools to 3.9.5nb1 to fix problems with sector
		sizes > 1024 bytes [is 2000-12-07]
	Updated xpdf to 0.92 [abs 2000-12-07]
	Updated cups to 1.1.4 [jlam 2000-12-07]
	Updated plplot to 5.0.0 [jtb 2000-12-08]
	Updated ap-php to 4.0.3pl1 [wiz 2000-12-08]
	Added xpp-0.7 [jlam 2000-12-08]
	Added echoping-3.0.1 [wiz 2000-12-08]
	Added cupsomatic-20001208 [jlam 2000-12-08]
	Added fortran-utils-1.1 [jtb 2000-12-08]
	Updated lftp to 2.3.5 [wiz 2000-12-09]
	Added bsdpak-0.40 [wiz 2000-12-09]
	Updated rp-pppoe to 2.4 [tron 2000-12-09]
	Added quake3arena-demo-1.11.6 [wiz 2000-12-09]
	Added dfftpack-20001209 [jtb 2000-12-09]
	Added minpack-20001130 [jtb 2000-12-09]
	Updated postfix to 19991231-pl12 [itojun 2000-12-10]
	Updated cyrus-sasl to 1.5.24nb2 [jlam 2000-12-10]
	Updated cyrus-imapd to 1.6.24nb1 [jlam 2000-12-10]
	Added stalin-0.8 [jtb 2000-12-10]
	Added sylpheed-0.3.23 [kei 2000-12-11]
	Updated racoon to 20001211a [itojun 2000-12-11]
	Added category finance and moved emma, gnucash, tclticker,
		xfinans, xinvest, and xquote packages there. [wiz 2000-12-11]
	Updated qpopper to 3.1.2 [itojun 2000-12-11]
	Added category wm (for windowmanagers), and moved lots of packages
		from x11 there: afterstep, amiwm, blackbox, ctwm,
		enlightenment, flwm, fvwm1, fvwm2, fvwm95, icewm, icewm-gnome,
		lwm, olvwm, sawfish, sawfish-replibs, scwm, tvtwm, uwm,
		windowmaker, wm2, wmx. [wiz 2000-12-12]
	Added fair-identd-20000201 [rh 2000-12-12]
	Updated Mesa to 3.4 [drochner 2000-12-12]
	Updated MesaLib to 3.4 [drochner 2000-12-12]
	Updated glu to 3.4 [drochner 2000-12-12]
	Updated glut to 3.4 [drochner 2000-12-12]
	Updated xephem to 3.4 [drochner 2000-12-12]
	Updated wxGTK to 2.2.3 [jlam 2000-12-12]
	Updated ncurses to 5.2 [drochner 2000-12-12]
	LPRng: Split this package into LPRng-core which contains core software
		and LPR-doc which contains various documentation.  This package
		remains as a meta-package. [kei 2000-12-12]
	Added LPRng-core-3.6.26 [kei 2000-12-12]
	Added LPRng-doc-3.6.13 [kei 2000-12-12]
	Updated jakarta-tomcat to 3.1.1 [jwise 2000-12-12]
	bsd.pkg.mk: Added authoritative CPAN ftp site as a last resort in case
		packages have not yet propagated to mirror sites 
		PR pkg/11591[david 2000-12-12]
	Added gnotepad-1.3.2 [wiz 2000-12-13]
	Deleted crossfire-0.94.2 [garbled 2000-12-13]
	Added crossfire-client-0.95.8 [garbled 2000-12-13]
	Added crossfire-server-0.95.8 [garbled 2000-12-13]
	Updated squid to 2.3s4nb3 [taca 2000-12-13]
	Added xm7-1010s [kei 2000-12-13]
	Added wxWindows-docs-2.2 [jlam 2000-12-13]
	pkg_install: Added support for creating and adding bzip2 compressed
		packages (expected suffix: .tbz). [hubertf 2000-12-13]
	Updated pixmap to 2.6pl4 [hubertf 2000-12-13]
	Updated suse_linux to 6.3nb3 [hubertf 2000-12-13]
	Added suse_libpng-7.0 [jdolecek 2000-12-13]
	Updated opera to 4.0b4 [jdolecek 2000-12-13]
	Updated imap-uw to 2000a [tron 2000-12-13]
	Moved gnofin from misc to finance. [wiz 2000-12-14]
	Updated pkglint to 2.33 [wiz 2000-12-14]
	Added quake3arena-1.17 [wiz 2000-12-14]
	Updated xdu to 3.0nb1 [hubertf 2000-12-14]
	Moved 9menu from plan9 to misc [wiz 2000-12-14]
	Moved 9term from plan9 to x11 [wiz 2000-12-14]
	Removed plan9 category [wiz 2000-12-14]
	Updated postfix to 19991231pl13 [wiz 2000-12-14]
	Added plex86-0.20001214 [hubertf 2000-12-14]
	Added postmark-1.13 [hubertf 2000-12-14]
	Updated fsh to 1.1 [wiz 2000-12-14]
	Updated ap-auth-ldap to 1.5.2 [kleink 2000-12-14]
	Updated bochs to 2000.03.25a [kei 2000-12-14]
	Updated plex86 to 0.20001214.2 [hubertf 2000-12-14]
	Added xbattbar-1.4 [itojun 2000-12-14]
	Updated totd to 1.1p5 [itojun 2000-12-14]
	Updated malsync to 2.0.5 [jlam 2000-12-14]
	Updated Hermes to 1.3.2 [garbled 2000-12-14]
	Added category chat and moved many packages there (all from net);
		gaim, icb, icqlib, ircII, ircu, kicq, kxicq, libirc, micq,
		sirc, tkicb, tkirc, xchat, zenicb, and zircon. [wiz 2000-12-15]
	Updated cftp to 0.10 [wiz 2000-12-15]
	Updated xquote to 2.2 [wiz 2000-12-15]
	Updated gnofin to 0.8.4 [wiz 2000-12-15]
	Updated ClanLib to 0.4.4 [garbled 2000-12-15]
	Updated PacMan to 0.3 [garbled 2000-12-15]
	Updated Mozilla to 0.6 [martin 2000-12-15]
	Added clanbomber-1.01 [garbled 2000-12-15]
	Updated pstree to 2.16 [mjl 2000-12-15]
	Updated sci to 0.5.6 [mjl 2000-12-15]
	Updated port2pkg to 1.6 [wiz 2000-12-15]
	Added bind-9.1.0b1 into net/bind9-current. [itojun 2000-12-15]
	Updated xlockmore to 5.00 [hubertf 2000-12-15]
	Updated uvscan-dat to 4109. [wiz 2000-12-15]
	Moved bitchx from net to chat. [wiz 2000-12-15]
	Moved ethemes from x11 to wm. [wiz 2000-12-16]
	Moved wmakerconf from x11 to wm. [wiz 2000-12-16]
	Moved wmthemes from x11 to wm. [wiz 2000-12-16]
	Updated xskat to 3.4 [wiz 2000-12-16]
	Updated ttt to 1.5 [hubertf 2000-12-16]
	Added tavrasm 0.15 [wiz 2000-12-16]
	Updated timidity to 2.10.2 [wiz 2000-12-17]
	Added eawpatches-10 [wiz 2000-12-17]
	Added guspatches-1.0 [wiz 2000-12-17]
	Updated ipal-current to 20001210 [dmcmahill 2000-12-16]
	Added php-4.0.3pl1 to www/php4 [jlam 2000-12-17]
	Added php-gd-4.0.3pl1 to www/php4-gd [jlam 2000-12-17]
	Added php-pgsql-4.0.3pl1 to www/php4-pgsql [jlam 2000-12-17]
	Updated ap-php4 to 4.0.3pl1nb1 [jlam 2000-12-17]
	Added common-mml-1.2 [hubertf 2000-12-17]
	Updated sdr to 3.0 [hubertf 2000-12-17]
	Updated suse_base to 6.4 [tron 2000-12-17]
	Updated suse_compat to 6.4 [tron 2000-12-17]
	Updated suse_x11 to 6.4 [tron 2000-12-17]
	Updated suse_libc5 to 6.4 [tron 2000-12-17]
	Updated suse_devel to 6.4 [tron 2000-12-17]
	Updated suse_audio to 6.4 [tron 2000-12-17]
	Updated suse_gtk to 6.4 [tron 2000-12-17]
	Updated suse_xforms to 6.4 [tron 2000-12-17]
	Updated suse_linux to 6.4 [tron 2000-12-17]
	suse_libpng: downgraded package to version 6.4 to use consistent
		version for all SuSE package. [tron 2000-12-17]
	Updated ywho to 1.3 [kim 2000-12-17]
	imap-uw: the package now supports SSL encrypted IMAP and POP3
		connections. [jlam 2000-12-17]
	Added php-imap-4.0.3pl1 to www/php4-imap [jlam 2000-12-17]
	Added category time and moved lots of packages there.
		cal, cardboard-schedule, ical, plan, py-mxDateTime, remind from
		misc; logtime from sysutils; and asclock, asclock-gtk, catclock
		asclock-xlib, dclock, emiclock, glclock, polclock, rclock,
		sunclock, swisswatch, titrax, wmcalclock, wmtime, wmmoonclock,
		xbeats, xcal, xdaliclock, and xtimer from x11. [wiz 2000-12-18]
	Updated ical to 2.2.1 [wiz 2000-12-17]
	Updated glclock to 6.0b6.0 [wiz 2000-12-17]
	Updated remind to 3.0.22 [wiz 2000-12-17]
	Updated p5-DBD-mysql to 1.2215 [david 2000-12-17]
	Updated dsniff to 2.3 [itojun 2000-12-18]
	Added gnyaclock-20001218 [kei 2000-12-18]
	Moved ascp from x11 to wm [wiz 2000-12-18]
	Moved econf from x11to wm [wiz 2000-12-18]
	Moved wmextra from x11 to wm [wiz 2000-12-18]
	Updated tidy to 20000804 [kim 2000-12-18]
	Added p5-Device-SerialPort to comms [tsarna 2000-12-18]
	Added p5-ControlX10-CM11 to misc [tsarna 2000-12-18]
	Added xtend to misc [tsarna 2000-12-18]
	Added ibutton-pdkit to misc [tsarna 2000-12-18]
	Added py-idle to devel [tsarna 2000-12-18]
	Updated stunnel to 3.9 [jlam 2000-12-18]
	Updated kdevelop to 1.3 [wulf 2000-12-19]
	Updated verilog-current to 20001216 [dmcmahill 2000-12-19]
	Updated kdoc to 2.0.1b [wulf 2000-12-20]
	Updated pkg_install to 20001220 [hubertf 2000-12-20]
	Added icu-1.6 to textproc [skrll 2000-12-20]
	Updated ttt to 1.6 [hubertf 2000-12-20]
	Added pcal-4.7 [kei 2000-12-21]
	Added rid-1.11 [hubertf 2000-12-21]
	Updated cups to 1.1.5 [jlam 2000-12-21]
	cupsomatic: split off the PPD files from the filter script into a
		separate package.  Re-badge the cupsomatic package as
		version 1.3 of the filter script. [jlam 2000-12-21]
	Added cupsomatic-ppds-20001220 [jlam 2000-12-21]
	Moved korganizer from x11 to time. [wiz 2000-12-21]
	Moved kworldwatch from x11 to time. [wiz 2000-12-21]
	Updated cups to 1.1.5.1 [jlam 2000-12-21]
	Updated uvscan-dat to 4112. [abs 2000-12-21]
	Updated icu to 1.7 [skrll 2000-12-21]
	Updated sirc to 2.211nb1 to get IPv6 support [hubertf 2000-12-22]
	Updated lesstif to 0.92.6 [jlam 2000-12-22]
	Updated lesstif12 to 0.92.6 [jlam 2000-12-22]
	Updated gaim to 0.11.0pre3 to support IRC, AIM, MSN,
		Yahoo [hubertf 2000-12-23]
	Updated freetype2 to 2.0.1 [wiz 2000-12-24]
	Added realplayer-8 [jlam 2000-12-25]
	Removed realplayer7.  RealPlayer is now tracked by the audio/realplayer
		package. [jlam 2000-12-25]
	Updated xchat to 1.6.2 [tron 2000-12-25]
	Updated php4 to 4.0.4 [jlam 2000-12-25]
	Updated ap-php4 to 4.0.4 [jlam 2000-12-25]
	Updated php4-gd to 4.0.4 [jlam 2000-12-25]
	Updated php4-imap to 4.0.4 [jlam 2000-12-25]
	Updated php4-pgsql to 4.0.4 [jlam 2000-12-25]
	Updated rtty to 3.2nb1 [bad 2000-12-26]
	Updated plex86 to 0.20001225 [tron 2000-12-25]
	Updated gimp to 1.2.0 [hubertf 2000-12-26]
	Added php4-mysql-4.0.4 [hubertf 2000-12-26]
	Updated libwww to 5.3.2 [fredb 2000-12-22]
	Updated qt2 to 2.2.3 [skrll 2000-12-26]
	Updated snort to 1.6.3.2 [rh 2000-12-27]
	Added unix2dos-1.2 [hubertf 2000-12-27]
	Added daemontools-0.70 [hubertf 2000-12-27]
	Added djbdns-1.02 [hubertf 2000-12-27]
	Added ucspi-tcp-0.88 [hubertf 2000-12-27]
	Added stlport-4.0 [jlam 2000-12-27]
	Updated gaim to 0.11.0pre4 [hubertf 2000-12-27]
	Updated jdbc-postgresql to 7.0.3 [jwise 2000-12-27]
	Updated ap-dtcl to 0.8.12 [jwise 2000-12-27]
	Added newsfetch-1.3 for poor man's news->mail gateway. 
		[hubertf 2000-12-27]
	Added xmp-2.0.2 to play soundtracker and other MOD files.
		[hubertf 2000-12-27]
	unproven-pthreads: added Alpha support by Olaf Seibert, posted
		on port-alpha some time ago. [wiz 2000-12-28]
	Added p5-XML-Node-0.10 [hubertf 2000-12-28]
	Updated checkbot to 1.62nb1 [abs 2000-12-28]
	Updated bluefish to 0.6 [wulf 2000-12-28]
	Added ups-nut-0.44.2 [martin 2000-12-28]
	Added ups-nut-cgi-0.44.2 [martin 2000-12-28]
	Updated lilypond to 1.3.119 [wiz 2000-12-28]
	Updated libtool to 1.3.5nb10 [wiz 2000-12-28]
	Update djbdns to 1.02nb2 [hubertf 2000-12-29]
	Deleted perl5-current, which was outdated by lang/perl5 for quite
		some time now [hubertf 2000-12-29]
	bsd.pkg.mk: Special handling of PLIST-mi/md.shared/md.static is
		gone [hubertf 2000-12-30]
	Updated epic4 to 0.9.15 plus enabled IPv6 [hubertf 2000-12-30]
	Updated scheme48 to 0.53 [itojun 2000-12-30]
	Updated gb to 0.0.17 [rh 2000-12-30]
	Updated gnumeric to 0.61 [rh 2000-12-30]
	Added sslwrap-206 [rh 2000-12-30]
	Updated netris to 0.5nb1 for IPv6 support [hubertf 2000-12-31]
	Updated ircII to 20001231 [mrg 2000-12-31]
	Updated gal to 0.4.1 [rh 2000-12-31]
	Updated oaf to 0.6.1 [rh 2000-12-31]
	Updated ORBit to 0.5.6 [rh 2000-12-31]
	Updated bonobo to 0.30 [rh 2000-12-31]
	Updated gtkhtml to 0.8 [rh 2000-12-31]
	Updated gmp to 3.3.1 [skrll 2000-12-31]
	Updated fvwm2 to 2.2.4 [veego 2000-12-31]
	Updated xpmroot to 2.2.4 [veego 2000-12-31]