summaryrefslogtreecommitdiffstats
path: root/ChangeLog.txt
blob: 473e36a30c1f9aa881e74441deb428375fb8183f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
Mon May 17 03:53:46 UTC 2010
Well folks, this is likely to be the last update for our 13.0 repository,
  assuming nothing important comes up.  We'll be trying to get everything
  in order for 13.1 now, so stay tuned for more information!  As always,
  thanks to all of our maintainers and users for everything you do.
academic/mathomatic: Updated for version 15.0.8.
academic/rkward: Updated for version 0.5.3.
academic/sword: Updated for version 1.6.1.
academic/sympy: Updated for version 0.6.7.
  Thanks to the new maintainer, João Felipe Santo.
academic/wxMaxima: Updated for version 0.8.5.
audio/cmus: Updated for version 2.3.2.
audio/ncmpcpp: Updated for version 0.5.3.
audio/rosegarden: Updated for version 10.04.1.
desktop/gtk-engines: Updated for version 2.20.1.
desktop/scrotwm: Updated for version 0.9.23.
desktop/xmobar: Added (status bar for xmonad wm).
  Thanks to Andy Bailey.
development/Pygments: Updated for version 1.3.1.
  Thanks to the new maintainer, LukenShiro.
development/apache-ant: Updated for version 1.8.1.
development/bakefile: Added (a makefile generator).
  Thanks to Luis Henrique.
development/cvsd: Added (wrapper for cvs in pserver mode).
  Thanks to Zordrak.
development/eclipse: Updated for version 3.5.2.
development/perl-xml-twig: Added (renamed from 'xml-twig') and updated 
  for version 3.34.  Thanks to Heinz Wiesinger. 
development/pip: Updated for version 0.7.1.
development/squirrel-sql: Added (universal database client in java).
  Thanks to Dario Nicodemi.
development/xdebug: Added (PHP extension for debugging PHP scripts).
  Thanks to Antonio Hernández Blas.
development/xml-twig: Removed (renamed to perl-xml-twig).
games/lincity-ng: Added (SDL city simulation game).
  Thanks to M.Dinslage.
games/warzone2100: Updated for version 2.3.0.
graphics/FreeCAD: Added (a 3D CAD modeler).
  Thanks to Niels Horn.
graphics/OpenCASCADE: Added (SDP for 3D modeling and such).
  Thanks to Niels Horn.
graphics/brlcad: Added (open source solid modeling system).
  Thanks to Niels Horn.
libraries/Mako: Updated for version 0.3.2.
libraries/dietlibc: Added (small libc implementation).
  Thanks to Markus Reichelt.
libraries/haskell-X11-xft: Added (XFT bindings for Haskell).
  Thanks to Andy Bailey.
libraries/haskell-hinotify: Added (inotify support for haskell).
  Thanks to Andy Bailey.
libraries/libcli: Added (a Cisco-like command-line interface library).
  Thanks to Heinz Wiesinger.
libraries/libcsv: Added (a small/simple/fast CSV library).
  Thanks to Tarantino Antonino.
libraries/libetpan: Updated for version 1.0.
libraries/libnice: Updated for version 0.0.11.
libraries/libquicktime: Updated for version 1.1.5.
libraries/python-dateutil: Updated for version 1.5.
libraries/python-distutils-extra: Updated for version 2.18.
misc/merkaartor: Enabled translations (and other minor fixes).
  Thanks to Manuel Reimer.
misc/nfoview: Added (viewer for NFO files).
  Thanks to Erik Hanson.
network/claws-mail: Updated for version 3.7.6.
network/claws-mail-extra-plugins: Updated for version 3.7.6.
network/dovecot-cmusieve: Updated for version 1.1.8.
network/efax-gtk: Updated for version 3.2.2.
network/google-chrome: Updated for version 5.0.375.23.
network/hiawatha: Updated for version 7.2.
network/iscsitarget: Updated for version 1.4.19.
network/maildrop: Added (a mail filtering agent).
  Thanks to Šime Ramo.
network/mz: Updated for version 0.39.
network/policyd2: Added (policy server for MTAs).
  Thanks to Nishant Limbachia.
network/vde2: Added - VDE is an ethernet compliant virtual network.
  Thanks to Antonio Hernández Blas.
network/vidalia: Updated for version 0.2.8.
network/weechat: Added (a curses-based IRC client).
  Thanks to Coredumb.
network/wol: Updated for version 0.7.1.
network/xtables-addons: Updated for version 1.26
office/adobe-reader: Updated for version 9.3.2.
office/scribus: Updated for version 1.3.6.
system/apache-tomcat: Added - Java Servlet / JavaServer Pages implementation.
  Thanks to Heinz Wiesinger.
system/atool: Added (an archive manager script).
  Thanks to David Woodfall.
system/commons-daemon: Updated for version 1.0.2.
system/fslint: Updated for version 2.42.
system/makepassword: Added (pseudorandom password generator).
  Thanks to Pablo Santamaria.
system/mucommander: Added (a light cross-platform file manager).
  Thanks to Dario Nicodemi.
system/pyserial: Added - this is a python module for serial port access.
  Thanks to Grissiom.
system/ranger: Added - ranger is an ncurses file manager with support for
  vi keybindings.  Thanks to David Woodfall.
system/sqlite2: Added - sqlite version 2, which is able to be installed
  alongside sqlite version 3 in Slackware.
  Thanks to V'yacheslav Stetskevych.
system/terminus-font: Updated for version 4.30.
system/zeroinstall-injector: Updated for version 0.47.
+--------------------------+
Wed Apr 28 04:06:17 UTC 2010
accessibility/espeak: Build bump, fix phoneme data permissions.
  Thanks to B. Watson.
business/gnucash: Fixed a minor typo in README.
desktop/grun: Added - gRun is a GTK based Run dialog that closely resembles
  the Windows Run dialog, just like xexec.  Thanks to David Woodfall.
desktop/kanyremote: Added - kanyremote is a KDE GUI frontend for anyRemote.
  Thanks to otzy_007.
desktop/scrotwm: Added - scrotwm is a small dynamic tiling window manager.
  Thanks to Daniel LEVAI.
desktop/xfce4-systemload-plugin: Fixes for bash4.
desktop/xfswitch-plugin: Fixes for bash4.
development/ming: Updated for version 0.4.3.
development/qjson: Added - QJson is a qt-based library that maps JSON data
  to QVariant objects.  Thanks to "otzy_007".
games/brainparty: Updated for version 0.61.
graphics/rawstudio: Build bump, script cleanup.
graphics/VariCAD: Added - VariCAD is a 3D/2D CAD system for mechanical
  engineering.  Thanks to Niels Horn.
graphics/viewnior: Added - Viewnior is an image viewer program. Created to
  be simple, fast and elegant.  Thanks to Šime Ramov.
libraries/lame: Fixed md5sum in the .info file.
libraries/libcue: Added - libcue is a CUE Sheet Parser Library.
  Thanks to Erik Hanson.
libraries/libdbi-drivers: Fixed a spelling error in README.
libraries/libdynamite: Added - libdynamite is a cab extractor.
  Thanks to David Somero.
libraries/libkate: Build bump, script cleanup.
libraries/libmemcached: Updated for version 0.40.
libraries/perl-BerkeleyDB: Updated for version 0.42.
libraries/perl-Cache-FastMmap: Added - perl-Cache-FastMmap is the
  Cache::FastMmap perl module.  Thanks to Nishant Limbachia.
libraries/perl-Config-IniFiles: Added - perl-Config-IniFiles is the
  Config::IniFiles perl module.  Thanks to Nishant Limbachia.
libraries/perl-Crypt-OpenSSL-RSA: Updated for version 0.26.
libraries/perl-Test-Exception: Updated for version 0.29.
libraries/perl-Test-Pod: Updated for version 1.43.
misc/ibus: Updated for version 1.3.1.
misc/ibus-anthy: Updated for version 1.2.1.
misc/merkaartor: Added - Merkaartor is an openstreetmap mapping program.
  Thanks to "otzy_007".
multimedia/dirac: Build bump, script cleanup.
multimedia/ffmpeg2theora: Build bump, script cleanup.
multimedia/gpac: Build bump, script cleanup.
multimedia/kdenlive: Updated for version 0.7.7.1.
multimedia/mlt: Updated for version 0.5.4.
multimedia/vobcopy: Build bump, script cleanup.
multimedia/xvst: Updated for version 2.3.5.
network/amavisd-new: Cleaned up build.
network/cgterm: Added - cgterm is a C/G telnet & 64CHAT client.
  Thanks to Marcel Saegebarth.
network/perl-Mail-DKIM: Updated for version 0.38.
network/perl-MailTools: Updated for version 2.06.
network/perl-MIME-tools: Updated for version 5.428.
network/perl-Net-CIDR: Added - perl-Net-CIDR is the Net::CIDR  perl module.
  Thanks to Nishant Limbachia.
network/pflogsumm: Updated for version 1.1.3.
network/ttcp: Updated download link.
network/udpcast: Updated for version 20100130.
office/auctex: Updated for version 11.86.
office/gocr: Build bump, script cleanup.
office/texworks: Added - texworks is a TeX editor.  Thanks to digwtx.
system/clamsmtp: Build bump, script cleanup.
system/ddrescue: Updated for version 1.12.
system/mcrypt: Build bump, script cleanup.
system/partitionmanager: Updated for version 1.0.2.
system/rxvt-unicode: Updated for version 9.07.
  Thanks to new maintainer Daniel LEVAI.
system/xosd: Updated for version 2.2.14.
+--------------------------+
Thu Apr 22 03:31:59 UTC 2010
academic/R: Fixes for bash4.
academic/octave-forge: Updated for bundle-20090607.
audio/celt: Added - celt is a low delay audio codec.
  Thanks to Heinz Wiesinger.
audio/gmpc: Updated for version 0.20.0.
audio/gmpc-plugins: Updated for version 0.20.0.
audio/moc: Updated for version 2.5.0_alpha4.
audio/mpd: Updated for version 0.15.9.
audio/musepack-tools: Added - musepack-tools provides Musepack SV8 command
  line tools.  Thanks to Šime Ramov.
business/AssociationSubscribersManager: Updated for version 3.2.0.
business/lemonpos: Added - lemonpos is a Point-Of-Sale finance application.
  Thanks to Vincent Batts.
business/skrooge: Updated for version 0.7.0.
desktop/QtCurve-Gtk2: Updated for version 1.3.0.
desktop/QtCurve-KDE4: Updated for version 1.3.1.
desktop/cwp: Updated for version 1.0.1.
desktop/dekorator: Added - deKorator is a themable window decorator.
  Thanks to mario.
desktop/gtk-kde4: Added - Qt and GTK+ appearance in KDE4.
  Thanks to mario.
desktop/openbox: Updated for version 3.4.11.
desktop/tint2: Updated for version 0.9.
development/Coin: Added - Coin is an Open Inventor API compatible library.
  Thanks to new maintainer Niels Horn.
development/Pivy: Added - Pivy is a Coin binding for Python.
  Thanks to new maintainer Niels Horn.
development/SoQt: Added - SoQt is Qt GUI bindings for Coin library.
  Thanks to new maintainer Niels Horn.
development/couchdb: Updated for version 0.11.0.
development/gob2: Updated for version 2.0.17.
development/gputils: Added - gputils is a collection of tools for the PIC
  microcontroller.  Thanks to GPLeo.
development/hexedit: Added - hexedit is a simple hex editor.
  Thanks to Luis Henrique.
development/ht: Added - ht is a hex editor and debugger.
  Thanks to Luís Henrique.
development/likepython: Added - likepython adds modern dialect support to
  Python.  Thanks to JK Wood.
development/mono: Updated for version 2.6.3.
development/orc: Updated for version 0.4.4.
development/pip: Updated for version 0.7.
development/polyml: Added - polyml is a full implementation of Standard ML.
  Thanks to Eugene Suter.
development/psycopg2: Updated for version 2.0.14.
development/tkcvs: Added - tkcvs is a Tcl/Tk Graphical Interface to CVS
  and Subversion.  Thanks to Ferenc Deak.
development/trac: Added - trac is a wiki and issue tracking system.
  Thanks to Eugene Suter.
development/vala: Updated for version 0.7.10.
development/yasm: Updated for version 1.0.0.
games/brainparty: Added - brainparty is a puzzle game.
  Thanks to Larry Hajali.
games/clonekeen: Added - clonekeen is a open source engine for Commander
  Keen.  Thanks to B. Watson.
games/fceux: Updated for version 2.1.3.
games/jfsw: Added - Shadow Warrior first-person shooter.
  Thanks to B. Watson.
games/jfsw_demo_data: Added - Shadow Warrior shareware data.
  Thanks to B. Watson.
games/jfsw_hires_pack: Added - Hi-res graphics for Shadow Warrior.
  Thanks to B. Watson.
games/mfe: Added - mfe is a front-end for mednafen.
  Thanks to Luis Henrique.
games/micropolis: Updated for version 20100418.
games/mupen64plus: Updated build with patch for gcc 4.4.
games/nexuiz: Updated for version 2.5.2.
games/openarena: Updated for version 0.8.5.
games/openttd: Updated for version 1.0.0. Can now use open source graphics,
  sounds, and music.  Thanks to Chess Griffin.
games/rejoystick: Added - rejoystick translates joystick keypresses to
  keyboard.  Thanks to Steven Pledger.
games/rott: Added - Rise of the Triad, first person shooter game.
  Thanks to B. Watson.
games/wesnoth: Updated for version 1.8.
games/xroar: Added - xroar is a Dragon emulator.  Thanks to B. Watson.
graphics/LDraw_data: Updated for version 201001.
graphics/fotoxx: Added - fotoxx is a photo editing and collection management
  application.  Thanks to Robby Workman.
graphics/gimp-deskew-plugin: Added - gimp-deskew-plugin is a gimp plugin to
  adjust skew.  Thanks to Pierre Cazenave.
graphics/gimp-registry-plugins: Updated for version 0.0.2.
graphics/graphviz: Updated for version 2.26.3.
graphics/leocad_pieces: Updated for version 3506.
graphics/resynthesizer: Added - resynthesizer is a Gimp plug-in for texture
  synthesis.  Thanks to Pierre Cazenave.
graphics/scantailor: Added - Scan Tailor is an interactive post-processing
  tool for scanned pages.  Thanks to Zhischenko Sergey.
graphics/ufraw: Updated for version 0.17.
libraries/configobj: Added - the python configobj module.
  Thanks to Luis Henrique.
libraries/dnspython: Updated for version 1.8.0.
libraries/foolscap: Added - foolscap is a RPC protocol for Python+Twisted.
  Thanks to Marco Bonetti.
libraries/genshi: Added - genshi is a Python toolkit for generation of
  output for the web.  Thanks to Eugene Suter.
libraries/hdf5: Updated for version 1.8.4_patch1.
libraries/libcuefile: Added - libcuefile is a CUE File library.
  Thanks to Šime Ramov.
libraries/libev: Added - libev is a high-performance event loop/model library.
  Thanks to Šime Ramov.
libraries/libffado: Added - libffado is a free firewire driver implemenation.
  Thanks to Heinz Wiesinger.
libraries/libiptcdata: Build bump, script cleanup.
libraries/libjpeg-turbo: Added - libjpeg-turbo is a accelerated version of
  libjpeg.  Thanks to V'yacheslav Stetskevych.
libraries/libmemcached: Updated for version 0.39.
libraries/libmicrohttpd: Added - libmicrohttpd is a small HTTP server C
  library.  Thanks to Marco Bonetti.
libraries/libmpd: Updated for version 0.20.0.
libraries/libreplaygain: Added - libreplaygain is a Musepack ReplayGain
  library.  Thanks to Šime Ramov.
libraries/opal: Updated for version 3.6.7.
libraries/perl-Net-Telnet: Added - perl-Net-Telnet interacts with TELNET
  or TCP ports.  Thanks to Marco Bonetti.
libraries/perl-Text-Autoformat: Added - perl-Text-Autoformat is a automatic
  text wrapping and reformatting module.  Thanks to Šime Ramov.
libraries/perl-Text-Reform: Added - perl-Text-Reform is a Manual text
  wrapping and reformatting module.  Thanks to Šime Ramov.
libraries/pycryptopp: Added - Python wrappers for Crypto++.
  Thanks to Marco Bonetti.
libraries/pygtksourceview: Updated for version 2.68.0.
libraries/pyutil: Added - pyutil is Python utilities.
  Thanks to Marco Bonetti.
libraries/pyquery: Added - pyquery is a jquery-like library for python.
  Thanks to Šime Ramov.
libraries/reportlab: Updated for version 2.4.
libraries/slib: Updated to fix guile slibcat issue.
libraries/tolua++: Added - tolua++ is a tool to integrate C/C++ code with
  Lua.  Thanks to Larry Hajali.
libraries/wxPython: Build bump, added patches for newer glib and libpng.
  Thanks to Heinz Wiesinger.
libraries/zbase32: Added - zbase32 is a Python base32 encoder/decoder.
  Thanks to Marco Bonetti.
libraries/zfec: Added - zfec is a fast erasure codec.
  Thanks to Marco Bonetti.
misc/conkyforecast: Added - conkyforecast is a weather plugin for conky.
  Thanks to M.Dinslage.
misc/fribid: Added - fribid is a program for handling e-legitimation with
  BankID.  Thanks to Niklas 'Nille' Åkerström.
misc/gramps: Updated for version 3.2.0.
multimedia/DivFix++: Added - DivFix++ repairs broken AVI file streams by
  rebuilding index part of the file.  Thanks to Roberto Metere.
multimedia/anyremote: Added - anyremote is a remote control service.
  Thanks to otzy_007.
multimedia/audacious-crossfade: Added - Audacious Crossfade plugin.
  Thanks to Luis Henrique.
multimedia/dssi: Build bump, added profile.d scripts.
  Thanks to Heinz Wiesinger.
multimedia/ffmpeg: Updated for version 0.5.1.
multimedia/llcon: Updated for version 3.1.0.
multimedia/loopy: Updated for version 0.5.1.
multimedia/schroedinger: Script cleanup, BUILD=2. Thanks to Nishant Limbachia.
multimedia/tovid: Added - tovid is a collection of GPL video disc authoring
  tools.  Thanks to "eviljames".
multimedia/vcdimager: Fixed typo in man section, BUILD=2.
multimedia/x264: Updated for snapshot 20100327-2245.
multimedia/xmms-crossfade: Added - XMMS Crossfade plugin.
  Thanks to Luis Henrique.
multimedia/xvidcore: Updated for version 1.2.2.
network/LimeWire: Updated for version 5.5.8.
network/allmydata-tahoe: Added - Tahoe-LAFS is a secure, decentralized,
  data store.  Thanks to Marco Bonetti.
network/aria2: Updated for version 1.9.1.
network/bitlbee: Updated for version 1.2.5.
network/ekiga: Updated for version 3.2.6.
network/etherape: Added - etherape is a graphical network monitor.
  Thanks to Chris Abela.
network/google-chrome: Updated for version 5.0.371.0.
network/greenbone-security-assistant: Added - greenbone-security-assistant
  is a web interface for OpenVAS.  Thanks to Marco Bonetti.
network/heimdal: Updated for version 1.3.2.
network/imapfilter: Added - imapfilter is a mail filtering utility.
  Thanks to Šime Ramov.
network/krb5: Updated for version 1.7.1.
network/openvas-administrator: Added - openvas-administrator User, Feed,
  and Settings Management.  Thanks to Marco Bonetti.
network/openvas-libraries: Updated for version 3.0.4.
network/openvas-manager: Added - OpenVAS manager organizes scans.
  Thanks to Marco Bonetti.
network/openvas-scanner: Updated build with new config file.
network/phpmyadmin: Updated for version 3.3.2.
network/rtorrent: Updated buildscript to include an rtorrent.rc example.
  Thanks to Brian Kysela.
network/shorewall6: Updated for version 4.4.8.1.
network/shorewall: Updated for version 4.4.8.1.
network/smb4k: Updated for version 0.10.7.
network/sylpheed: Updated for version 3.0.2.
network/transmission: Updated for version 1.92.
network/vidalia: Updated for version 0.2.7.
network/xl2tpd: Added - xl2tpd is a L2TP daemon.  Thanks to gshep.
network/youtube-dl: Updated for version 2010.04.04.
network/zabbix_agentd: Updated for version 1.8.2.
network/zabbix_server: Updated for version 1.8.2.
office/abiword: Updated for version 2.8.4.
office/adobe-reader-fontpacks: Added - Asian and Extended Fonts Packs
  for Adobe Reader.  Thanks to Gregory J.L. Tourte.
office/org-mode: Updated for version 6.35g.
office/texmaker: Updated for version 1.9.9.
system/acpi: Updated for version 1.5.
system/bacula-client: Added - Managed backup and recovery client only.
  Thanks to mario.
system/bacula: Added - Managed backup and recovery.  Thanks to mario.
system/cbmfs: Added - cbmfs is a fuse filesystem for Commodore disk images.
  Thanks to Marcel Saegebarth.
system/ccrypt: Build bump, script cleanup.
system/clusterglue: Added - clusterglue is the heart of the Heartbeat /
  OpenAIS / Corosync / Pacemaker application stack.  Thanks to Zordrak.
system/clusterresourceagents: Added - clusterresourceagents is the OCF
  Resource Agents for HA-Linux.  Thanks to Zordrak.
system/conky: Updated for version 1.8.0.
system/corosync: Added - corosync is a Cluster plug-in engine for 3rd
  party cluster services.  Thanks to Zordrak.
system/dar: Updated for version 2.3.10.
system/emelfm2: Updated for version 0.7.2.
system/halevt: Updated for version 0.1.6.1.
system/ksh: Added - ksh is OpenBSD ksh ported to Linux.
  Thanks to Daniel LEVAI.
system/luckybackup: Updated for version 0.3.5.
system/mlterm: Updated for version 3.0.0.
system/openais: Added - OpenAIS Standards Based Cluster Framework.
  Thanks to Zordrak.
system/openct: Updated for version 0.6.20.
system/opensc: Updated for version 0.11.13.
system/pacemaker: Added - pacemaker is a cluster resource manager.
  Thanks to Zordrak.
system/picocom: Added - picocom is a minimal dumb-terminal emulator.
  Thanks to Asaf Ohaion.
system/pbzip2: Updated for version 1.1.1.
system/safecopy: Build bump, script cleanup.
system/sleuthkit: Updated for version 3.1.1.
system/terminator: Added - terminator ia a useful tool for arranging
  terminals.  Thanks to Alan Alberghini.
system/tokyocabinet: Updated for version 1.4.43.
system/tokyotyrant: Updated for version 1.1.40.
system/ufiformat: Added - ufiformat is a formatting utility for USB
  floppy drives.  Thanks to Ben Collver.
+--------------------------+
Sat Apr 10 06:55:57 UTC 2010
academic/GMT: Updated for version 4.5.2.
academic/octave: Updated for version 3.2.4.
academic/xephem: Added - Xephem is an astronomy program.
  Thanks to Dario Nicodemi.
audio/fluidsynth: Updated for version 1.1.1.
audio/jack-audio-connection-kit: Updated for version 0.118.0.
desktop/dmenu: Fixes for bash4.
desktop/xtrascreenhacks: Added - this is a small collection of display modes
  that are based on and intended to be run with XScreensaver.
development/eric: Updated for version 4.4.3.
development/kdesvn: Updated for version 1.5.2.
development/ldns: Added - ldns is a DNS toolkit.  Thanks to Andy Bailey.
development/p4v: The Perforce Visual Client, provides quick and easy
  access to versioned files through a graphical interface.
  Thanks to Andy Bailey.
development/qt-doc: Updated download link.
games/freedroidrpg: Added - this is a sci-fi isometric role playing game.
  Thanks to JK Wood.
games/gl-117: Added - gl-117 is an action flight simulator.
  Thanks to Dario Nicodemi.
games/glbsp: Added - glBSP is a node builder specially designed for OpenGL
  ports of the DOOM game engine.  Thanks to B. Watson.
games/oblige: Added - OBLIGE is a random level generator for various classic
  games.  Thanks to B. Watson.
graphics/dcraw: Updated for version 8.99.
graphics/fig2sxd: Added - fig2sxd converts images in fig format (used by
  XFig) to OpenOffice.org Draw format.  Thanks to Dario Nicodemi.
graphics/goocanvas: Updated for bash4.
graphics/tgif-QPL: Added - Tgif is an interactive 2-D drawing facility.
  Thanks to Dario Nicodemi.
libraries/Nevow: Added - Nevow is a web application construction kit written
  in Python.  Thanks to Marco Bonetti.
libraries/argparse: Added - the argparse python module provides an easy
  declarative interface for creating command line tools.
  Thanks to Marco Bonetti.
libraries/atlas: Added - ATLAS is Automatically Tuned Linear Algebra Software.
  Thanks to Serban Udrea.
libraries/darcsver: Added - generates a version number from darcs history.
  Thanks to Marco Bonetti.
libraries/fltk: Fixed download link.
libraries/fltk2: Fixed download link.
libraries/frei0r: Updated for latest version.
libraries/gdata: Updated for version 2.0.9.
libraries/gtksourceview: Updated for version 2.8.2.
libraries/libssh: Updated for version 0.4.2.
libraries/libvdpau: Updated for version 0.4.
libraries/lxml: Updated for version 2.2.6.
libraries/perl-Magick: Added - perl-Magick is a perl interface to ImageMagick.
  Thanks to Mikhail Cuddy.
libraries/ptlib: Updated for version 2.6.6.
libraries/pygoocanvas: Updated for bash4.
libraries/rrdtool: Updated for version 1.4.3.
libraries/wxGTK: Updated for version 2.8.10.
libraries/yaz: Updated for version 4.0.2.
misc/hunspell: Updated for version 1.2.9.
misc/openssl-certs: Added - openssl-certs are certificates for those
  SSL-based programs that need them.  Thanks to David Woodfall.  --michiel
misc/recode: Updated download link.
multimedia/tvtime: Updated build with glibc patch.
network/amavisd-new: Added - amavisd-new is an interface between
  message transfer agent (MTA) and one or more content checkers.
  Thanks to Nishant Limbachia.
network/exim: Added - exim is a sendmail replacement.  Thanks to Thomas Morper.
network/exim-html: Added - html docs for exim.  Thanks to Thomas Morper.
network/msmtp: Updated for version 1.4.20.
network/spamassasin: Updated for version 3.3.1. Thanks to LukenShiro.
network/sylpheed: Updated build and added license.
network/ttcp: Added - TTCP is a benchmarking tool for determining TCP and UDP
  performance between 2 systems.  Thanks to Dario Nicodemi.
network/wireshark: Updated for version 1.2.7.
office/hevea: Added - hevea is a LaTeX to HTML translator.
  Thanks to Dario Nicodemi.
office/html2ps: Added - html2ps converts HTML pages to PostScript documents.
  Thanks to Dario Nicodemi.
system/fpm2: Updated for version 0.78.
system/kvm-kmod: Updated for version 2.6.33.1.
system/MySQL-Sandbox: Added - MySQL-Sandbox is a tool that installs one or
  more MySQL servers within seconds, easily, securely, and with full control.
  Thanks to Dhaby Xiloj.
system/multitail: Updated for version 5.2.6.
system/nvidia-driver: Updated for version 195.36.15.
system/nvidia-kernel: Updated for version 195.36.15.
system/nvidia-legacy173-driver: Updated for version 173.14.25.
system/nvidia-legacy173-kernel: Updated for version 173.14.25.
system/nvidia-legacy96-driver: Updated for version 96.43.16.
system/nvidia-legacy96-kernel: Updated for version 96.43.16.
system/postgresql: Set default permissions on rc.postgresql to 0755; note
  that this will not affect permissions if there's an existing rc script
  on the system already.  Thanks to Don Allen for the problem report.
system/qemu-kvm: Updated for version 0.12.3.
system/regionset: Added - regionset is a tool for setting the region code
  in dvd drives.  Thanks to David Woodfall.
system/roxterm: Updated for version 1.18.1.
system/xjobs: Updated for version 20100311.
system/zeroinstall-injector: Updated for version 0.46.
+--------------------------+
Wed Apr  7 04:46:47 UTC 2010
audio/clementine: Added. Clementine is a port of Amarok 1.4, with some
  features rewritten to take advantage of Qt4.
  Thanks to David Woodfall.
development/valgrind: Added patch for newer glibc versions.
  Thanks to Peter Wang.
development/valkyrie: Added - this is a gui frontend for valgrind.
  Thanks to Andy Bailey.
libraries/fftw: Updated for version 3.2.2.
libraries/lame: Updated for version 3.98.4.
libraries/unixODBC: Added.  unixODBC is an ODBC library for Unix platforms.
  Thanks to Henrique Grolli Bassotto.
multimedia/kaffeine: Updated for version 1.0_pre3.
network/aria2: Minor build fix related to bash4.  No BUILD bump.
network/shorewall: Updated for version 4.4.8.
network/shorewall6: Updated for version 4.4.8.
office/fbreader: Updated for version 0.12.9.
system/gparted: Updated for version 0.5.2.
system/oss: Added.  The Open Sound System is a set of sound drivers that
  serve as an alternative to the usual ALSA architecture.
  Thanks to Dugan Chen.
system/virtualbox-ose: Updated for version 3.1.6.
system/virtualbox-ose-addons: Updated for version 3.1.6.
system/virtualbox-kernel: Updated for version 3.1.6.
system/virtualbox-kernel-addons: Updated for version 3.1.6.
+--------------------------+
Wed Mar 24 02:39:51 UTC 2010
academic/qhull: Updated for version 2010.1.
desktop/QtCurve-Gtk2: Updated for version 1.2.0.
desktop/QtCurve-KDE4: Updated for version 1.2.0.
desktop/wally: Updated for version 2.3.2.
development/bluefish: Updated for version 2.0.0.
libraries/libass: Updated for version 0.9.9.
libraries/libimobiledevice: Added. Renamed from libiphone.
libraries/libiphone: Removed. Renamed to libimobiledevice.
libraries/libplist: Updated for version 1.2.
libraries/pthsem: Updated for version 2.0.8.
libraries/simplejson: Updated for version 2.1.0.
misc/ibus: Updated for version 1.3.0.
multimedia/mlt: Updated for version 0.5.2.
multimedia/openshot: Updated for version 1.1.1.
multimedia/schroedinger: Updated for version 1.0.9.
network/aria2: Updated for version 1.9.0.
network/phpmyadmin: Updated for version 3.3.1.
network/sylpheed: Updated for version 3.0.1.
network/youtube-dl: Updated for version 2010.03.13.
office/fbreader: Updated for version 0.12.7.
system/drbd: Removed.  Replaced with drbd-{kernel,tools}.
system/drbd-kernel: Added (split from drbd).
system/drbd-tools: Added (split from drbd).
system/ifuse: Updated for version 0.9.7.
system/rar: Updated for version 3.9.3.
system/usbmuxd: Updated for version 1.0.2.
+--------------------------+
Mon Mar 22 03:58:19 UTC 2010
misc/funny-manpages: Remove source tarball from our repo.
misc/xdelta: Added.  Xdelta is a binary patch creation tool.
  Thanks to Dario Nicodemi.
network/tor: Version bump.   Thanks to Marco Bonetti.
office/pstotext: Removed source tarball from our repo.
system/pbzip2: Version bump.
system/usb_modeswitch: Version bump.  Thanks to David Somero.
system/zeroinstall-injector: Version bump.
+--------------------------+
Sun Mar 21 18:47:33 UTC 2010
development/scite: Build fixes for bash4.
  Thanks to Iskar Enev.
graphics/inkscape: Added a patch for new poppler API.
libraries/fox-toolkit: Build fixes and script cleanup.
libraries/python-twitter: Added. This provides a pure python interface for
  the Twitter API.  Thanks to Steven Pledger.
multimedia/gst-gnome-vfs: Fixed DOWNLOAD link in the .info file.
network/pidgin-facebookchat: Version bump.
network/python-twisted: Add zope.interface as runtime dep.
office/osmo: libsyncml build fixes and fixed the homepage url in the
  slack-desc and .info files.  Thanks to Pablo Santamaria.
system/hercules: Fixed up the .info file with correct VERSION.
+--------------------------+
Sun Mar 21 06:19:13 UTC 2010
academic/xcircuit: Updated for version 3.7.6.
accessibility/espeak: Added - eSpeak is a compact open source
  software speech synthesizer for English and other languages.
  Thanks to B. Watson.
audio/gtkpod: Build bump, included patch for libmp4v2-1.9.1.
  Thanks to the new maintainer Vincent Batts.
audio/hydrogen: Build bump, added doinst.sh.
audio/portmidi: Updated for version 200.
audio/sfarkxtc: Added - sfarkxtc is a console utility to extract
  sfark files on Linux.  Thanks to Ben Collver.
audio/shell-fm: Added - shell-fm is a lightweight, console-based
  player for Last.FM radio streams.  Thanks to David Woodfall.
audio/xforge: Added - Xforge is a graphical wave editor for UNIX
  systems with X11 and Motif.  Thanks to David Woodfall.
audio/xmms2: Updated for version 0.7DrNo.
business/AssociationSubscribersManager: Updated for version 3.1.
business/skrooge: Updated for version 0.6.0.
desktop/QtCurve-Gtk2: Updated for version 1.1.1.
desktop/QtCurve-KDE4: Updated for version 1.1.2.
desktop/bashrun: Added - Bashrun provides a powerful application
  launcher by running a specialized bash session in a small terminal
  window.  Thanks to Mikko Varri.
desktop/cwp: Updated for version 1.0.0.
desktop/dzen2: Added - Dzen is a general purpose messaging,
  notification, and menuing application.  Thanks to Mikko Varri.
desktop/google-gadgets-for-linux: Updated for version 0.11.2.
  Thanks to new maintainer Heinz Wiesinger.
desktop/q4wine: Updated for version 0.114-r1.
desktop/redshift: Added - Redshift adjusts the colour temperature of
  your screen according to your surroundings.
  Thanks to David Matthew Jerry Koenig.
desktop/xonclock: Added - xonclock is X on-screen analog clock
  displayer with assignable skins.  Thanks to David Woodfall.
development/acpica: Updated for version 20100304.
development/apache-ivy: Updated for version 2.1.0.
  Moved from Libraries.
development/bsdiff: Added - bsdiff and bspatch are tools for building
  and applying patches to binary files.  Thanks to Marco Bonetti.
development/cgdb: Updated for version 0.6.5.
development/cppcheck: Updated for version 1.40.
development/netbeans: Updated for version 6.8.
development/numpy: Downgraded to version 1.3.0. As discussed on the
  mailing list (this thread: http://bit.ly/cSQPoJ), version 1.4.0 was
  released and then pulled.  Thanks to Aleksandar Samardzic.
development/orc: Added - The Oil Runtime Compiler.
  Thanks to M.Dinslage.
development/scite: Updated for version 2.03.
games/FlightGear: Added - FlightGear is an open-source flight simulator
  project.  Thanks to Diego Pantano.
games/FlightGear-data: Added - data for the FlightGear simulator.
  Thanks to Diego Pantano.
games/blobwars: Updated for version 1.16.
games/fgrun: Added - Fgrun is a graphical front-end for FlightGear.
  Thanks to Diego Pantano.
games/freeciv: Updated for version 2.2.0.
games/snes9x: Added - Snes9x is a portable, freeware Super Nintendo
  Entertainment System (SNES) emulator. This replaces snes9x_gtk.
  Thanks to B. Watson.
games/snes9x_gtk: Removed - the GTK+ port code was folded into snes9x.
games/starfigter: Build bump, removed the references to starfighter music
  download as it is not needed.  Thanks to Tim Dickson.
graphics/geeqie: Updated for version 1.0.
libraries/Archive-Zip: Removed. See perl-Archive-Zip.
libraries/BeautifulSoup: Build bump, changed download location and md5sum.
libraries/SimGear: Added - SimGear is a set of open-source 3d simulation
  libraries.  Thanks to Diego Pantano.
libraries/apache-ivy: Moved to Development.
libraries/boolstuff: Updated for version 0.1.13.
libraries/gobject-introspection: Updated for version 0.6.7.
libraries/libfwbuilder: Updated for version 3.0.7.
libraries/libisoburn: Updated for version 0.5.0.
libraries/libtorrent: Updated for version 0.12.6.
libraries/lxml: Updated for version 2.2.5.
libraries/perl-Archive-Zip: Updated for version 1.31_01.
libraries/perl-Parse-RecDescent: Updated for version 1.963.
libraries/perl-Tie-IxHash: Updated for version 1.22.
misc/ibus-anthy: Updated for version 1.2.0.20100115.
multimedia/flash-player-standalone: Updated for version 10.0.45.2.
multimedia/loopy: Added - Loopy is a simple video player for KDE,
  based on the phonon libraries.  Thanks to Larry Hajali.
multimedia/mkvtoolnix: Updated for version 3.2.0.
multimedia/schroedinger: Updated for version 1.0.8.
multimedia/stills2dv: Added - stills2dv is an open source solution to
  make a movie out of still pictures.  Thanks to Pedro Mendes.
multimedia/xvst: Updated for version 2.3.4.
network/RSSOwl: Updated for version 2.0.4.
  Thanks to Erik Hanson.  --michiel
network/amsn: Updated for version 0.98.3.
network/dansguardian: Updated for version 2.10.1.1.
network/fqterm: Updated for version 0.9.6.8.
network/fwbuilder: Updated for version 3.0.7.
network/gajim: Updated for version 0.13.3.
network/google-chrome: Updated for version 5.0.342.1.
network/hylafax: Updated for version 6.0.4.
network/konversation: Updated for version 1.2.3.
network/lighttpd: Updated for version 1.4.26.
network/nagios: Updated for version 3.2.1.
network/phpmyadmin: Updated for version 3.3.0.
network/plowshare: Added - Plowshare is a command-line downloader and
  uploader for some of the most popular file-sharing websites.
  Thanks to Mikhail Cuddy.
network/qbittorrent: Updated for version 2.1.5.
network/r2e: Updated for version 2.66.
network/rtorrent: Updated for version 0.8.6.
network/smb4k: Updated for version 0.10.5.
network/sqlmap: Updated for version 0.8.
network/squid: Updated for version 3.0.STABLE24.
network/sylpheed: Updated for version 3.0.0.
network/transmission: Updated for version 1.91.
network/uget: Updated for version 1.5.0.2.
network/verlihub: Added - Verlihub is a Direct Connect protocol server.
  Thanks to "mario".
network/youtube-dl: Updated for version 2010.02.13.
network/znc: Updated for version 0.076.
office/adobe-reader: Updated for version 9.3.
office/aiksaurus: Build bump, Added .desktop file and icon for gtk frontend.
  Thanks to David Woodfall.
office/fbreader: Updated for version 0.12.5.1.
office/tellico: Updated for version 2.2.
office/texlive: Included epstopdf in the package (this is part of tetex, so we
  need to include it in the texlive package).  This also includes a patch to
  build against the libpng on -current, but you'll need to uncomment the patch
  line in the build script.  Thanks to Mikhail Zotov for the patch.  --rworkman
system/daa2iso: Updated for version 0.1.7e.
system/davfs2: Build bump, fixed location of symlinks. Thanks to Chris Abela.
system/fbterm: Updated for version 1.6.
system/fsarchiver: Updated for version 0.6.7.
system/graveman: Changed maintainer, and included patch to fix
  sox compatiblities. Thanks to Keith Richie.  --michiel
system/gxemul: Updated for version 0.6.0.
system/hercules: Updated for version 3.07.
system/imwheel: Build bump, fixed broken ETCDIR so it now points to $PKG/etc,
  Added patch to disable the auto configuration window that interfered with
  workspace switching in fluxbox etc.  Thanks to David Woodfall.
system/lbzip2: Updated for version 0.23.
system/lzip: Updated for version 1.9.
system/pdksh: Build bump, compile with LFS CFLAGS. This fixes a bug with
  filename completion when the file's size is bigger than 2GiB.
  Thanks to Daniel LEVAI.
system/pv: Build bump. Slackware build script updated.  Thanks to GPLeo.
system/qemu: Updated for version 0.12.3.
system/sdltrs: Updated for version 1.1.0.
system/statifier: Updated for version 1.7.1.
system/virtualbox-kernel: Updated for version 3.1.4.
system/virtualbox-kernel-addons: Updated for version 3.1.4.
system/virtualbox-ose: Updated for version 3.1.4.
system/virtualbox-ose-addons: Updated for version 3.1.4.
system/webmin: Updated for version 1.510.
system/whowatch: Build bump, added license to build script.
system/xar: Added - The XAR project aims to provide an easily extensible
  archive format.  Thanks to Marco Bonetti.
+--------------------------+
Wed Feb 17 01:31:26 UTC 2010
academic/bibletime: Updated for version 2.5.
  Thanks to Robert Delahunt.  --dsomero
academic/ngspice: Updated for version 20.  Thanks to B. Jogai.  --dsomero
academic/xcircuit: Updated for version 3.7.5.  Thanks to B. Jogai.  --dsomero
audio/deadbeef: Added - deadbeefis a audio player.
  Thanks to AlexGAV.  --dsomero
desktop/bilbo: Added - bilbo is a KDE4 blogging client.
  Thanks to Frank Perez.  --dsomero
desktop/cwp: Updated for version 0.9.18.  Thanks to M.Dinslage.  --dsomero
desktop/macopix: Added - macopix a desktop mascot application.
  Thanks to Pablo Santamaria.  --dsomero
desktop/musca: Added - musca is a simple dynamic window manager for X.
  Thanks to Jim Bottino.  --dsomero
desktop/qtwitter: Added - qtwitter is a microblogging client for StatusNet
  sites and Twitter.  Thanks to Mikko Varri.  --dsomero
desktop/xpenguins: Added - xpenguins gives you penguins for your desktop.
  Thanks to Steven Pledger.  --dsomero
development/apache-ant: Updated for version 1.8.0.
  Thanks to Vincent Batts.  --dsomero
development/bvi: Added - bvi is a binary vi like editor.
  Thanks to Vincent Batts.  --dsomero
development/bzr: Updated for version 2.0.3.
  Thanks to Robby Workman.  --michiel
development/geany: Updated for version 0.18.1.
development/pychecker: Added - pychecker is a Python source code checking
  tool.  Thanks to LukenShiro.  --dsomero
development/pyflakes: Added - pyflakes is a passive error checker for Python
  programs.  Thanks to LukenShiro.  --dsomero
games/an: Added - an generates anagrams for a phrase supplied by the user.
  Thanks to B. Watson.
games/gens-gs: Updated for version r7.
games/jag: Added - jag is a 2D arcade puzzle game.
  Thanks to Larry Hajali.  --dsomero
games/zdoom: Updated for version 2.4.1.
graphics/jpeg2ps: Added - jpeg2ps converts JPEG files to PostScript Level
  2 or 3 EPS..  Thanks to gshep.  --dsomero
libraries/enca: Updated for version 1.13.
libraries/fltk2: Updated for version 2.0.x-r6970.
  Thanks to Mikhail Zotov.  --dsomero
libraries/fltk: Updated for version 1.1.10.  Thanks to LukenShiro.  --dsomero
libraries/fox-toolkit: Updated for version 1.6.37
  Thanks to Robby Workman.  --michiel
libraries/libewf: Updated for version 20100126.
libraries/libisofs: Updated for version 0.6.28
  Thanks to Robby Workman.  --michiel
libraries/libmemcached: Updated for version 0.38.
libraries/libmp4v2: Updated for version 1.9.1
  Thanks to Alex Lysenka.  --michiel
libraries/libssh: Updated for version 0.4.1.
libraries/libwww-perl: Updated for version 5.834.
  Thanks to LukenShiro.  --dsomero
libraries/perl-digest-hmac: Updated for version 1.02.
  Thanks to LukenShiro.  --dsomero
libraries/perl-net-dns: Updated for version 0.66.
  Thanks to LukenShiro.  --dsomero
libraries/pyfltk: Updated for version 1.1.5.  Thanks to LukenShiro.  --dsomero
libraries/python-transaction: Added - python-transaction provides Python
  Transaction Management.  Thanks to Lionel Young.  --dsomero
libraries/qoauth: Added - qoauth is a Qt-based C++ library for
  OAuth authorization scheme.  Thanks to Mikko Varri.  --dsomero
libraries/subvertpy: Added - subvertpy provides alternative Python bindings
  for Subversion.  Thanks to Mikko Varri.  --dsomero
misc/heyu: Added - heyu is X10 module controller software.
  Thanks to B. Watson.  --dsomero
misc/lbdb: Added - lbdb is a set of small tools, which collect mail addresses
  from several sources and offer these addresses to the mutt external query
  feature.  Thanks to Andy Bailey.  --dsomero
multimedia/dvdrip: Updated for version 0.98.11_01.
  Thanks to Luis Henrique.  --dsomero
multimedia/emoc: Added - emoc is a front end for "ffmpeg" and "mencoder".
  Thanks to otzy_007.  --dsomero
multimedia/flash-player-plugin: Updated for version 10.0_r45.
multimedia/k9copy: Updated for version 2.3.5.
  Thanks to Roberto Neri.  --dsomero
multimedia/xvst: Added - xvst Qt Gui for downloading your favorite video
  clips from the web.  Thanks to Larry Hajali.  --dsomero
network/broadcom-sta: Updated for version 5.60.48.36.
  Thanks to David Matthew Jerry Koenig.  --dsomero
network/dillo: Updated for version 2.2.  Thanks to Mikhail Zotov.  --dsomero
network/fping6: Added - fping6 is a ping like program to send ICMP echo
  requests to IPv6 hosts.  Thanks to Richlv.  --dsomero
network/hiawatha: Added - hiawatha is a secure and advanced webserver.
  Thanks to Antonio Hernández Blas.  --dsomero
network/inadyn: Added - inadyn is a free DynDNS client.
  Thanks to Niels Horn.  --dsomero
network/liferea: Updated for version 1.4.28.  Thanks to Erik Hanson.  --dsomero
network/nagios-plugins: Removed - Moved to system.
network/ndiswrapper: Updated for version 1.56.
network/nikto: Updated for version 2.1.1.  Thanks to Marco Bonetti.  --dsomero
network/python-twisted-web2: Added - python-twisted-web2 is a experimental
  Twisted web server.  Thanks to Lionel Young.  --dsomero
network/RSSOwl: Updated for version 2.0.3.  Thanks to Erik Hanson.  --dsomero
network/shorewall6: Updated for version 4.4.7.  Thanks to ArTourter.  --dsomero
network/shorewall: Updated for version 4.4.7.1.
  Thanks to ArTourter.  --dsomero
network/spamassassin: Updated for version 3.3.0.
  Thanks to LukenShiro.  --dsomero
network/tinyproxy: Added - tinyproxy is a lightweight HTTP proxy.
  Thanks to Kevin Pulo.  --dsomero
network/wireshark: Updated for version 1.2.6.
  Thanks to Michiel van Wessem.  --dsomero
office/abiword: Updated for version 2.8.2.
  Thanks to Robby Workman.  --michiel
office/fbreader: Updated for version 0.12.2.  Thanks to Niels Horn.  --dsomero
office/homebank: Updated for version 4.2.1.  Thanks to Erik Hanson.  --dsomero
office/htmldoc: Updated with fix for CVE-2009-3050 vulnerability.
  Thanks to LukenShiro.  --dsomero
office/openoffice.org: Updated for version 3.2.0.
  Thanks to Robby Workman.  --michiel
system/apcupsd: Updated for version 3.14.8.
system/atarisio: Added - atarisio is a disk emulator for use with Atari
  8-bit computer and SIO2PC.  Thanks to B. Watson.  --dsomero
system/bogofilter: Updated for version 1.2.1.
system/multitail: Updated for version 5.2.5.  Thanks to Erik Hanson.  --dsomero
system/nagios-plugins: Updated for version 1.4.14.
  Thanks to Zordrak.  --dsomero
system/nbench: Added - nbench is BYTE's Native Mode Benchmarks.
  Thanks to Niels Horn.  --dsomero
system/openct: Updated for version 0.6.19.  Thanks to LukenShiro.  --dsomero
system/opensc: Updated for version 0.11.12.  Thanks to LukenShiro.  --dsomero
system/powernowd: Added - powernowd is a cpu frequency daemon.
  Thanks to David Woodfall.  --dsomero
system/rar: Updated for version 3.9.2.
system/rdiff-backup: Added - rdiff-backup is a backup tool.
  Thanks to kev.  --dsomero
system/shake: Added - shake is a filesystem defragmenter that runs in
  userspace.  Thanks to V'yacheslav Stetskevych.  --dsomero
system/vifm: Added - vifm is a ncurses-based file manager with vi-like
  keybindings.  Thanks to V'yacheslav Stetskevych.  --dsomero
system/virt-manager: Updated for version 0.8.3.
  Thanks to Ash Wiren.  --dsomero
system/virtinst: Updated for version 0.500.2.  Thanks to Ash Wiren.  --dsomero
system/xfburn: Updated for version 0.4.3
  Thanks to Robby Workman.  --michiel
system/xfe: Updated for version 1.32.1
  Thanks to Robby Workman.  --michiel
+--------------------------+
Wed Feb 10 21:45:01 UTC 2010
academic/itex2mml: Added - itex2mml is a program to convert inline TeX to
  MathML.  Thanks to David Matthew Jerry Koenig.  --dsomero
desktop/QtCurve-Gtk2: Updated for version 1.0.2.
  Thanks to ArTourter.  --dsomero
desktop/QtCurve-KDE4: Updated for version 1.0.2.
  Thanks to ArTourter.  --dsomero
development/avrdude: Updated for version 5.10.
  Thanks to Dustin Schnee.  --dsomero
development/bpython: Updated for version 0.9.6.2.
  Thanks to vvoody.  --dsomero
development/eric: Updated for version 4.4.0.
  Thanks to Rudson Alves.  --dsomero
development/lua: Fixed slack-desc.  Thanks to Menno Duursma.  --dsomero
development/numpy: Updated for version 1.4.0.
  Thanks to Aleksandar Samardzic.  --dsomero
development/zope.sqlalchemy: Added - zope.sqlalchemy The aim of this package
  is to unify the plethora of existing packages integrating SQLAlchemy with
  Zope's transaction management.  Thanks to Lionel Young.  --dsomero
games/brickout: Added - brickout is a ball-and-paddle game.
  Thanks to B. Watson.  --dsomero
games/transfusion: Added - transfusion is a port of the game Blood to the
  DarkPlaces Quake engine.  Thanks to B. Watson.  --dsomero
games/widelands: Added - widelands is a strategy game based on Settlers.
  Thanks to Heinz Wiesinger.  --dsomero
graphics/ldglite: Updated for version 1.2.4.
libraries/libisoburn: Updated for version 0.4.6.
libraries/liblinebreak: Updated for version 2.0.
  Thanks to new Maintainer Niels Horn.
libraries/libnice: Updated for version 0.0.10.
  Thanks to David Woodfall.  --dsomero
libraries/libtorrent-rasterbar: Updated for version 0.14.8.
libraries/libvirt: Updated for version 0.7.6.
  Thanks to Michal Bialozor.  --dsomero
libraries/libwhisker2: Updated for version 2.5.
  Thanks to Marco Bonetti.  --dsomero
libraries/libx86emu: Added - libx86emu is a x86 emulation library.
  Thanks to Heinz Wiesinger.  --dsomero
libraries/openvas-libraries: Moved to network.
libraries/perl-BerkeleyDB: Added - perl-BerkeleyDB perl module.
  Thanks to Nishant Limbachia.  --dsomero
libraries/perl-Convert-BinHex: Added - perl-Convert-BinHex perl module.
  Thanks to Nishant Limbachia.  --dsomero
libraries/perl-Convert-TNEF: Added - perl-Convert-TNEF perl module.
  Thanks to Nishant Limbachia.  --dsomero
libraries/perl-Convert-UUlib: Added - perl-Convert-UUlib perl module.
  Thanks to Nishant Limbachia.  --dsomero
libraries/perl-Crypt-OpenSSL-Bignum: Added - perl-Crypt-OpenSSL-Bignum perl
  module.  Thanks to Nishant Limbachia.  --dsomero
libraries/perl-Crypt-OpenSSL-Random: Added - perl-Crypt-OpenSSL-Random perl
  module.  Thanks to Nishant Limbachia.  --dsomero
libraries/perl-Crypt-OpenSSL-RSA: Added - perl-Crypt-OpenSSL-RSA perl module.
  Thanks to Nishant Limbachia.  --dsomero
libraries/perl-Encode-Detect: Added - perl-Encode-Detect perl module.
  Thanks to Nishant Limbachia.  --dsomero
libraries/perl-Geography-Countries: Added - perl-Geography-Countries perl
  module.  Thanks to Nishant Limbachia.  --dsomero
libraries/perl-Image-Info: Added - perl-Image-Info perl module.
  Thanks to Nishant Limbachia.  --dsomero
libraries/perl-IO-stringy: Added - perl-IO-stringy perl module.
  Thanks to Nishant Limbachia.  --dsomero
libraries/perl-IP-Country: Added - perl-IP-Country perl module.
  Thanks to Nishant Limbachia.  --dsomero
libraries/perl-Test-Pod: Added - perl-Test-Pod perl module.
  Thanks to Nishant Limbachia.  --dsomero
libraries/perl-TimeDate: Added - perl-TimeDate perl module.
  Thanks to Nishant Limbachia.  --dsomero
libraries/pyicu: Updated for version 0.9.
  Thanks to Heinz Wiesinger.  --dsomero
misc/ibus: Updated for version 1.2.99.20100202.
  Thanks to Grissiom.  --dsomero
misc/ibus-pinyin: Updated for version 1.2.99.20100202.
  Thanks to Grissiom.  --dsomero
misc/ibus-unikey: Added - ibus-unikey is a Vietnamese input engine for ibus.
  Thanks to Hoang Xuan Phu.  --dsomero
misc/protobuf: Updated for version 2.3.0.  Thanks to M.Dinslage.  --dsomero
multimedia/farsight2: Updated for version 0.0.17.
  Thanks to David Woodfall.  --dsomero
multimedia/get_iplayer: Added - get_iplayer allows you to search, index and
  record/streams.  Thanks to Pierre Cazenave.  --dsomero
multimedia/mlt: BUILD bumped, added pythons binding necessary for openshot.
  Thanks to Jonathan Larsen.
multimedia/openshot: Added - OpenShot Video Editor(TM) is an open-source
  program that creates, modifies, and edits video files.
  Thanks to Jonathan Larsen.
multimedia/seq24: Added - seq24 is a minimal loop based midi sequencer.
  Thanks to Arik Miller.  --dsomero
network/claws-mail: Updated for version 3.7.5.
network/claws-mail-extra-plugins: Updated for version 3.7.5.
network/flvstreamer: Added - flvstreamer is an open source command-line RTMP
  client.  Thanks to Pierre Cazenave.  --dsomero
network/gajim: Updated for version 0.13.2.
  Thanks to Morten Juhl-Johansen Zölde-Fejér.  --dsomero
network/google-chrome: Updated for version 5.0.307.5.
  Thanks to Erik Hanson.  --dsomero
network/icecat: Updated for version 3.6.  Thanks to David Negroni.  --dsomero
network/midori: Updated for version 0.2.2.
network/openvas-libraries: Updated for version 3.0.3.
  Thanks to Marco Bonetti.  --dsomero
network/openvas-scanner: Updated for version 3.0.1.
  Thanks to Marco Bonetti.  --dsomero
network/perl-Mail-DKIM: Added - perl-Mail-DKIM perl module.
  Thanks to Nishant Limbachia.  --dsomero
network/perl-Mail-SPF: Added - perl-Mail-SPF perl module.
  Thanks to Nishant Limbachia.  --dsomero
network/perl-MailTools: Added - perl-MailTools perl module.
  Thanks to Nishant Limbachia.  --dsomero
network/perl-MIME-tools: Added - perl-MIME-tools perl module.
  Thanks to Nishant Limbachia.  --dsomero
network/perl-Net-DNS-Resolver-Programmable: Added - perl module.
  Thanks to Nishant Limbachia.  --dsomero
network/perl-Net-Ident: Added - perl-Net-Ident perl module.
  Thanks to Nishant Limbachia.  --dsomero
network/perl-Net-Server: Added - perl-Net-Server perl module.
  Thanks to Nishant Limbachia.  --dsomero
network/perl-NetAddr-IP: Added - perl-NetAddr-IP perl module.
  Thanks to Nishant Limbachia.  --dsomero
network/pidgin-visnotes: Added - pidgin-visnotes is a Notifications plugin
  for Pidgin.  Thanks to otzy_007.  --dsomero
network/qbittorrent: Updated for version 2.13.
  Thanks to David Woodfall.  --dsomero
network/smb4k: Updated for version 0.10.4.  Thanks to Roberto Neri.  --dsomero
network/transmission: Updated for version 1.82.
  Thanks to Iskar Enev.  --dsomero
network/youtube-dl: Added - youtube-dl is a Youtube video download utility.
  Thanks to GPLeo.  --dsomero
network/zabbix_agentd: Updated for version 1.8.1.
network/zabbix_server: Updated for version 1.8.1.
office/keepnote: Added - keepnote is a note taking application.
  Thanks to mccnews.  --dsomero
office/fbreader: Updated for version 0.12.1.
  Thanks to new Maintainer Niels Horn.
office/mupdf: Updated for version r934.
system/fsarchiver: Updated for version 0.6.7.
  Thanks to Nishant Limbachia.  --michiel
system/hwinfo: Added - hwinfo is a hardware detection tool.
  Thanks to Heinz Wiesinger.  --dsomero
system/kvm-kmod: Updated for version 2.6.32.7.
  Thanks to Stu Miller.  --dsomero
system/parallel: Added - parallel runs command lines simultaneously in
  parallel.  Thanks to Erik Hanson.  --dsomero
system/perl-Unix-Syslog: Added - perl-Unix-Syslog perl module.
  Thanks to Nishant Limbachia.  --dsomero
system/pv: Added - pv (Pipe Viewer) is a terminal-based tool for monitoring
  the progress of data through a pipeline .  Thanks to GPLeo.  --dsomero
system/qemu-kvm: Updated for version 0.12.2.  Thanks to Stu Miller.  --dsomero
system/watchdog: Updated for version 5.7.
system/xjobs: Updated for version 20100203.  Thanks to Erik Hanson.  --dsomero
+--------------------------+
Thu Jan 28 00:51:22 UTC 2010
academic/g3data: Added - g3data is a tool for extracting data from graphs.
  Thanks to Pablo Santamaria.  --dsomero
academic/qgis: Added: qhis or Quantum GIS is a user friendly Geographic
  Information System. Thanks to David Spencer.  --michiel
audio/lingot: Added - lingot is a musical instrument tuner.
  Thanks to B. Watson.  --dsomero
audio/mpd: Updated for version 0.15.8.
desktop/vwm: Updated for version 2.0.2.  Thanks to Pierre Cazenave.  --dsomero
desktop/wmsystemtray: Added - wmsystemtray is a system tray as a Window Maker
  dock app.  Thanks to Pablo Santamaria.  --dsomero
development/cc65: Added - cc65 is a complete cross development package for
  65(C)02 systems, including a powerful macro assembler, a C compiler, linker,
  librarian and several other tools.  Thanks to B. Watson.
development/eclipse: Updated for version 3.5.1.
  Thanks to Antonio Hernández Blas.  --dsomero
development/pip: Updated for version 0.6.3.
development/yaml: Updated for version 0.71.
games/qmc2: Added - qmc2 is a Qt 4 based UNIX GUI frontend for sdlmane.
  Thanks to Erik Hanson.  --michiel
games/tmw: Updated for version 0.0.29.1.  Thanks to Erik Hanson.  --dsomero
games/xcowsay: Added - xcowsay displays a cute cow and message on your desktop.
  Inspired by the original cowsay.  Thanks to B. Watson.
graphics/autopano-sift-C: Added - autopano-sift-C is a automatic control point
  generator.  Thanks to Erik Hanson.  --dsomero
graphics/enblend-enfuse: Added - enblend-enfuse is Image Blending and Enfusing
  tools.  Thanks to Erik Hanson.  --dsomero
graphics/goocanvas: Added - GooCanvas is a canvas widget for GTK+ that uses
  the cairo 2D library for drawing. Thanks to Jonathan Larsen.  --michiel
graphics/graphviz: Updated for version 2.26.2.
graphics/hugin: Added - hugin is an easy to use cross-platform panoramic
  imaging toolchain.  Thanks to Erik Hanson.  --dsomero
graphics/leocad_pieces: Updated for version 3299.
graphics/metapixel: Added - metapixel is a program for generating
  photomosaics.  Thanks to otzy_007.  --dsomero
graphics/openclipart: Added - openclipart is an archive of user contributed
  clip art.  Thanks to David Somero.  --rworkman
graphics/qiv: Updated for version 2.2.3.
  Thanks to Pablo Santamaria.  --dsomero
libraries/afflib: Updated for version 3.5.7.
libraries/clutter: Added - clutter is an visually rich, portable and
  animated graphical user interfaces.  Thanks to Erik Hanson.  --michiel
libraries/clutter-gtk: Added - clutter-gtk is a Clutter library for
  GTK+ applications.  Thanks to Erik Hanson.  --michiel
libraries/frei0r: Added - Frei0r is a minimalistic plugin API for video
  sources and filters. Thanks to Jonathan Larsen.  --michiel
libraries/libburn: Updated for version 0.7.6.
libraries/libchamplain: Added - libchamplain is a C library providing a
  ClutterActor to display maps. Thanks to Erik Hanson.  --michiel
libraries/libewf: Updated for version 20100119.
libraries/libisofs: Updated for version 0.6.26.
libraries/libquicktime: Updated for version 1.1.4.
libraries/live555: Added - live555 is C++ libraries for multimedia streaming.
  Thanks to Erik Hanson.  --dsomero
libraries/perl-Date-Calc: Added - perl-Date-Calc provides Gregorian calendar
  date calculations.  Thanks to Nishant Limbachia.  --dsomero
libraries/perl-DBD-Pg: Added - perl-DBD-Pg is a PostgreSQL database driver
  for the DBI module.  Thanks to Joey Trungale.  --dsomero
libraries/perl-Sub-Uplevel: Added - perl-Sub-Uplevel allows to run a function
  in a higher stack frame.  Thanks to Nishant Limbachia.  --dsomero
libraries/perl-Test-Exception: Added - perl-Test-Exception provides modules
  for testing exception based code.  Thanks to Nishant Limbachia.  --dsomero
libraries/pygoocanvas: Added - pygoocanvas are python bindings for GooCanvas.
 Thanks to Jonathan Larsen.  --michiel
misc/ibus-anthy: Updated for version 1.2.0.20100115.
misc/krename: Updated for version 4.0.3.
multimedia/HandBrake: Added - HandBrake is a DVD ripper.
  Thanks to klaatu.  --dsomero
multimedia/LiVES: Updated for version 1.1.8.  Thanks to klaatu.  --dsomero
multimedia/minitube: Updated for version 0.9.
multimedia/smpeg: Updated for revision 389.
network/awstats: Updated for version 6.95.
network/clamav-unofficial-sigs: Updated for version 3.7.
network/claws-mail: Updated for version 3.7.4.
  Thanks to Erik Hanson.  --michiel
network/claws-mail-extra-plugins: Updated for version 3.7.4.
  Thanks to Erik Hanson.  --michiel
network/enet: Added - enet is a simple and robust network communication layer.
  Thanks to otzy_007.  --dsomero
network/filezilla: Updated for version 3.3.1.
network/pflogsumm: Added - pflogsumm is a Postfix Log Entry Summarizer.
  Thanks to Nishant Limbachia.  --dsomero
network/strongswan: Added - strongswan is an open source IPsec-based VPN
  Solution for Linux.  Thanks to Jonathan Larsen.  --dsomero
office/apvlv: Updated for version 0.0.9.2.
office/go_openoffice: Added - this is a fork of OpenOffice.org that offers
  better compatibility and some other features (according to upstream).
  Note that this is a from-source build, so plan on allotting some time for
  it to complete.  Thanks to David Somero.  --rworkman
office/org-mode: Added - org-mode is for keeping notes, maintaining ToDo
  lists, doing project planning.  Thanks to Valeriy Timchenko.  --dsomero
system/aimage: Updated for version 3.2.4.
system/fsarchiver: Updated for version 0.6.6.
system/gsmartcontrol: Updated for version 0.8.5.
  Thanks to Erik Hanson.  --dsomero
system/herculesstudio: Updated for version 1.1.0.
system/ibam: Added - ibam is a Intelligent Battery Monitor.
  Thanks to Antonio Hernández Blas.  --dsomero
system/iotop: Updated for version 0.4.
system/ksplice: Added - ksplice is a rebootless kernel updates installer.
  Thanks to Marco Bonetti.  --dsomero
system/nilfs-utils: Added - These are the userland utilities for the NILFS2
  filesystem.  Thanks to Heinz Wiesinger.
system/pgadmin3: Added - pgadmin3 manages PostgreSQL database.
  Thanks to Iskar Enev.  --dsomero
system/plan9port: Updated for version 20091211.
  Thanks to Antonio Hernández Blas.  --dsomero
system/sleuthkit: Updated for version 3.1.0.
system/zeroinstall-injector: Updated for version 0.44.
  Thanks to Erik Hanson.  --dsomero
system/zfs-fuse: Added - zfs-fuse is a port of the ZFS filesystem to Linux
  using FUSE.  Thanks to Steven King.  --rworkman
+--------------------------+
Sat Jan 23 03:11:36 UTC 2010
academic/ladr: Updated for version 2009_11A.
audio/schismtracker: Updated for version 20100101.
  Thanks to Erik Hanson.  --dsomero
audio/TiMidity++: Updated - Added an rc.timidity startup script. This
  required changing the configure options so timidity will run as a daemon
  with the -iAD option.  Thanks to Kyle Guinn.
audio/mixxx: Updated for version 1.7.2.
  Thanks to Elvio Basello (HelLViS69).  --pprkut
desktop/xvkbd: Updated for version 3.1.  Thanks to Erik Hanson.  --dsomero
development/llvm: Updated for version 2.6.
development/pip: Updated for version 0.6.2.
games/freeciv: Added - Freeciv is a free turn-based multiplayer strategy
  game, in which each player becomes the leader of a civilization, fighting
  to obtain the ultimate goal: To become the greatest civilization.
  Thanks to Iskar Enev.
games/ltris: Updated for version 1.0.14.
games/sl: Added - sl is a program that can display animations aimed to correct
  you if  you type sl instead of ls by mistake.
  Thanks to V'yacheslav Stetskevych.  --michiel
games/wormux: Updated for version 0.8.5.
games/zdoom: Updated for version 2.4.0.
graphics/LDraw_data: Updated for version 200903.
  Thanks to Niels Horn.  --dsomero
graphics/opengtl: Updated for version 0.9.12.
libraries/fmodapi: Updated for version 4.28.06.
libraries/guichan: Updated for version 0.8.2.
  Thanks to Erik Hanson.  --dsomero
libraries/libpano13: Updated for version 2.9.14.
  Thanks to Erik Hanson.  --dsomero
libraries/perl-dbd-sqlite: Updated for version 1.29.
network/tor: Updated for version 0.2.1.22.  Thanks to Erik Hanson.  --dsomero
office/fbreader: Fix building on x86_64. This package together with
  liblinebreak is unmaintained,  Thanks to Audrius Kažukauskas.  --dsomero
office/homebank: Updated for version 4.1.  Thanks to Erik Hanson.  --dsomero
office/texlive: Modified the build script to use the included xpdf library
  instead of the one shipped with Slackware; this isn't necessary for 13.0
  (at least not right now), but due to the frequency of API/ABI changes in
  poppler/xpdf, this will likely eliminate some headaches.  --rworkman
office/vym: Updated for version 1.12.6.
system/bootchart: Small changes in README and mkchartrd.
  Thanks to Marco Cecchetti.  --dsomero
system/dstat: Updated for version 0.7.0.  Thanks to Erik Hanson.  --dsomero
system/md5deep: Updated for version 3.5.1.  Thanks to Erik Hanson.  --dsomero
system/ncdu: Updated for version 1.6.  Thanks to Erik Hanson.  --dsomero
system/nss_ldap: Updated BUILD to correct for source filename change.
  Thanks to Zordrak, Antonio Hernández Blas, and Christopher Walker.
system/partitionmanager: Added - partitionmanager helps you easily manage
  disks, partitions and file systems on your KDE Desktop.
  Thanks to ArTourter.  --michiel
system/roxterm: Updated for version 1.17.1.  Thanks to Erik Hanson.  --dsomero
+--------------------------+
Mon Jan 18 00:55:00 UTC 2010
audio/mpd: Updated for version 0.15.7.
audio/ncmpc: Updated for version 0.16.
desktop/QtCurve-Gtk2: Updated for version 1.0.1.
desktop/QtCurve-KDE4: Updated for version 1.0.1.
desktop/peksystray: Added - PekSysTray is a system tray "notification area"
  applet. Thanks to Pablo Santamaria.  --michiel
desktop/wally: Updated for version 2.3.1.
desktop/xfce4-dict: Updated for version 0.6.0.
  Thanks to Robby Workman.  --michiel
development/egenix-mx-base: Updated for version 3.1.3.
development/grails: Added - Grails (Groovy on Rails) is a Web framework
  based on the Groovy.  Thanks to Dhaby Xiloj.
development/paramiko: Updated for version 1.7.6.
development/power-architect: Added - The SQL Power Architect is a cross-
  platform, open-source data modeling tool with a GUI and an embeddable API.
  Thanks to Dhaby Xiloj.
development/pycrypto: Updated for version 2.1.0.
games/advancescan: Added - AdvanceSCAN is a command line rom manager for MAME,
  MESS, AdvanceMAME, AdvanceMESS and Raine. Thanks to Pablo Santamaria.  --michiel
games/ckmame: Added - A program to check ROM sets for MAME, the Multiple Arcade
  Machine Emulator. Thanks to Erik Hanson.  --michiel
games/desmume: Updated for version 0.9.5.
  Thanks to Larry Hajali.  --michiel
games/gnuski: Added - GNUSki is an open source clone of Skifree, the old Windows
  game.  Thanks to Vincent Batts.
games/sdlmame-data: Updated for version 0.136.
libraries/libaosd: Added - libaosd is an advanced on screen display library.
  Thanks to Pablo Santamaria.
libraries/libgringotts: Added - libgringotts is a data encapsulation and
  encryption library.  Thanks to Pablo Santamaria.
libraries/libiphone: Added - libiphone is a library for connecting to Apple's
  iPhone or iPod touch devices.  Thanks to David Somero.
libraries/libmemcached: Updated for version 0.37.
libraries/libnetfilter_conntrack: Updated for version -0.0.101.
  Thanks to Robby Workman.  --michiel
libraries/libplist: Added - libplist is a library for manipulating Apple
  Binary and XML Property Lists.  Thanks to David Somero.
libraries/libusb1: Added - libusb1 is a lightweight usb library.
  Thanks to David Somero.
libraries/pybluez: Updated for version 0.18.
libraries/wxPython: Updated build, added ogl library from contrib.
  Thanks to Heinz Wiesinger.
libraries/xulrunner: Added - XULRunner provides the XUL Runtime environment.
  Thanks to David Somero.
misc/task: Updated for version 1.8.5.
multimedia/gtk-recordmydesktop: Added - gtk-recordmydesktop is a GTK2 frontend
  for recordmydesktop. Thanks to Morten Juhl-Johansen Zölde-Fejér.  --miiel
network/aria2: Updated for version 1.8.0.
network/conntrack-tools: Updated for version 0.9.14.
  Thanks to Robby Workman.  --michiel
network/deluge: Updated for version 1.2.0.
network/gajim: Updated for version 0.13.1.
network/krb5: Build bumped, includes patches to address security issues.
  For further information about these advisories, please see
  http://web.mit.edu/kerberos/advisories/
  MITKRB5-SA-2009-004: integer underflow in AES and RC4 decryption
  MITKRB5-SA-2009-003: KDC denial of service in cross-realm referral processing
  If you use Kerberos, it is recommended that you update. Thanks to Tom Canich.
network/noip2: Added - NoIP2 keeps your current IP address in sync with
  your No-IP host or domain.  Thanks to Dhaby Xiloj.
network/phpmyadmin: Updated for version 3.2.5.
  Thanks to Nishant Limbachia.  --rworkman
network/psi: Updated for version 0.14.
  Thanks to Eugene Wissner.  --michiel
network/shorewall: Updated for version 4.4.6.
network/shorewall6: Updated for version 4.4.6.
network/uget: Added - Uget (formerly urlgfe) is a Free and Open Source
  download manager.  Thanks to Morten Juhl-Johansen Zölde-Fejér.
system/gigolo: Updated for version 0.4.0 and added a gnome-mount compatibility
  script to /usr/bin.  Thanks to Luis Henrique.  --rworkman
system/ifuse: Added - ifuse is a fuse filesystem for mounting iPhone and iPod
  touch devices.  Thanks to David Somero.
system/kvm-kmod: Updated for version 2.6.32.3.
system/lrzip: Added - lrzip is a long range LZMA compression program
  optimised for large files.  Thanks to Dave Margell.
system/qemu: Updated for version 0.12.1.
system/usb_modeswitch: Added - USB_ModeSwitch is a mode switching tool for
  controlling "flip flop" (multiple device) USB gear.  Thanks to David Somero.
system/usbmuxd: Added - USB Multiplex Daemon.  Thanks to David Somero.
+--------------------------+
Thu Jan  7 03:04:15 UTC 2010
dekstop/rss-glx: Update for version 0.9.1.
  Thanks to Erik Hanson.  --michiel
development/kdesvn: Updated for version 1.4.1.
games/wesnoth: Updated for version 1.7.11.
games/sdlmame: Updated for version 0.136.
  Thanks to B. Watson.  --michiel
libraries/perl-class-accessor: Added - perl-class-accessor automagically
  generates accessors/mutators for your class.
  Thanks to Pablo Santamaria.  --michiel
libraries/perl-file-path-expand: Added - File::Path::Expand expands user
  directories in filenames. Thanks to Pablo Santamaria.  --michiel
libraries/perl-lirc-client: Added - This module provides a simple
 interface to the Linux Infrared Remote Control (Lirc).
 Thanks to Pablo Santamaria.  --michiel
multimedia/Songbird: Updated for version 1.4.3_1438.
network/cadaver: - Updated for version 0.23.3.
  Thanks to Jean-Yves Didier.  --michiel
network/vnstat: Updated for version 1.10.
office/kchmviewer: Updated for version 5.1.
system/fsarchiver: Updated for version 0.6.4.
system/isomaster: Updated for version 1.3.7.
  Thanks to Erik Hanson.  --michiel
system/pdksh: Updated for version 5.2.14.
  Thanks to Daniel LEVAI.  --michiel
+--------------------------+
Tue Jan  5 05:57:22 UTC 2010
graphics/kipi-plugins: Updated for version 1.0.0.
  Thanks to Frank Caraballo.  --michiel
graphics/nvidia-cg-toolkit: Added - The Nvidia Cg Toolkit contains the GPU
  Shader Authoring Language. Thanks to Heinz Wiesinger.  --michiel.
system/unrar: Updated for version 3.9.7.
  Thanks to Niklas 'Nille' Åkerström. -michiel
system/wiimms-wbfs-tool: Added - Wiimm's WBFS Tool (or wwt, for shorter) is
  a set of programs which can manage, create and convert ISO, WBFS and WDF
  files and partitions. Thanks to Marco Bonetti.  --michiel
+--------------------------+
Mon Jan  4 07:14:43 UTC 2010
audio/clam: Added - CLAM is a software framework for research and application
  development on the audio and music domain.
  Thanks to B. Watson.  --rworkman
audio/clam_annotator: Added - the CLAM Annotator is a tool that can be used
  to visualize, check and modify music information extracted from audio.
  Thanks to B. Watson.  --rworkman
audio/clam_networkeditor: Added - the CLAM Network Editor is a tool for
  editing CLAM processing networks.  Thanks to B. Watson.  --rworkman
audio/clam_voice2midi: Added - a GUI tool that converts singing/humming into
  MIDI files.  Thanks to B. Watson.  --rworkman
audio/lv2core: Fixed libdir in the pkgconfig file and added profile scripts to
  set LV2_PATH in the environment.  Thanks to B. Watson.
audio/mpdscribble: Updated for version 0.19. Thanks to Erik Hanson. --rworkman
desktop/kcometen4: Updated for version 1.0.6.
desktop/xfce4-clipman-plugin: Updated for version 1.1.3.
  Thanks to Robby Workman.  --michiel
development/Cython: Updated for version 0.12.
development/couchdb: Added - Apache CouchDB is a RESTFul document-oriented
  database.  Thanks to Nicolas Steinmetz.  --rworkman
development/nsis: Added - NSIS (Nullsoft Scriptable Install System) is a
  professional open source system to create Windows installers.
  Thanks to Martinus Ady H.  --rworkman
development/xmlcopyeditor: Updated for version 1.2.0.6.
games/warzone2100: Updated for version 2.3_beta4.
libraries/chardet: Removed (renamed to python2-chardet).
libraries/cssutils: Updated for version 0.9.6.
libraries/gdata: Updated for version 2.0.6.
libraries/libelf: Updated for version 0.8.13.
libraries/libmemcached: Added - libmemcached is a C and C++ client library to
  the memcached server.  Thanks to Nishant Limbachia.
libraries/libmms: Updated for version 0.5.
libraries/python2-chardet: Added (renamed from chardet) and updated for
  version 2.0.1.  Thanks to Larry Hajali.  --rworkman
libraries/slv2: Fixed libdir in the pkgconfig file.  Thanks to B. Watson.
libraries/virtualenv: Updated for version 1.4.3.
libraries/yaz: Updated for version 3.0.52.
multimedia/dvdstyler: Added - DVDStyler is a DVD authoring application that
  makes it possible for video enthusiasts to create professional-looking DVDs.
  Thanks to "Ponce".
multimedia/llcon: Added - llcon enables musicians to perform real-time jam
  sessions over the internet.  Thanks to Andrei G.  --rworkman
multimedia/mpgtx: Added - mpgtx a command line MPEG audio/video/system file
  toolbox.  Thanks to "Ponce".
multimedia/wxsvg: Added - wxSVG is C++ library to create, manipulate and render
  SVG files.  Thanks to "Ponce".
multimedia/xbmc: Added - XBMC is an award winning media center application.
  Thanks to Larry Hajali.
network/heimdal: Added - Heimdal is a free implementation of Kerberos 5.
  Thanks to Menno Duursma.  --rworkman
network/mod_wsgi: Updated for version 3.1 along with a bugfix to the config
  file (my bug - oops).  Thanks to Adis Nezirovic.  --rworkman
office/Ted: Added - Ted is a lightweight Word-processor that uses the
  RTF-format. Thanks to Hannes Worst.  --michiel
system/davfs2: Added - this is a virtual filesystem driver for WebDAV.
  Thanks to Chris Abela.  --rworkman
system/kvm-kmod: Added - kvm-kmod provides the kvm modules from the latest
  stable kernel sources.  Thanks to Stu Miller.  --rworkman
system/postgresql: Updated for version 8.4.2.
system/rar: Updated for version 3.9.1.  Thanks to Steven Pledger.  --rworkman
system/samhain: Updated for version 2.6.1b.  Thanks to Richard Scott Smith.
system/tokyocabinet: Added - Tokyo Cabinet is a fast and efficient key/value
  database.  Thanks to Kuroi Kenshi.  --rworkman
system/tokyotyrant: Added - Tokyo Tyrant provides network-based access to
  Tokyo Cabinet.  Thanks to Kuroi Kenshi.  --rworkman
system/truecrypt: Updated for version 6.3a.
+--------------------------+
Sat Jan  2 20:38:41 UTC 2010
audio/mppenc: Added - a Musepack encoder.  Thanks to M. Dinslage.  --rworkman
development/freeglut: Added - freeglut is an open source alternative to the
  OpenGL Utility Toolkit (GLUT).  Thanks to M. Dinslage.  --rworkman
libraries/libmpdclient: Added - libmpdclient is a stable, documented,
  asynchronous API library for interfacing MPD in the C, C++, and Objective C
  languages.  Thanks to Evandro Alves Rodrigues.  --rworkman
misc/gramps: Updated for version 3.1.3. Thanks to Bill Kirkpatrick. --rworkman
multimedia/mlt: Fixed library install location and some other minor nits with
  the build script.  Thanks to Matteo Bernardini and Larry Hajali for the
  reports and fixes.  --rworkman
+--------------------------+
Sat Jan  2 09:49:57 UTC 2010
academic/bibus: Updated for version 1.5.1. Thanks to David Miller.  --rworkman
audio/kid3: Added - kid3 is an easy way to tag multiple MP3, Ogg/Vorbis, FLAC,
  MPC, MP4/AAC, MP2, Speex, TrueAudio and WavPack files.
  Thanks to Michales Michaloudes.  --rworkman
audio/musicmanager: Updated for version 0.10.14.
  Thanks to Keith Richie.  --rworkman
audio/tuneit: Added - tuneit is a simple command-line instrument tuner.
  Thanks to B. Watson.  --rworkman
development/lazarus: Added - Lazarus is a Rapid Application Development Tool
  for FreePascal.  Since fpc (a requirement for lazarus) won't currently build
  on x86_64, I've marked this one as unsupported there as well.
  Thanks to Andre Barboza.  --rworkman
games/gens-gs: Added - Gens/GS is a Sega Genesis/CD/32x emulator forked from
  Gens.  Thanks to Steven Pledger.  --rworkman
graphics/geegie: Added - Geeqie is a lightweight Gtk+ based image viewer that
  was forked from gqview.  Thanks to Niels Horn.  --rworkman
graphics/gpicview: Added - gpicview is a simple and fast image viewer for X.
  Thanks to Evandro Alves Rodrigues.  --rworkman
libraries/haskell-HTTP: Added - a Haskell library for client-side HTTP.
  Thanks to Mikko Varri.  --rworkman
libraries/haskell-cgi: Added - a Haskell library for writing CGI programs.
  Thanks to Mikko Varri.  --rworkman
libraries/haskell-editline: Added - bindings to the BSD editline library.
  Thanks to Mikko Varri.  --rworkman
libraries/haskell-fgl: Added - Martin Erwig's Functional Graph Library.
  Thanks to Mikko Varri.  --rworkman
libraries/haskell-haskeline: Added - Haskeline provides a user interface for
  line input.  Thanks to Mikko Varri.  --rworkman
libraries/haskell-terminfo: Added -  Haskell bindings to the terminfo library.
  Thanks to Mikko Varri.  --rworkman
libraries/libgig: Added - libgig is a library for loading and modifying
  Gigasampler and DLS files.  Thanks to Michales Michaloudes.  --rworkman
libraries/liblscp: Added - liblscp is an implementation of the LinuxSampler
  control protocol.  Thanks to Michales Michaloudes.  --rworkman
misc/megatunix: Added - MegaTunix is ECU tuning software.
  Thanks to Allen Coleman.  --rworkman
multimedia/dssi: Added - DSSI (pronounced "dizzy") is an API for audio
  processing plugins.  Thanks to Michales Michaloudes.  --rworkman
multimedia/gigedit: Added - Gigedit is an instrument editor for gig files.
  Thanks to Michales Michaloudes.  --rworkman
multimedia/hexter: Added - hexter is a software synthesizer that models the
  sound generation of a Yamaha DX7 synthesizer.
  Thanks to Michales Michaloudes.  --rworkman
multimedia/kdenlive: Added - Kdenlive is an intuitive and powerful multi-track
  video editor including the most recent video technologies.
  Thanks to stormtracknole.  --rworkman
multimedia/linuxsampler: Added - linuxsampler is a free streaming-capable
  open source pure software audio sampler with professional grade features.
  Thanks to Michales Michaloudes.  --rworkman
multimedia/mlt: Added - MLT is an open source multimedia framework designed
  and developed for television broadcasting.
  Thanks to stormtracknole.  --rworkman
multimedia/qsampler: Added - qsampler is a frontend for linuxsampler.
  Thanks to Michales Michaloudes.  --rworkman
network/msn-proxy: Added - msn-proxy is a light-weight transparent proxy for
  MSN Messenger clients.  Thanks to Niels Horn.  --rworkman
network/wireshark: Updated for version 1.2.5.  Thanks to Michiel van Wessem.
system/redis: Added - Redis is an advanced key-value store (it is similar to
  memcached).  Thanks to Kuroi Kenshi.  --rworkman
system/statifier: Added - Statifier combines a dynamically linked executable
  with its libraries into one large file.  Thanks to Niels Horn.  --rworkman
system/tarsnap: Added - tarsnap is the client for an Colin Perceval's online
  encrypted snapshotted backup service called Tarsnap.
  Thanks to Justin Haynes.  --rworkman
+--------------------------+
Thu Dec 31 04:42:11 UTC 2009
audio/mixxx: Added - mixxx is a free open source DJ software for performing
  live mixes.  Thanks to Elvio Basello (HelLViS69).  --dsomero
desktop/ffmpegthumbnailer: Added - ffmpegthumbnailer is a Lightweight Video
  Thumbnailer.  --dsomero
development/alex: Added - alex is a tool for generating lexical analysers in
  Haskell.  Thanks to Mikko Varri.  --dsomero
development/acpica: Updated for version 20091214.
  Thanks to Heinz Wiesinger (pprkut).  --rworkman
development/bpython: Added - bpython is a interface to the Python interpreter.
  Thanks to vvoody.  --dsomero
development/fpc: Added - fpc is a free Pascal compiler.
  Thanks to Andre Barboza.  --dsomero
development/gprolog: Added - gprolog produces native binaries from
  Prolog+constraint programs.  Thanks to Eugene Suter.  --dsomero
development/qt4pas: Added - qt4pas provides a Qt4 binding for FreePascal.
  Thanks to Andre Barboza. --dsomero
development/vala: Added - vala is a new programming language that aims to
  bring modern programming language features to GNOME developers.
  Thanks to Erik Hanson.  --dsomero
games/cowsay: Added - cowsay is a configurable speaking/thinking cow.
  Thanks to David Miller.  --dsomero
games/egoboo: Added - egoboo is a three-dimensional dungeon crawling
  adventure.  Thanks to Larry Hajali.  --dsomero
graphics/digikam: Added - digikam is a KDE Photo Management Application.
  Thanks to Niklas 'Nille' Åkerström. --dsomero
graphics/discwrapper: Added - DiscWrapper is a cover designer for optical
  discs.  Thanks to Pablo Santamaria.  --rworkman
graphics/fotowall: Added - fotowall is a creative tool that allows you to
  layout your photos.  Thanks to Larry Hajali.  --dsomero
graphics/lgeo: Added - lgeo is data files for l3p .ldr to .pov conversion.
  Thanks to Niels Horn.  --dsomero
graphics/ufraw: Updated for version 0.16.  Thanks to Nishant Limbachia.
libraries/haskell-binary: Enabled the shared library (due to new ghc) and
  moved the libraries to be in a more consistent location with respect to
  other haskell software we host.  Thanks to Peter Wang.  --rworkman
libraries/haskell-digest: Enabled the shared library (due to new ghc) and
  moved the libraries to be in a more consistent location with respect to
  other haskell software we host.  Thanks to Peter Wang.  --rworkman
libraries/haskell-zip-archive: Enabled the shared library (due to new ghc) and
  moved the libraries to be in a more consistent location with respect to
  other haskell software we host.  Thanks to Peter Wang.  --rworkman
libraries/haskell-zlib: Enabled the shared library (due to new ghc) and
  moved the libraries to be in a more consistent location with respect to
  other haskell software we host.  Thanks to Peter Wang.  --rworkman
libraries/libass: Added - libass is a subtitle renderer for the ASS/SSA.
  Thanks to Larry Hajali.  --dsomero
libraries/libdmtx: Added - libdmtx is a data matrix barcode library and
  utilities.  Thanks to David Miller.  --dsomero
libraries/libvmime: Added - VMime is a free mail library.
  Thanks to Niels Horn.  --rworkman
libraries/libgcal: Added - libgcal.  Thanks to Vincent Batts.  --dsomero
libraries/pyxdg: Updated for version 0.18.  Thanks to Frank Caraballo.
misc/protobuf: Added - Protocol buffers are a flexible, efficient, automated
  mechanism for serializing structured data.  Thanks to M.Dinslage.  --dsomero
misc/txt2tags: Added - txt2tags is a document generator.
  Thanks to eviljames.  --rworkman
multimedia/2ManDVD: Added - 2ManDVD is the successor of ManDVD.
  Thanks to Matteo Bernardini (Ponce).  --dsomero
multimedia/gecko-mediaplayer: Added - gecko-mediaplayer is a browser media
  plugin.  Thanks to Phillip Warner.  --dsomero
multimedia/gnome-mplayer: Added - gnome-mplayer is a gtk2-only frontend to
  mplayer.  Thanks to Phillip Warner.  --rworkman
multimedia/vcdimager: Added - VCDImager is a full-featured mastering suite for
  VCDs and SVCDs.  Thanks to eviljames.  --rworkman
network/iodine: Added - iodine lets you tunnel IPv4 data through a DNS server.
  Thanks to David Miller.  --dsomero
network/tor: Updated for version 0.2.1.21.  Thanks to Erik Hanson.  --rworkman
network/ucspi-tcp: Added - ucspi-tcp is djb's TCP client-server command-line
  tools.  Thanks to David Miller.  --dsomero
office/akonadi-googledata: Added - akonadi-googledata is a resource plugin
  for akonadi to connect to Google calendar and contacts.
  Thanks to Vincent Batts.  --rworkman
office/odt2txt: Added - odt2txt is a simple converter from OpenDocument Text
  to plain tex.  Thanks to sercari.  --dsomero
office/pandoc: Updated for version 1.3 and included a patch build against
  haskell-parsec-3.x.  Thanks to Peter Wang.  --rworkman
system/afuse: Added - afuse is a automounter for FUSE.
  Thanks to Evandro Alves Rodrigues.  --dsomero
system/filelight: Added - filelight is an alternative KDE filemanager.
  Thanks to Lionel Young.  --dsomero
system/herculesstudio: Added - herculesstudio ia s Hercules GUI for Linux.
  Thanks to Niels Horn.  --dsomero
system/lbzip2: Updated for version 0.20.  Thanks to Erik Hanson.  --rworkman
system/qemu-kvm: Updated for version 0.12.1.2.
  Thanks to Stu Miller.  --dsomero
system/runit: Added - runit is a UNIX init scheme with service supervision.
  Thanks to David Miller.  --dsomero
system/virtualbox-kernel: Updated for version 3.1.2.  Thanks to pprkut.
system/virtualbox-kernel-addons: Updated for version 3.1.2.  Thanks to pprkut.
system/virtualbox-ose: Updated for version 3.1.2.  Thanks to pprkut.
system/virtualbox-ose-addons: Updated for version 3.1.2.  Thanks to pprkut.
+--------------------------+
Tue Dec 29 07:32:33 UTC 2009
academic/gwyddion: Updated for version 2.19.
  Thanks to Daniil Bratashov.  --rworkman
academic/mendeleydesktop: Updated for version 0.9.5.2.
  Thanks to Grissiom.  --dsomero
academic/wxMaxima: Updated for version 0.8.4.
  Thanks to Larry Hajali.  --dsomero
audio/mp3check: Updated for version 0.8.4.
  Thanks to Audrius Kažukauskas.  --dsomero
audio/ocp: Updated for version 0.1.18.  Thanks to Erik Hanson.  --dsomero
audio/qsynth: Added - qsynth is a gui frontend for fluidsynth.
  Thanks to Michales Michaloudes.  --rworkman
desktop/cwp: Updated for version 0.9.17.  Thanks to M. Dinslage.  --rworkman
desktop/qt-recordmydesktop: Added - this is a qt frontend for recordmydesktop.
  Thanks to Michales Michaloudes.  --rworkman
desktop/recordmydesktop: Added - this allows you to record desktop sessions
  to an Ogg-Theora-Vorbis file.  Thanks to Michales Michaloudes.  --rworkman
development/scala: Updated for version 2.7.7.final.
  Thanks to Matthias Diehn Ingesman.  --rworkman
development/vic: Added - vic is a simple wrapper around the editor of your
  choice to first check a file out of RCS, edit the file, and then check the
  file back into RCS.  Thanks to Menno Duursma.  --rworkman
games/bloodfrontier: Added - Blood Frontier is a first-person shooter game.
  Thanks to Ponce.  --rworkman
games/fceux: Added - this is an 8-bit NES emulator based on FCE Ultra.
  Thanks to M. Dinslage.  --rworkman
games/pcsxr: Updated for version 1.9.91.  Thanks to M.Dinslage.  --dsomero
graphics/graphviz: Updated for version 2.26.0.
  Thanks to Audrius Kažukauskas.  --dsomero
graphics/LDraw_data: Updated for version 200902.
  Thanks to Niels Horn.  --dsomero
libraries/c-ares: Updated for version 1.7.0.
  Thanks to Larry Hajali.  --dsomero
libraries/exiftool: Updated for version 8.00.
  Thanks to David Spencer.  --dsomero
libraries/gdal: Updated for version 1.6.3.  Thanks to David Spencer.  --dsomero
libraries/openvas-libnasl: Removed.
libraries/openvas-libraries: Updated for version 3.0.0.
  Thanks to Marco Bonetti.  --dsomero
libraries/python-distutils-extra: Updated for version 2.14.
  Thanks to Larry Hajali.  --rworkman
misc/ascii: Added - this is a handy little utility that recognizes many
  different ways of naming an ASCII character.
  Thanks to cteg.  --rworkman
misc/ibus-qt: Updated for version 1.2.0.20091217.
  Thanks to Grissiom.  --rworkman
misc/krename: Updated for version 4.0.2.  Thanks to Heinz Wiesinger.  --dsomero
misc/misctools: Updated for version 2.5.5.  Thanks to Menno Duursma.
multimedia/minitube: Updated for version 0.8.1.
  Thanks to Mikhail Zotov.  --dsomero
multimedia/transcode: Updated for version 1.1.5.
  Thanks to Heinz Wiesinger.  --dsomero
network/centerim: Updated for version 4.22.9.
  Thanks to Christopher Forrest.  --dsomero
network/hydra: Updated to build against libssh 0.4.
  Thanks to Larry Hajali.  --dsomero
network/mailman: Added - the GNU Mailing List Manager.
  Thanks to Eugene Suter.  --rworkman
network/openvas-client: Updated for version 3.0.0.
  Thanks to Marco Bonetti.  --dsomero
network/openvas-plugins: Removed.
network/openvas-scanner: Updated for version 3.0.0.
  Thanks to Marco Bonetti.  --dsomero
network/openvas-server: Removed, renamed to openvas-scanner.
network/periscope: Updated for version 0.1.7.1.
  Thanks to Marco Bonetti.  --dsomero
network/scli: Added - scli is an SNMP Command Line Interface.
  Thanks to Menno Duursma.  --rworkman
network/shorewall6: Updated for version 4.4.5.4.
  Thanks to ArTourter.  --rworkman
network/shorewall: Updated for version 4.4.5.4.
  Thanks to ArTourter.  --rworkman
network/sylpheed: Updated for version 2.7.1.  Thanks to GPLeo.  --dsomero
network/udpcast: Updated for version 20091031.
  Thanks to Heinz Wiesinger.  --dsomero
system/cage: Added - cage was written to be a creator of unbreakable padded
  cells for untrusted applications.  Thanks to Menno Duursma.  --rworkman
system/cdcopy: Added - cdcopy is a shell / dialog program to easily copy CDs
  from the console.  Thanks to Menno Duursma.  --rworkman
system/chkconfig: Added - Chkconfig is a tool for managing the collection of
  symbolic links found in the /etc/rc[0-6].d directories on System V derived
  UNIX systems.  Thanks to Menno Duursma.  --rworkman
system/cpulimit: Added - cpulimit is a simple program that attempts to limit
  the cpu usage of a process.  Thanks to Menno Duursma.  --rworkman
system/hercules: Updated for version svn_20091219.
  Thanks to Niels Horn.  --dsomero
system/kvm: Added - KVM is a full virtualization solution for Linux.
  Thanks to Murat D. Kadirov.  --rworkman
system/nss-mysql: Added - the NSS-MySQL name service switch library.
  Thanks to Menno Duursma.  --rworkman
system/sash: Added - sash is a stand-alone shell with many built-in commands.
  Thanks to Menno Duursma.  --rworkman
system/tiger: Added - TIGER, or the 'tiger' scripts, is a set of Bourne shell
  scripts, C programs and data files which are used to perform a security
  audit of UNIX systems.  Thanks to Menno Duursma.  --rworkman
system/watchdog: Added - the Linux watchdog timer daemon.
  Thanks to Menno Duursma.  --rworkman
+--------------------------+
Mon Dec 28 06:27:01 UTC 2009
audio/zynaddsubfx - Removed at maintainer's request, as the build script was
  failing inexplicably on some machines and it may conflict with another script
  in our repository.
desktop/xmonad: Updated for version 0.9.1.  Thanks to Mikko Varri.  --rworkman
development/erlang-otp: Updated for version 13B03.  Thanks to Ben Mendis.
development/ghc: Updated for version 6.12.1.
  Thanks to Mikko Varri.  --rworkman
development/happy: Added - Happy is a parser generator system for Haskell.
  Thanks to Mikko Varri.  --rworkman
development/mono: Updated for version 2.6.1.
  Thanks to Sebastián Salazar Molina.  --rworkman
libraries/X11-haskell: Removed (renamed to haskell-X11).
libraries/haskell-HUnit: Added - a unit testing framework for Haskell.
  Thanks to Mikko Varri.  --rworkman
libraries/haskell-QuickCheck: Added - QuickCheck is a library for random
  testing of program properties.  Thanks to Mikko Varri.  --rworkman
libraries/haskell-X11: Updated for version 1.5.0.0; renamed from X11-haskell.
  Thanks to Mikko Varri.  --rworkman
libraries/haskell-deepseq: Added - a "deep" version of seq for Haskell.
  Thanks to Mikko Varri.  --rworkman
libraries/haskell-haskell-src: Added - Facilities for manipulating Haskell
  source code.  Thanks to Mikko Varri.  --rworkman
libraries/haskell-html: Added - HTML combinator library for Haskell.
  Thanks to Mikko Varri.  --rworkman
libraries/haskell-mtl: Added - the monad transformer library.
  Thanks to Mikko Varri.  --rworkman
libraries/haskell-network: Added - Networking-related facilities for Haskell.
  Thanks to Mikko Varri.  --rworkman
libraries/haskell-packedstring: Added - Packed Strings library for Haskell.
  Thanks to Mikko Varri.  --rworkman
libraries/haskell-parallel: Added - a library for parallel programming in
  Haskell.  Thanks to Mikko Varri.  --rworkman
libraries/haskell-parsec: Added - Monadic parser combinators for Haskell.
  Thanks to Mikko Varri.  --rworkman
libraries/haskell-regex-base: Added - an interface API for regex-posix, pcre,
  parsec, tdfa, and dfa.  Thanks to Mikko Varri.  --rworkman
libraries/haskell-regex-compat: Added - A module layer over regex-posix to
  replace Text.Regex.  Thanks to Mikko Varri.  --rworkman
libraries/haskell-regex-posix: Added - posix regex backend for regex-base.
  Thanks to Mikko Varri.  --rworkman
libraries/haskell-stm: Added - Software Transactional Memory for Haskell.
  Thanks to Mikko Varri.  --rworkman
libraries/haskell-utf8-string: Removed - this is now part of ghc.
libraries/haskell-xhtml: Added - an XHTML combinator library for Haskell.
  Thanks to Mikko Varri.  --rworkman
libraries/haskell-zip-archive: Updated for version 0.1.1.4.
libraries/libgee: Added - libgee is a collection library providing
  GObject-based interfaces and classes for commonly used data structures.
  Thanks to Larry Hajali.
libraries/librcd: Added - librcd is a library for character set autodetection
  of russian text.  Thanks to gshep.  --rworkman
libraries/libssh: Updated for version 0.4.0.  Thanks to Larry Hajali.
libraries/libvmime-zarafa: Added - VMime is a free mail library for C++, an
  open-source solution for working with MIME messages and Internet messaging
  services like IMAP, POP or SMTP.  This script builds a specially patched
  version of libvmime-0.7.1 for zarafa.  Thanks to Niels Horn. --rworkman
libraries/xmonad-contrib: Updated for version 0.9.1.  Thanks to Mikko Varri.
network/ifstatus: Added - ifstatus is an ncurses network statistics monitor.
  Thanks to Sean Donner.  --rworkman
network/radvd: Updated for version 1.5.  Thanks to Sean Donner.  --rworkman
network/squid: Updated for version 3.0STABLE21 and fixed some log rotation
  issues.  Be sure to move/merge squid.conf and /etc/logrotate.d/squid after
  the upgrade.  Thanks to Niels Horn for reporting the issue and helping to
  (hopefully) fix it.  --rworkman
network/zarafa: Added - Zarafa offers a replacement for MS Exchange Server.
  Thanks to Niels Horn.  --rworkman
network/zarafa-webaccess-ajax: Added - the webaccess module of Zarafa.
  Thanks to Niels Horn.  --rworkman
office/apvlv: Updated for version 0.0.8.1.
  Thanks to Grigorios Bouzakis.  --rworkman
system/fsarchiver: Updated for version 0.6.2.
system/webmin: Updated for version 1.500.
+--------------------------+
Mon Dec 21 16:09:47 UTC 2009
academic/gtkwave: Added - GTKWave is a fully featured GTK+ based wave viewer.
  Thanks to Stephen Van Berg.  --rworkman
desktop/nitrogen: Added - Nitrogen is a background browser and setter for X.
  Thanks to G Edward Whiteside.  --rworkman
development/cppcheck: Added - Cppcheck is an analysis tool for C/C++ code.
  Thanks to Sean Donner.  --rworkman
development/perl-Bit-Vector: Added - Bit::Vector is an efficient bit vector,
  set of integers and "big int" math library.  Thanks to Marco Bonnetti.
development/perl-Carp-Clan: Added - Carp::Clan report errors from perspective
  of caller of a "clan" of modules.  Thanks to Marco Bonnetti.
development/perl-Class-Gomor: Added - Class::Gomor is yet another class
  builder.  Thanks to Marco Bonnetti.
development/perl-Math-Base85: Added - Math::Base85 is a module for handling
  base 85 numbers.  Thanks to Marco Bonnetti.
development/perl-Net-IPv4Addr: Added - Net::IPv4Addr provides functions for
  parsing IPv4 addresses both in traditional address/netmask format and in
  the new CIDR format.  Thanks to Marco Bonnetti.
development/perl-Net-IPv6Addr: Added - Net::IPv6Addr checks strings for valid
  IPv6 addresses, as specified in RFC1884.  Thanks to Marco Bonnetti.
development/perl-Net-Libdnet: Added - Net::Libdnet is a set of perl bindings
  for Dug Song's libdnet.  Thanks to Marco Bonnetti.
development/perl-Net-Packet:  Added - Net::Packet is a unified framework to
  craft, send and receive packets at layers 2, 3, 4 and 7.
  Thanks to Marco Bonnetti.
development/perl-Net-Write: Added - Net::Write provides a portable interface
  to open a network interface, and be able to write raw data directly to the
  network.  Thanks to Marco Bonnetti.
games/bsnes: Updated for version 0.58.
misc/ibus: Updated for version 1.2.0.20091204.  Thanks to Grissiom.  -RW
misc/ibus-anthy: Updated for version 1.2.0.20091127.
  Thanks to Ozan Türkyılmaz.  --rworkman
misc/ibus-pinyin: Updated for version 1.2.0.20091211.
  Thanks to Grissiom.  --rworkman
misc/ibus-qt: Updated for version 1.2.0.20091206.
  Thanks to Grissiom.  --rworkman
multimedia/k9copy: Updated for version 2.3.4.  Thanks to Roberto Neri.  -RW
multimedia/mkvtoolnix: Updated for version 3.0.0.
network/framework: Updated for version 3.3.2.  Thanks to Marco Bonnetti.  -RW
network/libdnet: Added - libdnet provides a simplified, portable interface
  to several low-level networking routines.
  Thanks to Marco Bonnetti.  --rworkman
network/mldonkey: Updated for version 3.0.1.  Thanks to Grissiom.  --rworkman
network/znc: Updated for version 0.076.  Thanks to Sean Donner.  --rworkman
office/mupdf: Added - MuPDF is a lightweight PDF viewer and toolkit.
  Thanks to Valeriy Timchenko.  --rworkman
system/tkdvd: Added - TkDVD is a GUI to dvd+rw-tools and cdrecord.
  Thanks to Luis Henrique.  --rworkman
+--------------------------+
Fri Dec 18 06:10:41 UTC 2009
academic/ggobi: Added - GGobi is an interactive, direct manipulation tool
  for visualizing high dimensional data across linked plots.
  Thanks to Pedro Mendes.  --rworkman
academic/mathomatic: Updated for version 15.0.0.
  Thanks to Dylan Armitage.  --rworkman
academic/orsa: Fixed the qt3 path and updated the README and info files.
  Thanks to Marco Cecchetti.  --rworkman
academic/verilog: Added - Icarus Verilog is a Verilog simulation and synthesis
  tool.  Thanks to Stephen Van Berg.  --rworkman
academic/wxmacmolplt: Included a small fix for pcgamess rename to firefly.
  Thanks to Daniil Bratashov.  --rworkman
development/splint: Added - splint is a tool for statically checking C
  programs for security vulnerabilities and programming mistakes.
  Thanks to Sean Donner and Menno Duursma.  --rworkman
graphics/LDView: Updated for version 4.1.  Thanks to Niels Horn.  --rworkman
misc/siege: Updated for version 2.69.  Thanks to Menno Duursma.  --rworkman
multimedia/cdcat: Added - CdCat is a graphical (QT based) catalog program.
  Thanks to Niels Horn.  --rworkman
network/aMule: Updated the README to reflect possible incompatibility with
  some versions of cryptopp.  Since this will require some users to rebuild
  aMule, we also incremented the BUILD value.  Thanks to Iskar Enev.  -RW
network/zabbix_agentd: Added - Zabbix is an enterprise-class distributed
  monitoring solution.  Thanks to Niels Horn.  --rworkman
network/zabbix_server: Added - Zabbix is an enterprise-class distributed
  monitoring solution.  Thanks to Niels Horn.  --rworkman
office/pdfedit: Added - PDFedit is library for manipulating PDF documents.
  Thanks to Pedro Mendes.  --rworkman
system/luckybackup: Added - luckybackup is a powerful, fast, and reliable
  backup & sync tool that uses rsync.  Thanks to titopoquito.  --rworkman
+--------------------------+
Wed Dec 16 05:25:41 UTC 2009
academic/engauge: Added - Engauge digitizing software converts an image file
  showing a graph or map, into numbers.  Thanks to Pedro Mendes.  --rworkman
academic/mendeleydesktop: Added - Mendeley is a software to organize, share,
  and discover research papers.  Thanks to Grissiom.  --rworkman
graphics/qcomicbook: Fixed SLKCFLAGS usage in the script.
  Thanks to Niels Horn.  --rworkman
libraries/libtorrent: Fixed CXXFLAGS usage in the build script.
  Thanks to Markus Rinne.  --rworkman
misc/boncuk: Added - boncuk is a Turkish<-->English dictionary.
  Thanks to Ozan Türkyılmaz.  --rworkman
misc/htscanner: Added - Htscanner allows one to use htaccess-like files to
  configure PHP on a per-directory basis, just like Apache's htaccess.
  Thanks to Menno Duursma.  --rworkman
network/netstat-nat: Updated for version 1.4.9.  Thanks to Sean Donner for the
  update, and thanks to David Somero for agreeing to take over maintenance of
  the script.  --rworkman
network/rtorrent: Fixed CXXFLAGS usage in the build script.
  Thanks to Markus Rinne.  --rworkman
network/vuze: Fixed some build script issues. Thanks to ArTourter. --rworkman
system/apcupsd: Fixed compile failure in drv_powernet.c related to snmp
  headers.  Thanks to GooseYArd on LQ for the fix.  --rworkman
+--------------------------+
Mon Dec 14 01:34:00 UTC 2009
accessibility/linuxwacom: Updated for version 0.8.4_6.
  Thanks to Menno Duursma.  --dsomero
audio/hydrogen: Updated build script to correctly use QT4DIR.
  Thanks to David Woodfall.  --dsomero
audio/moc: Updated for version 2.4.4 and fixed up docdir usage.
  Thanks to Michael Wagner.  --rworkman
development/pip: Updated for version 0.6.1.
development/pysetuptools: Updated for version 0.6c11.
  Thanks to the new maintainer Audrius Kazukauskas.
desktop/xmonad: Updated for version 0.9.
games/pcsxr: Added - PCSX-Reloaded is a PlayStation Emulator based on the
  PCSX-df Project.  Thanks to M.Dinslage.
graphics/exif: Re-added - Thanks to Kyle Guinn.
libraries/X11-haskell: Updated for 1.4.6.1.  Note that this no longer needs
  the libedit package.  Thanks to Mikko Varri.  --rworkman
libraries/cbase: Updated for version 1.3.5.
  Thanks to Menno Duursma.  --dsomero
libraries/libcap-ng: Added - the libcap-ng library is intended to make
  programming with posix capabilities much easier than the traditional libcap
  library.  Thanks to Menno Duursma.
libraries/libgsasl: Updated for version 1.4.0.
libraries/libisoburn: Updated for version 0.4.6.
libraries/libssh2: Updated for version 1.2.2.
  Thanks to Menno Duursma.  --dsomero
libraries/libvirt: Updated for version 0.7.4.
  Thanks to Michal Bialozor.  --dsomero
libraries/rrdtool: Updated for version 1.4.2.
  Thanks to the new maintainer Niels Horn.
libraries/xmonad-contrib: Added - this is a library of third party extensions
  for xmonad.  Thanks to Mikko Varri.  --rworkman
misc/keychain: Updated for version 2.7.0.  Thanks to Menno Duursma.  --dsomero
multimedia/flash-player-plugin: Updated for version 10.0_r42.
multimedia/flash-player-standalone: Updated for version 10.0.42.34.
network/google-chrome: Updated for version 4.0_beta.
  Thanks to Erik Hanson.  --dsomero
network/suhosin: Updated for version 0.9.29.
  Thanks to Menno Duursma.  --dsomero
office/tellico: Updated for version 2.1.1.  Thanks to Gilcio Amaral.  --dsomero
system/biew: Updated for version 6.1.0.
system/conserver: Updated for version 8.1.17.
system/nvidia-legacy173-driver: Updated for version 173.14.22.
system/nvidia-legacy173-kernel: Updated for version 173.14.22.
system/nvidia-legacy96-driver: Updated for version 96.43.14.
system/nvidia-legacy96-kernel: Updated for version 96.43.14.
system/ulogd: Added large file support using a patch from Andreas Lundin.
  Thanks to Bialy for the link to the patch.  --rworkman
+--------------------------+
Tue Dec  8 04:46:18 UTC 2009
audio/hydrogen: Added - hydrogen is a advanced drum machine.
  Thanks to David Woodfall.  --dsomero
audio/mpd: Updated for version 0.15.6.
audio/ncmpc: Updated for version 0.15.
audio/portmidi: Fixed libjvm linking on x86_64.  Thanks to dive, fire|bird,
  Camarade_Tux, and metrofox for the help with this.
audio/xmms2: Added a patch for ruby 1.9.  This is commented out by default.
  Thanks to Andrew Brouwers.  --dsomero
audio/zynaddsubfx: Updated download link.
  Thanks to Christopher Forrest.  --dsomero
desktop/enlightenment: Updated for version 0.16.999.063.
desktop/plasma-applet-daisy: Updated for version 0.0.4.21.
development/cgdb: Added - CGDB is a curses (terminal-based) interface to the
  GNU Debugger (GDB).  Thanks to Sean Donner.  --rworkman
development/docutils: Updated for version 0.6.
development/ghc: Updated for version 6.10.4.  Thanks to Mikko Varri.  --dsomero
development/nose: Updated for version 0.11.1.
development/zope.testing: Updated for version 3.8.3.
games/atari++: Updated for v1.58.
games/spring: Updated for version 0.80.5.2.
games/springlobby: Updated for version 0.40.
graphics/plotutils: Added - a plotting/graphics library and related tools.
  Thanks to Luis Henrique.  --rworkman
graphics/qcomicbook: Updated for version 0.5.0.
libraries/SDL_sound: Added - SDL_sound is a library that handles the decoding
  of several popular sound file formats.  Thanks to Erik Hanson.  --rworkman
libraries/e_dbus: Updated for version 0.5.0.063.
libraries/ecore: Updated for version 0.9.9.063.
libraries/edje: Updated for version 0.9.93.063.
libraries/eet: Updated for version 1.2.3.
libraries/efreet: Updated for version 0.5.0.063.
libraries/eina: Updated for version 0.9.9.063.
libraries/embryo: Updated for version 0.9.9.063.
libraries/evas: Updated for version 0.9.9.063.
libraries/ginac: Updated for version 1.5.5.
libraries/libEMF: Added - libEMF is a C/C++ library which provides a drawing
  toolkit based on  ECMA-234.  Thanks to Pedro Mendes.  --rworkman
libraries/libburn: Updated for version 0.7.4.
libraries/libisofs: Updated for version 0.6.24.
libraries/libtorrent-rasterbar: Updated for version 0.1.4.7.
libraries/loudmouth: Added fix to build with gnutls-2.8.
  Thanks to Heinz Wiesinger.  --dsomero
misc/iscan-proprietary-drivers: Updated for version 2.10.0.1-1.4.
  Thanks to Simone Giustetti.  --dsomero
misc/tangogps: Added - tangogps is an easy to use, fast, and lightweight
  mapping application for use with or without GPS.
  Thanks to Pedro Mendes.  --rworkman
network/aria2: Updated for version 1.7.1.
network/dillo: Added - Dillo is a multi-platform graphical web browser known
  for its speed and small footprint.  Thanks to Mikhail Zotov.  --rworkman
network/fqterm: Updated for version 0.9.6.3.  Thanks to vvoody.  --dsomero
network/privoxy: Fixed the pidfile location and a missed config() run in the
  postinstall script.  Thanks to Andrew Psaltis.
network/shorewall: Updated for version 4.4.4.2.
network/shorewall6: Updated for version 4.4.4.2.
network/vuze: Added - Vuze, formerly known as Azureus, is a bittorrent client.
  Thanks to Chris Lawrence.  --rworkman
office/pstoedit: Added - pstoedit converts PostScript and PDF files to various
  vector graphic formats.  Thanks to Pedro Mendes.  --rworkman
office/ps2eps: Added - ps2eps is a perl tool to produce Encapsulated PostScript
  Files (EPS/EPSF) from usual one-paged Postscript documents.
  Thanks to Pedro Mendes.  --rworkman
office/moneydance: Updated for version 2010_b721.
  Thanks to Robby Workman.  --dsomero
system/motion: Added - Motion is a program that monitors one or more cameras
  and is able to detect motion.  Thanks to the new maintainer Pierre Cazenave.
system/qemu: Updated for version 0.11.1.  Thanks to Andrew Brouwers.  --dsomero
system/testdisk: Updated for version 6.11.
+--------------------------+
Sun Dec  6 20:31:37 UTC 2009
academic/bibletime: Re-added for 13.0.  Thanks to Robert Delahunt.
desktop/brightside: Added - Brightside allows you to assign configurable
  actions to occur while you rest the mouse in a corner or bump the edge
  of the screen.  Thanks to Erik Hanson.  --rworkman
games/sdlmame-data: Added - data files for sdlmame.
  Thanks to Pablo Santamaria.  --rworkman
libraries/libevent: Updated for version 1.4.13.  Thanks to Erik Hanson.
misc/ibus-anthy: Added - an ibus module for Anthy Japanese conversion engine.
  Thanks to Ozan Türkyılmaz.  --rworkman
multimedia/mythplugins: Updated for version 0.22.  Thanks to David Somero.
multimedia/myththemes: Updated for version 0.22.  Thanks to David Somero.
multimedia/mythtv: Updated for version 0.22.  Thanks to David Somero.
network/lighttpd: Updated for version 1.4.25.  Thanks to Paul Wisehart. -RW
network/ntop: Added - ntop is a "top" like network traffice monitor.
  Thanks to Niels Horn.  --rworkman
network/shorewall: Updated for version 4.4.4.1.
  Thanks to ArTourter.  --rworkman
network/shorewall6: Updated for version 4.4.4.
  Thanks to ArTourter.  --rworkman
network/tor: Added a patch to fix functionality with openssl 0.9.8l.
  Thanks to Mikhail Zotov for finding the issue and for info about the patch.
network/xsp: Added - xsp is a lightweight and simple webserver written
  in C#.  Thanks to Asaf Ohaion.  --rworkman
system/samhain: Added - Samhain is an open source host-based intrusion
  detection system (HIDS).  Thanks to Richard Scott Smith.  --rworkman
+--------------------------+
Tue Dec  1 14:21:53 UTC 2009
system/xarchiver: Fixed LZOP archive handling in tar.c if the experimental
  patch had been applied.  Thanks to Camarade_Tux for the report, and thanks
  to mancha for the fix.  --rworkman
+--------------------------+
Mon Nov 30 07:19:34 UTC 2009
Okay, here's a big batch of updates and additions resulting from several hours
  of work over the holidays  :-)  Several of you (submitters) requested some
  feedback in your submission notes, and while we were able to reply to a few
  of the mails, many of them did not get a reply due to time constraints.
  Have a look at the approved scripts, note the differences, and if any of the
  reasons for those differences aren't clear, let us know on the -users list
  and we'll try to clarify.  As always, be sure to sync your local copies of
  the scripts and support files with the ones in our repository before you
  submit any updates and such.  Enjoy!  -RW
academic/ess: Added - Emacs Speaks Statistics.
  Thanks to Joel J. Adamson.  --rworkman
academic/geda-gaf: Added - The gEDA project is a toolkit of Electronic Design
  Automation tools.  Thanks to Stephen Van Berg.  --rworkman
academic/rkward: Updated for version 0.5.2.  Thanks to Germán Márquez Mejía.
academic/slatec: Added - SLATEC Common Mathematical Library is a software
  library containing some general purpose mathematical and statistical
  routines written in Fortran 77.  Thanks to Pablo Santamaria.  --rworkman
academic/words: Added - words is a latin to english (and english to latin)
  dictionary.  Thanks to Tom Canich.  --rworkman
audio/SimpleSysexxer: Added - Simple Sysexxer is a GUI tool to create backups
  of the memory contents of your MIDI devices.
  Thanks to Michales Michaloudes.  --rworkman
audio/caps: Added - CAPS, the C* Audio Plugin Suite, is a set of refined
  LADSPA audio plugins mainly intended for realtime operation.
  Thanks to B. Watson.  --rworkman
audio/cmt: Added - The Computer Music Toolkit (CMT) is a collection of LADSPA
  plugins for use with software synthesis and recording packages on Linux.
  Thanks to B. Watson.  --rworkman
audio/cuberok: Added - Cuberok is an audio player and a collection manager.
  Thanks to Pablo Santamaria.  --rworkman
audio/portmidi: Added - PortMidi is a computer library for real time input
  and output of MIDI data.  Thanks to David Woodfall.  --rworkman
audio/rakarrack: Added - Rakarrack is a virtual digitial effects rack.
  Thanks to B. Watson.  --rworkman
desktop/Alphacube-GTK: Added - Alphacube GTK Theme is a very simple and fast
  Alphacube Metacity theme.  Thanks to alkos333.  --rworkman
desktop/kover: Updated for version 4 along with a patch for gcc-4.4.x.
  Thanks to Michales Michaloudes.  --rworkman
desktop/trayer: Added - trayer is a small program designed to provide systray
  functionality present in GNOME/KDE desktop environments for window managers
  which do not support that function.  Thanks to Eugene Wissner.  --rworkman
development/flawfinder: Added - Flawfinder is a program that examines source
  code and reports possible security weaknesses ("flaws") sorted by risk level.
  Thanks to Andrzej Telszewski.  --rworkman
development/netbeans: Updated for version 6.7.1.
  Thanks to Antonio Hernández Blas.  --rworkman
development/mysqlcc: Added - MySQLcc is a control center for MySQL.
  Thanks to Michales Michaloudes.  --rworkman
development/pydblite: Updated for version 2.4.
  Thanks to LukenShiro.  --rworkman
development/qdoc3: Added - qdoc3 is the tool used to generate the Qt
  reference documentation.  Thanks to Christian Wansart.  --rworkman
development/rats: Added - RATS - Rough Auditing Tool for Security.
  Thanks to Andrzej Telszewski.  --rworkman
development/tig: Updated for version 0.15.
  Thanks to Grigorios Bouzakis.  --rworkman
games/SecondLife: Updated for version 1.23.5.136262.
  Thanks to Daniel Rodriguez.  --rworkman
games/gnubg: Updated for version 0.90.0_20091120.
  Thanks to Erik Hanson.  --rworkman
graphics/qiv: Updated for version 2.2.2.
  Thanks to Pablo Santamaria.  --rworkman
libraries/PyQwt: Added - PyQwt is a Python wrapper for the Qwt C++ class
  library.  Thanks to Bartosz Bialy.  --rworkman
libraries/audiere: Added - Audiere is a high-level audio API.
  Thanks to Pablo Santamaria.  --rworkman
libraries/fltk2: Added - the 2.x development branch of FLTK.
  Thanks to Mikhail Zotov.  --rworkman
libraries/hdf5: Updated for version 1.8.4.  Thanks to LukenShiro.  --rworkman
libraries/libapreq2: Updated for version 2.12.
  Thanks to luoyi.  --dsomero
libraries/libparapin: Added - Parapin makes it easy to write code to control
  individual pins on a parallel port. Thanks to Andrzej Telszewski. --rworkman
libraries/libtorrent: Updated for version 0.12.5.  --rworkman
libraries/libwww-perl: Updated for version 5.833.
  Thanks to LukenShiro.  --rworkman
libraries/perl-ExtUtils-XSBuilder: Added - XSBuilder is a set modules to parse
  C header files and create XS glue code and documentation out of it.
  Thanks to David Somero.  --rworkman
libraries/perl-Parse-RecDescent: Added - Parse::RecDescent incrementally
  generates top-down recursive-descent text parsers from simple yacc-like
  grammar specifications.  Thanks to David Somero.  --rworkman
libraries/perl-Tie-IxHash: Added - Tie::IxHash implements ordered in-memory
  associative arrays in perl.  Thanks to David Somero.  --rworkman
libraries/perl-dbd-sqlite: Added - DBD::SQLite - Self-contained RDBMS in a
  DBI Driver.  Thanks to Thomas Morper.  --rworkman
libraries/perl-html-parser: Updated for version 3.64.
  Thanks to LukenShiro.  --rworkman
libraries/pytables: Updated for version 2.1.2.  Thanks to LukenShiro.  --RW
libraries/xforms: Added - XForms is a GUI C toolkit based on X11 Xlib library.
  Thanks to LukenShiro.  --rworkman
misc/biosdisk: Re-added for 13.0.  Thanks to Michales Michaloudes.  --rworkman
misc/task: Added - Task is a command line todo list manager.
  Thanks to Zoran Stojakovic.  --rworkman
multimedia/guvcview: Added - this is a gtk+ uvc viewer.
  Thanks to Zoran Stojakovic.  --rworkman
multimedia/minitube: Added - Minitube is a native YouTube client.
  Thanks to Mikhail Zotov.  --rworkman
multimedia/smplayer: Fixed an ownership problem in a theme directory.
  Thanks to Grissiom.  --rworkman
multimedia/videocut: Added - VideoCut is an open source desktop application
  specially created for capturing screenshots from video files.
  Thanks to Pablo Santamaria.  --rworkman
multimedia/zynaddsubfx: Added - ZynAddSubFX is a software synthesizer capable
  of making a countless number of instruments.
  Thanks to Christopher Forrest.  --rworkman
network/google-chrome: Added at version 4.0.249.11 (as of 20091128); note that
  Google changes the tarballs with every version bump, but the tarballs are
  not versioned, so there's no way for us to know when they change except for
  the incorrect md5sums.  Check the Help --> About information to see your
  installed version.  Thanks to Erik Hanson.  --rworkman
network/icecat: Added - GNU IceCat is the GNU version of the Firefox browser.
  Thanks to David Negroni.  --rworkman
network/kmess: Added - KMess is an alternative Live Messenger chat client
  for Linux.  Thanks to metrofox.  --rworkman
network/leechcraft: Added - LeechCraft is a full-featured modular "Internet
  client" application.  Thanks to rexim.  --rworkman
network/mew: Updated for version 6.3.  Thanks to vvoody.  --rworkman
network/mitter: Added -- mitter is a twitter client.
  Thanks to Georgi Hristozov.  --rworkman
network/proxymini: Added - proxymini is a small proxy server that fully
  supports HTTP, HTTP CONNECT, SOCKS4, and SOCKS5.
  Thanks to Thomas Morper.  --rworkman
network/rtorrent: Re-added for 13.0.  Thanks to Brian Kysela.  --rworkman
office/leafpad: Updated for version 0.8.17.
  Thanks to Grigorios Bouzakis.  --rworkman
system/ccd2iso: Added - ccd2iso converts CD backup files created using the
  non-free CloneCD program to a format understood by most Free Software CD
  writing programs.  Thanks to Bogdan Tatarov.  --rworkman
system/drbd: Added - drbd (Distributed Replicated Block Device) is a block
  device which is designed to build high availability clusters.
  Thanks to Zordrak.  --rworkman
system/ecofont-ttf: Fixed up the build for source tarball restructuring (no
  version bump).  Thanks to LukenShiro.  --rworkman
system/gigolo: Added - Gigolo is a frontend to easily manage connections to
  remote filesystems using GIO/GVfs.  Thanks to Luis Henrique.  --rworkman
system/gkrellm-volume: Added - gkrellm-volume is a plugin for gkrellm-2 that
  lets you control your sound mixer.  Thanks to Eugene Wissner.  --rworkman
system/gtklp: Added - GtkLP and GtkLPQ are GUI tools for the use and admin
  of CUPS.  Thanks to Luis Henrique.  --rworkman
system/lbzip2: Updated for version 0.18.  Thanks to Erik Hanson.  --rworkman
system/openct: Updated for version 0.6.18.
  Thanks to LukenShiro.  --rworkman
system/opensc: Updated for version 0.11.11.
  Thanks to LukenShiro.  --rworkman
system/rar: Updated for version 3.9.0.  Note that this update also adds x86_64
  support from upstream.  Thanks to Ozan Türkyılmaz.  --rworkman
system/smbldap-tools: Fixed my bug in doinst.sh.
  Thanks to Christopher Walker.  --rworkman
system/tmux: Updated for version 1.1 and changed maintainer.
  Thanks to Bogdan Pangrati.  --rworkman
system/unrar: Fixed a doc bug in the build script.
  Thanks to Niklas 'Nille' Åkerström.  --rworkman
system/xjobs: Updated for version 20091012.  Thanks to Erik Hanson.  --rworkman
+--------------------------+
Thu Nov 26 07:03:00 UTC 2009
academic/ngspice: Added - ngspice is a mixed-level/mixed-signal circuit
  simulator.  Thanks to B. Jogai.  --dsomero
academic/sword: Updated for version 1.6.0.
audio/phat: Added - phat is a collection of GTK+ widgets geared toward
  pro-audio apps.  Thanks to Christopher Forrest.  --dsomero
audio/specimen: Added - specimen is a MIDI controllable audio sampler.
  Thanks to Christopher Forrest.  --dsomero
audio/xmms2: Added - xmms2 is a music player.
  Thanks to Andrew Brouwers.  --dsomero
business/openerp-client: Updated for version 5.0.4.  Thanks to pprkut.  -RW
business/openerp-server: Updated for version 5.0.4.  Thanks to pprkut.  -RW
desktop/wally: Added - wally is a Qt4 wallpaper changer.
  Thanks to Larry Hajali.  --dsomero
development/avr8-burn-o-mat: Added - avr8-burn-o-mat is a GUI for avrdude.
  Thanks to Andrzej Telszewski.  --dsomero
development/eric: Added - eric is a python ide.
  Thanks to Rudson Alves.  --dsomero
development/pip: Updated for version 0.5.1.
  Thanks to Audrius Kazukauskas.  --dsomero
development/psycopg2: Updated for version 2.0.13 and noted this as currently
  unmaintained.  --rworkman
development/sloccount: Re-added, thanks to new maintainer Heinz Wiesinger.
development/yaml: Updated for version 0.70.
games/assaultcube: Added - assaultcube is a first person shooter game.
  Thanks to Larry Hajali.  --dsomero
games/chromium-bsu: Added - chromium-bsu a fast paced, arcade-style,
  top-scrolling shooter.  Thanks to Niklas 'Nille' Åkerström.  --dsomero
games/stella: Updated for version 3.0.  Thanks to Luis Henrique.  --dsomero
games/supertuxkart: Updated for version 0.6.2a.
  Thanks to Larry Hajali.  --dsomero
games/tomenet: Added - tomenet is a multiplayer fantasy dungeon exploration
  game.  Thanks to David Melik.  --dsomero
graphics/inkscape: Updated for version 0.47.
graphics/kphotoalbum: Updated for version 4.1.1.  Thanks to Ben.  --dsomero
graphics/qiv: Added - qiv is a drawing program for young children.
  Thanks to Pablo Santamaria.  --dsomero
graphics/svp: Added - svp is a ghostscript front end for svgalib.
  Thanks to Luis Henrique.  --dsomero
graphics/tuxpaint-stamps: Added - tuxpaint-stamps is a rubber stamps
  collection for Tux Paint.  Thanks to Pablo Santamaria.  --dsomero
graphics/tuxpaint: Added - tuxpaint is a drawing program for young children.
  Thanks to Pablo Santamaria.  --dsomero
libraries/ggz-base-libs: Added - The GGZ Gaming Zone base libraries.
  Thanks to Heinz Wiesinger.
libraries/haskell-binary: Added - haskell-binary is a binary serialisation
  library for Haskell.  Thanks to Peter Wang.  --dsomero
libraries/haskell-digest: Added - haskell-digest is a cryptographic hash
  library for Haskell.  Thanks to Peter Wang.  --dsomero
libraries/haskell-utf8-string: Added - haskell-utf8-string is a UTF-8 library
  for Haskell.  Thanks to Peter Wang.  --dsomero
libraries/haskell-zip-archive: Added - haskell-zip-archive is a Haskell
  library for zip archive.  Thanks to Peter Wang.  --dsomero
libraries/haskell-zlib: Added - haskell-zlib is a compression library for
  Haskell.  Thanks to Peter Wang.  --dsomero
libraries/libiptcdata: Added - libiptcdata is a library to manipulate iptc
  image metadata.  Thanks to Nishant Limbachia.  --dsomero
libraries/lightblue: Added - lightblue is a Cross platform Bluetooth API for
  Python.  Thanks to Larry Hajali.  --dsomero
libraries/OpenAL: Updated for version 1.10.622.
  Thanks to Erik Hanson.  --dsomero
libraries/pthsem: Added - pthsem is a extended version of the GNU Pth.
  Thanks to V'yacheslav Stetskevych.  --dsomero
libraries/pyyaml: Added - pyyaml is a YAML parser and emitter for Python.
  Thanks to Pablo Santamaria.  --dsomero
libraries/virtualenv: Updated for version 1.4.2.
  Thanks to Larry Hajali.  --dsomero
misc/dbview: Added - dbview is a dBase file viewer.
  Thanks to Oleg O. Chukaev.  --dsomero
misc/flashrom: Updated for version 0.9.1.
  Thanks to Niklas 'Nille' Åkerström.  --dsomero
misc/recode: Added - recode is a a Charset converter.
  Thanks to Chris Abela.  --dsomero
multimedia/smplayer: Updated for version 0.6.8.
  Thanks to Erik Hanson.  --dsomero
multimedia/tabu_audio_player: Added - tabu_audio_player is a gstreamer based
  audio player.  Thanks to Luciano Tropea.  --dsomero
multimedia/vkeybd: Added - vkeybd is a virtual keyboard.
  Thanks to Luis Henrique.  --dsomero
network/LimeWire: Updated for version 5.3.
network/arora: Added - arora is a simple cross platform web browser.
  Thanks to Luciano Tropea.  --dsomero
network/cacti: Added - cacti is a complete network graphing solution.
  Thanks to Niels Horn.  --dsomero
network/deluge: Updated for version 1.2.0_rc3.
  Thanks to Marco Bonetti.  --dsomero
network/linuxdcpp: Added - linuxdcpp is an Unix/Linux port of the DC++ client.
  Thanks to Niklas 'Nille' Åkerström.  --dsomero
network/mz: Updated for version 0.34.9.
network/nagios: Added - nagios is a monitoring system.
  Thanks to Niels Horn and Zordrak.  --rworkman
network/ntpclient: Added - ntpclient is a NTP (RFC-1305) client.
  Thanks to Andrzej Telszewski.  --dsomero
network/opera: Updated for version 10.10.
network/pidgin-facebookchat: Updated for version 1.63.
  Thanks to Erik Hanson.  --rworkman
network/python-twisted: Added - python-twisted is a Python networking engine.
  Thanks to Marco Bonetti.  --dsomero
network/tor: Updated for version 0.2.1.20.  Thanks to Erik Hanson.  --dsomero
network/transmission: Updated for version 1.76.
  Thanks to Iskar Enev.  --dsomero
office/ganttproject: Added - ganttproject is a free tool for project
  scheduling and management.  Thanks to Chris Abela.  --dsomero
office/pandoc: Added - pandoc is a markup conversion tool.
  Thanks to Peter Wang.  --dsomero
office/pdftk: Re-added with a patch for x86_64 along with another to use our
  custom SLKCFLAGS.  Thanks to Yalla-One and Martinezio from LQ.  --rworkman
office/rednotebook: Added - rednotebook is a graphical daily journal with
  calendar.  Thanks to Pablo Santamaria.  --dsomero
office/wink: Added - wink is a presentation creator.
  Thanks to Ben Collver.  --dsomero
system/amanda: Updated Slackbuild with minor changes.
  Thanks to Christopher Walker.  --dsomero
system/bootchart: Updated to add a script to aid creating an initrd.
  Thanks to Marco Cecchetti.  --dsomero
system/dosemu: Added - dosemu a DOS EMUlator.
  Thanks to Niklas 'Nille' Åkerström.  --dsomero
system/eibd: Added - eibd is a interface to the EIB/KNX bus.
  Thanks to V'yacheslav Stetskevych.  --dsomero
system/fpm2: Updated for version 0.76.1.  Thanks to Erik Hanson.  --dsomero
system/postgis: Re-added at version 1.4.0.  Thanks to Peter Sarkoci.  -RW
system/unrar: Updated for version 3.9.6.
  Thanks to Niklas 'Nille' Åkerström.  --dsomero
system/xautomation: Added - xautomation contains tools to control the X
  server from the command line.  Thanks to V'yacheslav Stetskevych.  --dsomero
system/zeroinstall-injector: Updated for version 0.43.
  Thanks to Erik Hanson.  --rworkman
+--------------------------+
Mon Nov 23 17:29:36 UTC 2009
academic/glpk: Updated for version 4.40.
academic/mathomatic: Updated for version 14.6.1.
  Thanks to Dylan Armitage.  --rworkman
academic/mopac7: Updated for version 1.15.
academic/wxmacmolplt: Updated for version 7.4.
academic/xcircuit: Added - XCircuit is a program for drawing high-quality
  electrical circuit schematic diagrams and related figures.
  Thanks to B. Jogai.  --rworkman
audio/amSynth: Added - this is an Analogue Modeling SYNTHesizer.
  Thanks to Christopher Forrest.  --rworkman
desktop/crystal: Updated for version 2.0.5.
desktop/xfce4-volumed: Added - an audio volume management daemon for
  XFCE4. Thanks to Robby Workman.
development/jeex: Added - jeex is a simple GTK+ Hex Editor.
  Thanks to Luis Henrique.
development/xtruss: Added - an easy to use X protocol tracing program.
  Thanks to V'yacheslav Stetskevych.  --rworkman
games/wesnoth: Updated for version 1.6.5.
games/zdoom: Added - zdoom is an enhanced port of the official DOOM
  source code. Thanks to Pablo Santamaria.
libraries/SDL_gfx: Updated for version 2.0.20.
libraries/fmodapi: Added - fmodapi is a cross platform audio library.
  Thanks to Pablo Santamaria.
libraries/gtkimageview: Added - GtkImageView is a simple image viewer
  widget for GTK. Thanks to Larry Hajali.
libraries/libewf: Updated for version 20091114.
libraries/libkate: Updated for version 0.3.7.
libraries/libmikmod: Added - libmikmod is a library for playing many
  types of mod-format files. Thanks to Larry Hajali.
libraries/libunique: Updated for version 1.1.6.
libraries/lxml: Updated for version 2.2.4.
libraries/perl-tk: Added - perl-tk is a Tk graphical interface for Perl.
  Thanks to Pablo Santamaria.  --rworkman
libraries/yaz: Updated for version 3.0.50.
misc/bsdsfv: Added - bsdsfv is a command-line SFV utility.
  Thanks to Niklas 'Nille' Åkerström.
misc/cksfv: Added - cksfv is a command-line SFV utility.
  Thanks to Niklas 'Nille' Åkerström.
multimedia/GoogleEarth: Updated for version 5.1.3533.1731.
multimedia/kaffeine: Updated for version 1.0-pre2.
network/aMule: Updated for version 2.2.6.
network/aria2: Updated for version 1.6.3.
network/knemo: Re-added - knemo is a network monitor for KDE.
  Thanks to the new maintainer Andre Barboza.
network/konversation: Updated for version 1.2.1.
network/midori: Updated for version 0.2.0.
network/nicotine+: Updated for version 1.2.14.
network/nikto: Updated for version 2.1.0.  Thanks to Marco Bonetti.  --rworkman
network/perl-IO-Interface: Added - IO::Interface is a perl extension for
  access to network card configuration information.
  Thanks to Marco Bonetti.  --rworkman
network/perl-IO-Socket-INET6: Added - IO::Socket::INET6 provides an object
  interface to creating and using sockets in AF_INET or AF_INET6 domains.
  Thanks to Marco Bonetti.  --rworkman
network/perl-Net-DNS: Added - Net::DNS is a DNS resolver implemented in Perl.
  Thanks to Marco Bonetti.  --rworkman
network/perl-Net-Pcap: Added - Net::Pcap is a Perl binding to the pcap(3)
  library.  Thanks to Marco Bonetti.  --rworkman
network/perl-Net-RawIP: Added - Perl extension to manipulate raw IP packets
  with interface to libpcap.  Thanks to Marco Bonetti.  --rworkman
network/perl-NetPacket: Added - modules to assemble/disassemble network
  packets at the protocol level.  Thanks to Marco Bonetti.  --rworkman
network/perl-Socket6: Added - a perl module that provides glue routines to
  the various IPv6 functions.  Thanks to Marco Bonetti.  --rworkman
network/sqlninja: Added - Sqlninja is a tool to exploit SQL Injection
  vulnerabilities on a web application that uses Microsoft SQL Server as
  its back-end.  Thanks to Marco Bonetti.  --rworkman
network/wireshark: Updated for version 1.2.4.
network/x11vnc: Updated for version 0.9.8.
network/zsync: Added - zsync is a file transfer program.
  Thanks to "Grissiom".
office/abiword: BUILD=2, with enhancements from Tim Goya to make the
  help browser respect mime settings and a README addition describing
  how to use an alternative application for print previews.
office/apvlv: Updated for version 0.0.7.5.
  Thanks to Grigorios Bouzakis.  --rworkman
office/grisbi: Updated for version 0.6.0b2.
office/gnokii: Updated for version 0.6.28.1.
  Thanks to Andrzej Telszewski.  --rworkman
office/kchmviewer: Updated for version 4.1.
office/osmo: Re-added at version 0.2.8.  Thanks to Frank Caraballo. --rworkman
system/artwiz-aleczapka: Re-added - Artwiz Fonts Revisited.
  Thanks to Kyle Guinn.
system/biew: Updated for version 6.0.2.
system/bonnie++: Updated for version 1.03e.
system/gparted: Updated for version 0.4.8.  Thanks to Erik Hanson.  --rworkman
system/iotop: Updated for version 0.3.2.
system/pcmanfm: Updated for version 0.5.2.
system/testdisk: Updated for version 6.11.
system/ulogd: Fixed the script to require mysql and sqlite3 plugins, since it
  won't build without them anyway.  Thanks to Thomas Morper for the report.
+--------------------------+
Thu Nov 12 04:41:10 UTC 2009
libraries/libg15: Added - The libg15 library gives applications low-level
  access to the G15 and G11 keyboards and the Z10 speakers.
  Thanks to Alan Alberghini.  --rworkman
libraries/libg15render: Added - This is a library to render text and shapes
  into a buffer usable by the Logitech G15 Gaming Keyboard.
  Thanks to Alan Alberghini.  --rworkman
misc/g15composer: Added - G15Composer is a scriptable command interface to
  the libg15render drawing functions.  Thanks to Alan Alberghini.  --rworkman
misc/g15daemon: Added - the G15daemon is a userspace driver/multiplexer for
  the G15 keyboard and its LCD.  Thanks to Alan Alberghini.  --rworkman
misc/g15stats: Added - G15Stats is a CPU / Memory / Swap / Network / Battery /
  Temperature / Fan Speed / CPU Frequencies usage meter for G15Daemon.
  Thanks to Alan Alberghini.  --rworkman
network/msmtp: Updated for version 1.4.19.  Thanks to Grigorios Bouzakis.
network/squid: Updated for version 3.0.STABLE20.  Thanks to dsomero.  -RW
office/texlive: Added - TeXLive is a tetex replacment.
  Note that this package is intended to completely replace the tetex packages
  in Slackware. You will need to remove tetex and tetex-doc before installing
  TeXLive.  If you want to build this on -current, you'll need to change the
  --with-system-xpdf to --without-system-xpdf due to the API change in xpdf
  and the poppler library.  Thanks to Robby Workman, who wishes to also thank
  Grissiom for LOTS of help getting this done correctly.  --dsomero
+--------------------------+
Mon Nov  9 18:08:14 UTC 2009
system/slim: Added a patch to build with newer gcc (the patch is harmless on
  stock 13.0 systems).  Thanks to metrofox for pointing out the problem.  -RW
+--------------------------+
Mon Nov  9 04:40:09 UTC 2009
academic/ladr: Updated for version 2009_02A.
  Thanks to Heinz Wiesinger.  --dsomero
academic/gwyddion: Updated for version 2.18.  Thanks to Daniil Bratashov. -RW
academic/tuxmath: Added - TuxMath is a math drill game starring Tux the Linux
  Penguin.  Thanks to Larry Hajali.  --rworkman
audio/mpd: Updated for version 0.15.5.  Thanks to Andrew Brouwers.  -RW
audio/sonata: Updated for version 1.6.2.1.  Thanks to Andrew Brouwers.  -RW
desktop/thunar-vcs-plugin: Updated for version 0.1.2.
  Thanks to Robby Workman.  --dsomero
development/paramiko: Updated for version 1.7.5.
  Thanks to Heinz Wiesinger.  --dsomero
development/stgit: Updated for version 0.15.  Thanks to Carlos Corbacho.  -RW
games/rezerwar: Added - Rezerwar is a puzzle game.  Thanks to Larry Hajali.
games/snes9x_gtk: Updated for version 1.51r78.  Thanks to B. Watson.  -RW
libraries/libdbi-drivers: Included the sqlite drivers in the package.
  Thanks to Vincent Batts.  --rworkman
libraries/libgsasl: Added - GNU SASL is an implementation of the Simple
  Authentication and Security Layer framework and a few common SASL mechanisms.
  Thanks to Marcel Saegebarth.  --rworkman
libraries/pytz: Updated for version 2009n.
  Thanks to Heinz Wiesinger (pprkut).  --rworkman
misc/clawsker: Updated for version 0.7.0.  Thanks to Erik Hanson.  --dsomero
misc/tal: Added - tal is a "trailer alignment" tool that outputs text which
  has its trailing characters aligned in columns.
  Thanks to Peter Wang.  --rworkman
multimedia/dvdrip: Added - dvd::rip is a full featured DVD copy program
  written in Perl.  Thanks to Luis Henrique.  --rworkman
multimedia/farsight2: Updated for version 0.0.16.
  Thanks to David Woodfall.  --rworkman
multimedia/subtitlecomposer: Added - this is a text-based subtitles editor.
  Thanks to Pablo Santamaria.  --rworkman
network/bitlbee: Updated for version 1.2.4.
  Thanks to Michiel van Wessem.  --dsomero
network/fqterm: Updated for version 0.9.5.2.  Thanks to vvoody.  --rworkman
network/gajim: Updated for version 0.12.5.
  Thanks to Morten Juhl-Johansen Zölde-Fejér.  --rworkman
network/shorewall6: Updated for version 4.4.3.  Thanks to ArTourter.  -RW
network/xtables-addons: Updated for version 1.18.
  Thanks to Robby Workman.  --dsomero
system/schedtool: Added - schedtool interfaces with the kernel's scheduler
  and allows the user to set and query the CPU-affinity and nice-levels of
  processes.  Thanks to Dave Margell.  --rworkman
+--------------------------+
Sun Nov  8 06:29:08 UTC 2009
desktop/afterstep: Updated for version 2.2.9.  Thanks to NetrixTardis.  --RW
desktop/wmdl: Added - wmdl is a simple LOAD or CPU meter using ID Software's
  DOOM faces.  Thanks to Pablo Santamaria.  --rworkman
desktop/wmtime: Added - wmtime displays the time and date in Windowmaker.
  Thanks to Pablo Santamaria.  --rworkman
desktop/wmvolman: Added - wmVolMan is a small volume manager for Window Maker.
  Thanks to Pablo Santamaria.  --rworkman
development/ddd: Added - GNU DDD is a graphical front-end for command-line
  debuggers.  Thanks to Ken Milmore.  --rworkman
development/mono: Re-added for Slackware 13.0.
  Thanks to Sebastián Salazar Molina.  --rworkman
games/blobwars: Updated for version 1.14.  Thakns to Tim Dickson.  --rworkman
games/starfighter: Several bugfixes and enhancements to the script. --rworkman
games/worldofgoo: Added - World of Goo is a physics based puzzle/construction
  game.  Thanks to Pierre Cazenave.  --rworkman
libraries/libgdiplus: Updated for version 2.4.2.  --rworkman
libraries/libpaper: Added - libpaper is a library for handling paper
  characteristics.  Thanks to Pablo Santamaria.  --rworkman
libraries/liblastfm: Added - liblastfm is a collection of libraries to help
  you integrate Last.fm services into your rich desktop software.
  Thanks to Heinz Wiesinger (pprkut).  --rworkman
libraries/libtar: Added - libtar is a C library for manipulating POSIX tar
  files. Thanks to David Woodfall.  --pprkut
libraries/libtorrent-rasterbar: Updated for version 0.14.6.
  Thanks to Erik Hanson.  --rworkman
misc/ibus: Updated for version 1.2.0.20091024.
  Thanks to Grissiom.  --rworkman
misc/ibus-qt: Updated for version 1.2.0.20091014.
  Thanks to Grissiom.  --rworkman
multimedia/xvid4conf: Added - xvid4conf is a tool to create XviD configuration
  files.  Thanks to Luis Henrique.  --rworkman
system/fbterm: Added - FbTerm is a fast terminal emulator for linux with
  frame buffer device.  Thanks to vvoody.  --rworkman
system/unison: Added - Unison is a file-synchronization tool.
  Thanks to Ferenc Deak.  --rworkman
+--------------------------+
Thu Nov  5 02:59:00 UTC 2009
audio/lash: Added - LASH is a session management system for GNU/Linux audio
  applications. Thanks to David Woodfall.  --pprkut
audio/opencore-amr: Added - OpenCORE AMR is an implementation of the amrnb
  and amrwb speech codec. Thanks to Andre Barboza.  --pprkut
development/amaya: Added - Amaya is a Web editor.
  Thanks to Vincent Batts.  --rworkman
desktop/quickaccess: Added - quickaccess is a kde plasmoid for quick access
  to folders.  Thanks to Phillip Warner.  --rworkman
desktop/windowlist: Added - windowlist is a kde plasmoid to show open
  windows.  Thanks to Phillip Warner.  --rworkman
libraries/libsndfile: Updated for version 1.0.20.
  Thanks to Paul Wisehart.  --pprkut
libraries/lxml: Updated for version 2.2.3. Thanks to Larry Hajali.  --pprkut
libraries/wv: Updated for version 1.2.4.  If you happen to be an abiword user,
  you will need to rebuild it after upgrading this, and for those who use our
  build script for it, you'll need to uninstall any existing abiword package
  first.  Thanks to Robby Workman.  --pprkut
multimedia/miro: Updated for version 2.5.3. Thanks to Larry Hajali. --rworkman
network/filezilla: Updated for version 3.2.8.1.
  Thanks to Grigorios Bouzakis.  --pprkut
network/openvas-plugins: Re-added - This was somehow lost in the transition
  to Slackware 13.0. Thanks to Marco Bonetti for making us aware of the issue
  and submitting the script again.  --pprkut
office/sunbird: Added - Sunbird is Mozilla's standalone calendar applicaton.
  Thanks to Althaf K Backer.  --rworkman
system/gnome-commander: Added - gnome-commander is a two-pane file manager.
  Thanks to Bogdan Tatarov.  --rworkman
system/ipmitool: Added - IPMItool is a utility for managing and configuring
  devices that support the Intelligent Platform Management Interface.
  Thanks to Zordrak.  --pprkut
+--------------------------+
Mon Nov  2 05:07:39 UTC 2009
academic/lapack95: Added - LAPACK95 is a Fortran 95 interface to LAPACK.
  Thanks to Pablo Santamaria.  --rworkman
development/acpica: Updated for version 20091013.
  Thanks to Heinz Wiesinger (pprkut).  --rworkman
development/django: Updated for version 1.1.1.
  Thanks to Carlos Corbacho.  --pprkut
development/latrace: Added - latrace is a frontend to the LD_AUDIT feature in
  glibc 2.4+.  Thanks to Peter Wang.  --rworkman
games/bsnes: Updated for version 0.054. Thanks to Larry Hajali.  --pprkut
graphics/qcomicbook: Added - qcomicbook is a comic book reader.
  Thanks to Niels Horn.  --rworkman
libraries/enca: Updated for version 1.12. Thanks to Larry Hajali.  --pprkut
libraries/libvdpau: Added - a library for VDPAU devices.
  Thanks to Heinz Wiesinger (pprkut).  --rworkman
libraries/python-distutils-extra: Updated for version 2.12.
  Thanks to Larry Hajali.  --rworkman
libraries/xmltv_prereq: Added - xmltv_prereq is a package of several perl
  modules required to build and run xmltv.
  Thanks to David Somero.  --rworkman
misc/nvclock: Added - NVClock is a small utility that allows users to
  overclock NVIDIA based video cards.
  Thanks to M.Dinslage.  --rworkman
misc/vdpauinfo: Added - this is a tool to query and display NVIDIA VDPAU
  capabilities.  Thanks to Heinz Wiesinger (pprkut).  --rworkman
multimedia/mythplugins: Added - plugins for mythtv.
  Thanks to David Somero.  --rworkman
multimedia/myththemes: Added - themes for mythtv.
  Thanks to David Somero.  --rworkman
multimedia/mythtv: Added - MythTV is a GPL licensed suite of programs that
  allow you to build the mythical home media convergence box on your own.
  Thanks to David Somero.  --rworkman
multimedia/xmltv: Added - XMLTV is a set of utilities to manage TV viewing.
  Thanks to David Somero.  --rworkman
network/ekiga: Fixed yet another typo in the build script.  Sorry for my
  (stupid) mistakes, and thanks to Mauro Giachero for his patience. --rworkman
network/isync: Added - isync is a command line application which synchronizes
  mailboxes.  Thanks to Tom Canich.  --rworkman
network/opera: Updated for version 10.01. Thanks to Robby Workman.  --pprkut
network/shorewall: Updated for version 4.4.3.  Thanks to ArTourter.  -RW
office/abiword: Updated for version 2.8.1.  Thanks to Tim Goya.  --rworkman
office/adobe-reader: Updated for version 9.2.  Thanks to pprkut.  --rworkman
office/dictd: Fixes to the init script and some config enhancements.
  Thanks to sercari.  --rworkman
office/freemind: Added - freemind is a mind-mapping application.
  Thanks to Bruno Russo.  --rworkman
system/lbzip2: Updated for version 0.17. Thanks to Erik Hanson.  --pprkut
system/nvidia-driver: Updated for version 190.42. Thanks to pprkut. --rworkman
system/nvidia-kernel: Updated for version 190.42. Thanks to pprkut. --rworkman
system/qemu-kvm: Added.  This is the stable release of kvm, which uses the
  mainline kernel modules instead of building its own (ala the standalone
  kvm).  Thanks to Stu Miller for his patience and valuable feedback in
  addition to the original submission.  --rworkman
system/virt-manager: Noted additional deps in README.  --rworkman
system/virtualbox-kernel: Updated for version 3.0.10.  Thanks to pprkut.
system/virtualbox-kernel-addons: Updated for version 3.0.10.  Thanks to pprkut.
system/virtualbox-ose: Updated for version 3.0.10.  Thanks to pprkut.
system/virtualbox-ose-addons: Updated for version 3.0.10.  Thanks to pprkut.
+--------------------------+
Wed Oct 28 11:37:30 UTC 2009
desktop/gnome-colors: Updated Slackbuild to make gnome-extra-colors optional.
  Thanks to Eugene Wissner.  --dsomero
+--------------------------+
Sun Oct 25 01:24:49 UTC 2009
system/dc3dd: Removed as it is included in Slackware.
+--------------------------+
Sat Oct 24 21:18:24 UTC 2009
academic/GMT: Updated for version 4.5.1.
  Thanks to Pierre Cazenave.  --dsomero
desktop/avant-window-navigator: Updated for version 0.3.2.1.
  Thanks to Marco Cecchetti.  --dsomero
desktop/cwp: Updated for version 0.9.15.  Thanks to M.Dinslage.  --dsomero
desktop/gnome-colors: Updated for version 5.5.
  Thanks to Eugene Wissner.  --dsomero
desktop/QtCurve-Gtk2: Updated for version 0.69.2.
  Thanks to ArTourter.  --dsomero
desktop/QtCurve-KDE4: Updated for version 0.69.2.
  Thanks to ArTourter.  --dsomero
desktop/synergy-plus: Added - synergy-plus lets you easily share a single
  mouse and keyboard between multiple computers.
  Thanks to Pierre Cazenave.  --dsomero
development/bzr: Updated for version 2.0.0.
  Thanks to Robby Workman.  --dsomero
development/valgrind: Re-added and updated for version 3.5.0.
  Thanks to Peter Wang.  --dsomero
libraries/afflib: Updated for version 3.5.0.
  Thanks to Barry J. Grundy.  --dsomero
libraries/gdata: Updated for version 2.0.3.
  Thanks to Larry Hajali.  --dsomero
libraries/gtk-aurora-engine: Added - gtk-aurora-engine is a GTK theme.
  Thanks to Alan Alberghini.  --dsomero
libraries/libedit: Updated for version 20090923_3.0.
  Thanks to rworkman.  --dsomero
libraries/ruby-gtk2: Added - GTK bindings for the ruby scripting language.
  Thanks to Vincent Batts.  --rworkman
misc/dwdiff: Updated for version 1.6.1.  Thanks to slakmagik.  --dsomero
misc/hunspell: Added - Hunspell is a spell checker and morphological
  analyzer library.  Thanks to Chris Abela.  --dsomero
multimedia/mozplugger: Re-added and updated for version 1.13.0.
  Thanks to dhabyx.  --dsomero
network/centerim: Updated for version 4.22.8.
  Thanks to Christopher Forrest.  --dsomero
network/ekiga: Used --disable-gdu to allow compilation.  It was my impression
  that this flag sets whether gnome-doc-utils is used or not, but apparently
  it doesn't matter.  Sorry for the breakage.  --rworkman
system/dc3dd: Re-added and updated for version 6.12.3.
  Thanks to Barry J. Grundy.  --dsomero
system/lzip: Updated for version 1.8.  Thanks to Barry J. Grundy.  --dsomero
+--------------------------+
Mon Oct 19 04:03:16 UTC 2009
academic/opengrads: Added - the Grid Analysis and Display System (GrADS) is
  an interactive desktop tool for easy access, manipulation, and visualization
  of earth science data.  Thanks to Oda.  --rworkman
audio/xmms-scrobbler: Added - an xmms plugin that reports your music listening
  to last.fm.  Thanks to Sebastián Salazar Molina.  --rworkman
business/skrooge: Added - skrooge is a finance application for kde.
  Thanks to Vincent Batts.  --rworkman
desktop/q4wine: Updated for version 0.113. Thanks to David Somero. --rworkman
development/apache-maven: Updated for version 2.2.1.
  Thanks to pprkut.  --rworkman
development/openmpi: Re-added for Slackware 13.0 at version 1.3.3.
  Thanks to Murat D. Kadirov.  --rworkman
development/quilt: Re-added for 13.0.  Thanks to Ash Wiren.  --rworkman
development/mtd-utils: Added - mtd-utils are tools for accessing jffs2 images
  and other such utilities common on mobile platforms.
  Thanks to Vincent Batts.  --rworkman
games/atari++: Added - the Atari++ Emulator is a Unix based emulator of the
  Atari eight bit computers.  Thanks to B. Watson.  --rworkman
games/pysolfc: Re-added for 13.0.  Thanks to mfillpot.  --rworkman
games/tome: Added - ToMe is a game that emphasizes intricate, challenging,
  and varied gameplay over graphics. Thanks to David Melik.  --pprkut
graphics/leocad_pieces: Added - leocad_pieces contains the library of pieces
  needed by the LeoCAD program.  Thanks to Niels Horn.  --rworkman
graphics/leocad: Added - LeoCAD is a CAD program that uses bricks similar to
  those found in many toys.  Thanks to Niels Horn.  --rworkman
graphics/xpe: Added - the neXtgen Povray Editor is a graphical editor for
  POV-Ray.  Thanks to Niels Horn.  --rworkman
libraries/gsm: Added - gsm contains command line utilities for libgsm, an
  implementation of the European GSM 06.10 provisional standard for full-rate
  speech transcoding.  Thanks to David Somero.  --rworkman
libraries/libmimic: Added - libmimic is an open source video encoding and
  decoding library for Mimic V2.x-encoded content.
  Thanks to David Somero.  --rworkman
libraries/libqsqlpsql: Added - this is the postgresql plugin for Qt4.
  Thanks to pprkut.  --rworkman
libraries/pybluez: Added - PyBluez is a Python extension module allowing
  access to system Bluetooth resources.  Thanks to pprkut.  --rworkman
libraries/pygtksourceview: Added - python bindings for gtksourceview.
  Thanks to Larry Hajali.  --rworkman
libraries/pypoppler: Added - python bindings for the poppler pdf library.
  Thanks to Larry Hajali.  --rworkman
misc/gnome-doc-utils: Removed - this is included in Slackware 13.0's
  linuxdoc-tools package.  Thanks to Phillip Warner for the heads-up.
  If there are still some README files in other applications referring
  to it, please let us know so that we can fix them.  --rworkman
misc/ibus: Added - IBus is an Intelligent Input Bus similar to scim.
  Thanks to Grissiom.  --rworkman
misc/ibus-qt: Added - ibus-qt includes the ibus qt library and input method
  plugin.  Thanks to Grissiom.  --rworkman
multimedia/gst-plugins-farsight: Added - this contains Farsight plugins for
  GStreamer.  Thanks to David Somero.  --rworkman
multimedia/gsopcast: Added - gsopcast is a gtk gui frontend for sopcast.
  Thanks to Nai.  --rworkman
multimedia/sopcast: Added - SopCast is a simple, free way to broadcast video
  and audio or watch the video and listen to radio on the Internet.
  Thanks to Nai.  --rworkman
multimedia/tvtime: Added - tvtime is a high quality television application
  for use with video capture cards on Linux systems.
  Thanks to Marco Bonetti.  --rworkman
network/ekiga: Enabled gnome-doc-utils usage since it's part of Slackware's
  linuxdoc-tools package.  --rworkman
network/konversation: Updated for version 1.2.  Thanks to Michiel van Wessem.
network/nginx: Re-added for 13.0.  Thanks to fizban for the update, but note
  that this is officially unmaintained in our repository (in case anyone is
  interested in maintaining it).  --rworkman
network/pyzor: Added - Pyzor is a collaborative, networked system to detect
  and block spam using digests of messages.  Thanks to LukenShiro.  --rworkman
system/amanda: Updated for version 2.6.1p1.  Thanks to Christopher Walker.
system/crikey: Added - Crikey! (Conveniently Repeated Input Key) is a small
  program that simulates key events.  Thanks to Bryan Harris.  --rworkman
system/john: Fixed a couple of bugs with the wrapper script creation.
  Thanks to hiptobecupic.  --rworkman
system/keylaunch: Added - KeyLaunch is a small utility for binding commands
  to a hot key.  Thanks to Bryan Harris.  --rworkman
system/vice: Added - VICE is the one and only Versatile Commodore Emulator.
  Thanks to Mauro Giachero.  --rworkman
system/virt-manager: Added - virt-manager is a gtk interface that connects
  to libvirt.  Thanks to Ash Wiren.  --rworkman
+--------------------------+
Thu Oct 15 16:12:40 UTC 2009
desktop/QtCurve-Gtk2: Updated for version 0.69.
  Thanks to ArTourter.  --rworkman
desktop/QtCurve-KDE4: Updated for version 0.69.
  Thanks to ArTourter.  --rworkman
desktop/dwm: Updated for version 5.7.2.  Thanks to Tom Canich.  --rworkman
graphics/povray: Added - the Persistence of Vision Raytracer is a free and
  high quality tool for creating stunning three-dimensional graphics.
  Thanks to Niels Horn.  --rworkman
libraries/ilbc: Added - iLBC (internet Low Bitrate Codec) is a speech codec
  suitable for robust voice communication over IP.
  Thanks to Mauro Giachero.  --rworkman
libraries/libjingle: Added - libjingle is the Google Talk Voice and P2P
  Interoperability Library.  Thanks to David Somero.  --rworkman
libraries/ortp: Added - ortp implements the RFC3550 (RTP) with a easy to use
  API with high and low level access.  Thanks to David Somero.  --rworkman
network/dovecot-cmusieve: Updated for version 1.1.7.
  Thanks to Nishant Limbachia.  --rworkman
network/phpmyadmin: Updated for version 3.2.2.1.
  Thanks to Nishant Limbachia.  --rworkman
network/qwit: Updated for version 0.10.  Thanks to Larry Hajali.  --rworkman
network/shorewall: Updated for version 4.4.2.2.  Thanks to ArTourter.
network/shorewall6: Updated for version 4.4.2.  Thanks to ArTourter.
network/tucan: Added - Tucan Manager is a free and open source software
  designed for automatic management of downloads and uploads at hosting sites
  like rapidshare or megaupload.  Thanks to Nai.  --rworkman
system/ccid: Re-added at version 1.3.11.  Thanks to Daniel R.  --rworkman
system/dash: Added - dash is a POSIX-compliant implementation of /bin/sh
  that aims to be as small as possible.  Thanks to Vincent Batts.  --rworkman
system/opensc-ceres: Added - provides opensc support for FNMT CERES cards.
  Thanks to Daniel R.  --rworkman
system/opensc-dnie: Added - provides opensc support for Spanish ID cards.
  Thanks to Daniel R.  --rworkman
system/p7zip: Updated for version 9.04.  Thanks to pprkut.  --rworkman
+--------------------------+
Wed Oct 14 20:50:31 UTC 2009
games/trackballs: Added - Trackballs is a marble game inspired by the 80's
  Atari classic Marble Madness.  Thanks to B. Watson.  --rworkman
graphics/LDView: Added - LDView is a real-time 3D viewer for displaying LDraw
  models.  Thanks to Niels Horn.  --rworkman
graphics/LDraw_data: Added - LDraw_data is a package of data-files needed by
  several utilities based on LDRAW.  Thanks to Niels Horn.  --rworkman
graphics/ldglite: Added - ldglite is a program that lets you view and edit
  Lego brick models stored in LDRAW format.  Thanks to Niels Horn.  --rworkman
libraries/gobject-introspection: Added - GObject Introspection is a project
  for providing machine readable introspection data of the API of C libraries.
  Thanks to Andrew Psaltis.  --rworkman
libraries/python-musicbrainz2: Updated for version 0.7.0.
  Thanks to Larry Hajali.  --rworkman
misc/rlwrap: Updated for version 0.32.  Thanks to slakmagik.  --rworkman
network/irda-utils: Fixed an include for <sys/io.h>, which was <asm/io.h>.
  Thanks to Mark Pettit for bringing it to my attention.  --rworkman
+--------------------------+
Tue Oct 13 13:34:42 UTC 2009
academic/grace: Added - grace is a WYSIWYG tool to make two-dimensional plots
  of numerical data.  Thanks to B. Jogai.  --rworkman
development/avarice: Added - avarice interfaces GNU gdb with the AVR JTAG
  ICE available from Atmel.  Thanks to Marek Buras.  --rworkman
games/circuslinux: Re-added for 13.0.  Thanks to B. Watson.  --rworkman
games/typhoon_2001: Re-added for 13.0.  Thanks to B. Watson.  --rworkman
graphics/dia: Updated for version 0.97.  Thanks to Ash Wiren.  --rworkman
libraries/Mako: Updated for version 0.2.5.  Thanks to Larry Hajali.
libraries/cssutils: Updated for version 0.9.6b5.
  Thanks to Larry Hajali.  --rworkman
libraries/enca: Updated for version 1.11.  Thanks to Larry Hajali.  --rworkman
network/fqterm: Added - FQTerm is a cross-platform terminal emulator program
  which supports telnet/ssh1/ssh2 protocols and can process ANSI control
  sequences.  Thanks to vvoody.  --rworkman
network/mew: Added - Mew is a mail reader for Emacs.
  Thanks to vvoody.  --rworkman
network/opera: Fixed an upstream bug to correct the detection of java on
  the system.  Thanks to GazL on LinuxQuestions.org.  --rworkman
network/squid: Updated for version 3.0STABLE19 and added the NCSA auth
  module.  Thanks to Alan Hicks and David Somero.  --rworkman
system/lirc: Re-added at version 0.8.6.  Thanks to Murat D. Kadirov.
system/smbldap-tools: Added - smbldap-tools is a set of perl scripts designed
  to manage user and group accounts stored in an LDAP directory.
  Thanks to Christopher Walker.  --rworkman
+--------------------------+
Sun Oct 11 08:22:01 UTC 2009
desktop/root-tail: Re-added version 1.2 for Slackware 13.0.
  Thanks to slakmagik.  -michiel
development/geany: Updated for version 0.18.
  Thanks to Michiel van Wessem.  --rworkman
games/fortune_firefly: Re-added for 13.0.  Thanks to B. Watson.  --rworkman
games/koules: Added - Koules is a fast action arcade-style game.
  Thanks to B. Watson.  --rworkman
games/nevernoid: Re-added for 13.0.  Thanks to B. Watson.  --rworkman
games/xmoto: Updated for version 0.5.2.  Thanks to Alex Word.  --rworkman
games/xaos: Re-added for 13.0.  Thanks to B. Watson.  --rworkman
games/z26: Re-added for Slackware 13.0.  Thanks to B. Watson.  --rworkman
libraries/slib: Updated for version 3b2.  Thanks to Vincent Batts.  --rworkman
misc/gxmessage: Included an option to disable NLS.
  Thanks to slakmagik.  --rworkman
misc/stardict: Re-added for 13.0.  Thanks to Murat D. Kadirov.  --rworkman
network/broadcom-sta: Added - this is the proprietary kernel module "wl" for
  some Broadcom cards, including the BCM4311, BCM4312, BCM4321, and BCM4322
  chipsets.  Thanks to David Matthew Jerry Koenig.  --rworkman
network/iscsitarget: Re-added for Slackware 13.0.
  Thanks to Thales A. Tsailas.  --rworkman
network/offlineimap: Added - OfflineIMAP is a tool to sync remote imap
  mailboxes.  Thanks to Nishant Limbachia.  --rworkman
network/periscope: Added - Periscope is a subtitles searching module written
  in python that tries to find a correct match for a given video file.
  Thanks to Marco Bonetti.  --rworkman
office/tellico: Updated for version 2.0.  Thanks to Gilcio Amaral.  --rworkman
system/gammu: Updated for version 1.26.1.  Thanks to pprkut.  --rworkman
system/pcp: Added - Performance Co-Pilot (PCP) provides a framework and
  services to support system-level performance monitoring and management.
  Thanks to Roman Revyakin.  --rworkman
system/pcp-gui: Added - visualisation tools for monitoring systems using pcp.
  Thanks to Roman Revyakin.  --rworkman
system/pipemeter: Re-added for Slackware 13.0.
  Thanks to B. Watson.  --rworkman
+--------------------------+
Sat Oct 10 05:59:50 UTC 2009
desktop/enlightenment: BUILD=2 - Fixed the missing LIBDIRSUFFIX.
  Thanks to Keith Richie for pointing that out.
desktop/thunar-svn-plugin: Removed - replaced by thunar-vcs-plugin.
desktop/thunar-vcs-plugin: Added - The Thunar VCS Plugin adds Subversion and
  GIT actions to the context menu of Thunar. This replaces thunar-svn-plugin.
  Thanks to Robby Workman.  --michiel
desktop/tint2: Updated for version 0.7.1 and renamed from tint to tint2.
  Thanks to Eugene Wissner.  --dsomero
desktop/xclip: Updated for version 0.12.
  Thanks to Grigorios Bouzakis.  --dsomero
desktop/xfce4-clipman-plugin: Updated for version 1.1.1
  Thanks to Robby Workman.  --michiel
desktop/xfce4-notes-plugin: Updated for version 1.7.1
  Thanks to Robby Workman.  --michiel
development/cim: Added - cim is a compiler for the programming language
  Simula.  Thanks to Andre Barboza.  --dsomero
development/Cython: Updated for version 0.11.3.
  Thanks to Larry Hajali.  --dsomero
development/avr-gdb: Added - gdb for avr.  Thanks to Marek Buras  --rworkman
games/bsnes: Updated for version 0.052.
  Thanks to Larry Hajali.  --pprkut
graphics/dcraw: Updated for version 8.98.
  Thanks to Nishant Limbachia.  --pprkut
graphics/gimp-registry-plugins: Minor script and .info changes.
  Thanks to Pierre Cazenave.  --rworkman
libraries/boolstuff: Added - BoolStuff is a small C++ library that supports
  a few operations on boolean expression binary trees.
  Thanks to Dave Margell.  --rworkman
libraries/wxPython: Updated for version 2.8.10.1.
  Thanks to Heinz Wiesinger.  --dsomero
misc/krename: Updated for version 4.0.1.
  Thanks to Heinz Wiesinger.  --michiel
multimedia/exaile: Updated for version 0.3.0.1.
  Thanks to Marco Cecchetti.  --dsomero
multimedia/mscore: Updated for version 0.9.5.
  Thanks to Larry Hajali.  --pprkut
multimedia/nted: Updated for version 1.8.7.
  Thanks to Corrado Franco.  --rworkman
network/aria2: Updated for version 1.6.0.
  Thanks to Marco Cecchetti.  --dsomero
network/ctorrent: Update for version 3.3.2.
  Thanks to Erik Hameleers.  --michiel
network/claws-mail: Updated for version 3.7.3.
  Thanks to Erik Hanson.  --michiel
network/claws-mail-extra-plugins: Updated for version 3.7.3.
  Thanks to Erik Hanson.  --michiel
network/naim: Re-added at version 0.11.8.3.2.  Thanks to Nai.  --rworkman
system/fsarchiver: Updated for version 0.6.1
  Thanks to Nishant Limbachia.  --michiel
system/halevt: Added - Halevt (HAL events manager) is a daemon that executes
  arbitrary commands when a device with certain properties is added to the
  system and when device properties change.
  Thanks to Dave Margell.  --rworkman
system/virtualbox-ose: Updated for version 3.0.8. Thanks to pprkut. --rworkman
system/virtualbox-ose-addons: Updated for version 3.0.8.
  Thanks to pprkut.  --rworkman
system/virtualbox-kernel: Updated for version 3.0.8.
  Thanks to pprkut.  --rworkman
system/virtualbox-kernel-addons: Updated for version 3.0.8.
  Thanks to pprkut.  --rworkman
+--------------------------+
Tue Oct  6 04:29:44 UTC 2009
desktop/cwp: Updated for version 0.9.12.
  Thanks to M.Dinslage.  --rworkman
development/acpica: Updated for version 20090903.
  Thanks to Heinz Wiesinger.  --rworkman
development/icecream: Added - Icecream is a distributed compile system.
  Thanks to Heinz Wiesinger.  --rworkman
graphics/djview4: Updated for version 4.5.
  Thanks to Murat D. Kadirov.  --rworkman
graphics/gimp-registry-plugins: Added - a series of additional plugins for
  The Gimp.  Thanks to Pierre Cazenave.  --rworkman
libraries/libdc1394: Updated for version 2.1.2.
  Thanks to Larry Hajali.  --rworkman
libraries/libssh: Updated for version 0.3.4.
  Thanks to Larry Hajali.  --rworkman
libraries/libvirt: Updated for version 0.7.1.
  Thanks to Michal Bialozor.  --rworkman
libraries/virtualenv: Updated for version 1.3.4.
  Thanks to Larry Hajali.  --rworkman
misc/viking: Added - Viking is a free/open source program to manage GPS data.
  Thanks to Pierre Cazenave.  --rworkman
multimedia/grip: Re-added for 13.0.  Thanks to B. Watson.  --rworkman
network/bmon: Re-added at version 2.1.0.  Thanks to B. Watson.  --rworkman
network/packit: Re-added for 13.0.  Thanks to Marco Bonetti. --rworkman
network/spamassassin: Re-added at version 3.2.5.
  Thanks to Luken Shiro.  --rworkman
network/tunctl: Minor script cleanup.  --rworkman
office/calcurse: Updated for version 2.7.
  Thanks to Michiel van Wessem.  --rworkman
office/scribus: Updated for version 1.3.5.1.
  Thanks to Heinz Wiesinger.  --rworkman
system/gpsd: Included a minor patch to set the correct values in the
  pkgconfig files on x86_64.  --rworkman
system/gtk-vnc: Added - gtk-vnc is a VNC client for GTK.
  Thanks to Ash Wiren.  --rworkman
system/openct: Re-added at version 0.6.17.
  Thanks to Luken Shiro.  --rworkman
system/opensc: Re-added at version 0.11.9.
  Thanks to Luken Shiro.  --rworkman
system/pcmanfm: Updated for version 0.5.1 and changed maintainer.
  Thanks to Chris Abela.  --rworkman
system/pcsc-perl: Re-added at version 1.4.8.  --rworkman
system/pcsc-tools: Re-added at version 1.4.15.  --rworkman
system/tp_smapi: Fixed the package to use the hdaps module installed to an
  alternate location in lieu of replacing the stock module.
  Thanks to hba.  --rworkman
system/virtinst: Added - virtinst is a module to help start installations
  of Fedora/Red Hat Enterprise Linux related distributions inside of virtual
  machines.  Thanks to Ash Wiren.  --rworkman
+--------------------------+
Sun Oct  4 22:04:34 UTC 2009
audio/gmpc: Updated for version 0.19.0.  Thanks to Erik Hanson.  --dsomero
audio/gmpc-plugins: Updated for version 0.19.0.
  Thanks to Erik Hanson.  --dsomero
audio/ncmpcpp: Updated for version 0.4.
business/AssociationSubscribersManager: Added - AssociationSubscribersManager
  is software designed to manage members of sport clubs, a music club, etc.
  Thanks to Arnaud Dupuis.  --pprkut
desktop/ion: Re-added and updated for x86_64.  Thanks to Jorge Gajon.
desktop/pidgin-libnotify: Added - pidgin-libnotify adds a libnotify interface
  to pidgin.  Thanks to Marco Bonetti.  --dsomero
desktop/plasma-applet-daisy: Added - Daisy is a free open-source widget for
  Plasma/KDE.  Thanks to Eugene Kommunist Bolotov.  --rworkman
development/esvn: Re-added at version 0.6.12.1.
  Thanks to Iskar Enev.  --rworkman
development/qt-creator: Fixed build errors.  --pprkut
libraries/cln: Updated for version 1.3.1.  Thanks to Andrew Psaltis. --rworkman
libraries/lablgtk: Updated for version 2.14.0. Thanks to Ferenc Deak.  --pprkut
libraries/libnids: Added - libnids is an implementation of an E-component of
  Network Intrusion Detection System. Thanks to Marco Bonetti.  --michiel
libraries/tinyxml: Added a patch to always have TIXML_USE_STL defined.
  Thanks to Larry Hajali.  --pprkut
misc/gxmessage: Re-added and updated for x86_64.
  Thanks to slakmagik.  --pprkut
multimedia/LiVES: Added - LiVES is a frame and sample accurate realtime and
  non-linear video editor.  Thanks to klaatu, the guy with the blue hair at
  Southeast LinuxFest!  ;-)   --rworkman
multimedia/iat: Added - IAT (Iso9660 Analyzer Tool is a tool for detecting
  the structure of many types of CD/DVD images.
  Thanks to Elvio Basello (HelLViS69).  --rworkman
network/asterisk: Updated for version 1.6.1.6. Thanks to Alan Hicks. --rworkman
network/dahdi-linux: Added - dahdi drivers needed to use popular digital and
  analogue telephony equipment.  Thanks to Alan Hicks.  --rworkman
network/dahdi-tools: Added - dahdi binaries needed to use popular digital and
  analogue telephony equipment.  Thanks to Alan Hicks.  --rworkman
network/dsniff: Added - dsniff is a set of network auditing and penetration
  testing tools. Thanks to Marco Bonetti.  --michiel
network/freetalk: Added - Freetalk is a GPLv3 console (command line) based
  Jabber client.  Thanks to klaatu.  --rworkman
network/museek+: Re-added.  Thanks to Iskar Enev.  --rworkman
system/splix: Re-added at version 2.0.0.  Thanks to Iskar Enev.  --rworkman
+--------------------------+
Mon Sep 28 13:57:22 UTC 2009
academic/ghemical: Added - ghemical is an easy-to-use molecular editor.
  Thanks to Daniil Bratashov.  --dsomero
academic/gwyddion: Updated for version 2.17.
  Thanks to Daniil Bratashov.  --dsomero
academic/kile: Re-added and updated for version 2.1b2.
  Thanks to Eugene Suter.  --dsomero
academic/libghemical: Added - Libghemical is a software library which
  contains all of the computational chemistry functionality of the ghemical
  application.  Thanks to Daniil Bratashov.  --rworkman
academic/mopac7: Added - MOPAC provides routines to solve the electronic
  structure of molecules on a semi-empirical level.
  Thanks to Daniil Bratashov.  --rworkman
academic/mpqc: Added - MPQC is the Massively Parallel Quantum Chemistry
  Program.  Thanks to Daniil Bratashov.  --rworkman
audio/mp3splt: Updated for version 2.2.6a.
  Thanks to Roberto Neri.  --rworkman
audio/mp3splt-gtk: Updated for version 0.5.7a.
  Thanks to Roberto Neri.  --rworkman
audio/schismtracker: Updated for version 20090817.
  Thanks to Erik Hanson.  --dsomero
development/avrdude: Added - Avrdude is an open source utility to
  download/upload/manipulate the ROM and EEPROM contents of AVR
  microcontrollers.  Thanks to Dustin Schnee.  --dsomero
development/erlang-otp: Updated for version 13B02 and merged the
  erlang-otp-man package with this one.  Thanks to Ben Mendis.  --rworkman
development/cryptoki: Added - cryptoki is an RSA Security Inc. PKCS #11
  Cryptographic Token Interface.  Thanks to Pierre Cazenave.  --rworkman
development/ocaml: Updated for version 3.11.1.
  Thanks to Ferenc Deak.  --dsomero
games/bsnes: Added - bsnes is a snes emulator.
  Thanks to Larry Hajali.  --dsomero
games/SecondLife: Added - SecondLife (SL) is a virtual world developed
  by Linden Lab.  Thanks to Daniel R..  --dsomero
games/smc: Updated for version 1.9.  Thanks to Phillip Warner.  --dsomero
graphics/yagf: Added - YAGF is a graphical interface for the cuneiform
  text recognition program.  Thanks to Larry Hajali.  --dsomero
libraries/avr-libc: Updated SlackBuild file with '--enable-docs'.
  Thanks to Marek Buras.  --dsomero
libraries/python-distutils-extra: Updated for version 2.10.
  Thanks to Larry Hajali.  --rworkman
multimedia/dvgrab: Updated for version 3.5.
  Thanks to Murat D. Kadirov.  --dsomero
network/aMule: Updated for version 2.2.5.  Thanks to Iskar Enev.  --rworkman
network/irssi_otr: Added - irssi_otr is an OTR (Off the Record) plugin for
  irssi.  Thanks to B. Watson.  --rworkman
network/kadu: Added - Kadu is an IM client for the Gadu-Gadu protocol.
  Thanks to M Slodkiewicz.  --rworkman
network/madwifi-driver: Updated for kernels up to 2.6.30 and noted the new
  maintainer.  Thanks to Larry Hajali.  --rworkman
network/madwifi-tools: Updated for kernels up to 2.6.30 and noted the new
  maintainer.  Thanks to Larry Hajali.  --rworkman
network/thttpd: Added - thttpd is a simple, small, portable, fast, and secure
  HTTP server.  Thanks to Antonio Hernández Blas.  --dsomero
office/keepassx: Updated for version 0.4.1 along with several script cleanups.
  Thanks to Ferenc Deak.  --rworkman
office/kmymoney2: re-added and updated for version 1.0.0. Thanks to
  Luiz Eduardo for the orginal submission.  --michiel
system/coolkey: Added - coolkey is a pkcs#11 smartcard library that can be
  used with a US Government CAC (Common Access Card).
  Thanks to Andy Bailey.  --rworkman
system/fusesmb: Updated Slackbuild.  Thanks to Murat D. Kadirov.  --dsomero
system/mozilla-nss: Added - mozilla-nss is a set of libraries designed to
  support cross-platform development of security-enabled client and server
  applications.  Thanks to Eric Hameleers.  --rworkman
system/pdksh: Updated with a couple more bugfix patches.
  Thanks to Daniel LEVAI.  --rworkman
system/qemu: Updated for version 0.11.0.
  Thanks to Andrew Brouwers.  --dsomero
system/sdltrs: Added - sdltrs is another Radio Shack TRS-80 Model I/III/4/4P
  Emulator.  Thanks to Niels Horn.  --rworkman
system/truecrypt: Added - TrueCrypt is a free open-source disk encryption
  software.  Thanks to Pierre Cazenave.  --rworkman
system/twin: Re-added and updated for x86_64.
  Thanks to Matthew Fillpot.  --dsomero
+--------------------------+
Sun Sep 27 06:33:21 UTC 2009
academic/wxMaxima: Updated for version 0.8.3a.
  Thanks to Larry Hajali.  --dsomero
audio/shntool: Updated for version 3.0.10.  Thanks to slakmagik.  --dsomero
audio/tuxguitar: Re-add, now binary repack for both ARCH's.
  Thanks to Erik Hanson.  --dsomero
business/ledger: Re-added and updated for version 2.6.2.
  Thanks to Lionel Young.  --dsomero
desktop/rss-glx: Updated to prevent a conflict with KDE's /usr/bin/plasma.
  Thanks to Erik Hanson.  --dsomero
desktop/whaw: Re-added.  Thanks to Phillip Warner.  --dsomero
development/scala: Added - Scala is a functional object-oriented programming
  language.  Thanks to Matthias Diehn Ingesman.  --dsomero
development/Xdialog: Re-added.  Thanks to slakmagik.  --dsomero
games/sdlmame: Updated for version 0.134.  Thanks to B. Watson.  --dsomero
games/sdlmess: Updated for version 0.134.  Thanks to B. Watson.  --dsomero
graphics/mtpaint: Added - mtPaint is a painting program which Mark Tyler
  developed from scratch so he could easily create pixel art and manipulate
  digital photos.  Thanks to slakmagik.  --dsomero
libraries/libmp3splt: Updated for version 0.5.7a.
  Thanks to Roberto Neri.  --dsomero
libraries/liboglappth: Added - liboglappth is a library for creating portable
  OpenGL applications.  Thanks to Daniil Bratashov.  --dsomero
misc/par: Added - par is a paragraph reformatter.
  Thanks to slakmagik.  --dsomero
misc/rlwrap: Re-added.  Thanks to slakmagik.  --dsomero
misc/xclip: Re-added.  Thanks to Grigorios Bouzakis.  --dsomero
multimedia/mjpegtools: Fixed to build on x86_64 systems.
  Thanks to David Somero.  --rworkman
multimedia/mtpfs: Added - MTPfs is a FUSE filesystem that supports reading
  and writing from any MTP device.  Thanks to B. Watson.  --dsomero
network/krb5: Updated for version 1.7.  Thanks to Tom Canich.  --dsomero
network/mpop: Updated for version 1.0.18.  Thanks to Marek Buras.  --dsomero
network/msmtp: Updated for version 1.4.18.
  Thanks to Grigorios Bouzakis.  --dsomero
network/obexpushd: Added - ObexPushD is a program for receiving files via
  Bluetooth or IRDA.  Thanks to Michael Wagner.  --dsomero
network/sqlmap: Updated for version 0.7.  Thanks to Marco Bonetti.  --dsomero
network/vnstat: Updated for version 1.9.
  Thanks to Michiel van Wessem.  --dsomero
network/wireshark: Updated for version 1.2.2.
  Thanks to Michiel van Wessem.  --dsomero
network/znc: Updated for version 0.074.  Thanks to Sean Donner.  -rworkman
office/broffice.org: Updated for version 3.1.1.
  Thanks to Eduardo Oda.  --rworkman
office/rastertospp: Added - rastertospp provides a driver and ppd file for
  the Samsung SPP-2020 photo printer.  Thanks to Pierre Cazenave.  --dsomero
system/lxsplit: Added .  Thanks to Sebastián Salazar Molina.  --dsomero
system/mrxvt: Updated for version 0.5.4.  Thanks to Paul Wisehart.  --dsomero
system/nss_ldap: Added - nss_ldap is a reference implementation of RFC 2307.
  Thanks to Christopher Walker.  --dsomero
system/recorder: Added - Recorder is a graphical frontend for cdrkit/cdrtools.
  Thanks to Pierre Cazenave.  --dsomero
system/rox-filer: Re-added and updated for version 2.9.
  Thanks to slakmagik.  --dsomero
system/srm: Added - srm is a secure replacement for rm(1).
  Thanks to Marco Bonetti.  --dsomero
system/unace: Added - unace is a tool for decompressing ACE archives.
  Thanks to Erik Hanson.  --dsomero
system/vlock: Updated for version 2.2.2.  Thanks to Chris Abela.  --dsomero
system/xrdp: Re-added.  Thanks to Phillip Warner.  --dsomero
system/xtrs: Added - xtrs is a TRS-80 Model I/III/4/4P Emulator for Unix.
  Thanks to Niels Horn.  --rworkman
system/zeroinstall-injector: Updated for version 0.42.1.
  Thanks to Erik Hanson.  --dsomero
+--------------------------+
Sun Sep 27 03:53:41 UTC 2009
academic/glpk: Updated for version 4.39.  Thanks to Chris Abela.  --dsomero
academic/gwyddion: Updated for version 2.16.
  Thanks to Daniil Bratashov.  --dsomero
academic/rkward: Re-added for 13.0.  Thanks to Germán Márquez Mejía.
desktop/CurseTheWeather: Re-added and updated for version 0.5.
  Thanks to Phillip Warner.  --dsomero
desktop/dwm: Re-added and updated for version 5.6.1.
  Thanks to Tom Canich.  --dsomero
development/avr-binutils: Added - avr-binutils is a cross compiling
  version of GNU binutils for AVR platform.
  Thanks to Marek Buras.  --dsomero
development/avr-gcc: Added - avr-gcc is a cross compiling version of GNU
  gcc for AVR platform.  Thanks to Marek Buras.  --dsomero
development/gtkdialog: Re-added and updated for x86_64.
  Thanks to slakmagik.  --dsomero
development/python3: Updated for version 3.1.1.
  Thanks to Audrius Kazukauskas.  --rworkman
development/qt-creator: Re-added and updated for version 1.2.1.
  Thanks to Andre Barboza.  --dsomero
graphics/gbdfed: Added - gbdfed is a Bitmap Font Editor.
  Thanks to B. Watson.  --dsomero
libraries/avr-libc:  Added - avr-libc is a cross compiling version of GNU
  libc for AVR platform.  Thanks to Marek Buras.  --dsomero
libraries/cuneiform: Added - cuneiform is an OCR system.
  Thanks to Larry Hajali.  --dsomero
libraries/fftw: Updated to support building portable packages.
  Thanks to Kyle Guinn and Heinz Wiesinger.  --dsomero
libraries/gdal: Updated for version 1.6.2.
  Thanks to David Spencer.  --dsomero
libraries/gdata: Added - gdata is an API to Google services.
  Thanks to Larry Hajali.  --dsomero
libraries/json-glib: Updated for version 0.7.6.
  Thanks to Erik Hanson.  --dsomero
libraries/openvas-libnasl: Updated for version 2.0.2.
  Thanks to Marco Bonetti.  --dsomero
libraries/openvas-libraries: Updated for version 2.0.4.
  Thanks to Marco Bonetti.  --dsomero
misc/figlet: Updated for use on x86_64.  Thanks to David Woodfall.  --dsomero
misc/fileinfo: Added - fileinfo is a PHP extension that allows for the
  retrieval of file information.  Thanks to Christopher Walker.  --dsomero
misc/gramps: Updated for version 3.1.2.
  Thanks to Bill Kirkpatrick.  --dsomero
multimedia/audex: Added - audex is an audio grabber tool for CD-ROM drives
  based on KDE 4.  Thanks to Corrado Franco.  --dsomero
multimedia/gaupol: Added - Gaupol is an editor for text-based subtitle files.
  Thanks to Andre Barboza.  --dsomero
multimedia/k9copy: Re-added and updated for version 2.3.3.
  Thanks to Roberto Neri.  --dsomero
network/btpd: Updated for version 0.15.  Thanks to nmoura.  --dsomero
network/efax-gtk: Re-added and updated for version 3.0.20.
  Thanks to LukenShiro.  --dsomero
network/konversation: Updated for version 1.2_alpha6.
  Thanks to Michiel van Wessem.  --pprkut
network/openvas-client: Updated for version 2.0.5.
  Thanks to Marco Bonetti.  --dsomero
network/openvas-server: Updated for version 2.0.3.
  Thanks to Marco Bonetti.  --dsomero
network/qbittorrent: Added - qbittorrent is a qt-based bittorrent client.
  Thanks to David Woodfall.  --rworkman
office/grisbi: Added - Grisbi is a personnal accounting application.
  Thanks to Larry Hajali.  --dsomero
office/keepassx: Re-added.  Thanks to ben collver.  --dsomero
system/biew: Updated for version 6.0.0.  Thanks to Oleg O. Chukaev.  --dsomero
system/bleachbit: Updated for version 0.6.3.
  Thanks to Pierre Cazenave.  --dsomero
system/dtach: Re-added.  Thanks to slakmagik.  --dsomero
system/fxload: Updated to remove an unnecessary patch.
  Thanks to Andre Barboza.  --dsomero
system/kqemu: Tweaked SlackBuild.  Thanks to David Woodfall.  --dsomero
system/nvidia-driver: Updated for version 185.18.36.
  Thanks to Heinz Wiesinger.  --dsomero
system/nvidia-kernel: Updated for version 185.18.36.
  Thanks to Heinz Wiesinger.  --dsomero
system/pdksh: Added - pdksh is a public-domain implementation of the Korn
  shell.  Thanks to Daniel LEVAI.  --rworkman
+--------------------------+
Fri Sep 25 13:28:46 UTC 2009
As usual, we're running a bit behind on getting things checked - real life
  keeps getting in the way :-)  Nonetheless, we're still alive, so please
  be patient.  In the meantime, here are a few:
audio/sonata: Updated for version 1.6.2.
desktop/hsetroot: Added - a tool which allows you to compose wallpapers ("root
  pixmaps") for X.  Thanks to Eugene Wissner.
desktop/pekwm: Added - a lightweight window manager for X.
  Thanks to Eugene Suter.
development/hugs98: Re-added, thanks to Daniel.
games/UrbanTerror: Updated to fix the libcurl linkage and various other minor
  fixes.  Thanks to Matthew Fillpot.  --rworkman
games/mupen64plus: Added option to choose between Gtk2 and Qt4 GUI.
  Thanks to M.Dinslage.  --pprkut
graphics/rawstudio: Re-added, thanks to Nishant Limbachia.
libraries/exiftool: Updated for version 7.89.
libraries/libopensync-plugin-file: Added - libopensync-plugin-file
  is a simple file synchronisation plugin for opensync.
  Thanks to Michael Wagner.  --pprkut
multimedia/ffmpeg2theora: Re-added, thanks to Nishant Limbachia.
multimedia/gpac: Re-added, thanks to Nishant Limbachia.
multimedia/nted: Updated for version 1.8.1.
  Thanks to Corrado Franco.  --rworkman
network/clamav-unofficial-sigs: Updated for version 3.6.
network/gwibber: Added - a GTK/python based microblogging client.
  Thanks to Larry Hajali .  --michiel
network/msynctool: Added - msynctool is a command-line interface
  to opensync. Thanks to Michael Wagner.  --pprkut
office/calibre: Updated for version 0.5.14 along with minor cleanups to the
  build script.  Thanks to Larry Hajali.  --rworkman
system/gconf-editor: Added - GConf-editor is a GNOME utility for editing the
  GConf configuration database.  Thanks to Erik Hanson.  --rworkman
system/postgresql: Updated for version 8.4.1.
  Thanks to Adis Nezirovic.  --pprkut
+--------------------------+
Sat Sep 12 23:57:36 UTC 2009
academic/solfege: Updated for version 3.14.7.
  Thanks to Phillip Warner.  --dsomero
audio/cmus: Added a patch to make it build in presence of ffmpeg and resolve
  a security issue.  Thanks to Antonio Hernández Blas.  --dsomero
desktop/cwp: Added - cwp is a KDE4 weather plasmoid.
  Thanks to M.Dinslage.  --dsomero
desktop/kcometen4: Added - kcometen4 is an OpenGL screensaver for KDE4.
  Thanks to Matthew Fillpot.  --dsomero
desktop/parcellite: Re-added.
  Thanks to Phillip Warner and Dominic Wanger.  --dsomero
desktop/QtCurve-Gtk2: Updated for version 0.68.0.
  Thanks to ArTourter.  --dsomero
desktop/QtCurve-KDE4: Updated for version 0.68.0.
  Thanks to ArTourter.  --dsomero
development/easygui:  Re-added and updated for version 0.93.
  Thanks to LukenShiro.  --dsomero
development/eclipse: Updated for version 3.5.0.
  Thanks to Antonio Hernández Blas.  --dsomero
development/pydblite: Re-added.  Thanks to LukenShiro.  --dsomero
development/python-pmw: Re-added.  Thanks to LukenShiro.  --dsomero
development/re2c: Re-added.  Thanks to LukenShiro.  --dsomero
development/scite: Re-added and updated for version 2.01.
  Thanks to Iskar Enev.  --dsomero
games/lightyears: Added - lightyearsis a steampunk-themed strategy game where
  you have to manage a steam supply network.
  Thanks to Matthew Fillpot.  --dsomero
games/mupen64plus: Updated for version 1.5.  Thanks to M.Dinslage.  --dsomero
graphics/gliv: Re-added at version 1.9.6.  Thanks to Sebastián Salazar Molina.
graphics/kipi-plugins: Re-added and updated for version 0.6.0.  --dsomero
graphics/kphotoalbum: Re-added and updated for version 4.0.2.
  Thanks to Ben.  --dsomero
graphics/unpaper: Re-added.  Thanks to LukenShiro.  --dsomero
graphics/whyteboard: Added - whyteboard is a painting whiteboard application.
  Thanks to Jose Maria Marin Carceles.  --dsomero
libraries/FreeImage: Updated for version 3.12.0.
  Thanks to Phillip Warner.  --dsomero
libraries/gsl: Updated for version 1.13.
  Thanks to Aleksandar Samardzic.  --dsomero
libraries/jbigkit: Re-added and moved to libraries.
  Thanks to Iskar Enev.  --dsomero
libraries/libwww-perl: Updated for version 5.831.
  Thanks to LukenShiro.  --dsomero
libraries/perl-digest-sha1: Updated for version 2.12.
  Thanks to LukenShiro.  --dsomero
libraries/perl-html-parser: Updated for version 3.62.
  Thanks to LukenShiro.  --dsomero
misc/chm2pdf: Added a patch for insecure dirs.
  Thanks to Antonio Hernández Blas.  --dsomero
misc/chmlib-examples: Added - chmlib-examples is a set of examples programs
  that use chmlib.  Thanks to Antonio Hernández Blas.  --dsomero
misc/par2cmdline: Re-added with some fixes for compiler warnings, fixes for
  GCC 4, and now includes a man page.  Thanks to Thomas Morper.
misc/scim-chewing: Added - scim-chewing is New Chewing Engine for SCIM.
  Thanks to Guan-Zhong Huang.  --dsomero
multimedia/vobcopy: Re-added and updated for version 1.2.0.
  Thanks to Nishant Limbachia.  --dsomero
multimedia/oggvideotools: Added - oggvideotools is a toolbox for manipulating
  Ogg video files.  Thanks to Nishant Limbachia.  --dsomero
multimedia/picard: Added - picard is the next generation MusicBrainz tagging
  application.  Thanks to bassmadrigal.  --dsomero
multimedia/subtitleripper: Added - subtitleripper converts DVD subtitles into
  text format.  Thanks to Andre Barboza.  --dsomero
network/amap: Re-added.  Thanks to Marco Bonetti.  --dsomero
network/cherokee: Updated for version 0.99.24.
  Thanks to Pablo Hernan Saro.  --dsomero
network/fail2ban: Updated for version 0.8.4.
  Thanks to Nishant Limbachia.  --dsomero
network/nicotine+: Updated for version 1.2.12.
  Thanks to Iskar Enev.  --dsomero
network/nikto: Re-added.  Thanks to Marco Bonetti.  --dsomero
network/opera: Fixed a problem where TOPDIR might be incorrect if ARCH=i686.
  Removed the chinese fonts patch, as it's no longer needed.  If there are
  still issues with Japanese fonts, a patch is welcome.
  Thanks to Jorge Gajon for the TOPDIR patch, and thanks to Grissiom for the
  information pertaining to chinese fonts.  --rworkman
network/pidgin-facebookchat: Added - pidgin-facebookchat is a Facebook chat
  plugin for Pidgin.  Thanks to Erik Hanson.  --dsomero
network/polipo: Re-added.  Thanks to Marco Bonetti.  --dsomero
network/psi: Added - psi is a capable Jabber client aimed at experienced users.
  Thanks to Eugene Wissner.  --dsomero
network/smb4k: Re-added and updated for version 0.10.2.
  Thanks to Roberto Neri.  --dsomero
network/transmission: Re-added and updated for version 1.74.
  Thanks to Iskar Enev.  --dsomero
network/twitter-cmdline: Re-added and updated for version 1.03.
  Thanks to Marco Bonetti.  --dsomero
office/aiksaurus: Re-added.  Thanks to David Woodfall.  --dsomero
office/tellico: Updated for version 2.0pre2.
  Thanks to Gilcio Amaral.  --dsomero
system/daa2iso: Added - daa2iso is a command-line tool for converting DAA and
  GBI images to the ISO format.  Thanks to David Woodfall.  --dsomero
system/fsarchiver: Updated for version 0.5.9.
  Thanks to Nishant Limbachia.  --dsomero
system/pcsc-lite: Re-added and updated for version 1.5.5.
  Thanks to LukenShiro.  --dsomero
system/safecopy: Updated for version 1.6.
  Thanks to Nishant Limbachia.  --dsomero
system/uif2iso: Added - uif2iso is a tool for converting single and multipart
  UIF images to the ISO format.  Thanks to David Woodfall.  --dsomero
system/whowatch: Added - whowatch is an interactive who-like program that
  displays information about the users currently logged on to the machine.
  Thanks to David Woodfall.  --dsomero
system/yeahconsole: Re-added with correct version of 0.3.4.
  Thanks to Pablo Santamaria.  --dsomero
+--------------------------+
Wed Sep  9 04:41:16 UTC 2009
academic/GMT: Updated for version 4.5.0.
  Thanks to Pierre Cazenave.  --dsomero
academic/mathomatic: Updated for version 14.5.4.
  Thanks to Dylan Armitage.  --dsomero
accessibility/easystroke: Updated for version 0.4.9.
audio/mpdscribble: Updated for version 0.18.1.
  Thanks to Erik Hanson.  --dsomero
audio/musicmanager: Updated for version 0.10.7.
  Thanks to Keith Richie.  --rworkman
desktop/bbdock: Added - an application launcher for Blackbox (and others).
  Thanks to David Woodfall.
desktop/cmatrix: Included a patch to properly find the consolefonts directory.
  Thanks to Phillip Warner for the inquiry that led to the fix.  --rworkman
desktop/synergy: Added - Synergy lets you easily share a single mouse and keyboard
  between multiple computers.  Thanks to Vincent Batts.  --dsomero
develoment/shed: Added - a simple console hex editor with a friendly
  pico-style interface.  Thanks to David Woodfall.
development/qt-doc: Added - this package contains the qt4 docs that are not
  shipped with the stock Slackware qt package.  Thanks to Grissiom.  --dsomero
graphics/dcraw: Updated for version 8.97.
graphics/dia: New maintainer - Ash Wiren.
graphics/graphviz: Updated for version 2.24.0.
  Thanks to Audrius Kazukauskas.  --dsomero
libraries/libchewing: Added - libchewing is a library for New Chewing Input
  Method, a good Traditional Chinese intelligent phonetic input method.
  Thanks to Guan-Zhong Huang.  --dsomero
libraries/libkate: Updated for version 0.3.6.
  Thanks to Nishant Limbachia.  --dsomero
libraries/libunique: Updated for version 1.1.2.
libraries/libxmi: Re-added with some fixes to build on x86_64.
  Thanks to David Spencer.  --rworkman
multimedia/exaile: Re-added at version 0.3.0.
  Thanks to Marco Cecchetti.  --rworkman
multimedia/flvtool2: Re-added.  Thanks to Nishant Limbachia.  --dsomero
multimedia/schroedinger: Updated for version 1.0.7.
  Thanks to Nishant Limbachia.  --dsomero
network/ApacheDirectoryStudio: Added - ApacheDirectoryStudio is a LDAP
  browser/utility.  Thanks to Vincent Batts.  --dsomero
network/choqok: Added - a micro-blogging client for KDE4, supporting twitter.com
  and identi.ca services. Thanks to Josiah Boothby.
network/gnome-mail-notification: Added - Mail Notification monitors your
  mailboxes for new mail, displaying an icon in the notification area.
  Thanks to Joel J. Adamson.
network/midori: Updated for version 0.1.9.
  Thanks to Pierre Cazenave.  --rworkman
network/phpmyadmin: Updated for version 3.2.1.
  Thanks to Nishant Limbachia.  --dsomero
network/RSSOwl: Added - RSSOwl is a gui news reader, using the eclipse IDE
  framework.  Thanks to Vincent Batts.  --dsomero
office/gocr: Re-added. Updated for version 0.48.  Thanks to Nishant Limbachia.  --dsomero
system/ccrypt: Added - ccrypt is a unix crypt replacement.
  Thanks to Nishant Limbachia.  --dsomero
system/imwheel: Added - a mouse wheel and stick interpreter for X Windows.
  Thanks to David Woodfall.
system/qstardict: Updated for version 0.13.1.  Thanks to grissiom.  --dsomero
system/safecopy: Added - Safecopy is a data recovery tool.
  Thanks to Nishant Limbachia.  --dsomero
system/zeroinstall-injector: Updated for version 0.42.
  Thanks to Erik Hanson.  --dsomero
+--------------------------+
Tue Sep  8 04:43:28 UTC 2009
office/texmaker: Fixed a braindead edit to the build script which caused
  compilation to obviously fail on 32bit.  Thanks to Larry Hajali for
  pointing out my -ENOTHINKING.  --rworkman
+--------------------------+
Tue Sep  8 04:17:34 UTC 2009
academic/avogadro: Added - Avogadro is a molecular graphics and modelling
  system targeted at molecules and biomolecules.
  Thanks to Larry Hajali.  --rworkman
desktop/ratpoison: Updated for version 1.4.5.
  Thanks to Grigorios Bouzakis.  --rworkman
development/django: Updated for version 1.1.
  Thanks to Carlos Corbacho.  --rworkman
development/ipython: Updated for version 0.10.
  Thanks to Carlos Corbacho.  --rworkman
libraries/libmaa: Added - libmaa is a dependency of dictd, and the docs
  don't say much else that's useful. Thanks to sercari.  --rworkman
libraries/libnice: Added - The GLib ICE implementation.
  Thanks to David Woodfall.  --erik
multimedia/farsight2: Added - An Audio/Video Communications Framework.
  Thanks to David Woodfall.  --erik
network/shorewall: Updated for version 4.4.1.2.
  Thanks to ArTourter.  --rworkman
network/shorewall6: Updated for version 4.4.1.
  Thanks to ArTourter.  --rworkman
network/shorewall-common: Removed; this is now part of the generic
  shorewall package.  Thanks to ArTourter.  --rworkman
network/shorewall-shell: Removed; this is dead upstream.
network/shorewall-perl: Removed; this is now part of the generic
  shorewall package.  Thanks to ArTourter.  --rworkman
office/apvlv: Updated for version 0.0.7.2.
  Thanks to Grigorios Bouzakis.  --rworkman
office/dictd: Added - dictd is a DICT server and client.
  Thanks to sercari.  --rworkman
office/texmaker: Added - texmaker is a LaTeX editor.
  Thanks to Larry Hajali.  --rworkman
system/gxemul: Re-added version 0.4.7.2 for 13.0.
  Thanks to Aleksandar Samardzic.  --rworkman
system/hercules: Added - hercules is a System/370, ESA/390 and z/Architecture
  emulator.  Thanks to Niels Horn.  --rworkman
+--------------------------+
Mon Sep  7 23:36:58 UTC 2009
audio/mpd: Updated for version 0.15.3.
games/glest: Miscellaneous fixes to the build script.
  Thanks to Larry Hajali.  --rworkman
games/supertuxkart: Updated for version 0.6.2.
  Thanks to Larry Hajali.  --rworkman
games/warzone2100: Updated for version 2.2.2.
  Thanks to Matthew Fillpot.  --rworkman
libraries/libsoup: Updated for version 2.26.3.
  Thanks to Erik Hanson.  --rworkman
libraries/python-distutils-extra: Updated for version 2.9.
  Thanks to Larry Hajali.  --rworkman
libraries/python-spidermonkey: Updated for version 0.0.8.
  Thanks to Larry Hajali.  --rworkman
libraries/pywebkitgtk: Updated for version 1.1.5.
  Thanks to Larry Hajali.  --rworkman
libraries/quesoglc: Updated for version 0.7.2.
  Thanks to Matthew Fillpot.  --rworkman
libraries/zziplib: Updated for version 0.13.58.
network/aria2: Updated for version 1.5.2.
network/js: Updated for version 1.8.0_rc1.
  Thanks to David Woodfall.  --rworkman
network/opera: Updated for version 10.00.
network/qwit: Updated for version 0.9.
  Thanks to Larry Hajali.  --rworkman
network/vidalia: Updated for version 0.1.15.
office/openoffice.org: Updated for version 3.1.1.
system/iotop: Updated for version 0.3.1.
+--------------------------+
Mon Sep  7 07:33:27 UTC 2009
libraries/enca: Updated for version 1.10.
  Thanks to Larry Hajali.  --rworkman
libraries/lxml: Updated for version 2.2.2.
  Thanks to Larry Hajali.  --rworkman
libraries/perl-trayicon: Re-added. Thanks to Larry Hajali.  --rworkman
misc/ophcrack: Updated for version 3.3.1.
  Thanks to Larry Hajali.  --rworkman
multimedia/Miro: Re-added.  Thanks to Larry Hajali.  --rworkman
network/airpwn: Added - Airpwn is a framework for 802.11 (wireless) packet
  injection.  Thanks to Larry Hajali.  --rworkman
+--------------------------+
Fri Sep  4 18:43:15 UTC 2009
development/lua: Fixed linkage of -ldl, -lreadline, -lhistory and -lncurses
  in the shared library.  Thanks to pokipoki08 on LQ for the initial report
  and to Larry Hajali for giving me enough information to fix it.  --rworkman
+--------------------------+
Thu Sep  3 04:14:36 UTC 2009
desktop/pclock: Re-added.  Thanks to Cezary M. Kruk.  --rworkman
desktop/wmnet: Re-added.  Thanks to Cezary M. Kruk.  --rworkman
desktop/wmpower: Re-added.  Thanks to Cezary M. Kruk.  --rworkman
desktop/wmsm.app: Re-added.  Thanks to Cezary M. Kruk.  --rworkman
desktop/wmCalClock: Re-added.  Thanks to Cezary M. Kruk.  --rworkman
desktop/wmMoonClock: Re-added.  Thanks to Cezary M. Kruk.  --rworkman
desktop/wmSun: Re-added.  Thanks to Cezary M. Kruk.  --rworkman
graphics/exiftags: Re-added.  Thanks to Cezary M. Kruk.  --rworkman
graphics/fontmatrix: Updated for version 0.6.0.
  Thanks to Larry Hajali.  --rworkman
libraries/dnspython: Updated for version 1.7.1.
  Thanks to Larry Hajali.  --rworkman
libraries/libelf: Updated for version 0.8.12.
  Thanks to Larry Hajali.  --rworkman
office/catdoc: Included some missing files in the build.
  Thanks to Cezary M. Kruk.  --rworkman
+--------------------------+
Wed Sep  2 18:04:30 UTC 2009
desktop/industrial-cursor-theme: Re-added.  --erik
network/hping3: Re-added.  --rworkman
system/chkrootkit: Updated for version 0.49.  The source tarball is now hosted
  on the SlackBuilds.org server since it's an unversioned tarball and thus
  users have no indication that it's been changed until the build fails.
  Thanks to Markus Reichelt for the notification.  --rworkman
system/slim: Re-added.  Thanks to Morten Juhl-Johansen Zölde-Fejér.  --rworkman
+--------------------------+
Tue Sep  1 02:12:25 UTC 2009
development/django: Re-added.  Thanks to Carlos Corbacho.  --rworkman
development/stgit: Re-added.  Thanks to Carlos Corbacho.  --rworkman
games/pokerth: Fixed the qmake call along with a few other enhancements.
  Thanks to Antoine NONYME for the report.  --rworkman
network/SocksiPy: Re-added.  Thanks to Marco Bonetti.  --rworkman
network/pidgin-otr: Re-added.
network/w3af: Re-added.  Thanks to Marco Bonetti.  --rworkman
system/dump: Re-added.  Thanks to Chris Abela.  --rworkman
+--------------------------+
Wed Aug 26 10:00:38 CDT 2009
Well, it's that time again - the newest release of Slackware (13.0) is now
  on the mirrors, and since we know everyone is itching for SlackBuilds.org
  goodness, we (hopefully) won't disappoint you.  As usual, the ChangeLog is
  quite long, and perhaps even longer than usual this time around.  There are
  quite a few new additions to the tree, many old and unmaintained removals,
  and many updates.  It's entirely possible (likely even) that we neglected
  to fix all of the README files, so if you find any mentions of stuff that
  that's now part of Slackware (and thus doesn't need to be noted as a dep),
  let us know.  Of course, other bug reports are also encouraged, but maybe
  there won't be many of those :-)
  Congratulations to Pat and the Slackware team for another fine release, and
  we hope you all enjoy Slackware 13.0 and the updated SlackBuilds.org stuff.
  As always, thanks for your support and encouragement of both the Slackware
  team and us; happy Slacking!  -- the SlackBuilds.org Admin Team

The following entries are now included in Slackware 13.0, so they are no
  longer in the SlackBuilds.org repository:
  desktop/thunar-volman
  development/boost
  development/cupsddk
  development/gmm
  development/pil
  development/pycups
  development/sip
  development/swig
  development/subversion-bindings (part of the subversion package)
  graphics/djvulibre
  graphics/openexr
  libraries/babl
  libraries/chmlib
  libraries/clucene
  libraries/exiv2
  libraries/gegl
  libraries/glew
  libraries/ilmbase
  libraries/iso-codes
  libraries/jasper
  libraries/libarchive
  libraries/libdvdread
  libraries/libical
  libraries/libiptc (part of iptables now)
  libraries/libmcrypt
  libraries/libnl
  libraries/libvncserver
  libraries/libxklavier
  libraries/libzip
  libraries/pyqt3
  libraries/pyqt4
  libraries/qt4
  libraries/raptor
  libraries/rasqal
  libraries/redland
  libraries/taglib-extras
  libraries/urwid
  multimedia/mplayer
  network/iw
  network/snownews
  network/x11-ssh-askpass
  system/dc3dd
  system/dolphin (part of kde)
  system/lzma (part of xz)
  system/xorg-server-xephyr

The following entries were removed for other reasons:
  academic/bibletime: Removed; this won't compile with kde4.
  academic/bibletime-i18n: Removed; this won't compile with kde4.
  academic/qalculate-kde: Removed; this won't compile with kde4.
  academic/rkward: Removed; this won't compile with kde4.
  academic/scilab: Removed; this won't build a good package on x86_64.
  academic/xdrawchem: This requires qt3, so it's gone.
  academic/xoscope: Removed; this won't compile.
  audio/exaile: Removed; the maintainer plans to resubmit this after 13.0 is
    released.  --rworkman
  audio/moodbar: Removed; this won't work with Amarok2.  --pprkut
  audio/orpheus: Removed; this won't build and appears to be abandoned
    upstream.  --rworkman
  business/tinyerp-client: Removed; replaced with openerp-client.  --pprkut
  business/tinyerp-server: Removed; replaced with openerp-server.  --pprkut
  desktop/ccsm: Removed; this is unmaintained.  --dsomero
  desktop/compiz-bcop: Removed; this is unmaintained.  --dsomero
  desktop/compiz-fusion-plugins-extra: Removed; this is unmaintained.  --dsomero
  desktop/compiz-fusion-plugins-main: Removed; this is unmaintained.  --dsomero
  desktop/compiz-fusion-plugins-unsupported: Removed; this is
    unmaintained.  --dsomero
  desktop/compizconfig-backend-gconf: Removed; this is unmaintained.  --dsomero
  desktop/compizconfig-backend-kconfig: Removed; this is unmaintained.  --dsomero
  desktop/compizconfig-python: Removed; this is unmaintained.  --dsomero
  desktop/domino: Removed; this requires kde3.  --pprkut
  desktop/dzen: Removed; this is unmaintained.  --rworkman
  desktop/emerald: Removed; this is unmaintained.  --dsomero
  desktop/emerald-themes: Removed; this is unmaintained.  --dsomero
  desktop/fusion-icon: Removed; this is unmaintained.  --dsomero
  desktop/kbfx: Removed; this requires kde3.  --rworkman
  desktop/kcometen3: Removed; this requires kde3.  --michiel
  desktop/kirocker: Removed; this requires kde3.  --rworkman
  desktop/kkbswitch: Removed; this requires kde3.  --rworkman
  desktop/krypt: Removed; this requires kde3.  --rworkman
  desktop/ksmoothdock: Removed; this requires kde3.  --rworkman
  desktop/pypanel: Removed; won't compile on x86_64 and upstream
    is dead.  --chess
  desktop/QtCurve-KDE3: Removed; replaced with QtCurve-KDE4.  --michiel
  desktop/SystemPreferences: Removed (this depends on the gnustep stuff
    that was removed).  --rworkman
  desktop/simple-ccsm: Removed; this is unmaintained.  --dsomero
  desktop/thunar-shares: Renamed (now called thunar-shares-plugin).
  desktop/wmCalClock: Removed (download link is inaccessible).  --rworkman
  desktop/wmMoonClock: Removed (download link is inaccessible).  --rworkman
  desktop/wmSun: Removed (download link is inaccessible).  --rworkman
  desktop/wmnet: Removed (download link is inaccessible).  --rworkman
  desktop/wmpower: Removed (download link is inaccessible).  --rworkman
  desktop/wmsm.app: Removed (download link is inaccessible).  --rworkman
  desktop/xfce4-battery-plugin: Removed; as far as I'm concerned, this is now
    obsolete - use xfce4-power-manager instead.  --rworkman
  desktop/xfce4-eyes-plugin: Removed; if someone thinks this is actually worth
    having, then feel free to resubmit it (and maintain it).  --rworkman
  development/Ice: Removed; this is unmaintained.  --rworkman
  development/Pivy: Removed; this is unmaintained.  --rworkman
  development/ProjectCenter: Removed; this depends on the gnustep stuff that
    was also removed.  --rworkman
  development/boost-bindings: Removed; this is unmaintained.  --rworkman
  development/bugle: Removed; this won't build on 13.0, and it was unmaintained
    anyway.  --rworkman
  development/gccxml: Removed; this is unmaintained.  --rworkman
  development/gorm: Removed; this depends on the gnustep stuff that was also
    removed.  --rworkman
  development/kdbg: Removed; this required kde3.  --michiel
  development/motor: Removed; this won't build on 13.0 and has been
    unmaintained upstream for a long time.  --michiel
  development/mysqlcc: Removed; this requires qt3.  --pprkut
  development/psycopg: Removed; everything uses psycopg2 by now.  --pprkut
  development/pygccxml: Removed; this is unmaintained.  --rworkman
  development/pyplusplus: Removed; this is unmaintained.  --rworkman
  development/python3: Removed; this will be resubmitted with some cleanups
    and a version bump after the 13.0 release.  --rworkman
  development/valgrind: Removed; incompatible with 13.0's glibc.  --pprkut
  games/defcon: Removed; this is a 32bits binary only.  --michiel
  games/ivan: Removed; this won't compile.
  games/koules: Removed; this won't compile.
  games/ksudoku: Removed; This is now part of kdegames.  --pprkut
  games/nethack: Removed; this won't compile.
  games/widelands: Removed; this won't compile.  --pprkut
  games/xgalaga: Removed; this won't compile.
  graphics/enblend-enfuse: Removed; this requires libxmi, which won't build
    on 13.0.  --rworkman
  graphics/gwenview: This is now part of kdegraphics.
  graphics/gwenview-i18n: This is now part of kdegraphics.
  graphics/hugin: Removed; this requires enblend-enfuse, which requires
    libxmi, which was removed because it won't build on 13.0.  --rworkman
  libraries/gail: This is now part of gtk-2.14.x.
  libraries/gnustep-{back,base,gui,make}: Removed.  Best I can tell, it's not
    a trivial pursuit to package this stuff correctly on x86_64, and I have
    neither the time nor desire to spend any more time on it.  --rworkman
  libraries/karma-sharp: Removed; this is unmaintained.  --rworkman
  libraries/libcompizconfig: Removed; this is unmaintained.  --dsomero
  libraries/libkdcraw: This is now part of kdegraphics.
  libraries/libffi: Removed; conflicts with gcc-java-4.3.3.
  libraries/libghttp: Removed; this won't build on 13.0.  --rworkman
  libraries/libkexiv2: This is now part of kdegraphics.
  libraries/libkipi: This is now part of kdegraphics.
  libraries/libopensync-plugin-kdepim: Removed; this doesn't work with kde4.
  libraries/libqalculate: Removed; this won't build on 13.0.  --rworkman
  libraries/libxmi: Removed; this won't build on 13.0.  --rworkman
  librarues/lrmi: Removed; Unmaintained upstream.  --pprkut
  libraries/xmltv_prereq: Removed; this is unmaintained.  --dsomero
  misc/recode: Removed; this won't build on 13.0.  --pprkut
  misc/zaptel: This won't build on 2.6.29+ kernels.  --rworkman
  multimedia/mplayer-codecs-all: Removed (renamed to mplayer-codecs).
  multimedia/mythplugins: Removed; this is unmaintained.  --dsomero
  multimedia/myththemes: Removed; this is unmaintained.  --dsomero
  multimedia/mythtv: Removed; this is unmaintained.  --dsomero
  multimedia/xmltv: Removed; this is unmaintained.  --dsomero
  network/arora: Removed until a workaround is found. This will not work
    correctly with Slackware 13's version of Qt.  --dsomero
  network/dillo: Removed; this is unmaintained, and newer versions will require
    some more work to build on 13.0.  --rworkman
  network/dovecot-sieve: Removed (renamed to dovecot-cmusieve).  --rworkman
  network/kftpgrabber: Removed (won't work with kde4).  --rworkman
  network/kmyfirewall: Removed; this requires kde3.  --rworkman
  network/knetmon: Removed; this requires kde3.  --rworkman
  network/kssh: Removed; this requires kde3.  --rworkman
  network/madwifi-driver: Removed; this won't build on 13.0.  --rworkman
  network/madwifi-tools: Removed; this won't build on 13.0.  --rworkman
  network/miniupnpd: This needs to catch up with the new iptables API.
  network/muttng: Removed; this is unmaintained.  --rworkman
  network/ntop: Removed; the buildscript of ntop wants to do too much
    on it's own that is not scriptable.  --Michiel
  network/tork: Removed; this requires kde3.  --pprkut
  office/basket: Removed; this requires kde3. --michiel
  office/gnumeric: Removed; the 1.8.x "stable" branch requires quite a few
    gnome libs, and since we had 1.9.1 already for 12.2, I'd rather not roll
    back to 1.8.x.  However, every new release of 1.9.x bumps the libgsf
    requirement to whatever is the latest at that particular time, so no
    matter what we here, it's highly likely that it will be wrong in the
    near future.  Therefore, we'll wait for 13.0 to release and let the
    gnumeric maintainer find a release of it that matches the libgsf that's
    in 13.0.  Sorry for the book.  --rworkman
  office/kmobiletools: kde4 port seems unstable and unmaintained.  --pprkut
  office/kdissert: Removed; This is no longer maintained upstream and
    QT3 only.
  office/kmymoney2: Removed; this requires kde3.  --michiel
  office/lyx_qt4: Removed; (renamed to lyx).  --michiel
  office/oooqs2: Removed; this has not been updated for newer OOo.  --rworkman
  office/taskjuggler: Removed; this requires kde3.  --pprkut
  office/tellico: Removed; this requires kde3.  --michiel
  system/915resolution: Removed; this should no longer be needed.  --rworkman
  system/cdrkit: Removed; this is unmaintained.  --rworkman
  system/filelight: Removed; this requires kde3.  --michiel
  system/komparator: Removed; this is unmaintained.  --dsomero
  system/kshutdown: Removed; this requires kde3.  There is a kde4 version
    in development, so the maintainer is free to submit an update.  --rworkman
  system/lapsus: no kde4 port available yet.
  system/mrxvt: Removed; the license for this script is GPL, which requires
    it to include a copy of the GPL, which is braindead for a script that's
    *many* times smaller than the GPL itself, so mrxvt is removed until or
    unless the build script is relicensed.  --rworkman
  system/nvidia-legacy71-driver: incompatible with xorg-server >= 1.5
  system/nvidia-legacy71-kernel: incompatible with xorg-server >= 1.5
  system/skim: Removed (unmaintained).  --rworkman
  system/slackins: This requires qt3, so it's gone.

The following entries were updated for 13.0:
  academic/celestia: Updated for version 1.6.0.  --pprkut
  academic/link-grammar: Updated for version 4.5.8.  --rworkman
  accessibility/linuxwacom: Updated for version 0.8.3_6.  --rworkman
  accessibility/jpilot: Updated for version 1.6.2 and included a patch to use
    the expected libdir rather than violating POLA.  --rworkman
  audio/ardour: Updated for version 2.8.1.  --pprkut
  audio/gmpc: Updated for version 0.18.98.  --erik
  audio/gmpc-plugins: Updated for version 0.18.98.  --erik
  audio/gtkpod: Updated for version 0.99.14.  --rworkman
  audio/mp3blaster: Updated for version 3.2.5.  --rworkman
  audio/mpd: Updated for version 0.15.2.  --erik
  audio/ocp: Updated for version 0.1.17.  --erik
  desktop/QtCurve-Gtk2: Updated for version 0.65.3. --michiel
  desktop/crystal: Updated for version 2.0.3.  --michiel
  desktop/enlightenment: Updated for version 0.16.999.062.  --erik
  desktop/google-gadgets-for-linux: Updated for version 0.11.0.  --pprkut
  desktop/rss-glx: Updated for version 0.9.0.  --erik
  desktop/thunar-shares-plugin: Added (renamed from thunar-shares). --rworkman
  desktop/thunar-svn-plugin: Updated for version 003 and added a patch from
    Gentoo to build with subversion-1.6.x.  --rworkman
  desktop/thunar-thumbnailers: Updated for version 0.4.1.  --rworkman
  desktop/xfce4-clipman-plugin: Updated for version 1.0.1.  --rworkman
  desktop/xfce4-cpugraph-plugin: Updated for version 0.4.0.  --rworkman
  desktop/xfce4-dict: Updated for version 0.5.3.  --rworkman
  desktop/xfce4-diskperf-plugin: Updated for version 2.2.0.  --rworkman
  desktop/xfce4-genmon-plugin: Updated for version 3.2.  --rworkman
  desktop/xfce4-mpc-plugin: Updated for version 0.3.3.  --rworkman
  desktop/xfce4-notes-plugin: Updated for version 1.7.0.  --rworkman
  desktop/xfce4-places-plugin: Updated for version 1.2.0.  --rworkman
  desktop/xfce4-screenshooter: Updated for version 1.6.0.  --rworkman
  desktop/xfce4-timer-plugin: Updated for version 0.6.1.  --rworkman
  desktop/xfce4-wavelan-plugin: Updated for version 0.5.5.  --rworkman
  desktop/xfce4-weather-plugin: Updated for version 0.7.3.  --rworkman
  desktop/xfce4-xkb-plugin: Updated for version 0.5.3.3.  --rworkman
  desktop/xfce4-xmms-plugin: Updated for version 0.5.2.  --rworkman
  development/MySQL-python: Updated for version 1.2.3c1.  --pprkut
  development/SQLAlchemy: Updated for version 0.5.5.  --pprkut
  development/acpica: Updated for version 20090625. --pprkut
  development/apache-maven: Updated for version 2.2.0.  --pprkut
  development/bashdb: Updated for version 4.0-0.3.  --erik
  development/bzr: Updated for version 1.16.1.  --rworkman
  development/gob2: Updated for version 2.0.16.  --erik
  development/patchutils: Updated for version 0.3.1.  --rworkman
  development/kdesvn: Updated for version 1.3.2.  --michiel
  development/kdiff3: Updated for version 0.9.95.  --michiel
  development/llvm: Updated for version 2.5.  --pprkut
  development/psycopg2: Updated for version 2.0.11.  --pprkut
  games/bzflag: Updated for version 2.0.12.  --chess
  games/desmume: Updated for version 0.9.4.
    Thanks to Larry Hajali.  --pprkut
  games/gnubg: Updated for version 0.90.0_20090817.  --erik
  games/mednafen: Updated for version 0.8.C.  --pprkut
  games/scummvm: Updated for version 0.13.1.  --pprkut
  games/spring: Updated for version 0.79.1.2.  --rworkman
  games/springlobby: Updated for version 0.0.1.10494.  --rworkman
  games/warzone2100: Updated for version 2.2.1.  --dsomero
  games/wesnoth: Updated for version 1.6.4.  --michiel
  games/zsnes: Updated for version 1.51b.
    Thanks to "Dave" on slackbuilds-users.  --rworkman
  graphics/fontforge: Updated for version 20090622.  --rworkman
  graphics/gtkam: Updated for version 0.1.16.1.
    Thanks to Michael Wagner.  --rworkman
  graphics/inkscape: Updated for version 0.47pre0.  --rworkman
  graphics/lilypond: Updated for version 2.12.2.  --pprkut
  graphics/mftrace: Updated for version 1.2.15.  --pprkut
  graphics/opengtl: Updated for version 0.9.9.  --pprkut
  graphics/xtrkcad: Updated for version 4.0.3a.
    Thanks to David Spencer.  --rworkman
  libraries/PyXML: Included a patch to work with python-2.6.
    Thanks to Vincent Batts for the heads-up on this.  --pprkut
  libraries/cln: Updated for version 1.3.0.  --rworkman
  libraries/e_dbus: Updated for version 0.5.0.062.  --erik
  libraries/ecore: Updated for version 0.9.9.062.  --erik
  libraries/edje: Updated for version 0.9.92.062.  --erik
  libraries/eet: Updated for version 1.2.2.  --erik
  libraries/efreet: Updated for version 0.5.0.062.  --erik
  libraries/eina: Updated for version 0.0.2.062.  --erik
  libraries/embryo: Updated for version 0.9.9.062.  --erik
  libraries/evas: Updated for version 0.9.9.062.  --erik
  libraries/exempi: Updated for version 2.1.1.
  libraries/exo-notify: Updated for version 0.3.101 to match the exo version
    in Slackware's xfce package.  --rworkman
  libraries/gdal: Updated for version 1.6.0.
    Thanks to Marco Cecchetti.  --rworkman
  libraries/geos: Updated for version 3.0.4.
    Thanks to Marco Cecchetti.  --rworkman
  libraries/gst-python: Updated for version 0.10.15.  As of right now, there
    is an 0.10.16 release, but it won't build for me.  --rworkman
  libraries/gtk-qt-egine: Updated for version 1.1.  --michiel
  libraries/icu4c: Updated for version 4.2.1.  --pprkut
  libraries/id3lib: Included a patch to build on 13.0.  --rworkman
  libraries/libburn: Updated for version 0.6.8.  --rworkman
  libraries/libetpan: Updated for version 0.58.  --rworkman
  libraries/libglademm: Updated for version 2.6.7.  --pprkut
  libraries/libinklevel: Updated for version 0.8.0.  --rworkman
  libraries/libisoburn: Updated for version 0.3.8.  --rworkman
  libraries/libisofs: Updated for version 0.6.20.  --rworkman
  libraries/libmpd: Updated for version 0.18.98.  --erik
  libraries/libnfnetlink: Updated for version 1.0.0.  --rworkman
  libraries/libopenraw: Updated for version 0.0.8.  --michiel
  libraries/libpri: Updated for version 1.4.10.1.  --rworkman
  libraries/libquicktime: Updated for version 1.1.3.  --pprkut
  libraries/libsmbios: Updated for version 2.2.19.  --rworkman
  libraries/libtorrent: Updated for version 0.12.4.  --rworkman
  libraries/libtorrent-rasterbar: Updated for version 0.14.4.  --rworkman
  libraries/openbabel: Updated for version 2.2.1.  --rworkman
  libraries/physfs: Updated for version 2.0.0.  --dsomero
  libraries/slv2: Updated for version 0.6.6.  --pprkut
  libraries/swfdec: Updated for version 0.8.4.  --erik
  libraries/wvstream: Updated for version 4.6.  --rworkman
  libraries/xalan-c: Included a patch to compile with gcc-4.3.  --pprkut
  misc/fcitx: Updated for version 3.6.0.   --michiel
  misc/gnome-doc-utils: Updated for version 0.17.2.  --rworkman
  misc/krename: Updated for version 3.9.3  --pprkut
  multimedia/Songbird: Updated for version 1.20.  --michiel
  multimedia/flash-player-plugin: Updated for version 10.0.32.18.  --rworkman
  multimedia/flash-player-standalone: Updated for version 10.0.32.18.  --pprkut
  multimedia/gst-gnome-vfs: Updated for version 0.10.23 (to match the version
    of gst-plugins-base that's in 13.0).  --rworkman
  multimedia/gst-plugins-bad: Updated for version 0.10.13. --michiel
  multimedia/gst-plugins-good: Updated for version 0.10.15.  --michiel
  multimedia/gst-plugins-ugly: Updated for version 0.10.12.  --michiel
  multimedia/kaffeine: Updated for version 1.0_pre1.  --michiel
  multimedia/mkvtoolnix: Updated for version 2.9.8.  --erik
  multimedia/transcode: Updated for version 1.1.3.  --pprkut
  multimedia/wxcam: Updated for version 1.0.4.
    Thanks to Pierre Cazenave.  --rworkman
  network/LimeWire: Updated for version 5.1.4.  --rworkman
  network/aircrack-ng: Updated for version 1.0_rc3 since previous version
    did not build on Slackware64.  --chess
  network/autossh: Updated for version 1.4b.  --rworkman
  network/b43-fwcutter: Updated for version 012.  --rworkman
  network/claws-mail: Updated for version 3.7.2.  --rworkman
  network/claws-mail-extra-plugins: Updated for version 3.7.2.  --rworkman
  network/dropbear: Updated for version 0.52.  --rworkman
  network/ipvsadm: Updated for version 1.25.  --pprkut
  network/konversation: Updated for version 1.2_alpha4.  --michiel
  network/lighttpd: Updated for version 1.4.23.  --rworkman
  network/memcached: Updated for version 1.2.8.  --rworkman
  network/msmtp: Updated for version 1.4.17.  --rworkman
  network/ndiswrapper: Updated for version 1.55.  --rworkman
  network/skype: Switched to the shared build to get better
    KDE4 Integration.  --pprkut
  network/tor: Updated for version 0.2.1.19.  --dsomero
  network/wireshark: Updated for version 1.2.1.  --michiel
  network/xtables-addons: Updated for version 1.17.  --rworkman
  office/abiword: Updated for version 2.6.8.  --rworkman
  office/adobe-reader: Updated for version 9.1.2.  --pprkut
  office/apvlv: Updated for version 0.0.6.6.  --rworkman
  office/eqonomize: Updated for version 0.6.  --pprkut
  office/kchmviewer: Updated for version 4.0.  --michiel
  office/lyx: Updated for version 1.6.3.  --michiel
  office/moneydance: Updated for version 2008_b640.  --rworkman
  office/scribus: Updated for version 1.3.5.rc3.  --rworkman
  system/apcupsd: Updated for version 3.14.7.  --rworkman
  system/cdemu-daemon: Patched to compile on 13.0.  --pprkut
  system/cfengine: Updated for version 2.2.10.
    Thanks to Menno Duursma.  --rworkman
  system/ddrescue: Updated for version 1.11.  --pprkut
  system/dosbox: Updated for version 0.73.  --michiel
  system/fakeroot: Updated for version 1.12.4.  --rworkman
  system/fpm2: Updated for version 0.75.  --erik
  system/gammu: Updated for version 1.25.0.  --pprkut
  system/gdm: Updated for version 2.20.10.  --rworkman
  system/htop: Updated for version 0.8.3. This fixes the segfaulting problem
    on htop-0.8.2 when trying to sort.  --michiel
  system/krusader: Updated for version 2.0.0.  --rworkman
  system/lbzip2: Updated for version 0.15.  --erik
  system/nvidia-driver: Updated for version 185.18.31.  --pprkut
  system/nvidia-kernel: Updated for version 185.18.31.  --pprkut
  system/nvidia-legacy173-driver: Updated for version 173.14.20.  --pprkut
  system/nvidia-legacy173-kernel: Updated for version 173.14.20.  --pprkut
  system/nvidia-legacy96-driver: Updated for version 96.43.13.  --pprkut
  system/nvidia-legacy96-kernel: Updated for version 96.43.13.  --pprkut
  system/pommed: Updated for version 1.26.  --rworkman
  system/powertop: Updated for version 1.11.  --pprkut
  system/qemu: Updated for 0.10.6.  --rworkman
  system/rkhunter: Updated for version 1.3.4.  --rworkman
  system/set_rlimits: Updated for version 1.3.0.  --rworkman
  system/virtualbox-ose: Updated for version 3.0.4.  --pprkut
  system/virtualbox-ose-addons: Updated for version 3.0.4.  --pprkut
  system/virtualbox-kernel: Updated for version 3.0.4.  --pprkut
  system/virtualbox-kernel-addons: Updated for version 3.0.4.  --pprkut
  system/wine: Updated for version 1.1.24.  Note that this won't build on a
    stock Slackware 13.0 64bit system - you'll need 32bit compatibility stuff
    to do so.  We won't say it doesn't work, but we don't support it.
  system/xfburn: Updated for version 0.4.2.  --rworkman
  system/yakuake: Updated for version 2.9.6.  --pprkut
  system/zeroinstall-injector: Updated for version 0.41.1.  --erik

The following were added to the repository for 13.0:
  business/openerp-client: Added (Renamed from tinyerp-client).  --pprkut
  business/openerp-server: Added (Renamed from openerp-server).  --pprkut
  desktop/QtCurve-KDE: Added; this replaces QtCurve-KDE3.  --michiel
  desktop/xfce4-mailwatch-plugin: Added xfce4-mailwatch-plugin is a plugin
    for the XFCE4 panel to check mail. --dsomero
  desktop/xfce4-notifyd: Added. xfce4-notifyd is a notification daemon
    for the XFCE desktop. Thanks to Frank Caraballo.  --michiel
  desktop/xfswitch-plugin: Added. Thanks to rworkman.  --michiel
  libraries/pangomm: Added. Pangomm is a C++ API for Pango. --erik
  libraries/pychart: Added. This is needed for openerp-server.  --pprkut
  libraries/pydot: Added. This is needed for openerp-server.  --pprkut
  libraries/pyicu: Added. This is needed for vobject.  --pprkut
  libraries/pytz: Added. This is needed for openerp-server.  --pprkut
  libraries/vobject: Added. This is needed for openerp-server.  --pprkut
  multimedia/mplayer-codecs: Added (renamed from mplayer-codecs-all).
  network/dovecot-cmusieve: Added (renamed from dovecot-sieve).
    Thanks to Nishant Limbachia.  --rworkman
  office/evince: Added. Evince is a lightweight PDF and document viewer.
    Thanks to Andrew Bouwers for the buildscript.  --michiel

The following entries were not checked at all for 13.0, as we simply ran
  out of time to do them.  We know that some of these were likely mentioned
  on the mailing list, but we were too busy trying to get everything ready
  for the release of 13.0.  Sorry for the inconvenience, but maybe we'll
  be ready for new submissions pretty soon...
  audio/SlimServer: Removed.
  audio/amSynth: Removed.
  audio/quodlibet: Removed.
  audio/scmpc: Removed.
  audio/tuxguitar: Removed.
  audio/xmms2: Removed.
  business/clacct: Removed.
  business/ledger: Removed.
  business/xtuple: Removed.
  desktop/3ddesktop: Removed.
  desktop/Alphacube-GTK: Removed.
  desktop/Blokkal: Removed.
  desktop/CurseTheWeather: Removed.
  desktop/adesklets: Removed.
  desktop/alltray: Removed.
  desktop/alphacube: Removed.
  desktop/bbrun: Removed.
  desktop/blended: Removed.
  desktop/brightside: Removed.
  desktop/candido: Removed.
  desktop/cellwriter: Removed.
  desktop/cylonminimal: Removed.
  desktop/desklaunch: Removed.
  desktop/docker: Removed.
  desktop/dwm: Removed.
  desktop/fbdesk: Removed.
  desktop/ffmpegthumbnailer: Removed.
  desktop/furiusisomount: Removed.
  desktop/gtk-smooth-engine: Removed.
  desktop/industrial-cursor-theme: Removed.
  desktop/ion: Removed.
  desktop/kooldock: Removed.
  desktop/linstasquared: Removed.
  desktop/lipstik: Removed.
  desktop/nitrogen: Removed.
  desktop/oroborus: Removed.
  desktop/parcellite: Removed.
  desktop/pclock: Removed.
  desktop/pekwm: Removed.
  desktop/rezlooks: Removed.
  desktop/root-tail: Removed.
  desktop/stalonetray: Removed.
  desktop/ubuntulooks: Removed.
  desktop/whaw: Removed.
  desktop/xmobar: Removed.
  desktop/xxkb: Removed.
  development/Amaya: Removed.
  development/Coin: Removed.
  development/Genshi: Removed.
  development/Jinja: Removed.
  development/LLgen: Removed.
  development/Quarter: Removed.
  development/SilverCity: Removed.
  development/Werkzeug: Removed.
  development/Xdialog: Removed.
  development/argouml: Removed.
  development/astyle: Removed.
  development/autogen: Removed.
  development/boo: Removed.
  development/bouml: Removed.
  development/bouml_docs: Removed.
  development/bzrtools: Removed.
  development/cc65: Removed.
  development/cgdb: Removed.
  development/check: Removed.
  development/cm_tools: Removed.
  development/codeblocks: Removed.
  development/cvsps: Removed.
  development/ded: Removed.
  development/diakonos: Removed.
  development/django: Removed.
  development/eagle: Removed.
  development/easyedit: Removed.
  development/easygui: Removed.
  development/empty: Removed.
  development/esvn: Removed.
  development/flup: Removed.
  development/glade3: Removed.
  development/gputils: Removed.
  development/gtk-sharp: Removed.
  development/gtkdialog: Removed.
  development/hexedit: Removed.
  development/hgsvn: Removed.
  development/ht: Removed.
  development/hugs98: Removed.
  development/jasspa: Removed.
  development/jbigkit: Removed.
  development/ketchup: Removed.
  development/kompozer: Removed.
  development/kontrollerlab: Removed.
  development/latrace: Removed.
  development/libanculus-sharp: Removed.
  development/loki: Removed.
  development/mcpp: Removed.
  development/mono: Removed.
  development/mono-addins: Removed.
  development/monotone: Removed.
  development/ndesk-dbus: Removed.
  development/ndesk-dbus-glib: Removed.
  development/netbeans: Removed.
  development/openmpi: Removed.
  development/piklab: Removed.
  development/psyco: Removed.
  development/pydblite: Removed.
  development/python-pmw: Removed.
  development/qdevelop: Removed.
  development/qt-creator: Removed.
  development/quilt: Removed.
  development/re2c: Removed.
  development/saxonb: Removed.
  development/scite: Removed.
  development/sdcc: Removed.
  development/shed: Removed.
  development/sloccount: Removed.
  development/smake: Removed.
  development/source-highlight: Removed.
  development/splint: Removed.
  development/stgit: Removed.
  development/swi-prolog-lite: Removed.
  development/tailor: Removed.
  development/tavrasm: Removed.
  development/tkcvs: Removed.
  development/tokyocabinet: Removed.
  development/uisp: Removed.
  development/uncrustify: Removed.
  development/vic: Removed.
  development/xalan-j: Removed.
  development/zile: Removed.
  games/Phalanx: Removed.
  games/armagetronad: Removed.
  games/blobAndConquer: Removed.
  games/brickout: Removed.
  games/bygfoot: Removed.
  games/chromium-bsu: Removed.
  games/circuslinux: Removed.
  games/crack-attack: Removed.
  games/crossfire-client: Removed.
  games/epsxe: Removed.
  games/fortune_firefly: Removed.
  games/freeciv: Removed.
  games/freedroidrpg: Removed.
  games/frotz: Removed.
  games/gemdropx: Removed.
  games/gens: Removed.
  games/gnugo: Removed.
  games/ivan: Removed.
  games/kobodeluxe: Removed.
  games/koules: Removed.
  games/monsterz: Removed.
  games/nethack: Removed.
  games/nevernoid: Removed.
  games/pysolfc: Removed.
  games/pysweeper: Removed.
  games/qgo: Removed.
  games/qmc2: Removed.
  games/sms_sdl: Removed.
  games/transfusion: Removed.
  games/tuxpuck: Removed.
  games/typhoon_2001: Removed.
  games/xaos: Removed.
  games/xgalaga++: Removed.
  games/xscrabble: Removed.
  games/z26: Removed.
  graphics/bashgallery: Removed.
  graphics/comix: Removed.
  graphics/digikam: Removed.
  graphics/djview4: Removed.
  graphics/exif: Removed.
  graphics/exiftags: Removed.
  graphics/fbida: Removed.
  graphics/fly: Removed.
  graphics/gerbv: Removed.
  graphics/gimmage: Removed.
  graphics/gliv: Removed.
  graphics/gpicview: Removed.
  graphics/grap: Removed.
  graphics/jhead: Removed.
  graphics/kipi-plugins: Removed.
  graphics/kphotoalbum: Removed.
  graphics/mirage: Removed.
  graphics/pcb: Removed.
  graphics/photoprint: Removed.
  graphics/plotutils: Removed.
  graphics/qcomicbook: Removed.
  graphics/rawstudio: Removed.
  graphics/svp: Removed.
  graphics/tripod: Removed.
  graphics/unpaper: Removed.
  graphics/yafray: Removed.
  graphics/zgv: Removed.
  libraries/clearsilver: Removed.
  libraries/gst-ffmpeg: Removed.
  libraries/guile-gtk: Removed.
  libraries/libnids: Removed.
  libraries/libstroke: Removed.
  libraries/libzrtpcpp: Removed.
  libraries/nss-mysql: Removed.
  libraries/pcsc-perl: Removed.
  libraries/pcsc-tools: Removed.
  libraries/perl-trayicon: Removed.
  libraries/python-spidermonkey: Removed.
  libraries/stfl: Removed.
  libraries/webkit-sharp: Removed.
  libraries/xmonad-contrib: Removed.
  misc/biosdisk: Removed.
  misc/bsdsfv: Removed.
  misc/cksfv: Removed.
  misc/di: Removed.
  misc/gxmessage: Removed.
  misc/heyu: Removed.
  misc/iscan-firmware: Removed.
  misc/iscan-proprietary-drivers: Removed.
  misc/kover: Removed.
  misc/kvm: Removed.
  misc/misctools: Removed.
  misc/qstat: Removed.
  misc/rlwrap: Removed.
  misc/rng-tools: Removed.
  misc/xclip: Removed.
  misc/xsel: Removed.
  multimedia/Miro: Removed.
  multimedia/devede: Removed.
  multimedia/divx4linux: Removed.
  multimedia/dvdrip: Removed.
  multimedia/ffmpeg2theora: Removed.
  multimedia/flvtool2: Removed.
  multimedia/gcstar: Removed.
  multimedia/gecko-mediaplayer: Removed.
  multimedia/gnome-mplayer: Removed.
  multimedia/gpac: Removed.
  multimedia/grip: Removed.
  multimedia/imagination: Removed.
  multimedia/k9copy: Removed.
  multimedia/kdetv: Removed.
  multimedia/kid3: Removed.
  multimedia/kmplayer: Removed.
  multimedia/mmsclient: Removed.
  multimedia/mppenc: Removed.
  multimedia/quodlibet-plugins: Removed.
  multimedia/remoot: Removed.
  multimedia/subtitleeditor: Removed.
  multimedia/tvtime: Removed.
  multimedia/vcdimager: Removed.
  multimedia/vkeybd: Removed.
  multimedia/vobcopy: Removed.
  multimedia/xine-plugin: Removed.
  network/SocksiPy: Removed.
  network/amap: Removed.
  network/bmon: Removed.
  network/bot-sentry: Removed.
  network/castget: Removed.
  network/ccrtp: Removed.
  network/chrony: Removed.
  network/davfs2: Removed.
  network/deluge: Removed.
  network/dsniff: Removed.
  network/dynamips: Removed.
  network/efax-gtk: Removed.
  network/esmtp: Removed.
  network/exim: Removed.
  network/fcgi: Removed.
  network/flock: Removed.
  network/galaxium: Removed.
  network/ganglia: Removed.
  network/guarddog: Removed.
  network/heimdal: Removed.
  network/hping3: Removed.
  network/htscanner: Removed.
  network/ilbc: Removed.
  network/iscsitarget: Removed.
  network/kadu: Removed.
  network/kazehakase: Removed.
  network/kcheckgmail: Removed.
  network/kdebluetooth: Removed.
  network/kitchensync: Removed.
  network/kmess: Removed.
  network/kmldonkey: Removed.
  network/kuftp: Removed.
  network/linphone: Removed.
  network/linuxdcpp: Removed.
  network/lostirc: Removed.
  network/mozilla-prism: Removed.
  network/mozplugger: Removed.
  network/mrtg: Removed.
  network/msn-pecan: Removed.
  network/mumble: Removed.
  network/museek+: Removed.
  network/naim: Removed.
  network/netkit: Removed.
  network/netkit-filesystem: Removed.
  network/netkit-kernel: Removed.
  network/newsbeuter: Removed.
  network/nginx: Removed.
  network/nicotine-plus: Removed.
  network/nikto: Removed.
  network/noip: Removed.
  network/packit: Removed.
  network/phrel: Removed.
  network/pidgin-hotkeys: Removed.
  network/pidgin-otr: Removed.
  network/polipo: Removed.
  network/qbittorrent: Removed.
  network/radvd: Removed.
  network/retroshare: Removed.
  network/rtorrent: Removed.
  network/scli: Removed.
  network/sim: Removed.
  network/smb4k: Removed.
  network/spamassassin: Removed.
  network/strongswan: Removed.
  network/tcptrack: Removed.
  network/tsocks: Removed.
  network/tucan: Removed.
  network/twinkle: Removed.
  network/twitter-cmdline: Removed.
  network/varnish: Removed.
  network/vde2: Removed.
  network/w3af: Removed.
  network/w3m: Removed.
  network/weechat: Removed.
  network/wifi-radar: Removed.
  network/xrdp: Removed.
  network/znc: Removed.
  office/aiksaurus: Removed.
  office/brlcad: Removed.
  office/ding: Removed.
  office/freemind: Removed.
  office/full-pack: Removed.
  office/gocr: Removed.
  office/kbgoffice: Removed.
  office/kbibtex: Removed.
  office/keepassx: Removed.
  office/kile: Removed.
  office/mairix: Removed.
  office/openrpt: Removed.
  office/osmo: Removed.
  office/pdftk: Removed.
  office/pyroom: Removed.
  office/tdl: Removed.
  office/tth: Removed.
  office/xmblackberry: Removed.
  system/Esetroot: Removed.
  system/adcfw-log: Removed.
  system/artwiz-aleczapka: Removed.
  system/atari++: Removed.
  system/atari800: Removed.
  system/atari800_os++: Removed.
  system/atari800_roms: Removed.
  system/atarisio: Removed.
  system/atol: Removed.
  system/catfish: Removed.
  system/cdcopy: Removed.
  system/chkconfig: Removed.
  system/clex: Removed.
  system/detachtty: Removed.
  system/dosemu: Removed.
  system/dtach: Removed.
  system/dump: Removed.
  system/efont-unicode-bdf: Removed.
  system/fxload: Removed.
  system/gkrellflynn: Removed.
  system/gkrellm-volume: Removed.
  system/gpsman: Removed.
  system/gxemul: Removed.
  system/hardinfo: Removed.
  system/hibernate-script: Removed.
  system/ibam: Removed.
  system/iscan: Removed.
  system/lirc: Removed.
  system/lxtask: Removed.
  system/montecarlo: Removed.
  system/motion: Removed.
  system/moto4lin: Removed.
  system/mybashburn: Removed.
  system/openct: Removed.
  system/opensc: Removed.
  system/par2cmdline: Removed.
  system/pcsc-lite: Removed.
  system/pipemeter: Removed.
  system/pmem: Removed.
  system/postgis: Removed.
  system/powernowd: Removed.
  system/profont: Removed.
  system/pygresql: Removed.
  system/qdu: Removed.
  system/rdiff-backup: Removed.
  system/rox-filer: Removed.
  system/runit: Removed.
  system/sash: Removed.
  system/scim-fcitx: Removed.
  system/splix: Removed.
  system/star: Removed.
  system/stardict: Removed.
  system/stress: Removed.
  system/suspend: Removed.
  system/tarsnap: Removed.
  system/tiger: Removed.
  system/treesize: Removed.
  system/ttf-sil-gentium: Removed.
  system/twin: Removed.
  system/unison: Removed.
  system/vice: Removed.
  system/vncviewer: Removed.
  system/watchdog: Removed.
  system/x2vnc: Removed.
  system/xautolock: Removed.
  system/xtermcontrol: Removed.
  system/yeahconsole: Removed.