summaryrefslogtreecommitdiffstats
path: root/ChangeLog.txt
blob: 2e618425ead0740f2181a3fe8aa63c30456dd5df (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
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
Tue Mar  8 18:15:47 UTC 2011
academic/artha: Added (cross-platform thesaurus)
audio/alsaequal: Fixed build/use on x86_64
audio/audacity: Patched for portaudio + new ffmpeg switch.
audio/cmus: Updated for version 2.3.4.
desktop/cairo-dock-plugins: Added. A set of plugins for cairo-dock.
desktop/cairo-dock: Added. a light and eye-candy dock.
desktop/smaragd: Added (a window decoration engine for KDE)
desktop/xfce4-diskperf-plugin: Updated for version 2.3.0.
desktop/xfce4-weather-plugin: Updated for version 0.7.4.
development/darcs: Added (revision control system in Haskell)
development/sbcl: Added (Steel Bank Common Lisp)
development/shc: Added (generic SHell script Compiler)
games/Domination: Added (World domination strategy game)
games/ckmame: Updated for version 0.11.
games/fceux: Moved to /usr/games + changed icon.
games/pcsxr: Included cdrom and alsa support
games/xmoto: Updated for version 0.5.5.
graphics/frescobaldi: Added (LilyPond sheet music editor)
graphics/lcdtest: Added (utility to display LCD monitor test patterns)
graphics/pinta: Updated for version 0.6.
libraries/BeautifulSoup: Updated for version 3.2.0.
libraries/SFML: Added (Simple and Fast Multimedia Library)
libraries/libcitadel: Added. Common Citadel libraries.
libraries/libicns: Added (MacOS X .icns icon format library)
libraries/libmemcached: Updated for version 0.46.
libraries/libsieve: Added (interpreter for Sieve scripts)
libraries/menu-cache: Changed listed maintainer
libraries/openbabel: Updated for version 2.3.0.
libraries/perl-Digest-MD4: Digest::MD4 perl module
libraries/python-bigfloat: Added (floating point arithmetic library)
libraries/python-cmdln: Added (enhanced cmdln module for python)
libraries/python-mpd: Updated for version 0.3.0.
libraries/python-openid: Added (python openid library)
libraries/tDOM: Added (XML parsing and generation for TCL)
libraries/zeromq: Added (lightweight messaging kernel library)
misc/ardesia: Added (Pen/Touch ready on-screen annotation)
misc/cups-windows: Added (CUPS PostScript driver for Windows)
misc/curtain: Added (Display a curtain on the desktop)
misc/figlet: Updated download info + misc. cleanups
misc/ibus: Updated for versin 1.3.9.
misc/mosquitto: Added (MQTT server)
misc/spotlighter: Added (show a spot light on the desktop)
misc/temper: Added. A USB Temperature Sensor Linux Driver.
multimedia/media-player-info: Updated for version 12.
multimedia/miro: Updated for version 3.5.1.
network/arm: Added (monitor for Tor relays)
network/chromium: Updated for version 9.0.597.107.
network/citadel: Added (e-mail and collaboration suite)
network/cowpatty: Added. WPA-PSK dictionary attack tool.
network/freenx: Misc. cleaning up.
network/fwknop: Added (Single Packet Authorization / Port Knocking)
network/gq: Added (gtk+ ldap client and browser utility)
network/hamachi: Added (LogMeIn VPN client)
network/mldonkey: Updated for version 3.0.7.
network/mobile-broadband-provider-info: Updated for version 20110218
network/nikto: Updated for version 2.1.4.
network/nx: Updated with latest tarballs
network/nxclient: Moved install location to /opt
network/openvpn-auth-ldap: (LDAP authentication and authorization)
network/openvswitch: Added (multilayer virtual switch)
network/pidgin-privacy-please: Added (privacy plugin for pidgin)
network/qbittorrent: Updated for version 2.6.6.
network/rssh: Added (restricted ssh)
network/rubygem-sup: Updated for version 0.12.1.
network/teamviewer: Fixed binary name so menu entries keep working
network/zabbix_agentd: Updated for version 1.8.4.
network/zabbix_proxy: Updated for version 1.8.4.
network/zabbix_server: Updated for version 1.8.4.
office/aigaion: New maintainer
office/calibre: Updated for version 0.7.45.
office/gocr: Updated for version 0.49.
office/kchmviewer: Updated for version 5.3.
system/aespipe: Updated for version 2.4c.
system/fpm2: Updated for version 0.79.
system/grub4dos: Updated for version 0.4.5b_2011_02_20.
system/macutils: Added (tools to handle Macintosh files)
system/mongodb: Added (Database Software)
system/rmw: Updated for version 0.98.3.9beta.
+--------------------------+
Fri Mar  4 16:13:41 UTC 2011
academic/maxima: Updated for version 5.23.2.
academic/tuxtype2: Updated for version 1.8.0 (+new maintainer).
audio/TiMidity++: Misc tweaks including +jack +speex -arts
audio/kradio: Added (KDE AM/FM/Internet radio)
audio/mpd: Updated for version 0.16.1.
desktop/QtCurve-Gtk2: Updated for version 1.8.6.
desktop/QtCurve-KDE4: Updated for version 1.8.5.
development/bzr: Updated for version 2.3.0
development/erlang-otp: Updated for version 14B01.
development/gob2: Updated for version 2.0.18.
development/haskell-test-framework-hunit: Added (hunit test support)
development/haskell-test-framework-quickcheck2: Added (quickcheck2 test framework)
development/haskell-test-framework: Added (Haskell test framework)
development/pasdoc: Updated for version 0.12.1.
development/pep8: Updated for version 0.6.1.
development/pforth: Added (portable forth)
development/pip: Updated for version 0.8.2.
games/scid: Updated for version 4.2.2 (+ new maintainer).
libraries/fltk2: Updated for version 2.0.x_r8365.
libraries/haskell-GLURaw: Added (raw binding for opengl GLU)
libraries/haskell-GLUT: Added (OpenGL GLUT binding for Haskell)
libraries/haskell-ObjectName: Added (explicitly handled object names)
libraries/haskell-OpenGL: Added (binding for opengl graphics system)
libraries/haskell-OpenGLRaw: Added (raw binding for opengl)
libraries/haskell-StateVar: Added (Haskell state variables)
libraries/haskell-Tensor: Added (tensor data types)
libraries/haskell-ansi-terminal: Added (ansi terminal support)
libraries/haskell-ansi-wl-pprint: Added (the wadler/leijen pretty printer)
libraries/haskell-dataenc: Added (data encoding library)
libraries/haskell-hashed-storage: Added (hashed file storage support)
libraries/haskell-hostname: Added (gethostname function for haskell)
libraries/haskell-lcs: Added (find common sublist of two lists)
libraries/haskell-mmap: Added (Memory mapper for POSIX and Windows)
libraries/haskell-tar: Added (Haskell's tar library)
libraries/haskell-text: Added (Unicode text manipulation library)
libraries/libAfterImage: Updated for version 1.20.
libraries/libgee: Updated for version 0.6.1.
libraries/libnetfilter_conntrack: Updated for version 0.9.1.
libraries/libxml++: Updated for version 2.33.2.
libraries/zziplib: Updated for version 0.13.60.
misc/ibus-chewing: Updated for version 1.3.9.2.
misc/merkaartor: Updated for version 0.17.2.
multimedia/bombono-dvd: Updated for version 1.0.1.
multimedia/ripit: Added (command line audio CD ripper)
network/awstats: Updated for version 7.0.
network/choqok: Updated for version 1.0.
network/conntrack-tools: Updated for version 1.0.0.
network/dnstop: Updated for version 20110127.
network/hiawatha: Updated for version 7.4.
network/kismet: Updated for version 2011_01_R1.
network/midori: Updated for version 0.3.0.
network/newsbeuter: Updated for version 2.4.
network/node: Updated for version 0.2.6.
network/phpmyadmin: Updated for version 3.3.9.2.
network/uwsgi: Updated for version 0.9.6.7.
network/vnstat: Fixed code in rc.vnstat
office/adobe-reader: Updated for version 9.4.2.
office/elyxer: Updated for version 1.2.0.
office/kmymoney: Updated for version 4.5.2.
office/libreoffice-langpack: Updated for version 3.3.1.
office/libreoffice: Updated for version 3.3.1.
office/tellico: Miscellaneous cleanup
system/amanda: Updated for version 3.2.1.
system/atop: Updated for version 1.26.
system/cdw: Added (ncurses front-end for media burning tools)
system/fsarchiver: Updated for version 0.6.12.
system/gdisk: Don't override C(XX)FLAGS during build
system/lrzip: Updated for version 0.570.
system/pbzip2: Updated for version 1.1.2.
system/python-ranger: Updated for version 1.4.1.
system/ttf-ubuntu-font-family: Updated for version 0.70.1.
+--------------------------+
Tue Mar  1 16:01:28 UTC 2011
audio/shntool: Miscellaneous script tweaks
audio/shorten: Miscellaneous cleanups
desktop/Vanilla-DMZ: Miscellaneous cleanups
desktop/root-tail: Miscellaneous cleanups
development/Xdialog: Miscellaneous cleanups
development/gtkdialog: Miscellaneous cleanups
graphics/mtpaint: Miscellaneous cleanups and a bugfix
libraries/perl-Cache-FastMmap: Updated for version 1.36.
libraries/perl-Config-IniFiles: Updated for version 2.66.
libraries/perl-Crypt-OpenSSL-RSA: Fixed dep info in README.
libraries/perl-Statistics-Descriptive: Added (stats functions)
libraries/perl-Test-Exception: Updated for version 0.31.
misc/dwdiff: Miscellaneous cleanups
misc/gcolor2: misc cleanups; drop a mystery patch
misc/gxmessage: Miscellaneous cleanups
misc/par: Miscellaneous cleanups
misc/rlwrap: misc cleanups and a bugfix
network/openrdate: Miscellaneous cleanups
network/perl-MIME-tools: Updated for version 5.500.
network/perl-Mail-DKIM: Updated for version 0.39.
network/perl-NetAddr-IP: Updated for version 4.038.
system/dtach: Miscellaneous cleanups
system/heirloom-sh: Miscellaneous cleanups
system/parallel: Updated for version 20110205.
system/rox-filer: Miscellaneous cleanups
+--------------------------+
Mon Feb 28 15:44:01 UTC 2011
academic/celestia: Noted lua dep in README
academic/tuxmath: Updated for version 1.9.0.
audio/alsaequal: Clarified dep info in README
desktop/dwm: Added (suckless dynamic window manager)
desktop/wally: Clarified location of README.XFCE4
games/colem: Added (ColecoVision emulator)
games/freeciv: Updated for version 2.2.4.
games/o2em: Added (Magnavox Odyssey II/VideoPac+ emulator)
games/steem: Added (Freeware Atari STE Emulator)
graphics/dcraw: Updated for versoin 9.06.
graphics/ristretto: Fixed download link in .info file
graphics/yagf: Updated for version 0.8.4.
libraries/gtkglext: Fixed homepage in .info file
libraries/haskell-ghc-paths: Added (installation info for ghc)
libraries/libbsd: Added (common BSD functions)
libraries/t4k_common: Added (tux4kids code library)
multimedia/HamsiManager: Updated for version 0.9.54.
network/GeoIP: Install data file to /var/lib/GeoIP/
network/fdm: fixed build failure with recent gcc
network/googlecl: Updated for version 0.9.12.
network/iptraf-ng: Added (rewrite of iptraf)
network/mod_chroot: Install config file to /etc/httpd/extra/
network/mod_evasive: Install config file to /etc/httpd/extra/
network/mod_geoip2: Install config file to /etc/httpd/extra/
network/mod_hosts_access: Install config file in /etc/httpd/extra
network/mod_limitipconn: Install config file in /etc/httpd/extra
network/mod_perl: Install config file in /etc/httpd/extra/
network/mod_wsgi: Install config file in /etc/httpd/extra/
network/offlineimap: Fixed homepage and download link
network/openvas-client: Fixed md5sum in .info file
network/xl2tpd: Fixed download link in .info file
office/adobe-reader: Fix bug in bash-completion script
office/libreoffice-langpack: Updated for version 3.3.0.
office/libreoffice: Updated for version 3.3.0.
system/iotop: Updated for version 0.4.2.
system/postgresql: Updated for version 9.0.3.
system/procinfo-ng: Added (rewrite of procinfo)
+--------------------------+
Mon Feb  7 04:21:10 UTC 2011
academic/tilem: Added (TI-calculator emulator for linux)
audio/alsaequal: Added (10 Band Graphical Equalizer)
audio/alsamixergui: Added (graphical soundcard mixer for ALSA)
audio/mixxx: Updated for version 1.8.2.
desktop/QtCurve-Gtk2: Updated for version 1.8.5.
desktop/QtCurve-KDE4: Updated for version 1.8.4.
desktop/afterstep: Updated for version 2.2.11.
desktop/enlightenment: Updated for version 0.16.999.55225.
desktop/scrotwm: Updated for version 0.9.28.
development/apache-ant: Updated for version 1.8.2.
development/apache-ivy: Updated for version 2.2.0.
development/autogen: Added (configure generator)
development/bzr: Remove the apport junk
development/chicken: Added (a practical and portable scheme system)
development/geany-plugins: Updated for version 0.20.
games/gbrainy: Added (a brain teaser game and trainer)
games/xmoto: Updated for version 0.5.4.
graphics/fotoxx: Updated for version 11.01.2.
graphics/graphviz: Fixed handling of $libdir/graphviz/config6
graphics/lilypond: Updated for version 2.13.46.
graphics/potrace: Updated for version 1.9.
libraries/GeoIP-Python: Added (GeoIP Python API)
libraries/e_dbus: Updated for version 1.0.0.
libraries/ecore: Updated for version 1.0.0.
libraries/edje: Updated for version 1.0.0.
libraries/eet: Updated for version 1.4.0.
libraries/eeze: Added (udev abstraction library for E17)
libraries/efreet: Updated for version 1.0.0.
libraries/eina: Updated for version 1.0.0.
libraries/embryo: Updated for version 1.0.0.
libraries/evas: Updated for version 1.0.0.
libraries/lapack: Updated for version 3.3.0.
libraries/libsidplay2: Incremented BUILD (with new patches)
libraries/libsoup: Updated for version 2.32.2.
libraries/msn-pecan: Added (MSN plug-in for libpurple)
misc/KeePass: Added (password manager in .NET)
misc/ccze: Added (log colorizer)
misc/rsibreak: Updated for version 0.11.
misc/task: Updated for version 1.9.3.
misc/xapian-omega: Fixed numerous packaging issues
multimedia/guvcview: Updated for version 1.4.4.
multimedia/kdenlive: Minor bug fix and cleanup.
multimedia/nted: Updated for version 1.10.7.
network/exim-html: Fixed download link in .info file
network/exim: Updated for version 4.74.
network/google-chrome: Updated for version 9.0.597.84.
network/greenbone-security-assistant: Updated for version 1.0.3.
network/gsd: Added (Greenbone Security Desktop)
network/kfilebox: Added (KDE Dropbox client)
network/mod_geoip2: Fixed postinstall script
network/openvas-administrator: Updated for version 1.0.1.
network/openvas-cli: Updated for version 1.0.1.
network/openvas-client: Updated for version 3.0.2.
network/openvas-libraries: Updated for version 3.1.4.
network/openvas-manager: Updated for version 1.0.4.
network/openvas-scanner: Updated for version 3.1.1.
network/opera: Updated for version 11.01.
network/rt3xxx: Added (driver for rt3xxx chipsets)
network/shorewall6: Updated for version 4.4.16.1.
network/shorewall: Updated for version 4.4.16.1.
network/surfraw: Updated for version 2.2.7.
network/tor: Updated for version 0.2.1.29.
network/wireshark: Updated for version 1.4.3.
office/focuswriter: Added (distraction-free word processor)
office/freemind: use a wrapper instead of symlink to launch
office/impressive: Updated for version 0.10.3.
office/sigil: Updated for version 0.2.4.
office/texlive: Patched to use correct path of texmf-local tree
system/detox: Added (filename cleanup utility)
system/gparted: Updated for version 0.7.1.
system/luckybackup: Updated for version 0.4.4.
system/multitail: Updated for version 5.2.7.
system/oss: Updated for version 4.2.2004.
system/parallel: Updated for version 20110122.
system/rmw: Added (command line trash can/recycle bin)
system/t1utils: Updated for version 1.36.
system/unrtf: Fixed hardcoded /usr/local references
system/zeroinstall-injector: Updated for version 0.52.
+--------------------------+
Sun Jan 16 18:57:21 UTC 2011
audio/portmidi: Various packaging fixes
desktop/uwm: Added (ultimate window manager)
desktop/xfswitch-plugin: Fixed download link in .info file
development/geany: Updated for version 0.20.
games/playonlinux: Updated for version 3.8.8.
graphics/LDraw_data: Updated for version 201003.
graphics/gtkam: Updated for version 0.1.17.
libraries/liborigin: Added (library to read Origin data files)
libraries/stfl: Added (Structured Terminal Forms Language/Library)
misc/conkyforecast: Reverted to version 2.12.
multimedia/LiVES: gdk-pixbuf is not needed for this
network/broadcom-sta: Updated for version 5.100.82.38.
network/centerim: Fix version number in .info file
network/choqok: Updated for version 0.9.98.
network/mrtg: Added (multi router traffic grapher)
network/museek+: Fixed dep info in README
network/newsbeuter: Added (RSS feedreader)
network/ngircd: Added (Next Generation IRC Daemon)
network/perl-IO-Socket-Multicast: Added (send/receive multicast messages)
office/scribus: Updated for version 1.3.9.
office/wammu: Updated for version 0.35.
system/aqemu: Updated for version 0.8.1.
system/coolkey: Included several upstream patches
system/encfs: Updated for version 1.7.4.
system/gdisk: Updated for version 0.6.14.
system/kvm-kmod: Updated for version 2.6.37.
system/lrzip: Updated for version 0.551.
system/mozilla-nss: Fixed architecture detection (made automatic)
system/wine: Updated for version 1.2.2.
system/winetricks: Updated for version 20110105.
system/wmconfig: Added (window manager menu creator)
system/xinput_calibrator: Added (generic touchscreen calibrator)
+--------------------------+
Mon Jan 10 21:05:30 UTC 2011
audio/bristol: Added (Synthesiser Emulations on Linux)
audio/clam: Added (C++ Library for Audio and Music)
audio/clam_annotator: Added (Music annotation tool)
audio/clam_voice2midi: Added (convert singing/humming to MIDI)
audio/gqradio: Added (a radio tuner application)
audio/lmms: Added (Linux MultiMedia Studio)
audio/qtractor: Added (Audio/MIDI multi-track sequencer)
audio/rebmp: Added (music player)
desktop/cwp: Updated for version 1.3.3.
desktop/xmonad: Updated for version 0.9.2.
development/Sphinx: Updated for version 1.0.6.
development/alex: Updated for version 2.3.5.
development/gforth: Added (GNU Forth interpreter)
development/ghc: Updated for version 7.0.1.
development/happy: Updated for version 1.18.6.
development/memchan: Added (Tcl in-memory channel extension library)
development/poedit: Updated for version 1.4.6.1.
development/snack: Added (sound extensions for TCL)
development/tcludp: Added (UDP support for Tcl)
development/tclvfs: Added (virtial filesystem extension for Tcl)
development/tkdnd: Added (Tk Drag and Drop Interface)
development/tklib: Added (utility modules for TCL/Tk)
development/trf: Added (transformer extension library for Tcl)
development/zile: Updated for version 2.3.21.
development/zope.testing: Updated for version 3.10.2.
games/adom: Added (a rogue-like game)
games/chromium-bsu: Updated for version 0.9.14.1.
games/mame: Updated for version 0.141.
games/mupen64plus: Fixed to build with new gtk/glib.
games/pokerth: Updated for version 0.8.2.
games/qmc2: Updated for version 0.2.b18.
graphics/pho: Added (photo viewer)
libraries/SQLObject: Updated for version 0.15.0.
libraries/c-ares: Updated for version 1.7.4.
libraries/decorator: Updated for version 3.3.0.
libraries/haskell-HTTP: Updated for version 4000.1.1.
libraries/haskell-HUnit: Miscellaneous cleanup.
libraries/haskell-MonadCatchIO-mtl: Miscellaneous cleanup.
libraries/haskell-QuickCheck: Updated for version 2.4.0.1.
libraries/haskell-X11: Miscellaneous cleanup.
libraries/haskell-binary: Miscellaneous cleanup.
libraries/haskell-cgi: Updated for version 3001.1.8.2.
libraries/haskell-deepseq: Updated for version 1.1.0.2.
libraries/haskell-digest: Updated for version 0.0.0.9.
libraries/haskell-editline: Miscellaneous cleanup.
libraries/haskell-fgl: Miscellaneous cleanup.
libraries/haskell-haskeline: Updated for version 0.6.3.2.
libraries/haskell-haskell-src: Updated for version 1.0.1.4.
libraries/haskell-html: Miscellaneous cleanup.
libraries/haskell-mtl: Updated for version 2.0.1.0.
libraries/haskell-network: Updated for version 2.3.
libraries/haskell-packedstring: Miscellaneous cleanup.
libraries/haskell-parallel: Miscellaneous cleanup.
libraries/haskell-parsec: Miscellaneous cleanup.
libraries/haskell-regex-base: Miscellaneous cleanup.
libraries/haskell-regex-compat: Miscellaneous cleanup.
libraries/haskell-regex-posix: Miscellaneous cleanup.
libraries/haskell-stm: Updated for version 2.2.0.1.
libraries/haskell-syb: Added (scrap your boilerplate)
libraries/haskell-terminfo: Miscellaneous cleanup.
libraries/haskell-transformers: Added (functor & monad transformers)
libraries/haskell-utf8-string: Miscellaneous cleanup.
libraries/haskell-xhtml: Miscellaneous cleanup.
libraries/haskell-zip-archive: Miscellaneous cleanup.
libraries/haskell-zlib: Miscellaneous cleanup.
libraries/libebml: Updated maintainer info.
libraries/libgsasl: Updated for version 1.6.0.
libraries/libmatroska: Updated maintainer info.
libraries/libquicktime: Updated for version 1.2.1.
libraries/libssh: Updated for version 0.4.7.
libraries/libunicap: Updated for version 0.9.12.
libraries/libvdpau: Updated for version 0.4.1.
libraries/mowitz: Added ('More Widgets' library)
libraries/nextaw: Added (Athena (libXaw) replacement library)
libraries/rubygem-gettext: Added (gettext for ruby)
libraries/rubygem-highline: Added (ruby console input library)
libraries/rubygem-locale: Added (localisation API for Ruby)
libraries/rubygem-lockfile: Added (Ruby lockfiles)
libraries/rubygem-mime-types: Added (mime-types)
libraries/rubygem-ncursesw: Added (ncurses with wide-char support)
libraries/rubygem-net-ssh: Added (ruby implementation of ssh2)
libraries/rubygem-rmail: Added (mail library for Ruby)
libraries/rubygem-trollop: Added (Ruby commandline parser)
libraries/rubygem-xapian-full: Added (Xapian bindings)
libraries/xmonad-contrib: Updated for version 0.9.2.
libraries/zope.schema: Updated for version 3.7.1.
libraries/zope.security: Updated for version 3.8.0.
misc/klibc: Fixed homepage in .info file
misc/xapian-omega: Added (CGI search frontend and indexers)
multimedia/mkvtoolnix: Updated for version 4.4.0 + new maintainer.
multimedia/smplayer: Add newline characters to info file.
multimedia/xbmc: Updated for version 10.0.
network/NetworkManager: Add the pm-utils sleep hook
network/NetworkManager: Included several patches from upstream
network/comgt: Added (3G/GPRS datacard management utility)
network/gtk-gnutella: Added (Gnutella client)
network/rubygem-sup: Added (CLI mail client)
office/calibre: Updated for version 0.7.36.
office/lcal: Added (generates graphical "lunar phase" calendar)
office/leafpad: Upgraded for version 0.8.18.1.
office/libreoffice: Updated for version 3.3.0rc2.
office/pcal: Added (generate monthly format calendars)
office/siag: Added (free office package)
system/krusader: Updated for version 2.3.0_beta1.
system/mariadb: Updated for version 5.2.4.
system/nvidia-driver: Updated for version 260.19.29.
system/nvidia-kernel: Updated for version 260.19.29.
system/nvidia-legacy173-driver: Updated for version 173.14.28.
system/nvidia-legacy173-kernel: Updated for version 173.14.28.
system/nvidia-legacy96-driver: Updated for version 96.43.19.
system/nvidia-legacy96-kernel: Updated for version 96.43.19.
system/pcsc-lite: Updated for versio 1.6.6.
system/pcsc-perl: Updated for version 1.4.11 + new maintainer.
system/pcsc-tools: Updated for version 1.4.17 + new maintainer.
system/shake: Fix use of SLKCFLAGS.
system/unrar: Updated for version 4.0.3.
+--------------------------+
Sun Jan  2 06:28:35 UTC 2011
academic/units: Updated for version 1.88.
desktop/cairo-compmgr: Added (drop-in replacement for xcompmgr)
desktop/cwp: Updated for version 1.3.2.
desktop/gtk-chtheme: Fixed build error with new gtk+2 ; misc cleanup
desktop/wmdrawer: Fix README (remove unneeded dep)
desktop/xfce4-quicklauncher-plugin: Patched to allow plugin load
development/bacon: Updated for version 1.0_build_20.
development/bzr: Updated for version 2.2.2.
development/eagle: Updated for version 5.11.0.
development/kicad-doc: Updated for version bzr_20101230.
development/kicad-library: Updated for version bzr_20101208.
development/kicad: Updated for version bzr_20101223.
development/mtasc: Added (free ActionScript 2 compiler)
development/viewvc: Updated for version 1.1.8.
games/glestae: Updated for version 0.3.2.
libraries/hug: Added (easily build GUI's for BaCon programs)
libraries/libAfterImage: Fixed download link and misc cleanup
libraries/rrdtool: Updated for version 1.4.5.
multimedia/wxcam: Updated for version 1.0.7.
network/avahi: Updated for version 0.6.28.
network/barnyard2: Updated for version 1.9.
network/midori: Updated for version 0.2.9.
system/cabextract: Updated for version 1.3.
system/prelink: Miscellaneous build fixes.
+--------------------------+
Sat Jan  1 04:50:06 UTC 2011
Happy New Year! 
audio/gtkpod: Uncompressed the patch
audio/mhwaveedit: Added (edit, play, and record sound files)
audio/rubyripper: Uncompressed the patch
audio/transcribe: Added (music transcription tool)
audio/volumeicon: Updated for version 0.3.0.
desktop/bashrun2: Added (interactive bash application launcher)
desktop/bashrun: Updated for version 0.16.1.
desktop/recoll: Updated for version 1.14.4.
desktop/xfce4-cpugraph-plugin: Updated for version 1.0.1.
desktop/xfce4-mpc-plugin: Updated for version 0.3.5.
desktop/xfce4-netload-plugin: Updated for version 1.0.0.
desktop/xfce4-notes-plugin: Updated for version 1.7.7.
desktop/xfce4-sensors-plugin: Updated for version 1.0.0.
desktop/xfce4-systemload-plugin: Updated for version 1.0.0.
desktop/xfce4-time-out-plugin: Updated for version 1.0.0.
desktop/xfce4-verve-plugin: Updated for version 1.0.0.
development/CImg: Updated for version 1.4.6.
development/Sphinx: Updated for version 1.0.5.
development/cppcheck: Updated for version 1.46.
development/geany: Updated for version 0.19.2.
development/nose: Upgraded for version 1.0.0.
development/poedit: Uncompressed patch
games/alienarena: Updated for version 7.50.
games/assaultcube: Updated for version 1.1.0.4
games/bloodfrontier: Added (first-person shooter)
games/sdlmess: Uncompressed the patch
graphics/potrace: Uncompressed the patch
graphics/qcomicbook: Updated for version 0.7.2.
libraries/SOAPpy: Uncompressed the patch
libraries/electric-fence: Added (A malloc(3) debugger)
libraries/json-glib: Fixed a hardcoded library path.
libraries/libdaemon: Updated for version 0.14 + new maintainer.
libraries/perl-DateTime-Format-ISO8601: Fix typo in README
libraries/pygoogle: Uncompressed the patch
libraries/python-lastfm: Uncompressed the patch
libraries/xapian-core: Updated for version 1.2.4.
libraries/xulrunner: Updated for version 1.9.2.13.
libraries/yaz: Updated for version 4.1.2.
misc/bsdsfv: Uncompressed the patches
misc/fribid: Uncompressed the patch
multimedia/bombono-dvd: Updated for version 1.0.0.
multimedia/mplayer-codecs: Minor inconsequential script cleanup
multimedia/mythplugins: Updated for version 0.24.
multimedia/myththemes: Updated for version 0.24.
multimedia/mythtv: Updated for version 0.24.
multimedia/pitivi: Fixed a typo in README
multimedia/qsampler: Updated for version 0.2.2.511svn.
network/bitlbee: Updated for version 3.0.1.
network/fping6: Uncompressed the patches
network/network-manager-applet: Included patch to fix fallback icon
network/quagga: Added (IP routing daemons)
network/shorewall6: Updated for version 4.4.15.3.
network/shorewall: Updated for version 4.4.15.3.
network/skype-call-recorder: Added (record Skype calls to MP3 files)
network/squid: Updated for version 3.1.10.
network/twitter-cmdline: Uncompressed the patch
system/apachetop: Uncompress the patches
system/dosemu: Included the patch in download info
system/rxvt-unicode: Updated with various script improvements.
+--------------------------+
Wed Dec 29 07:10:42 UTC 2010
audio/jokosher: Added (a multi-track non-linear audio editor)
desktop/musca: Miscellaneous tweaks and enhancements
development/cc65: Updated for version 2.13.2.
development/haskell-platform: Added (base haskell platform libs)
development/netbeans: Updated with new maintainer info
games/eduke32: Updated for version 20101220_1743.
games/maelstrom: Fixed download link and desktop file
games/xroar: Fixed download link
libraries/wvstreams: Updated for version 4.6.1.
misc/klibc: Added (small C library)
misc/merkaartor: Updated for version 0.17.0.
multimedia/GoogleEarth: Updated for version 6.0.1.2032.
multimedia/mtpfs: Fixed download link and misc tweaks
multimedia/pitivi: Added (free / open source video editor)
network/httptunnel: Added (tunnel over http)
network/nsca: Added (Nagios Service Check Acceptor)
network/pysmssend: Added (send SMS over internet)
office/org-mode: Updated for version 7.4.
system/conky: Miscellaneous tweaks/enhancements
system/dfu-util: Updated for version 0.3.
system/dina-font: Added (a monospace bitmap font)
system/uae: Added (amiga emulator)
+--------------------------+
Mon Dec 27 22:57:08 UTC 2010
academic/gwyddion: Updated for version 2.22.
academic/qgis: Updated for version 1.6.0.
academic/wxmacmolplt: Updated for version 7.4.2.
accessibility/espeak: Updated for version 1.44.05.
audio/kid3: Updated for version 1.5.
audio/meterbridge: Added (software meter for JACK audio system)
audio/puddletag: Updated for version 0.9.11.
audio/zita-resampler: Added (C++ library for resampling audio)
desktop/maitreya: Updated for version 6.0.1.
desktop/rootactions_servicemenu: Updated for version 2.6.
desktop/yawp: Updated for version 0.3.6.
development/Cython: Updated for version 0.14.
development/LLgen: Added (an ELL(1) parser generator)
development/bacon: Test for correct VERSION + fix gcc options.
development/ftnchek: Added (static analyzer for Fortran 77 programs)
development/jasspa: Added (enhanced microemacs text editor)
development/monodevelop: Updated for version 2.4.1.
development/vala: Updated for version 0.11.2.
games/armagetronad: Added (old school Tron lightcycles openGL game)
games/clonekeen: Updated for version 8.4.
games/freedroidrpg: Updated for version 0.14.1.
games/ltris: Updated for version 1.0.15.
games/oblige: Added (random level generator for various games)
games/playonlinux: Updated for version 3.8.6.
graphics/SweetHome3D: Updated for version 3.0.
graphics/VariCAD: Updated for version 2010_3.03.
graphics/gimp-registry-plugins: Updated source MD5SUM.
graphics/gimp-wideangle-plugin: Added (distortion filter for gimp)
libraries/daq: Updated for version 0.5.
libraries/equinox: Updated for version 1.30.2.
libraries/gloox: Added (Jabber/XMPP client library)
libraries/gsspd: Added (GObject-based API for handling SSDP)
libraries/gst-python: Updated for version 0.10.19 + new maintainer.
libraries/irrlicht: Added (realtime 3D engine)
libraries/json-glib: Fix hard-coded pkgconfig file.
libraries/libburn: Updated for version 0.9.0.
libraries/libisofs: Updated for version 0.6.38.
libraries/libmediainfo: Updated for version 0.7.38.
libraries/libzen: Updated for version 0.4.17.
libraries/perl-Text-Iconv: Added (Perl interface to the iconv())
multimedia/cfourcc: Added (FourCC code tool)
multimedia/hexter: Updated for version 0.6.2.
multimedia/mediainfo-gui: Updated for version 0.7.38.
multimedia/mediainfo: Updated for version 0.7.38.
network/NetworkManager: Really fix rc.networkmanager this time
network/amsn: Added (free open source MSN Messenger clone)
network/amsn: Removed dependency from README.
network/cclive: Added (flash video downloader)
network/centerim: Updated for version 4.22.10.
network/dhcping: Small fix.
network/docsis: Added (binary config generator for DOCSIS modems)
network/dovecot-pigeonhole: Updated for version 0.2.2.
network/ike: Added (Internet Key exchange daemon / IPsec VPN client)
network/imageshack-uploader: Added (upload images to imageshack.us)
network/leafnode: Fix memory leak with applyfilter
network/nginx: Updated for version 0.8.54.
network/quvi: Added (video download link parser)
network/snort: Updated for version 2.9.0.3.
network/sopcast: Added (Free P2P internet TV)
network/tor: Updated for version 0.2.1.28.
network/wvdial: Added (ppp dialer app)
office/elyxer: Updated for version 1.1.2.
office/libreoffice-langpack: Updated for version 3.3.0rc1.
office/libreoffice: Updated for version 3.3.0rc1.
office/verbiste: Updated for version 0.1.32.
system/apg: Added (Automated Password Generator)
system/bacula-client: Updated for version 5.0.3.
system/bacula: Updated for version 5.0.3.
system/dfu-util: Added (Device firmware update USB programmer)
system/di: Updated for version 4.26.
system/gdm: Fixed the ID-10-T error in the last commit
system/google-droid-fonts: Added (Google's Android font family)
system/lbench: Updated for version 1.6.
system/rar: Updated for version 4.0.b3.
system/rxvt-unicode: Updated for version 9.10.
+--------------------------+
Tue Dec 21 04:45:32 UTC 2010
academic/mathomatic: Fix approval information.
audio/Pd-extended: Fix typo in README.
audio/ladspa_sdk: BUILD bump, small fixes.
audio/mpd: Updated for version 0.16.
desktop/afterstep: Poke consolekit in xinitrc
desktop/enlightenment: Poke consolekit in xinitrc
desktop/i3: Tweaks to xinitrc re consolekit pokering
desktop/icewm: Tweak to xinitrc rc consolekit poking
desktop/ion: Tweaks to xinitrc re consolekit usage
desktop/lxde-common: Tweaks to xinitrc re consolekit pokeage
desktop/matchbox-window-manager: Poke consolekit in xinitrc
desktop/menumaker: Added (menu generator for several wm's)
desktop/musca: Poke consolekit in xinitrc
desktop/openbox: Poke consolekit in xinitrc
desktop/ratpoison: Poke consolekit in xinitrc
desktop/xmonad: Poke consolekit in xinitrc
development/bacon: Added (basic converter)
development/camlp5: Added (ocaml preprocessor and pretty-printer)
development/gaphor: Updated for version 0.16.0.
development/magit: Added (Edit Git repositories with Emacs)
development/noweb: Added (literate programming tool)
graphics/fritzing: Updated for version 0.4.3b.
graphics/mlbrot: Added (Mandelbrot plotter and exploration tool)
libraries/Botan: Fix MD5SUM.
libraries/ZODB3: Updated for version 3.10.1.
libraries/dnspython: Updated for version 1.9.2.
libraries/gaphas: Updated for version 0.7.0.
libraries/gtkglext: Patched to re-enable deprecated features
libraries/libxml++: Updated for version 2.33.1.
libraries/progressbar: Added (Text progressbar library for python)
libraries/pynzb: Added (NZB file format parser)
libraries/subvertpy: Updated for version 0.7.5.
libraries/webkitgtk: Updated for version 1.3.4.
libraries/zope.component: Updated for version 3.10.0
libraries/zope.schema: Updated for version 3.7.0.
libraries/zope.security: Updated for version 3.7.4.
misc/conkyforecast: Updated for version 2.15.
multimedia/flash-player-plugin: Fixed i486 versioning issue
network/ModemManager: Fix build with newer glib2
network/NetworkManager: Included a few minor fixes (read summary)
network/PyRSS2Gen: Added (python RSS feed generator)
network/arora: Added (web browser)
network/dropbox: Updated for version 1.0.10.
network/flexget: Added (multipurpose content downloader)
network/opera: Updated for version 11.00 (new maintainer).
network/perl-Danga-Socket: Added (epoll() interface for perl)
network/perl-NetAddr-IP: Updated for version 4.037.
network/perl-Sys-Syscall: Added (perl System Call access)
system/gdm: Don't start ssh-agent from gdm - this is user's job
system/plan9port: Misc fixes; poke consolekit in xinitrc
+--------------------------+
Fri Dec 17 13:59:56 UTC 2010
academic/mathomatic: Updated for version 15.3.3.
audio/pianobar: Updated for version 2010.11.06.
audio/python-audiotools: Updated for version 2.16.
desktop/cellwriter: Added (grid entry app)
desktop/cryptkeeper: Added (system tray applet for encfs)
desktop/synergy-plus: New init-script, man-pages & config
desktop/wmclock: Updated for version 1.0.13.
development/avr-binutils: Updated for version 2.20.1
development/avr-gcc: Updated for version 4.4.4.
development/blassic: Added (BASIC interpreter)
development/bluefish: Updated for version 2.0.2.
development/quilt: Updated for version 0.48.
development/teensy_loader_cli: Added (Teensy CLI downloader)
development/zile: Added (GNU Text Editor)
games/tome: New download link and slack-desc adjustment.
graphics/darktable: Updated for version 0.7.1.
graphics/mtpaint: Fix a quoting issue.
libraries/SQLObject: Updated for version 0.14.1.
libraries/cssutils: Updated for version 0.9.7.
libraries/gdal: Updated for version 1.7.3.
libraries/libgadu: Updated for version 1.9.1.
libraries/libmodplug: Added (a mod rendering library)
libraries/python-pydns: Added (Python DNS library)
libraries/python-pyspf: Added (SPF queries in Python)
misc/fcrackzip: Added (the free password cracker)
misc/ibus-anthy: Updated for version 1.2.5.
misc/ibus-qt: BUILD bump, added TAG variable.
misc/iscan-firmware: Added (firmware files for EPSON USB scanners)
misc/lxappearance: Updated for version 0.5.0 and new maintainer.
multimedia/bombono-dvd: Updated for version 0.8.0.
multimedia/cuetools: Miscellaneous cleanup and new maintainer
multimedia/dssi: Updated for version 1.1.0.
multimedia/dvbsnoop: Added (dvb stream analyzer tool)
multimedia/exaile: Updated for version 0.3.2.0. and new maintainer.
multimedia/realplayer: Enabled mozilla plugin
network/NetworkManager: patched to ignore temporary files
network/dhcping: Added (checks if a remote DHCP server is alive)
network/efax-gtk: Updated for version 3.2.6.
network/freerdp: Added (Free implementation of the RDP protocol)
network/gtorrentviewer Added (A torrent viewer and editor)
network/gtorrentviewer: Included two patches.
network/kadu: Updated for version 0.6.5.4.
network/licq: Added (ICQ instant messenger)
network/mangler: Added (Ventrilo compatible client for Linux)
network/pidgin-sipe: Updated for version 1.11.2.
network/python-pypolicyd-spf: Added (Python Postfix SPF engine)
network/teamviewer: Added (remote control application)
network/wicd-client-kde: Added (KDE gui for WICD)
network/xtables-addons: Updated for version 1.31.
office/adobe-reader: Updated for version 9.4.1.
office/ding: Added (German-English Dictionary)
office/tellico: Updated for version 2.3.2.
office/traduisons: Added (python front-end to Google Translate)
system/aqemu: Added (graphical interface to QEMU and KVM)
system/grub4dos: Updated for version 0.4.5b_2010_10_31)
system/hebe: Updated for version 0.4.
system/heirloom-sh: Added (portable variant of Unix shell)
system/hntool: Added (open-source hardening tool)
system/image-analyzer: Added (analyzer of disc images)
system/jdiskreport (disk usage report)
system/os-prober: New download link.
system/pigz: New maintainer.
system/sleuthkit: Updated for version 3.2.0.
system/trash-cli: Added (command line interface to the FreeDesktop.org trashcan)
system/truecrypt: Updated for version 7.0a.
system/xrdp: Updated for version 0.4.2.
+--------------------------+
Sun Dec 12 22:37:24 UTC 2010
games/qmc2: Fixed md5sum in .info file
libraries/equinox: Fixed md5sum in .info file
libraries/haskell-QuickCheck: Fixed quoting problem
libraries/haskell-parallel: Fixed quoting problem
+--------------------------+
Sun Dec 12 21:50:20 UTC 2010
academic/gwyddion: Updated for version 2.21
academic/xcircuit: Updated for version 3.7.13.
audio/puddletag: Added (audio tag editor)
desktop/QtCurve-Gtk2: Updated for version 1.8.1.
desktop/QtCurve-KDE4: Updated for version 1.8.1.
desktop/stalonetray: Added. (A stand alone system tray for X)
development/dejagnu: Added (framework for testing programs)
development/icon: Added (programming language)
development/lua: bugfixes from http://www.lua.org/bugs.html#5.1.4
development/mysql-workbench-gpl: Added (MySQL GUI tool)
development/pasdoc: Added (documentation tool for ObjectPascal)
development/python3: Updated for version 3.1.3.
development/regina-rexx: Added (a Rexx interpreter)
development/scons: Updated for version 2.0.1.
development/sdcc: Added (Small Device C Compiler)
development/swfmill: Added (Xml2swf and Swf2xml processor)
games/playonlinux: Updated for version 3.8.5.
graphics/mtpaint: Miscellaneous cleanups (remove bashisms)
graphics/yafaray: Minor tweak to remove bash-specific syntax
libraries/daq: Updated for version 0.3.
libraries/gtkextra: Added (extra widgets for GTK+)
libraries/haskell-HTTP: Updated for version 4000.0.10.
libraries/haskell-HUnit: Updated for version 1.2.2.3.
libraries/haskell-QuickCheck: Updated for version 2.3.0.2.
libraries/haskell-deepseq: Updated for version 1.1.0.1.
libraries/haskell-haskeline: Updated for version 0.6.3.1.
libraries/haskell-mtl: Updated for version 1.1.1.0.
libraries/haskell-network: Updated for version 2.2.1.10.
libraries/haskell-paralell: Updated for version 3.1.0.1.
libraries/haskell-terminfo: Updated for version 0.3.1.3.
libraries/libgadu: Updated for version 1.9.0.
libraries/perl-MP3-Info: Miscellaneous tweaks to README
libraries/perl-Magick: Removed (Part of Slackwares Image-Magick)
libraries/podofo: Updated for version 0.8.4.
libraries/pytables: Updated for version 2.2.
libraries/slib: Miscellaneous build and runtime fixes
misc/dwdiff: Updated for version 1.8.2.
multimedia/gnupod: Added (CLI tools for working with iPods)
multimedia/subtitleeditor: Added (GTK+2 tool to edit subtitles)
network/freenx: Added (Free implementation of the NX Server)
network/nginx: Updated for version 0.8.53.
network/node: Updated for version 0.2.4
network/nx: Added (Nomachine NX)
network/nxclient: (client for the NX protocol)
network/phpmyadmin: Updated for version 3.3.8.1.
network/plowshare: Updated for version 0.9.4.
network/sieve-connect: Added (Perl ManageSieve client)
network/smb4k: Updated for version 0.10.9.
network/snort: Updated for version 2.9.0.1.
network/uget: Updated for version 1.6.1.
office/elyxer: Updated for version 1.0.3.
office/full-pack: Added (a set of dictionaries for kbgoffice)
office/kbgoffice: Added (KDE frontend for the BG Office project)
office/lyx: Updated for version 1.6.8.
office/org-mode: Updated for version 7.02.
office/pdftk: Hardcode "make -j1" to prevent build failure
office/remind: Added (A command-line calendar)
office/texmaker: Updated for version 2.1.
office/wyrd: Added (ncurses-based remind front-end)
system/fsarchiver: Updated for version 0.6.11.
system/gpsd: Updated for version 2.95
system/wine: Updated for version 1.2.1.
system/yakuake: Minor README tweaks
system/zeroinstall-injector: Updated for version 0.51.
+--------------------------+
Tue Dec  7 05:28:31 UTC 2010
Various: Update maintainer contact information
audio/fluidsynth: Updated for version 1.1.3.
games/qmc2: Updated for version 0.2.b17.
libraries/lastfmlib: Added (Last.fm Submission Protocol Library)
misc/WhatPulse: Added (keystroke/mouse stat monitor)
multimedia/flash-player-plugin: Updated for version 10.3_d162.
network/choqok: Updated for version 0.9.92.
network/claws-mail-extra-plugins: Updated for version 3.7.8.
network/claws-mail: Updated for version 3.7.8.
network/dovecot: Updated for version 2.0.8.
network/fail2ban: Minor cosmetic changes.
network/mediatomb: Added (an open source UPnP MediaServer)
system/parallel: Updated for version 20101202.
+--------------------------+
Mon Dec  6 04:48:14 UTC 2010
academic/GMT: Updated for version 4.5.5.
audio/aacgain: Added (Adjust volume gain for mp3/aac)
desktop/QtCurve-Gtk2: Updated for version 1.7.2.
desktop/QtCurve-KDE4: Updated for version 1.7.2.
development/Sphinx: Updated for version 1.0.4.
development/django: Fixed download link
games/advancescan: Fixed download link
graphics/exact-image: Updated for version 0.8.4.
graphics/qcomicbook: Updated for version 0.7.1.
libraries/Botan: Updated for version 1.8.11.
libraries/CEGUI: Fixed build with tinyxml
libraries/Jinja2: Updated for version 2.5.5.
libraries/exiftool: Updated for version 8.40.
libraries/libvmime: Updated for version 0.9.1.
libraries/mechanize: Updated for version 0.2.4.
libraries/python-distutils-extra: Updated for version 2.23.
libraries/pywebkitgtk: Updated for version 1.1.8.
multimedia/guvcview: Updated for version 1.4.3.
multimedia/media-player-info: Updated for version 11.
multimedia/miro: Updated for version 3.5.
network/NetworkManager-openconnect: Updated for version 0.8.2.
network/NetworkManager-openvpn: Updated for version 0.8.2.
network/NetworkManager-pptp: Updated for version 0.8.2.
network/NetworkManager-vpnc: Updated for version 0.8.2.
network/NetworkManager: Updated for version 0.8.2.
network/google-chrome: Updated for version 8.0.552.215.
network/network-manager-applet: Updated for version 0.8.2.
network/ngrep: BUILD bump, fixed path to pcap.h.
network/shorewall6: Updated for version 4.4.15.
network/shorewall: Updated for version 4.4.15.
network/tor: Updated for version 0.2.1.27.
network/webalizer: Fixed inconsequential typo in script
network/zarafa-webaccess-ajax: Updated for version 6.40.3.
network/zarafa: Updated for version 6.40.3.
office/calibre: Updated for version 0.7.30.
office/gnumeric: Updated for version 1.10.12.
office/libreoffice-langpack: Fixed URI in README
office/pdftk: Updated for version 1.44.
office/pstoedit: Fixed download link
system/htop: Updated for version 0.9.
+--------------------------+
Mon Nov 29 11:55:05 UTC 2010
audio/audacity: Correct typo in SlackBuild
audio/clementine: Updated for version 0.5.3
audio/mpd: Updated for version 0.15.15.
audio/portmidi: removed leftover patch
audio/rhythmbox: Added (music library management application)
audio/sonata: Fix fetching of lyrics
desktop/cwp: Updated for version 1.3.1.
desktop/vbox-runner: Added (kde plugin for vbox)
desktop/yad: Added (Yet Another Dialog display utility)
development/generatorrunner: Added. (Binding generator controller)
development/pyside-tools: Added. (Tools for the PySide Bindings)
development/shiboken: Added. (PySide bindings generator plugin)
games/Chatbot-Eliza: New Maintainer.
games/bsnes: Deleted stale patch file
games/hex-a-hop: Added. (hexagonal tile-based puzzle game)
graphics/darktable: Updated for version 0.7.
graphics/tuxpaint: Fixed dep info in README.
libraries/efreet: Fix approver information
libraries/gnome-media: Added (media utilities for GNOME)
libraries/gnome-python-desktop: Added (python modules for GNOME)
libraries/gnome-sharp: Updated for version 2.24.2.
libraries/iniparser: Added (stand-alone INI file parsing library)
libraries/libmemcached: Updated for version 0.44
libraries/libmirage: Updated for version 1.3.0 and new maintainer
libraries/libsndfile: Updated for version 1.0.23
libraries/log4c: Added (C library for flexible logging to files)
libraries/pyside: Added. (LGPL python bindings for Qt)
libraries/totem-pl-parser: Added (totem playlist parser)
misc/gramps: Updated for version 3.2.4.
misc/krename: Updated for version 4.0.5.
multimedia/mediainfo-gui: Added (GUI for mediainfo)
multimedia/mediainfo: Added (supplies media information)
multimedia/x264: Fix ARCH detection and download link
network/LimeWire: Removed due to lack of maintenance.
network/argus{-clients}: Moved (back) from Development category.
network/claws-mail: Create the system-wide theme directory in pkg
network/csync: Added (file synchronizer)
network/filezilla: Updated for version 3.3.5.1.
network/frostwire: Updated for version 4.21.1.
network/httping: Updated for version 1.4.4.
network/phpmyadmin: Updated for version 3.3.8.
network/remmina-plugins: Updated for version 0.8.4
network/remmina: Updated for version 0.8.3
network/shorewall6: Updated for version 4.4.14.
network/shorewall: Updated for version 4.4.14.
network/webalizer: Added (web server log file analysis program)
network/wireshark: Updated for version 1.4.2
network/xinetd: Added (inetd replacement)
network/znc: Updated for version 0.096.
office/kmymoney: Updated for version 4.5.1.
office/libreoffice-langpack: Added (language packs for LO)
office/libreoffice: Updated for version 3.3.0_beta3.
office/tellico: Updated for version 2.3.1
system/bootchart: New Maintainer.
system/cdemu-client: Added. (command-line client for CDEmu-daemon)
system/cdemu-daemon: Updated for version 1.3.0 and new maintainer
system/cdemu-tray: Added. (cdemu client)
system/dash: Updated for version 0.5.6.1.
system/rxvt-unicode: Updated for verson 9.09.
system/tmux: Updated for version 1.3
system/ttf-ubuntu-font-family: Added (sans-serif typeface)
system/vhba-module: Updated for version 20100822 and new maintainer
system/virtualbox-kernel-addons: Updated for version 3.2.10.
system/virtualbox-kernel: Updated for version 3.2.10.
system/virtualbox-ose-addons: Updated for version 3.2.10.
system/virtualbox-ose: Updated for version 3.2.10.
+--------------------------+
Mon Nov 22 18:51:42 UTC 2010
academic/scipy: New Maintainer.
academic/sympy: New Maintainer.
audio/Pd-extended: Added (real-time audio processing).
audio/cmus: Small script cleanups and new maintainer.
audio/hydrogen: Updated for version 0.9.4.2.
audio/milkytracker: Fixed homepage and download link
audio/portmidi: Updated for version 217.
audio/qmmp: Updated for version 0.4.3
audio/zynaddsubfx: Added (Software Synthesizer)
desktop/cwp: Updated for version 1.3.0.
desktop/enlightenment: Updated for version 0.16.999.52995.
desktop/murrine: Updated for version 0.98.0.
desktop/sound-theme-freedesktop: Added. (freedesktop sound theme)
desktop/xfce4-volstatus-icon: Fixed download link in .info file
development/acpica: Updated for version 20100915.
development/eagle: Added. (schematic capture program)
development/eclipse: Updated for version 3.6.1
development/geany: Fixed homepage link.
development/gprolog: Fix typos in README
development/gsoap: Updated for version 2.8.0.
development/lua: Small script cleanups and new maintainer.
development/numpy: New Maintainer.
development/p4v: Updated for version 2010.1.265509.
development/splint: New Maintainer.
development/yasm: Updated for version 1.1.0.
games/blobby2: Added (Blobby Volley 2 game)
games/bsnes: Updated for version 0.072.
games/scummvm: Added. (SCUMM game engine interpreter)
games/zsnes: New Maintainer.
graphics/luminance-hdr: Updated for version 2.0.1.1.
libraries/agg: New Maintainer.
libraries/cbase: New Maintainer.
libraries/e_dbus: Updated for version 1.0.0.beta.
libraries/ecore: Updated for version 1.0.0.beta.
libraries/edje: Updated for version 1.0.0.beta.
libraries/eet: Updated for version 1.4.0.beta.
libraries/efreet: Updated for version 1.0.0.beta.
libraries/eina: Updated for version 1.0.0.beta.
libraries/embryo: Updated for version 1.0.0.beta.
libraries/evas: Updated for version 1.0.0.beta.
libraries/gnet: New Maintainer.
libraries/gsnmp: New Maintainer.
libraries/itcl: Added. (o-o programming contructs to Tcl)
libraries/libcanberra: Updated README.
libraries/libcap-ng: New Maintainer.
libraries/libffado: Updated for version 2.0.1.
libraries/libmms: Updated for version 0.6.
libraries/liboop: New Maintainer.
libraries/libtbb: New Maintainer.
libraries/libtorrent: Updated for version 0.12.7.
libraries/libxml++: Updated for version 2.32.0.
libraries/matplotlib: Script fixes and new maintainer.
libraries/perl-Authen-SASL: Added (SASL Authentication framework)
libraries/perl-TermReadKey: Added. (module for terminal control)
misc/chm2pdf: New Maintainer.
misc/keychain: New Maintainer.
misc/task: Fixed download URL
multimedia/HandBrake: Adjust download location of mp4v2
multimedia/cinelerra: Updated for version cv_einar_701e5e5f
multimedia/ffmpeg: Updated for version 0.6.1.
multimedia/gecko-mediaplayer: Updated for version 1.0.0.
multimedia/gnome-mplayer: Updated for version 1.0.0.
multimedia/k9copy: Updated for version 2.3.6
multimedia/kdenlive: Updated for version 0.7.8
multimedia/mlt: Updated for version 0.5.10
multimedia/schroedinger: Updated for version 1.0.10
multimedia/x264: Updated for version 20101023.
network/broadcom-sta: Updated for version 5.60.246.2.
network/claws-mail-extra-plugins: Updated for version 3.7.7.
network/claws-mail: Updated for version 3.7.7.
network/dnstop: New Maintainer.
network/dnstracer: New Maintainer.
network/mod_chroot: New Maintainer.
network/mod_evasive: New Maintainer.
network/perl-IO-Socket-INET6: Updated for version 0.23.
network/pptpd: fix pptpd-logwtmp.so loading on x86_64
network/rtorrent: Updated for version 0.8.7.
network/transmission: Fixed/Removed old ARCH=${ARCH=i486} line.
system/apachetop: New Maintainer.
system/atop: New Maintainer.
system/hddtemp: Fixed download link
system/krusader: Patched for xz-support and new maintainer.
system/ksh: Updated for version openbsd48.
system/numlockx: Updated for version 1.2. New Maintainer.
system/pdksh: Removed (use system/ksh instead)
system/terminus-font: New Maintainer.
system/vboxgtk: Updated for version 0.5.2.
system/xen: Minor adjustments including updated dom0 scripts.
+--------------------------+
Mon Oct 25 12:58:42 UTC 2010
academic/gerbv: Added (viewer for Gerber RS-274X files)
acadenic/xoscope: Added (digital oscilloscope)
audio/atunes: Added (full-featured audio player and manager)
audio/pianobar: Added (console Pandora client)
audio/podget: Added (simple podcast aggregator)
desktop/scrotwm: Updated for version 0.9.27.
desktop/smooth-tasks: Added (task tray for KDE4)
desktop/transset-df: Added (patched version of xorg's transset)
development/arduino: Added (IDE)
development/javacc: Added (Java Compiler Compiler [tm])
development/kicad-doc: Added (documentation for KiCad EDA Suite)
development/kicad-library: Added (library for KiCad EDA Suite)
development/kicad: Added (Open Source EDA Suite)
development/numexpr: Added (numerical array expression evaluator)
development/valgrind: Updated for version 3.6.0.
development/wxHexEditor: Added (Free Hex Editor)
games/fortune-dharma: Added (dharma for fortune)
games/qjoypad: Added (control XWindow programs with game controller)
games/spring: Added (a powerful free RTS engine)
games/wesnoth: Updated for version 1.8.5.
graphics/exact-image: Updated for version 0.8.3.
graphics/fritzing: Added (electronic prototyping)
liberaties/perl-DBD-SQLite: Added (RDBMS perl module)
libraries/GLee: Added (GL Easy Extension library)
libraries/apiextractor: Added (Api Extractor)
libraries/gnonlin: Added (non-linear video editors library)
libraries/libdbi: Updated for version 0.8.4.
libraries/nettle: Added (low-level cryptographic library)
libraries/perl-Audio-FLAC-Header: Added (interface to FLAC headers)
libraries/perl-MP3-Info: Added. (Manipulate MP3 audio files)
libraries/perl-Net-UPnP: Added. (perl extensions for Net-UPnP)
libraries/perl-Ogg-Vorbis-Header-PurePerl: Added (ogg perl module)
libraries/perl-dbd-sqlite: removed (replaced by perl-DBD-SQLite)
misc/ibus: Updated for version 1.3.8.
misc/siege: Updated for version 2.70.
misc/xvnkb: Added (Vietnamese keyboard input for X-Window)
multimedia/dvdauthor: Updated for version 0.7.0.
network/APC: Added (The Alternative PHP Cache)
network/bitlbee: Updated for version 3.0.
network/chromium: Updated for version 8.0.558.0.
network/chrony: Added. (maintain accuracy of RLT Clock over ntp).
network/google-chrome: Updated for version 7.0.517.41.
network/iperf: Updated for version 2.0.5.
network/mysecureshell: Added (sftp server based on OpenSSH)
network/python-demjson: Added (Encoder, decoder, and lint/validator)
network/python-morbid: Added (messaging server)
network/python-orbited: Added (RT Communication for the Browser)
network/python-stomper: Added (client for the STOMP protocol)
network/python-uuid: Added (UUID object and generation functions)
network/uwsgi: Added (fast Python WSGI server)
office/elyxer: Added (Lyx to HTML converter)
office/gummi: Updated for version 0.5.2.
office/pdf2djvu: Added (creates DjVu files from PDF files)
office/zathura: Added (PDF viewer focusing on keyboard interaction)
system/aide: Added (Advanced Intrusion Detection Environment)
system/atop: Add an install statement for the atoprc(5) manpage.
system/audit: Updated for version 2.0.5.
system/bar: Updated for version 1.11.0.
system/chrpath: Added (modify rpath of binaries)
system/duplicity: Added (Encrypted backup using rsync algorithm)
system/extundelete: Added (ext3 and ext4 undeletion utility)
system/glyptodon: Added. (file-system analyzer).
system/pigz: Added (Parallel gzip)
system/postgresql: Updated for version 9.0.1.
system/qemu-kvm: Updated for version 0.13.0.
system/rdup: Added (utility to create a list for making backups)
system/winetricks: Updated for version 20101008.
+--------------------------+
Wed Oct 20 15:54:13 UTC 2010
academic/pcb: Added (printed circuit board editor)
desktop/cwp: Updated for version 1.2.3.
desktop/icewm: Updated for version 1.3.6.
development/empty: Added (automate otherwise interactive sessions)
development/erlang-otp: Updated for version 14B.
development/geany-plugins: Added. (additional plugins for Geany)
development/kdesvn: Updated for version 1.5.5.
development/mono-debugger: Updated for version 2.8.
development/orc: Updated for version 0.4.11.
development/tcc: Added (Tiny C Compiler)
games/gnubg: Updated for 20101017 snapshot.
games/playonlinux: Updated for version 3.8.3.
games/warzone2100: Updated for version 2.3.5.
graphics/exact-image: Updated for version 0.8.2.
libraries/SDL_gfx: Updated for version 2.0.22.
libraries/hdf5: Updated for version 1.8.5_patch1.
libraries/libdmapsharing: Added (lib for DMAP family of protocols).
libraries/libinfinity: Added (Infinote library and daemon)
libraries/libmediainfo: Added. (library for mediainfo).
libraries/libqinfinity: Added (libinfinity for QT)
libraries/libqsqlpsql: Updated for version 4.6.2_2d3d3e5.
libraries/libzen: Added. (mandatory library for libmediainfo).
libraries/reportlab: Updated for version 2.5.
multimedia/guvcview: Updated for version 1.4.2.
multimedia/openshot: Updated for version 1.2.2.
network/chromium: Added (Open Source Web Browser)
network/cyrus-imapd: Added. (scalable enterprise mail system).
network/efax-gtk: Updated for version 3.2.4.
network/heimdal: Updated for version 1.4.
network/heimdal: Fixed permissions issues.
network/kobby: Added (collaborative editor)
network/mz: Updated for version 0.40.
network/skype: Don't bail out automatically on x86_64
network/wireshark: Updated for version 1.4.1.
office/gummi: Added. (Lightweight Latex editor written PyGTK)
system/autojump: Updated for version 13.
system/conky: Updated for version 1.8.1.
system/kvm-kmod: Updated for version 2.6.35.6.
system/lxdm: Updated for version 0.3.0.
system/lxpolkit: Added. (policykit agent for LXDE).
system/mariadb: Added (Drop-in replacement for MySQL)
system/mariadb: Note libevent as optional dependency
system/nagios-plugins: Updated for version 1.4.15.
system/pcsc-lite: Updated for version 1.6.4.
system/prelink: Added (ELF prelinking utility)
system/unalz: Added (decompression utility for alz)
system/watchdog: Minor fixes; thanks to Chris Abela.
+--------------------------+
Mon Oct 18 01:25:45 UTC 2010
academic/calc: Updated for version 2.12.4.3.
academic/genius: Updated for version 1.0.11.
academic/grass: Added (Geographic Resources Analysis Support System)
audio/lxmusic: Miscellaneous fixes.
audio/mpd: Updated for version 0.15.13.
audio/portmidi: Various script cleanups.
desktop/QtCurve-Gtk2: Updated for version 1.6.4.
desktop/QtCurve-KDE4: Updated for version 1.6.4.
desktop/gtk-engines: Updated for version 2.20.2.
desktop/lxde-common: Fixed naming of config files.
desktop/lxpanel-xmms2: Added (xmms2 plugin for lxpanel)
desktop/pidgin-guifications: Fixed download link
desktop/wmMoonClock: Patched to fix southern hemisphere display.
development/Cython: Updated for version 0.13.
development/eric: Updated for version 4.4.8.
development/latrace: Updated for version 0.5.9.
development/pep8: Updated for version 0.6.0.
development/tig: Updated for version 0.16.2.
development/viewvc: Updated for version 1.1.7.
games/pokerth: Updated for version 0.8
graphics/dcraw: Updated for version 9.04.
graphics/goocanvas: Miscellaneous cleanups
graphics/shutter: Added (feature-rich screenshot program)
libraries/OpenAL: Updated for version 1.12.854.
libraries/PyYAML: Renamed and updated for version 3.09.
libraries/daq: Added (Data Acquisition libary)
libraries/goffice: Updated for version 0.8.10.
libraries/libgee: Updated for version 0.6.0.
libraries/libgsasl: Updated for version 1.4.4.
libraries/libmusicbrainz3: Updated for version 3.0.3.
libraries/libwww-perl: Updated for version 5.837.
libraries/perl-Image-Info: Updated for version 1.31.
libraries/perl-Sub-Uplevel: Miscellaneous cleanups
libraries/perl-Unicode-String: Added (Perl Unicode modules)
libraries/perl-cairo: Fixed dep info in README.
libraries/perl-digest-sha1: Updated for version 2.13.
libraries/perl-gnome2-canvas: Fixed dep info in README.
libraries/perl-gnome2-gconf: Added (Gnome2::GConf perl module)
libraries/perl-gnome2-vfs: Fixed dep info in README.
libraries/perl-gnome2-wnck: Added (Gnome2::Wnck perl module)
libraries/perl-gnome2: Fixed dep info in README.
libraries/perl-goo-canvas: Added (Goo::Canvas perl module)
libraries/perl-gtk2-imageview: Fixed dep info in README.
libraries/perl-gtk2: Fixed dep info in README.
libraries/perl-html-parser: Updated for version 3.68.
libraries/perl-http-response-encoding: Added (HTTP::Response::Encoding pm)
libraries/perl-http-server-simple: Added (HTTP::Server::Simple pm)
libraries/perl-net-dbus: Added (Net::DBus perl module)
libraries/perl-pango: Fixed dep info in README.
libraries/perl-proc/processtable: Added (Proc::ProcessTable pm)
libraries/perl-test-warn: Added (Test::Warn perl module)
libraries/perl-tree-dagnode: Added (Tree::DAG_Node perl module)
libraries/perl-www-mechanize: Added (WWW::Mechanize perl module)
libraries/perl-x11-protocol: Added (X11::Protocol perl module)
libraries/podofo: Updated for version 0.8.2.
libraries/pyyaml: Removed renamed PyYAML.
libraries/quesoglc:  Miscellaneous fixes.
misc/ibus: Use GConf by default.
misc/rsibreak: Added. (break reminder)
multimedia/media-player-info: Updated for version 10.
network/RSSOwl: Updated for version 2.0.6.
network/barnyard2: Added (log parser for snort)
network/base: Added (web front-end for Snort)
network/dovecot-cmusieve: Removed (replaced by dovecot-pigeonhole)
network/googlecl: Updated for version 0.9.10.
network/knemo: Updated for version 0.6.80.
network/mldonkey: Updated for version 3.0.5.
network/nagios: Updated for version 3.2.3.
network/opera: Updated for version 10.63.
network/perl-MailTools: Updated for version 2.07.
network/perl-NetAddr-IP: Updated for version 4.032.
network/shorewall6: Updated for version 4.4.13.1.
network/shorewall: Updated for version 4.4.13.1.
network/smstools3: Added (SMS Server Tools)
network/snort: Updated for version 2.9.0.
office/adobe-reader: Updated for version 9.4.
office/apvlv: Updated for version 0.0.9.8.
office/gnumeric: Updated for version 1.10.10.
office/libreoffice: Added (Fork of OpenOffice.org)
office/rednotebook: Updated for version 1.1.1.
office/scribus: Updated for version 1.3.8.
office/wammu: Updated for version 0.34.
system/ddrescure: Updated for version 1.13.
system/encfs: Updated for version 1.7.2.
system/lxtask: Removed man-compressing section.
system/nilfs-utils: Updated for version 2.0.20.
system/p7zip: Updated for version 9.13.
system/ssdeep: Updated for version 2.6.
+--------------------------+
Tue Oct 12 05:10:06 UTC 2010
Various: Fix some homepage links.
audio/clementine: Updated for version 0.5
desktop/QtCurve-Gtk2: Updated for version 1.6.3.
desktop/QtCurve-KDE4: Updated for version 1.6.3.
desktop/i3: Miscellaneous cleanups/enhancements
desktop/i3status: Added (status line generator for dzen2 / xmobar)
desktop/notification-daemon: Added (the name says it all)
desktop/rootactions_servicemenu: Added (RunAsRoot KDE menu addons)
desktop/xfce4-cpugraph-plugin: Fixed download link in info file
desktop/xfce4-datetime-plugin: Fixed download link in .info file
desktop/xfce4-diskperf-plugin: Fixed download link in .info file
desktop/xfce4-fsguard-plugin: Fixed download link in .info file
desktop/xfce4-genmon-plugin: Fixed download link in .info file
desktop/xfce4-mount-plugin: Fixed download link in .info file
desktop/xfce4-mpc-plugin: Fixed download in .info file
desktop/xfce4-netload-plugin: Fixed download link in .info file
desktop/xfce4-quicklauncher-plugin: Fixed download link
desktop/xfce4-sensors-plugin: Fixed download link in .info file
desktop/xfce4-smartbookmark-plugin: Fixed download link
desktop/xfce4-systemload-plugin: Fixed download link in .info file
desktop/xfce4-time-out-plugin: Fixed download link in .info file
desktop/xfce4-timer-plugin: Fixed download link in .info file
desktop/xfce4-verve-plugin: Fixed download link in .info file
desktop/xfce4-wavelan-plugin: Fixed download link in .info file
desktop/xfce4-xkb-plugin: Fixed download link in .info file
desktop/xfce4-xmms-plugin: Fixed download link in .info file
development/check: Added (unit test framework)
development/lua: Link libm in the shared library
development/mono: Updated for version 2.8.
games/glestae: Updated for version 0.3.1.
games/tomenet: Removed per maintainer request
libraries/ORBit2: Updated for version 2.14.19. New Maintainer.
libraries/avr-libc: Added (libc for programming on the AVR platform)
libraries/libgdiplus: Updated for version 2.8.
libraries/libiconv: Added (text encoding conversion library)
libraries/libtasn1: Fixed homepage and download links
multimedia/clamz: Added (cli program to download MP3s from amazon)
multimedia/flash-player-plugin: Updated for Preview 2.
multimedia/subtitleripper: Fix build failure wrt CMakeLists.txt
multimedia/vkeybd: Fix the desktop file by adding Categories
network/quassel: Updated for version 0.7.1
network/youtube-dl: Corner case build fix and misc cleanups
system/d-feet: Updated for version 0.1.12.
system/gparted: Updated for version 0.6.3
system/xen: Added (the Xen virtualization hypervisor)
+--------------------------+
Wed Sep 22 03:17:20 UTC 2010
Various: standardize newline handling and whitespace in .info files
academic/gpredict: Added (real-time satellite tracking)
audio/lxmusic: Added (minimalist music player for LXDE)
business/beancount: Added (command-line double-entry accounting)
desktop/QtCurve-Gtk2: Updated for version 1.6.1.
desktop/QtCurve-KDE4: Updated for version 1.6.1.
desktop/cwp: Updated for version 1.2.2.
desktop/kanyremote: Updated for version 5.11.9.
desktop/lxde-common: Added (set of default configurations for LXDE)
desktop/lxlauncher: Added (Application launcher for netbooks)
desktop/lxmenu-data: Added (desktop menus for LXDE)
desktop/lxpanel: Updated for version 0.5.6.
desktop/lxshortcut: Added (edit application shortcuts)
desktop/scrotwm: Updated for version 0.9.26.
desktop/thunar-dropbox: Added (dropbox plugin for thunar)
development/distribute: Added (fork of the Setuptools project)
development/pip: Updated for version 0.8.1.
games/bluemoon: Added (card game)
games/freeciv: Updated for version 2.2.3.
games/glest-data: Removed (replaced by glestae)
games/glest-megapack: Removed (replaced by glestae)
games/glest: Removed (replaced by glestae)
games/glestae: Added (Glest Advanced Engine)
games/playonlinux: Updated for version 3.8.1.
graphics/djview4: Fixed to avoid build error with qt3 installed
graphics/gimp-lqr-plugin: Updated for version 0.7.1.
graphics/gource: Added (software VCS vizualization tool)
graphics/yesplz: Added (screenshot and upload tool)
libraries/Devil: Patched to fix a libpng 1.4 problem.
libraries/adodb: Added (PHP database abstraction library)
libraries/gavl: Added (Gmerlin audio video library)
libraries/liblqr: Updated for version 0.4.1.
libraries/libsidplay2: Added (SID emulation)
libraries/libssh2: Updated for version 1.2.7.
libraries/libssh: Updated for version 0.4.6.
libraries/libunicap: Added (video capture api)
libraries/libvpx: Updated for version 0.9.2.
libraries/perl-cairo: Updated for version 1.061.
libraries/perl-extutils-depends: Updated for version 0.302.
libraries/perl-extutils-pkgconfig: Updated for version 1.12.
libraries/perl-glib: Updated for version 1.223.
libraries/perl-gnome2-canvas: Added (perl module)
libraries/perl-gnome2-vfs: Added (perl module)
libraries/perl-gnome2: Added (perl module)
libraries/perl-gtk2-imageview: Added (perl module)
libraries/perl-gtk2: Updated for version 1.222.
libraries/perl-pango: Added (perl module)
libraries/php-htscanner: Added (PHP extention)
libraries/php-ssh2: Added (SECSH network protocol PHP extention)
libraries/php-suhosin: Added (PHP security extension)
libraries/ucl: Added (portable lossless data compression)
libraries/wxsvg: Updated for version 1.0.6.
libraries/xulrunner: Updated for version 1.9.2.9.
misc/htscanner: Removed (replaced by php-htscanner)
multimedia/HamsiManager: Updated for version 0.9.02.
multimedia/devede: Patched to fix background pixmap installation
multimedia/dvdstyler: Updated for version 1.8.1.
multimedia/flash-player-plugin: Updated for version 10.2_d161.
multimedia/huludesktop: Added (Lean-back viewing for your PC)
multimedia/media-player-info: Updated for version 8.
multimedia/mlt: Updated for version 0.5.6.
multimedia/openshot: Updated for version 1.1.3.
multimedia/rtmpdump: Updated for version 2.3.
multimedia/winff: Added (GUI for ffmpeg)
network/Blokkal: Added (KDE blogging client)
network/avahi: Bugfix for http://avahi.org/ticket/319 (patched)
network/bwm-ng: Added (console-based bandwidth monitor)
network/cacti: Updated for version 0.8.7g_p7.
network/dovecot-pigeonhole: Added (Sieve & Managesieve support)
network/dropbox: Added (store, sync and share files online)
network/google-chrome: Updated for version 6.0.472.55.
network/google-chrome: Updated for version 6.0.472.62.
network/gtknetcat: Added (netcat frontend)
network/quassel: Updated for version 0.7.0.
network/shorewall6: Updated for version 4.4.12.2.
network/shorewall: Updated for version 4.4.12.2.
network/snort: Added (Intrusion Detection and Prevention System)
network/suhosin: Removed (replaced by php-suhosin)
network/vidalia: Updated for version 0.2.10.
office/texlive: Updated for version 20100722.
system/file-roller: Added (archive manager for GNOME)
system/kcm_touchpad: Fixed homepage in .info file
system/libnatspec: Added (Library for national and language-specific issues)
system/luckybackup: Updated for version 0.4.3.
system/lxinput: Added (input settings for LXDE)
system/lxrandr: Added (LXDE monitor config tool)
system/lxsession-edit: Added (session editor for LXDE)
system/lxsession: Added (LXDE session manager)
system/lxtask: Added (simple task manager for LXDE)
system/lxterminal: Added (LXDE terminal emulator)
system/python-ranger: Updated for version 1.2.1.
system/samhain:  Updated for version 2.7.2b.
system/slim: Updated for version 1.3.2.
system/upx: Added (Ultimate Packer for eXecutables)
system/watchdog: Added (Linux watchdog timer daemon)
system/xjobs: Updated for version 20100915.
+--------------------------+
Mon Sep 13 04:13:05 UTC 2010
academic/GMT: Updated for version 4.5.3.
academic/extrema: Added (visualization and data analysis tool)
academic/ngspice: Added (mixed-level/mixed-signal circuit simulator)
audio/SuperCollider: Added (OO Language for Audio Synthesis)
audio/qmmp: Updated for version 0.4.2.
audio/rubyripper: Added (secure audio disk ripper)
business/skrooge: Updated for version 0.7.3.
desktop/kde44-oxygen-molecule: Added (KDE4-Oxygen GTK-Theme)
desktop/recorditnow: Added (QT4 frontend for recordmydesktop)
development/django: Updated for version 1.2.3.
development/geany: Updated for version 0.19.1.
development/icecream: Updated for version 0.9.6.
development/kdesvn: Updated for version 1.5.4.
development/llvm: Updated for version 2.7.
development/orc: Updated for version 0.4.8.
development/p4v: Updated for version 2010.1.256349.
development/qconf: Added (qmake configure script tool)
games/playonlinux: Updated for version 3.8.
games/warzone2100: Updated for version 2.3.4.
games/wesnoth: Updated for version 1.8.4.
games/xspacewarp: include manpage and Xdefaults file
graphics/SweetHome3D: Updated for version 2.6.
graphics/VariCAD: Updated for version 2010_3.00.
graphics/darktable: Added (digital photography application)
graphics/inkscape: Update hicolor icon-cache in doinst.sh
graphics/nvidia-cg-toolkit: Updated for version 3.0_July2010.
graphics/opengtl: Updated for version 0.9.14.
graphics/tesseract: Reworked lang pack installation logic
graphics/yafaray-blender: Added (export from Blender to Yafaray)
graphics/yafaray: Added (raytracing engine)
libraries/Botan: Updated for version 1.8.10.
libraries/blas: Fix shared object building and linkage
libraries/exiftool: Updated for version 8.25.
libraries/lapack: Fixed silly typo - one != ell  :)
libraries/libkdcraw: Removed (this is part of kdegraphics)
libraries/libkexiv2: Removed (this is part of kdegraphics)
libraries/libnice: Updated for version 0.0.13.
libraries/libva: Added (Video Acceleration API)
libraries/mechanize: Updated for version 0.2.2.
libraries/netcdf: Updated for version 4.1.1.
libraries/p4api: Added (Perforce C/C++ API)
libraries/p4python: Added (python bindings for Perforce api)
libraries/physfs: Updated for version 2.0.1.
libraries/pyffmpeg: Added (FFmpeg wrapper)
libraries/python-prctl: Added (python wrapper for prctl and libcap)
libraries/tinyxml: Patched so filezilla can compile with tinyxml.
libraries/vdpau-video: Added (A VDPAU-based backend for VA API)
libraries/webkitgtk: Added (GTK+ port of the WebKit)
libraries/yaz: Updated for version 4.0.12.
misc/conkyforecast: Updated for version 2.12.
misc/ibus-chewing: Updated for version 1.3.6.20100730.
misc/krename: Updated for version 4.0.4.
misc/uni2ascii: Updated for version 4.15.
multimedia/GoogleEarth: Updated for version 5.2.1.1588.
multimedia/HamsiManager: Added (file manager and information changer)
multimedia/anyremote: Updated for version 5.2.
multimedia/farsight2: Updated for version 0.0.21.
multimedia/gst-plugins-ugly: Updated for version 0.10.16.
multimedia/kaffeine: Updated for version 1.1.
multimedia/kmediafactory: Added (DVD and Slide-show creator)
multimedia/minitube: Updated for version 1.1.
multimedia/mkvtoolnix: Updated for version 4.3.0.
multimedia/nrg2iso: Added (Nero image files to ISO image files)
multimedia/smplayer: Updated for version 0.6.9.
multimedia/xvst: Updated for version 2.4.1.
network/NetworkManager-openconnect: Fix dbus error
network/arping: Renamed the installed files to avoid conflicts.
network/choqok: Updated for version 0.9.90.
network/google-chrome: Updated for version 6.0.472.53.
network/jdownloader: Added (Download manager)
network/keepalived: Added (HealthChecking for LVS & HA cluters)
network/leechcraft: fixed maintainer info, $ARCH fixes for 32bit.
network/liferea: Updated for version 1.6.4.
network/mbpurple: Added (pidgin microblogging plugin)
network/mew: Updated for version 6.3.50.
network/nagios: Updated for version 3.2.2.
network/phpmyadmin: Updated for version 3.3.7.
network/pidgin-nateon: Added (pidgin plugin for nateon)
network/qbittorrent: Updated for version 2.4.0.
network/qwit: Updated for version 1.1_pre2.
network/shorewall6: Updated for version 4.4.12.1.
network/shorewall: Updated for version 4.4.12.1.
network/vnstat: Enable building of vnstati.
network/vrrpd: Added (Virtual Router Redundancy Protocol)
network/wireshark: Updated for version 1.4.0.
network/zarafa-webaccess-ajax: Updated for version 6.40.2.
network/zarafa: Updated for version 6.40.2.
office/calibre: Updated for version 0.7.18.
system/apache-cassandra: Updated for version 0.6.5.
system/autojump: Updated for version 12.
system/conky: LUA support is not enabled by default anymore.
system/cutecom: Added (graphical serial terminal)
system/fsvs: Added (versioning tool for filesystems)
system/ipheth-driver: Updated README.
system/ipheth-pair: Fixed typo and updated README.
system/kcm_touchpad: Added (touchpad configuration module for kde)
system/lxdm: Included post-install setup notes
system/midisport-firmware: Added (M-Audio/Midiman MIDI/Audio firmware)
system/motion: Added (software motion detector)
system/parallel: Updated for version 20100906.
system/ssdeep: Added (compute context triggered piecewise hashes)
system/terminator: Updated for version 0.95.
system/tiger: Updated build and added patch.
system/winetricks: Added (script to install programs for wine)
+--------------------------+
Mon Aug 30 12:52:33 UTC 2010
academic/octave: Build bump, various changes.
audio/ardour: Updated for version 2.8.11.
audio/rosegarden: Updated for version 10.04.2.
desktop/cwp: Updated for version 1.2.1.
desktop/kcometen4: Updated for version 1.0.7.
development/ipython: Fixed permissions of docdir contents
development/kompozer: Added (Easy Web Authoring)
development/netbeans: Updated for version 6.9.1.
development/parrot: Fixed pkgconfig path and typo.
libraries/gtkmm: Clarified dep info in README
libraries/libkdcraw: Added (C++ interface to dcraw)
libraries/libkexiv2: Added (wrapper around Exiv2 library)
libraries/lxml: Updated for version 2.2.7.
libraries/pangomm: Clarified dep info in README
multimedia/dvdrip: Clarified dep info in README
multimedia/google-talkplugin: Added (Plugin for Google Talk)
multimedia/imagination: Added (simple DVD slide show maker)
network/arping: Added (ARP level ping utility)
network/ntop: Updated for version 4.0.1.
network/phpmyadmin: Updated for version 3.3.6.
network/pidgin-toobars: Updated for version 1.10.
system/foremost: Updated for version 1.5.7.
system/hwinfo: Updated for version 17.3.
system/nilfs-utils: Updated for version 2.0.19.
system/wine: Updated to include DIB engine patches.
+--------------------------+
Sun Aug 29 20:36:42 UTC 2010
academic/RBio: Added (sparse matrix I/O routines)
academic/metis: Added (matrix ordering)
academic/suitesparse: Added (collection of sparse matrix libraries)
audio/lash: Updated download link.
desktop/kanyremote: Updated for version 5.11.8.
development/logisim: Added (logic simulator)
development/mono: Updated for version 2.6.7.
development/sqlitebrowser: Added (GUI editor for SQLite databases)
games/Scorched3D: Added (3D artillery game)
games/alienarena: Added (First Person Shooter)
games/assaultcube: Updated for version 1.1.0.1.
games/bsnes: Updated for version 0.068.
games/chroma: Added (abstract puzzle game)
games/freeciv: Updated for version 2.2.2.
games/playonlinux: Updated for version 3.7.7.
games/sauerbraten: Added (FPS game based on the original Cube FPS)
graphics/SweetHome3D: Added (interior design for 2D/3D house plan)
graphics/brlcad: Updated for version 7.16.10.
graphics/inkscape: Updated for version 0.48.0.
graphics/qcomicbook: Updated for version 0.6.0.
libraries/AMD: Added (sparse matrix ordering routines)
libraries/BTF: Added (matrix permuting routines)
libraries/CAMD: Added (sparse matrix ordering routines)
libraries/CCOLAMD: Added (sparse matrix ordering routines)
libraries/CHOLMOD: Added (sparse matrix factorizing routines)
libraries/COLAMD: Added (sparse matrix ordering routines)
libraries/CSparse: Added (sparse matrix routines)
libraries/CXSparse: Added (sparse matrix routines)
libraries/KLU: Added (sparse matrix factorizing routines)
libraries/LDL: Added (sparse matrix factorizing routines)
libraries/SPQR: Added (sparse matrix factorizing routines)
libraries/UFconfig: Added (SuiteSparse common library)
libraries/UMFPACK: Added (sparse matrix routines)
libraries/kwebkitpart: Added (web browser component)
libraries/libaosd: Updated for version 0.2.7.
libraries/libfm: Added (pcmanfm library)
libraries/libgdiplus: Updated for version 2.6.7.
libraries/libotf: Updated for version 0.9.11.
libraries/menu-cache: Added (replacement of libgnome-menu)
libraries/pylirc: Added (Python lirc module)
libraries/xmlrpc-c: Added (implementation of XML-RPC)
misc/ibus-pinyin: Updated for version 1.3.10.
misc/ibus-qt: Updated for version 1.3.1.
misc/merkaartor: Updated for version 0.16.3.
multimedia/anyremote: Updated for version 5.1.3.
multimedia/lircaile: Added (LIRC plugin for the Exaile media player)
multimedia/llcon: Updated for version 3.1.1.
multimedia/media-player-info: Updated for version 7.
network/btpd: Updated for version 0.16.
network/cacti: Updated for version 0.8.7g_p5.
network/emacs-w3m: Added (simple Emacs interface of w3m)
network/emesene: Added (An IM for the WLM(tm) network)
network/linphone: Added (SIP video-phone)
network/mldonkey: Updated for version 3.0.4.
network/remmina-plugins: Added (Plugins for Remmina)
network/shorewall6: Updated for version 4.4.12.
network/shorewall: Updated for version 4.4.12.
network/spambayes: Miscellaneous cleanups and moved from system.
network/sylpheed: Updated for version 3.0.3.
network/ttdnsd: Added (The Tor TCP DNS Daemon)
network/w3m: Added (text-mode web browser)
network/youtube-dl: Updated for version 2010.08.04.
network/zabbix_agentd: Updated for version 1.8.3.
network/zabbix_proxy: Added (Linux proxy daemon for zabbix_server)
network/zabbix_server: Updated for version 1.8.3.
office/impressive: Added (A fancy PDF presentation program)
office/xournal: Added (note taking application)
system/apache-cassandra: Added (distributed database)
system/backintime: Added (simple backup tool)
system/epson-inkjet-printer-stylus-tx550w-series: Added (driver)
system/flSynclient: Added (graphical frontend for synclient)
system/grub2: Build a graphical terminal font.
system/herculesstudio: Updated for version 1.2.0.
system/parallel: Updated for version 20100822.
system/pcmanfm: Updated for version 0.9.7.
system/plan9port: Updated for version 20100825.
system/ser2net: Added (serial to network proxy)
system/zeroinstall-injector: Updated for version 0.50.
+--------------------------+
Mon Aug 23 05:56:34 UTC 2010
development/monodevelop-python: Added (Python language support for MonoDevelop)
development/pep8: Added (Check Python source code formatting)
games/warsow: Added (A Fast Paced First Person Shooter Game)
games/widelands: Updated for version build15.
games/zdoom: Added (an enhanced port of the official DOOM source code)
graphics/evolus-pencil: Updated build for 64-bit.
libraries/PyOpenGL: Include slack-desc in package, plus minor .info fixes.
libraries/SQLObject: Updated for version 0.12.4.
libraries/fmodapi: Updated for version 4.28.17.
libraries/icu4c: Updated for version 4.4.1.
libraries/libvdpau: Updated for version 0.4.
multimedia/kaffeine: Fix version string in .info
network/NetworkManager: Minor default config changes
network/avahi: Updated README with gtk-sharp dep.
network/dovecot: Updated for version 2.0.0.
network/google-chrome: Updated for version 5.0.375.127.
network/node: Updated for version 0.2.0.
network/opera: Updated for version 10.61.
network/phpmyadmin: Updated for version 3.3.5.1.
network/rekonq: Updated for version 0.5.0.
office/adobe-reader: Updated for version 9.3.4.
office/beaver: Added (Beaver is an Early AdVanced EditoR)
office/kmymoney: Updated for version 4.5.
system/d-feet: Added (D-Bus Debugger)
system/nvidia-driver: Updated for version 256.44.
system/nvidia-kernel: Updated for version 256.44.
system/nvidia-legacy173-driver: Updated for version 173.14.27.
system/nvidia-legacy173-kernel: Updated for version 173.14.27.
system/nvidia-legacy96-driver: Updated for version 96.43.18.
system/nvidia-legacy96-kernel: Updated for version 96.43.18.
+--------------------------+
Wed Aug 18 19:04:45 UTC 2010
development/PyOpenGL: Removed. Replaced with libraries/PyOpenGL.
development/monodevelop: Disable mimedb/desktopdb updates.
development/mysqlcc: Miscellaneous cleanups and enhancements
games/gnubg: Updated for version 20100811.
games/pcsxr: Fixed VERSION in info file.
graphics/mirage: Added (fast and simple GTK+ image viewer)
libraries/blas: Updated for version 20070405.
libraries/lapack: Updated for version 3.2.2.
multimedia/GoogleEarth: Updated for version 5.2.1.1547.
network/filezilla: Updated for version 3.3.4.1.
network/shorewall6: Updated for version 4.4.11.2.
network/shorewall: Updated for version 4.4.11.2.
office/go_openoffice: Added (fork of OpenOffice.org)
office/org-mode: Updated for version 7.01h.
system/gigolo: Updated for version 0.4.1.
system/pyinotify: Added (python inotify module)
+--------------------------+
Mon Aug 16 01:56:24 UTC 2010
academic/arpack: Added (library for solving eigenvalue problems)
academic/qrupdate: Added (QR and Cholesky decompositions library)
audio/discord: Added (generate binaural beat for brain waves)
audio/easytag: --disable-mp4 due to a bug.
desktop/bashrun: Updated for version 0.16.
desktop/cwp: Updated for version 1.2.0.
desktop/skulpture: Added (A KDE4 style)
development/Sphinx: Added (Documentation generator)
development/cxxtools: Added (reusable c++-components)
development/django: Updated for version 1.2.1.
development/kiwi: Updated for version 1.9.26.
development/mono-addins: Added (a framework for creating extensible applications)
development/mono-debugger: Added (Mono-specific debuggers)
development/monodevelop-database: Added (Database support for MonoDevelop)
development/monodevelop-debugger-gdb: Added (GDB Debugger support for MonoDevelop)
development/monodevelop-debugger-mdb: Added (Mono Debugger support for MonoDevelop)
development/monodevelop: Added (IDE for Mono and Gtk#)
development/orc: Updated for version 0.4.6.
development/parrot: Corrected name of SlackBuild file.
development/psycopg2: Updated for version 2.2.2.
games/pasang-emas: Updated for version 3.0.0.
games/pcsxr: Updated for version 1.9.91.
libraries/FormEncode: Updated for version 1.2.2.
libraries/Jinja2: Added (Template engine for Python)
libraries/decorator: Updated for version 3.2.0.
libraries/gnome-sharp: Added (.NET binding for GNOME libraries)
libraries/hdf5: Updated for version 1.8.5.
libraries/lapack: Corrected download link.
libraries/libass: Updated for version 0.9.11.
libraries/libfwbuilder: Updated for version 4.0.2.
libraries/libkate: Updated for version 0.3.8.
libraries/libmemcached: Updated for version 0.43.
libraries/libvpx: Noted yasm dependency.
libraries/perl-BerkeleyDB: Updated for version 0.43.
libraries/perl-HTTP-Proxy: Fixed VERSION in .info file
libraries/python-elementtree: Added (Python library wrapper for XML)
libraries/subvertpy: Updated for version 0.7.3.1.
multimedia/cinelerra: Added (GNU/Linux Video/Audio Studio)
multimedia/miro: Updated for version 3.0.3.
multimedia/realplayer: Added (RealNetworks' RealPlayer application)
network/avahi: Updated for version 0.6.27.
network/canto: Added (An ncurses RSS aggregator)
network/filezilla: Updated for version 3.3.4.
network/fldigi: Updated for version 3.20.23.
network/fwbuilder: Updated for version 4.0.2.
network/gmapcatcher: Added (An offline map viewer)
network/googlecl: Updated for version 0.9.9.
network/kvirc: Updated for version 4.0.2.
network/netcat-openbsd: Added (OpenBSD rewrite of netcat)
network/perl-NetAddr-IP: Updated for version 4.030.
network/phpmyadmin: Updated for version 3.3.5.
network/tntnet: Added (web application server)
office/python-gcalcli: Added (cli google calander application)
office/tellico: Updated for version 2.3.
system/autojump: Added (a cd command that learns)
system/os-prober: Updated for version 1.39.
system/rfkill: Added (tools to query rfkill interface)
system/terminus-font: Fixed homepage and download link
+--------------------------+
Sun Aug 15 00:09:39 UTC 2010
academic/qgis: Updated for version 1.5.0.
academic/wxmacmolplt: Updated for version 7.4.1.
audio/mac: Added gcc4 patch.
audio/volwheel: Added (Tray icon to set volume with mousewheel)
desktop/obmenu: Added (A graphical menu editor for Openbox)
desktop/openbox-themes: Added (themes for Openbox window manager)
desktop/wbar: Added (A quick launch bar designed with speed in mind)
development/gaphor: Added (UML modeling tool)
development/geany: Updated for version 0.19.
development/nose: Updated for version 0.11.2.
development/scite: Updated for version 2.12.
development/setuptools_git: Added (Setuptools revision control system plugin for Git)
development/zope.interface: Updated for version 3.6.1.
development/zope.testing: Updated for version 3.10.0.
games/bsnes: Updated for version 0.067.
games/enigma: Added (A puzzle game involving falling blocks)
games/playonlinux: Added (wine frontend)
games/qmc2: Updated for version 0.2.b16.
games/tuxkart: Added (A 3D racing game featuring tux)
libraries/SDL_gfx: Updated for version 2.0.21.
libraries/ZConfig: Added (Structured Configuration Library)
libraries/ZODB3: Added (Zope Object Database)
libraries/clutter: MD5SUM fix.
libraries/gaphas: Added (GTK+ based diagramming widget)
libraries/gdal: Updated for version 1.7.2.
libraries/gtksourceview: Updated for version 2.11.2.
libraries/haskell-regex-posix: Updated for version 0.94.4.
libraries/haskell-texmath: Added (LaTeX math formulas to MathML)
libraries/haskell-xml: Added (XML library for Haskell)
libraries/libcdaudio: Added (functions to control a CD-ROM playing audio CDs)
libraries/libgee: Updated for version 0.5.2.
libraries/libnetfilter_log: Updated for version 1.0.0.
libraries/libnetfilter_queue: Updated for version 1.0.0.
libraries/libnids: Added (E-component of NIDS)
libraries/newt: Added (graphic library)
libraries/perl-Class-Factory-Util: Added (Provides utility methods for factory classes)
libraries/perl-Class-Singleton: Added (Implementation of a "Singleton" class)
libraries/perl-DateTime-Format-Builder: Added (Create DateTime parser classes/objects)
libraries/perl-DateTime-Format-ISO8601: Added (Parses ISO8601 date and time formats)
libraries/perl-DateTime-Format-Strptime: Added (parse and format time patterns)
libraries/perl-DateTime-Locale: Added (provides localization data for DateTime class)
libraries/perl-DateTime-TimeZone: Added (Time zone object base class and factory)
libraries/perl-DateTime: Added (A date and time object)
libraries/perl-Image-Size: Added (Determine the size of images)
libraries/perl-List-MoreUtils: Added (Adds missing functionality from List::Util)
libraries/perl-Params-Validate: Added (Validate method/function parameters)
libraries/perl-Task-Weaken: Added (ensure that a platform has weaken support)
libraries/perl-XML-XPath: Added (modules for parsing and evaluating XPath statements)
libraries/perl-tk: Updated for version 804.029.
libraries/pyquery: Updated for version 0.6.1.
libraries/python-musicbrainz2: Updated for version 0.7.2.
libraries/qoauth: Updated for version 1.0.1.
libraries/simplegeneric: Added (Simple generic functions)
libraries/slib: New DOWNLOAD location.
libraries/tsocks: Added (transparent SOCKS proxying library)
libraries/xulrunner: Updated for version 1.9.2.8.
libraries/yaz: Updated for version 4.0.11.
libraries/zc.lockfile: Added (Basic inter-process locks)
libraries/zdaemon: Added (Daemon process control library)
libraries/zope.component: Added (Zope Component Architecture)
libraries/zope.configuration: Added (Zope configuration system)
libraries/zope.event: Added (event publishing system)
libraries/zope.hookable: Added (Hookable object support)
libraries/zope.i18nmessageid: Added (Message Identifiers for internationalization)
libraries/zope.location: Added (Zope Location)
libraries/zope.proxy: Added (Generic Transparent Proxies)
libraries/zope.schema: Added (zope.interface extension for defining data schemas)
libraries/zope.security: Added (Zope Security Framework)
misc/fbdump: Added (captures the visible portion of framebuffer)
misc/gprename: Added (GTK2 batch renamer for files and directories)
multimedia/GoogleEarth: Updated for version 5.2.1.1329.
multimedia/get_iplayer: Updated for version 2.78.
multimedia/gst-plugins-bad: Updated for version 0.10.19.
multimedia/gst-plugins-ugly: Updated for version 0.10.15.
multimedia/kaffeine: Updated for version 1.03.
multimedia/mythplugins: Updated for version 0.23.1.
multimedia/myththemes: Updated for version 0.23.1.
multimedia/mythtv: Updated for version 0.23.1.
network/arpwatch: Added (for tracking IP addresses on a network)
network/bitlbee: Updated for version 1.2.8.
network/dsniff: Added (network auditing and penetration testing)
network/gogoc: Added (gogo6 Freenet6 Client aka gogoCLIENT)
network/konversation: Updated for version 1.3.1.
network/nginx: Updated for version 0.7.67.
network/perl-Net-Server: Updated for version 0.99.
network/remmina: Added (GTK+ Remote Desktop Client)
network/uget: Updated for version 1.5.0.3.
network/vde2: Updated for version 2.3.1.
network/w3af: Updated for version 1.0-rc3.
network/wireshark: Updated for version 1.2.10.
office/calcurse: Updated for version 2.8.
office/kchmviewer: Updated for version 5.2.
office/org-mode: Updated for version 7.01g.
office/pandoc: Updated for version 1.6.
office/pdfedit: Updated for version 0.4.5.
office/sigil: Updated for version 0.2.3.
system/byobu: Added (GNU Screen enhancement)
system/davfs2: Updated for version 1.4.6.
system/dump: Updated for version 0.4b43.
system/gdmap: Added (graphically explore your disks)
system/ipheth-driver: Added (iPhone USB Ethernet Driver)
system/ipheth-pair: Added (iPhone Pairing Program)
system/kvm-kmod: Updated for version 2.6.34.1.
system/launchpadd: Added (novation launchpad midi driver)
system/qemu-kvm: Updated for version 0.12.5.
system/qemu: Updated for version 0.12.5.
system/truecrypt: Updated for version 7.0.
+--------------------------+
Wed Aug 11 06:55:45 UTC 2010
academic/bibus: Fixed download link and md5sum.
audio/cmus: Updated for version v.2.3.3.
audio/deadbeef: Updated for version 0.4.1.
desktop/tint2: Updated for version 0.11.
development/parrot: Added (virtual machine for program languages)
development/xtruss: Fixed md5sum in xtruss.info file
games/assaultcube: Miscellaneous cleanups.
libraries/PyOpenGL: Added (Python binding to OpenGL)
libraries/libimobiledevice: Updated for version 1.0.2.
libraries/libplist: Updated for version 1.3.
misc/ibus: updated for version 1.3.7.
network/squid: Updated for version 3.1.6.
network/transmission: Updaetd for version 2.0.3.
system/gparted: Updated for version 0.6.2.
system/ifuse: Updated for version 1.0.0.
system/usbmuxd: Updated for version 1.3.
system/xtrs: Miscellaneous cleanups
+--------------------------+
Sun Aug  1 03:34:53 UTC 2010
academic/glpk: Updated for version 4.44.
academic/qhull: Build bump, install qhull.h.
audio/clementine: Updated for version 0.4.2.
audio/gmpc: List libsoup as dep in README
audio/mpd: Updated for version 0.15.11.
desktop/i3: Added (an improved dynamic tiling window manager)
development/gsoap: Updated for version 2.7.17.
development/meld: Added (a visual diff and merge tool)
games/gnubg: Updated for version 20100722.
graphics/enblend-enfuse: Added (Image Blending and Enfusing tools)
graphics/gimp-fourier-plugin: Added (FT Plugin for GIMP)
graphics/hugin: Added (Panorama photo stitcher)
graphics/ocropus: Added (document analysis and OCR system)
graphics/simple-scan: Added (simple scanning utility)
libraries/Mako: List MarkupSafe dependency.
libraries/MarkupSafe: Added (unicode subclass)
libraries/iulib: Added (image understanding library)
libraries/mysqltcl: Added (Tcl MySQL Interface)
libraries/perl-MIME-Lite: README amended.
misc/authprogs: Fixed slack-desc.
misc/weather: Added (cli utility for getting weather info)
multimedia/cowbell: Added (an elegant music organizer)
multimedia/gaupol: Updated for version 0.17.
multimedia/gimp-gap: Added (GIMP Animation Package)
multimedia/minitunes: Updated for version 0.1.1.
multimedia/qdvdauthor: Added (DVD Authoring Suite)
network/ModemManager: Updated for version 0.4.
network/NetworkManager-openconnect: Updated for version 0.8.1.
network/NetworkManager-openvpn: Updated for version 0.8.1.
network/NetworkManager-pptp: Updated for version 0.8.1.
network/NetworkManager-vpnc: Updated for version 0.8.1.
network/NetworkManager: Updated for version 0.8.1.
network/heimdal: Updated for version 1.3.3.
network/kismet: Updated for version 2010_07_R1.
network/lsh: Added (GNU implementation of the Secure Shell protocol)
network/network-manager-applet: Updated for version 0.8.1.
network/pdns-recursor: Added (high-performance recursive resolver)
network/shorewall6: Updated for version 4.4.11.1.
network/shorewall: Updated for version 4.4.11.1.
office/moneydance: Updated for version 2010_b751.
system/dvdisaster: Added (extra error protection for CD/DVD media)
system/kqemu: Patched to fix a missing include
system/parallel: Updated for version 20100722.
system/python-ranger: Updated for version 1.1.2.
system/ranger: Removed (use system/python-ranger instead)
system/recoverdm: Added (recover files/disks with damaged sectors)
system/roxterm: Updated for version 1.18.5.
system/wine: Updated for version 1.2.
+--------------------------+
Mon Jul 26 02:54:54 UTC 2010
academic/celestia: Added (Realtime Space Simulation)
audio/easytag: Added (Tag editor for MP3 and Ogg Vorbis files)
desktop/ClipboardViewer: Added (GUI to view the clipboard)
desktop/QtCurve-Gtk2: Updated for version 1.5.2.
desktop/QtCurve-KDE: Updated for version 1.5.2.
desktop/Vanilla-DMZ: Added (style neutral scalable cursor theme)
desktop/cwp: Updated for version 1.1.1.
desktop/industrial-cursor-theme: Removed, replaced by Vanilla-DMZ.
games/nsudoku: Added (A Sudoku game in ncurses)
games/simsu: Added (A basic Sudoku game)
graphics/LDraw_data: Updated for version 201002.
graphics/k3d: Added (3D modeling and animation software)
graphics/leocad: Updated for version 0.75.1.
graphics/leocad_pieces: Updated for version 3934.
libraries/Mako: Updated for version 0.3.4.
libraries/haskell-X11-xft: Build bump, various changes.
libraries/haskell-hinotify: Build bump, various changes.
libraries/perl-AppConfig: Added (module for reading config files and arguments)
libraries/perl-FCGI: Added (Fast CGI module)
libraries/perl-HTTP-Proxy: Added (a pure Perl HTTP proxy)
libraries/perl-Proc-Daemon: Added (Run Perl program as a daemon process)
libraries/perl-Template-Toolkit: Added (comprehensive template processing system)
misc/authprogs: Added (A script that helps install ssh keys)
misc/ssh-keyinstall: Added (A script to help install ssh keys)
multimedia/mlt: README re-write.
multimedia/tovid: Updated for version 0.33. New Maintainer.
network/arptables: Updated for version 0.0.3-4.
network/cacti: Updated for version 0.8.7g.
network/gajim: Updated for version 0.13.4.
network/mod_hosts_access: Build bump, various changes.
network/qbittorrent: Added (a C++ / Qt4 Bittorrent Client)
network/shorewall6: Updated for version 4.4.11.
network/shorewall: Updated for version 4.4.11.
network/silc-toolkit: Added (Secure Interenet Live Conferencing Toolkit)
office/apvlv: Updated for version 0.0.9.7. New Maintainer.
office/lyx: Updated for version 1.6.7.
office/scribus: Updated for version 1.3.7.
office/wammu: Added (Mobile-phone manager)
system/bar: Added (Command Line Progress Bar)
system/gammu: Updated for version 1.28.0.
system/iotop: Updated for version 0.4.1.
system/oss: Updated for version 4.2.2003.
+--------------------------+
Wed Jul 21 06:45:23 UTC 2010
audio/jack-audio-connection-kit: README cleanup
desktop/dzen2: Trivial changes.
desktop/xmonad: Build bump, various changes.
development/acpica: Updated for version 20100702.
development/alex: Updated for version 2.3.3.
development/ghc: Updated for version 6.12.3.
development/happy: Updated for version 1.18.5.
libraries/haskell-HTTP: Build bump, various changes.
libraries/haskell-HUnit: Build bump, various changes.
libraries/haskell-MonadCatchIO-mtl: Added (Monad-transformer version of haskell-mtl)
libraries/haskell-QuickCheck: Updated for version 2.1.1.1.
libraries/haskell-X11: Build bump, various changes.
libraries/haskell-binary: Build bump, various changes. New maintainer.
libraries/haskell-cgi: Updated for version 3001.1.8.1.
libraries/haskell-deepseq: Build bump, various changes.
libraries/haskell-digest: Updated for version 0.0.0.8. New maintainer.
libraries/haskell-editline: Build bump, various changes.
libraries/haskell-fgl: Updated for version 5.4.2.3.
libraries/haskell-haskeline: Updated for version 0.6.2.2.
libraries/haskell-haskell-src: Build bump, various changes.
libraries/haskell-html: Build bump, various changes.
libraries/haskell-mtl: Build bump, various changes.
libraries/haskell-network: Updated for version 2.2.1.7.
libraries/haskell-packedstring: Build bump, various changes.
libraries/haskell-parallel: Build bump, various changes.
libraries/haskell-parsec: Updated for version 3.1.0.
libraries/haskell-regex-base: Updated for version 0.93.2.
libraries/haskell-regex-compat: Updated for version 0.93.1.
libraries/haskell-regex-posix: Updated for version 0.94.2.
libraries/haskell-stm: Updated for version 2.1.2.2.
libraries/haskell-terminfo: Updated for version 0.3.1.2.
libraries/haskell-utf8-string: Added (Support for reading and writing UTF8 Strings)
libraries/haskell-xhtml: Build bump, various changes.
libraries/haskell-zip-archive: Updated for version 0.1.1.6. New maintainer.
libraries/haskell-zlib: Build bump, various changes. New maintainer.
libraries/libedit: Updated for version 20100424_3.0.
libraries/libssh2: Updated for version 1.2.6.
libraries/xmonad-contrib: Build bump, various changes.
multimedia/mkvtoolnix: Update mime and hicolor-icon cache in doinst.sh
network/httping: compress manpages
system/vboxgtk: Added (GTK frontend for VirtualBox)
system/virtualbox-kernel-addons: Updated for version 3.2.6.
system/virtualbox-kernel: Updated for version 3.2.6.
system/virtualbox-ose-addons: Updated for version 3.2.6.
system/virtualbox-ose: Updated for version 3.2.6.
+--------------------------+
Fri Jul 16 01:14:37 UTC 2010
desktop/cwp: Updated for version 1.1.0.
libraries/libcap-ng: Updated for version 0.6.4.
libraries/libjpeg-turbo: Updated for version 1.0.0.
libraries/libmpc: Added (C library for complex number arithmetic)
libraries/libvirt: Updated for version 0.7.7.
libraries/pyOpenSSL: Updated for version 0.10.
libraries/yajl: Added (Yet Another JSON Library)
misc/dwdiff: Updated for version 1.8.
misc/keychain: Updated for version 2.7.1.
network/filezilla: Updated for version 3.3.3. New Maintainer.
network/framework: Updated for version 3.4.1.
network/mod_evasive: New download URL.
network/nikto: Updated for version 2.1.2.
network/openvas-cli: Added (OpenVAS command line interface)
network/openvas-libraries: Updated for version 3.0.5.
network/openvas-scanner: Updated for version 3.0.2.
network/suhosin: Updated for version 0.9.31.
office/adobe-reader: Build bump, fixed symlink typo.
system/atop: Updated for version 1.25.
system/upower: Updated for version 0.9.5.
+--------------------------+
Sun Jul 11 15:30:16 UTC 2010
audio/volumeicon: Added (systray volume control)
desktop/maitreya: Added (software for Vedic and western astrology)
desktop/wmdate: Fixed slack-desc
development/Coin: Miscellaneous cleanups
development/Pivy: Miscellaneous cleanups
development/SoQt: Miscellaneous cleanups
games/gtkballs: Added (clone of Lines - logic game about balls)
graphics/pinta: Added (simple image editor, a Paint.NET clone)
libraries/libmemcached: Updated for version 0.42.
libraries/perl-OpenGL-Image: Added (abstract imaging interfaces)
libraries/perl-OpenGL-Shader: Added (manage for OpenGL shaders)
libraries/perl-OpenGL: Added (portable perl binding for OpenGL)
libraries/unixODBC: Fixed slack-desc
misc/gnu-unifont: Fixed md5sum
multimedia/devede: Updated for version 3.16.9.
multimedia/dvd-slideshow: Added (Creates a slideshow-style DVD)
network/nagios: Fix symlinks when using an alternative root.
network/zabbix_agentd: Miscellaneous cleanups
network/zabbix_server: Miscellaneous cleanups
system/gpsd: Updated for version 2.94.
system/grub2: Added (GRand Unified Bootloader)
system/md5deep: Updated for version 3.6.
system/sdltrs: Miscellaneous cleanups
+--------------------------+
Sat Jul 10 07:18:50 UTC 2010
audio/gogglesmm: Updated for version 0.10.24.
audio/quodlibet: Added (Music Management Program)
desktop/gmrun: Added (provides a simple "run program" window)
development/argus-clients: Added (open source IP Audit tool)
development/argus: Added (open source IP Audit tool)
development/ldns: Updated for version 1.6.5.
games/mame: Added (Multiple Arcade Machine Emulator)
games/qmc2: Updated for version 0.2.b15.
libraries/perl-Date-Manip: Added /etc/timezone file.
libraries/rrdtool: Updated for version 1.4.4.
multimedia/2ManDVD: Updated for version 1.3.5.
network/rekonq: Added (KDE browser based on Webkit)
system/ZoneMinder: Added (security and surveillance solution)
system/di: Fixed VERSION in di.info file
system/gdisk: Added (partitioning tool for gpt)
system/gparted: Updated for version 0.6.1.
system/truecrypt: Amended README to note manual download.
+--------------------------+
Thu Jul  8 23:34:40 UTC 2010
desktop/QtCurve-Gtk2: Updated for version 1.5.1.
desktop/QtCurve-KDE4: Updated for version 1.5.1.
development/p4: Updated for version r10.1.
development/p4v: Updated for version 2010.1.251161.
graphics/evolus-pencil: Added (Opensource GUI Prototyping Tool)
libraries/afflib: Updated for version 3.5.12.
libraries/libewf: Updated for version 20100226.
libraries/pycontrol: Added (Python library for the F5 iControl API)
multimedia/LiVES: Updated for version 1.3.4.
network/httping: Added (HTTP Request ping)
network/node: Updated for version 0.1.100.
network/periscope: Updated for version 0.1.9.
network/pidgin-sipe: Added (pidgin plugin for Sip Exchange Protocol)
network/python-suds: Added (lightweight SOAP python client)
office/kmymoney: Fixed README again.
office/verbiste: Added (a French conjugation system)
system/di: Added (disk information utility)
system/lzip: Updated for version 1.10.
system/sleuthkit: Updated for version 3.1.3.
+--------------------------+
Thu Jul  8 05:16:11 UTC 2010
development/nant: Added (a .NET build tool)
libraries/eaccelerator: Updated for version 0.9.6.1.
libraries/html5lib: Added (HTML parser based on the HTML5 spec)
libraries/libatasmart: Added (ATA S.M.A.R.T. library)
libraries/ode: Fixed md5sum in ode.info file
libraries/rrdtool: Miscellaneous script cleanup.
libraries/sg3_utils: Added (utilities for the linux sg driver)
misc/biosdisk: Updated download link
multimedia/gecko-mediaplayer: Updated for version 0.9.9.2.
multimedia/gnome-mplayer: Updated for version 0.9.9.2.
multimedia/gst-plugins-farsight: Fixed download link in .info file
multimedia/media-player-info: Added (media player capability data)
multimedia/minitunes: Added (A cross-platform music player)
network/cacti: Updated for version 0.8.7e_p6.
network/opera: Removed stale desktop file from our archive
network/shorewall6: Updated for version 4.4.10.3.
network/shorewall: Updated for version 4.4.10.3.
office/kmymoney: Fixed README.
office/lyx: Fixed md5sum in lyx.info
system/openmpi: Added (an open source MPI-2 implementation)
system/preload: Updated for version 0.6.4
system/syslog-ng: Added (syslogd replacment)
system/udisks: Added (storage device daemon)
system/upower: Added (power management abstraction daemon)
system/zfs-fuse: Updated for version 0.6.9.
+--------------------------+
Tue Jul  6 07:38:43 UTC 2010
development/eclipse: Fixed VERSION in eclipse.info file
libraries/libchewing: Added patch for ibus-chewing.
libraries/libmemcached: Updated for version 0.40.
misc/conkyforecast: Updated for version 2.10.
misc/ibus-chewing: Added (chewing engine for ibus input framework)
multimedia/audiopreview: Added (cli tool that can play previews)
multimedia/gpac: Added (multimedia framework)
multimedia/xbmc: Fix to work with newer ffmpeg.
network/googlecl: Updated for version 0.9.8.
network/msmtp: Updated for version 1.4.21.
network/perl-Net-Ident: Updated for version 1.23.
network/perl-NetAddr-IP: Updated for version 4.028.
office/kmymoney: Fixed slack-desc and build tweaks.
office/kmymoney2: Removed now obsolete.
system/fsarchiver: Updated for version 0.6.10.
system/gvfs: Added (userspace virtual filesystem)
+--------------------------+
Sun Jul  4 08:24:47 UTC 2010
academic/abntex: disallow override of ARCH=noarch
academic/bibus: Disallow override of ARCH=noarch
academic/sympy: Fixed ARCH setting - this is not noarch
development/Pygments: Fixed ARCH setting - this is not noarch
development/cryptoki: Disallow override of ARCH=noarch
development/epydoc: Fixed ARCH setting - this is not noarch
development/power-archtect: Disallow ARCH=noarch override
development/pycscope: Fixed ARCH setting (this is not noarch)
games/glest-data: Disallow ARCH=noarch override
games/glest-megapack: Disallow ARCH=noarch override
games/supertuxkart-extra-karts: Hardcode ARCH=noarch
games/supertuxkart-extra-tracks: Hardcode ARCH=narch
graphics/gimpfx-foundry: Hardcode ARCH=noarch
libraries/perl-IO-Socket-SSL: Fix ARCH setting (this is not noarch)
misc/funny-manpages: Hardcode ARCH=noarch
multimedia/get_iplayer: Hardcode ARCH=noarch
network/airoscript: Hardcode ARCH=noarch
network/youtube-dl: Hardcode ARCH=noarch
system/bleachbit: Hardcode ARCH=noarch
system/mucommander: Hardcode ARCH=noarch
+--------------------------+
Sun Jul  4 07:18:00 UTC 2010
audio/ocp: Updated for version 0.1.20.
development/bluefish: Updated for version 2.0.1.
development/codeblocks: Added (a C++ IDE).
development/gnome-common: Added (scripts/macros for gnome devel).
development/julius: Added (speech recognition decoder software).
libraries/gstreamermm: Added (C++ bindings for GStreamer).
libraries/libowfat: Added (a reimplemented libdjb under GPLv2).
libraries/perl-Config-IniFiles: Updated for version 2.58.
libraries/perl-Test-Pod: Updated for version 1.44.
multimedia/ffmpeg2theora: Updated for version 0.27.
multimedia/flash-player-plugin: Added warning re security to README.
network/clamav-unofficial-sigs: Updated for version 3.7.1.
network/perl-Net-CIDR: Updated for version 0.14.
office/gnumeric: Updated for version 1.10.7.
system/zeroinstall-injector: Updated for version 0.49.
+--------------------------+
Sat Jul  3 18:13:15 UTC 2010
development/monotone: Added (A Distributed Version Control System)
graphics/jhead: Added (JPEG Exif header manipulation tool)
libraries/Botan: Fixed broken package config file.
misc/ibus-qt: Updated for version 1.3.0.
multimedia/mkvtoolnix: Updated for version 4.1.0.
+--------------------------+
Sat Jul  3 07:35:01 UTC 2010
academic/gwyddion: Updated for version 2.20.
academic/qgis: Patched to disable broken SIP version check
accessibility/easystroke: Updated for version 0.5.3.
audio/lash: Source download URL changed.
business/skrooge: Added (KDE4 Finance Application)
development/bouml_doc: Added (docs for bouml)
development/dpkg: Added (Debian's dpkg utility)
development/eclipse: Updated for version 3.6.
development/rapidsvn: Updated for version 0.12.0_1.
games/mednafen: Updated for version 0.8.D.
games/pingus: Added (A free Lemmings clone)
games/prboom: Added (a port of the classic fps game Doom by id Software)
games/pysolfc: Updated for version 2.0.
games/wormux: Updated for version 0.9.2.1.
graphics/GraphicsMagick: Added (Image Processing System)
graphics/gpscorrelate: Updated for version 1.6.1.
graphics/luminance-hdr: Added (replaces qtpfsgui)
graphics/qtpfsgui: Removed (replaced by luminance-hdr)
libraries/cuneiform: Updated for version 1.0.0.
libraries/libgeotiff: Updated for version 1.3.0.
multimedia/bombono-dvd: Added (Author DVD Freely)
network/driftnet: Updated for version 0.1.6_p20090401.
network/opera: Updated for version 10.60.
network/phpmyadmin: Updated for version 3.3.4.
network/sphinx: Updated for version 0.9.9.
office/adobe-reader: Updated for version 9.3.3.
office/kmymoney: Added (personal finance app)
system/lxdm: Added (GUI login manager for LXDE)
system/postgresql: Updated for version 8.4.4.
system/rkhunter: Updated for version 1.3.6.
system/unrtf: Updated for version 0.21.1.
system/xf86-input-evtouch: Added (X.org touchscreen driver)
+--------------------------+
Fri Jul  2 17:34:34 UTC 2010
desktop/QtCurve-KDE4: Updated for version 1.5.0.
desktop/enlightenment: Updated for version 0.16.999.49898.
desktop/recoll: Added (full text search tool)
development/medit: Added (text editor)
development/vile: Added (VI Like Emacs)
development/xvile: Added (vile with x11 support)
games/bsnes: Updated for version 0.065.
graphics/dcraw: Updated for version 9.03.
libraries/Nevow: Added (web app kit in python)
libraries/e_dbus: Updated for version 0.5.0.49898.
libraries/ecore: Updated for version 0.9.9.49898.
libraries/edje: Updated for version 0.9.99.49898.
libraries/eet: Updated for version 1.3.2.
libraries/efreet: Updated for version 0.5.0.49898.
libraries/eina: Updated for version 0.9.9.49898.
libraries/embryo: Updated for version 0.9.9.49898.
libraries/evas: Updated for version 0.9.9.49898.
libraries/exiftool: Updated for version 8.15.
libraries/libjingle: Fixed download link in .info file
libraries/xapian-core: Updated for version 1.0.21.
misc/ciso: Added (compress PSP iso to cso format)
misc/uni2ascii: Added (unicode to ascii converter)
network/kvirc: Updated for version 4.0.0.
network/urlgrabber: Fixed homepage and download link
system/biew: Added (Binary vIEW)
system/eventlog: Added (Syslog API replacement)
system/hebe: Added (KDE GUI for the Hercules z/Arch emulator)
system/laptop-mode-tools: Added (laptop power saving package)
system/qstardict: Added (stardict clone in qt)
+--------------------------+
Thu Jul  1 08:16:01 UTC 2010
audio/python-audiotools: Added (CLI audio handling programs)
business/gnucash: Patched to build with goffice-0.8.x API.
desktop/CurseTheWeather: Updated for version 0.6.
desktop/QtCurve-Gtk2: Updated for version 1.5.0.
desktop/dmenu: Updated for version 4.1.1.
desktop/parcellite: Updated for version 0.9.2.
desktop/wmweather: Updated for version 2.4.5.
desktop/yawp: Added (Yet Another Weather Plasmoid)  :-)
development/perl-Tidy: Added (perl script indent/reformat tool)
libraries/c-ares: Updated for version 1.7.3.
libraries/perl-Net-Daemon: Added (portable daemons in perl)
misc/clawsker: Updated for version 0.7.2.
misc/nfoview: Updated for version 1.9.1.
network/node: Added (JavaScript toolkit)
network/pidgin-knotify: Added (KDE notifications in pidgin)
network/pidgin-sound: Added (sound notifications for pidgin)
network/skype: Updated for version 2.1.0.81.
system/mbootpack: Added (multiboot kernel/module packer)
+--------------------------+
Thu Jul  1 05:10:47 UTC 2010
graphics/tesseract: Added (OCR engine)
multimedia/gst-ffmpeg: Added (ffmpeg plugin for gstreamer)
network/iscsitarget: Changed maintainer info
network/quassel: Added (a qt4 IRC client)
system/pcsc-tools: Added (PC/SC smartcard reader tools)
system/vhba-module: Added (Virtual SCSI Host Bus adapter)
+--------------------------+
Wed Jun 30 05:27:29 UTC 2010
audio/rubberband: Added (tempo/pitch changing utility) 
audio/vamp-plugin-sdk: Added (audio plugin api)             
desktop/xplanet: Added (planetary and solar system image displayer)
development/bouml: Added (UML 2 tool box)         
games/SecondLife: Updated for version 2.0.1.203797                
graphics/gthumb: Added (image viewer for gnome)      
libraries/Geraldo: Added (reports engine for Python / Django apps)
libraries/imagick: Added (php extension for ImageMagick API)
libraries/libssh: Updated for version 0.4.4.   
libraries/opal: Fixed to build with ffmpeg-0.6.
libraries/podofo: Updated for version 0.8.1.
libraries/virtualenv: Updated for version 1.4.9.
misc/gnu-unifont: Added (GNU Unicode font)     
misc/viking: Updated for version 0.9.94.    
network/fldigi: Added (digital modem app for ham radio)
network/googlecl: Added (CLI for some google apps)
network/kismet: Added (NIDS tool)           
office/calibre: Updated for version 0.7.4.        
system/brasero: Added (gnome cd burning app)   
system/sftp-kio_slave: Added (sftp kio slave for kde)
+--------------------------+
Tue Jun 29 05:40:01 UTC 2010
academic/avogadro: Added (advanced molecular editor based on Qt 4)
audio/audacity: Patched to build with ffmpeg-0.6.
audio/mktoc: Added (Simple tool to create TOC files)
audio/mp3val: Added (check and fixing mp3 file integrity)
audio/mp3val: Added missing strip command.
desktop/cwp: Updated for version 1.0.5.
desktop/ffmpegthumbnailer: Updated for version 2.0.2.
desktop/metacity: Added (compositing window manager)
development/cppunit: Cleaned up build.
development/netbeans: Updated for version 6.9.
development/qt-doc: Updated for version 4.6.2.
games/desmume: Updated for version 0.9.6.
games/supertuxkart: Added (A 3D Kart racing game)
graphics/VariCAD: Updated for version 2010_2.08.
graphics/asciiquarium: Added (ASCII art)
graphics/exact-image: Added (image processing library)
libraries/Botan: Added (C++ crypto library)
libraries/hamlib: Added (ham radio control libraries)
libraries/libdv: Miscellaneous cleanups.
libraries/libkate: Added (codec for karaoke and text support in Ogg)
libraries/libsoup: Detect optional gnome components.
libraries/mygpoclient: Added (gpodder.net Client Library)
libraries/opencv: Updated for version 2.1.0.
libraries/perl-Astro-SunTime: Added (calculates sun rise/set times)
libraries/perl-Curses: Added (perl module for Curses)
libraries/perl-Date-Manip: Added (Date manipulation routines)
libraries/perl-Devel-Symdump: Added (Dump symbols)
libraries/perl-Device-SerialPort: Added (serial port access lib)
libraries/perl-Email-Date-Format: Added (produce RFC 2822 dates)
libraries/perl-MIME-Lite: Added (low-calorie MIME generator)
libraries/perl-PHP-Serialization: Added (PHP serialize() to perl)
libraries/perl-Pod-Coverage: Added (Check module documentation)
libraries/perl-Sys-Mmap: Added (maps in a file as a Perl variable)
libraries/perl-Term-Animation: Added (ASCII sprite animation)
libraries/perl-Test-Inter: Added (framework for test scripts)
libraries/perl-Test-Pod-Coverage: Added (Check pod coverage)
libraries/perl-Text-Autoformat: Updated for version 1.669002.
libraries/perl-Text-Reform: Cleaned up build.
libraries/perl-Time-modules: Added (Time manipulations)
libraries/perl-X10: Added (X10-based home automation)
libraries/perl-YAML-Syck: Added (YAML loader and dumper)
libraries/rlog: README needed ending newline
misc/ibus: Fixed panel.py in the tarball
misc/sunpinyin: Added (Chinese input method)
misc/xlog: Added (ham radio contact logging program)
multimedia/devede: Added (create video CDs and DVDs)
multimedia/dvdauthor: Updated for version 0.6.18.
multimedia/dvdbackup: Added (simple command line dvd backup)
multimedia/dvdrip: Added (DVD copying program)
multimedia/farsight2: Updated for version 0.0.20.
multimedia/ffmpeg: Updated for version 0.6.
multimedia/gpodder: Updated for version 2.6.
multimedia/guvcview: Updated for version 1.4.1.
multimedia/kino: Updated for version 1.3.4.
multimedia/loopy: Updated for version 0.5.3.
multimedia/x264: Updated for version 20100616.
network/NetworkManager-pptp: Fix README re description and deps
network/feedparser: Clean up build and change maintainer.
network/hostapd: Updated for version 0.6.10.
office/eqonomize: Update hicolor icon cache in doinst.sh.
office/sigil: Updated for version 0.2.1.
system/encfs: Added (encrypted virtual filesystem via FUSE)
system/gparted: Updated for version 0.6.0.
system/mbr: Added (Master Boot Record)
system/os-prober: Added (an OS detector)
system/parallel: Updated for version 20100601.
system/python-ranger: Added (curses file manager with vi bindings)
system/qemu-legacy: Cleaned up build.
system/roxterm: Updated for version 1.18.4.
system/ttf-bitstream-vera: Added (Bitstream Vera Fonts)
system/wine: Updated for version 1.1.44.
+--------------------------+
Wed Jun 23 00:42:50 UTC 2010
academic/scipy: Fixed homepage.
development/mysqlcc: Fixed qt3 linking on x86_64
libraries/equinox: Added (A gtk2 theme engine)
libraries/flashplugin-lahf-fix: Added (emulates LAHF instruction)
libraries/soundtouch: Added (audio processing library)
network/NetworkManager: Hackery to set static hostname
network/kbluetooth: Added (bluetooth application for KDE)
office/evince: "F" removal.
+--------------------------+
Sun Jun 20 20:23:43 UTC 2010
academic/scipy: Updated for version 0.7.2.
audio/mpd: Updated for version 0.15.10.
audio/qmmp: Added (qt-based audio player)
desktop/tint2: Updated for version 0.10.
development/easygui: Updated for version 0.95.
development/mysqlcc: Fix TMP value and old sourcedir removal
development/pydblite: Updated for version 2.5.
development/pylint: Updated for version 0.21.1.
games/cubosphere: Added ("Kula World" / "Roll Away" remake)
graphics/fotoxx: Updated for version 10.6.1.
graphics/xzgv: Added (picture viewer for X)
libraries/gdata: Updated for version 2.0.10.
libraries/logilab-astng: Updated for version 0.20.1.
libraries/logilab-common: Updated for version 0.50.3.
libraries/wxPython: Updated for version 2.8.11.0.
libraries/zziplib: Updated for version 0.13.59.
misc/ibus: Updated for version 1.3.5.
multimedia/guvcview: Updated for version 1.4.0.
multimedia/tovid: Added doinst.sh to update icon and desktop caches
multimedia/xvidcore: Fix detecting yasm-1.0.x.
network/efax-gtk: Updated for version 3.2.3.
network/iftop: Updated for version 0.17pre3.
network/sslscan: Added (SSL service query tool)
network/vidalia: Updated for version 0.2.9.
office/broffice.org: Updated for version 3.2.1.
office/homebank: Updated for version 4.3.
office/org-mode: Updated for version 6.36c.
system/aespipe: Added (AES encrypting or decrypting pipe)
system/gnu-fdisk: Added (fdisk from the GNU project)
system/kqemu: README modification re recent qemu versions
system/qemu-kvm: Updated for version 0.12.4.
system/qemu-legacy: Added (0.11.x branch of qemu)
system/sakura: Updated for version 2.3.8.
+--------------------------+
Thu Jun 17 23:16:31 UTC 2010
desktop/xfce4-taskmanager: Updated for version 1.0.0.
libraries/libebml: Updated for version 1.0.0.
libraries/libmatroska: Updated for version 1.0.0.
libraries/libvpx: Added. This is the WebM VP8 SDK.
multimedia/guvcview: Added (GTK+ UVC Viewer)
multimedia/mkvtoolnix: Updated for version 4.0.0.
multimedia/rtmpdump: Added. rtmpdump is a toolkit for RTMP streams.
office/abiword: Updated for version 2.8.6.
office/evince: Reverted to version 2.28.2.
+--------------------------+
Thu Jun 17 20:06:27 UTC 2010
development/amaya: Added (W3 Web Editor)
development/glade3: Added (GTK+2 ui development helper)
development/mysqlcc: Patched build on recent gcc
development/tig: Updated for version 0.16.
graphics/comix: Added (image viewer aimed at comics)
graphics/fbida: Added (image viewer)
graphics/zgv: Added (svgalib image viewer)
libraries/gtk-sharp: Added (GUI toolkit for mono)
libraries/log4net: Added (log tool for mono)
libraries/nini: Added (.NET configuration library)
libraries/smartirc4net: Added (C# IRC library)
libraries/xforms: Updated for version 1.0.93sp1.
misc/merkaartor: Updated for version 0.16.1.
misc/projectM: Added (Music visualization program)
network/freeradius-server: Added (Radius protocol server)
network/iscsitarget: Added (FOSS iSCSI target)
network/knemo: Update the hicolor icon cache in doinst.sh
network/pino: Added (Twitter and Identi.ca client)
network/smuxi: Added (an IRC client written C#)
office/lyx: Added (WYSIWYM document processor)
office/openoffice.org: Silence a harmless warning
system/ksh: Updated with newer cvs snapshot.
system/nut: Added (Network UPS Tools)
+--------------------------+
Wed Jun 16 22:12:31 UTC 2010
academic/flashqard: Added (FlashQard educational software)
audio/playmp3list: Added (simple MP3 playlist player)
desktop/ccsm: Added (CompizConfig Settings Manager)
desktop/emerald-themes: Added (Extra themes for the Emerald Decorator)
desktop/emerald: Added (Emerald Window Decorator)
desktop/fusion-icon: Added (A system tray tool for Compiz Fusion)
desktop/gtk-kde4: Updated for version 0.9.4.
games/pokerth: Updated for version 0.7.1.
libraries/compiz-bcop: Added (A BCOP code generator for Compiz Fusion)
libraries/compiz-plugins-extra: Added (Extra plugins for Compiz Fusion)
libraries/compiz-plugins-main: Added (Main supported plugins for Compiz Fusion)
libraries/compiz-plugins-unsupported: Added (Unsupported plugins for Compiz Fusion)
libraries/compizconfig-backend-kconfig4: Added (kconfig backend for Compiz Fusion)
libraries/compizconfig-python: Added (Python bindings for compiz config)
libraries/fltk2: Updated for version 2.0.x-r7513.
libraries/libcanberra: Added (XDG Sound Theme and Name Spec implementation)
libraries/libcompizconfig: Added (A configuration library for Compiz Fusion)
libraries/libwww-perl: Updated for version 5.836.
libraries/perl-event: Updated for version 1.13.
libraries/perl-html-parser: Updated for version 3.65.
libraries/pywebkitgtk: Updated for version 1.1.7.
multimedia/ffmpeg: Updated for version 0.5.2.
multimedia/minitube: Updated for version 1.0.
multimedia/miro: Added (Online media aggregator)
multimedia/transcode: Patched to eliminate libjpeg segault.
multimedia/x264: Updated for version 20100524.
network/knemo: Updated for version 0.6.2.
network/tor: Updated for version 0.2.1.26.
network/wifi-radar: Added (wireless network config utility)
system/bacula-client: Updated for version 5.0.2.
system/bacula: Updated for version 5.0.2.
+--------------------------+
Wed Jun 16 05:12:19 UTC 2010
libraries/libbonobo: Updated for version 2.24.3.
libraries/libbonoboui: Updated for version 2.24.3.
libraries/libgee: Updated for version 0.5.1.
libraries/libgnome: Updated for version 2.28.0.
libraries/libgnomeui: Updated for version 2.24.3.
libraries/libjpeg-turbo: Updated for version 0.0.93.
libraries/libtasn1: Updated for version 2.2.
misc/gnome-keyring: Updated for version 2.28.2.
system/gnome-vfs: Updated for version 2.24.3.
system/gtklp: Added (gui admin tools for cups)
+--------------------------+
Tue Jun 15 11:43:28 UTC 2010
academic/abntex: Fixed LYXDIR setting in Makefile patch
academic/flann: Added (FANN library)
audio/clementine: Updated for version 0.3.
audio/shell-fm: Updated for version git20100614.
desktop/gnome-colors: Updated for version 5.5.1.
desktop/ion: Miscellaneous script cleanup.
desktop/wally: Added (wallpaper changer)
development/fpc: Updated for version 2.4.0.
development/qt-creator: Added (Cross-Platform Qt IDE)
development/viewvc: Added (cvs/svn browser interface)
development/yasm: Updated for version 1.0.1.
libraries/libtbb: Added (Intel® Threading Building Blocks)
misc/gramps: Updated for version 3.2.3.
misc/mdic: Added (multilingual dictionary)
multimedia/subtitleripper: Added (DVD Subtitle Ripper)
office/calibre: Updated for version 0.7.2.
office/grisbi: Updated for version 0.6.0.
office/sigil: Added (WYSIWYG ebook editor)
system/grub4dos: Additions to README re lilo chainloading
system/ranger: Updated for version 1.1.0.
+--------------------------+
Mon Jun 14 19:47:41 UTC 2010
audio/portmidi: Build fixes for x86_64
games/darkplaces: Added (crossplatform quake mod)
games/darkplaces_shareware_data: Added (quake shareware data files)
games/fceux: Updated for version 2.1.4a.
games/jag: Added (A 2D arcade puzzle game)
games/pasang-emas: Added (a two-player game of Brunei)
games/rezerwar: Updated for version 0.4.2.
games/xmoto: Added (2D motocross platform game)
libraries/libnice: Updated for version 0.0.12.
libraries/pypoppler: Updated for version 0.12.1.
multimedia/farsight2: Updated for version 0.0.19.
multimedia/oggvideotools: Updated for version 0.8a.
multimedia/xbmc: Added (Multi-platform Media Center)
multimedia/xvst: Updated for version 2.4.
network/NetworkManager-openconnect: Noted openconnect dep in README
network/nginx: Added (http server and reverse proxy)
network/openconnect: Added (Client for Cisco's AnyConnect SSL VPN)
system/halevt: Updated for version 0.1.6.2.
system/imwheel: Miscellaneous cleanups.
system/lrzip: Updated for version 0.46.
+--------------------------+
Mon Jun 14 02:19:00 UTC 2010
audio/gogglesmm: Added (music collection manager/player)
audio/mp3splt-gtk: Added (gtk ui for mp3splt)
audio/mp3splt: Updated for version 2.2.8.
audio/musicmanager: Removed (now known as gogglesmm)
desktop/xmobar: Updated for version 0.11.1.
development/ghc: Miscellaneous cleanups.
development/p4: Added (cli client for Perforce)
development/pyenchant: Added (spellcheck library in python)
graphics/brlcad: Updated for version 7.16.8.
graphics/fig2sxd: Updated for version 0.21.
graphics/optipng: Updated for version 0.6.4.
graphics/qcad-partlibrary: Added (PART library for qcad)
graphics/qcad: Added (CAD application)
libraries/haskell-parsec: Noted mtl dep in README.
libraries/libmp3splt: Updated for version 0.5.9.
libraries/pygtksourceview: Updated for version 2.10.1.
libraries/tinyxml: Updated for version 2.6.1.
libraries/webkit: Updated for version r61056.
misc/cwiid: Added (tools for the Nintendo Wiimote)
multimedia/cdcat: Added (gui catalog program)
network/NetworkManager: Fixed default nm-system-settings.conf, fixed the path
  to wpa_supplicant binary in the dbus config file, and noted addons and such 
  in README.
network/exim-html: Updated for version 4.72.
network/exim: Updated for version 4.72.
network/midori: Updated for version 0.2.6.
network/pidgin-toobars: Added (extra toolbars for Pidgin BL)
network/putty: Added (telnet/ssh implementation)
office/html2ps: Added (html to postscript converter)
office/keepnote: Updated for version 0.6.2.
system/audit: Added (Auditing System Daemon)
system/graveman: Miscellaneous fixes and enhancements.
+--------------------------+
Sun Jun 13 04:47:39 UTC 2010
development/ddd: Added (a debugger gui)
games/bsnes: Updated for version 0.064.
games/ioquake3: Added (open source Quake 3 distribution)
games/wesnoth: Updated for version 1.8.1.
games/xspacewarp: Added (a "Star Trek" genre game)
graphics/LDView: Patched to fix usage with NVidia cards
graphics/leocad: Added (CAD program for lego-like bricks)
libraries/GConf: Updated for version 2.28.1.
libraries/goffice: Updated for version 0.8.5.
libraries/libhid: Added (abstraction library for HID devices)
libraries/libvmime-zarafa: Added (libvmime patched for zarafa)
libraries/libvmime: Added (mail library in C++)
network/ModemManager: Added (mobile broadband modem API)
network/NetworkManager-openconnect: Added (Cisco AnyConnect support)
network/NetworkManager-openvpn: Added (OpenVPN Support for NM)
network/NetworkManager-pptp: Added (PPTP VPN Support for NM)
network/NetworkManager-vpnc: Added (VPNC Support for NM)
network/NetworkManager: Added (Networking that Just Works)
network/b43-firmware: Updated for version 4.174.64.19.
network/b43-fwcutter: Updated for version 013.
network/mobile-broadband-provider-info: Added (provider settings)
network/network-manager-applet: Added (NetworkManager Applet)
network/shorewall6: Updated for version 4.4.10.
network/shorewall: Updated for version 4.4.10.
network/zarafa-webaccess-ajax: Added (Zarafa web access module)
network/zarafa: Added (MS Exchange Server replacement)
office/gnumeric: Added (GNOME spreadsheet app)
system/pyserial: Reverted maintainer change.
system/wine: Added (win32 API implementation)
+--------------------------+
Sat Jun 12 12:50:05 UTC 2010
desktop/QtCurve-Gtk2: Updated for version 1.4.1.
desktop/QtCurve-KDE4: Updated for version 1.4.3.
desktop/cwp: Updated for version 1.0.4.
desktop/tint2: Fixed "Zero-2" CFLAG.
development/kdesvn: Updated for version 1.5.3.
development/pip: Updated for version 0.7.2.
development/python3: Updated for version 3.1.2.
libraries/ORBit2: Updated for version 2.4.18.
libraries/cssutils: Updated for version 0.9.7b2.
libraries/gtksourceview: Updated for version 2.10.1.
libraries/libglademm: Fixed SLKCFLAGS for i686.
libraries/libsoup: Updated for version 2.30.1.
libraries/libtorrent-rasterbar: Updated for version 0.15.0.
libraries/podofo: Updated for version 0.8.0.
libraries/wxGTK: Updated for version 2.8.11.
libraries/yaz: Updated for version 4.0.9.
misc/nfoview: Small fix and cleanups.
multimedia/GoogleEarth: Updated for version 5.1.3535.3218.
multimedia/gst-plugins-bad: Updated for version 0.10.18.
multimedia/gst-plugins-ugly: Updated for version 0.10.14.
network/RSSOwl: Updated for version 2.0.5.
network/bitlbee: Updated for version 1.2.7.
network/pidgin-facebookchat: Updated for version 1.67.
network/wireshark: Updated for version 1.2.9.
office/fbreader: Updated for version 0.12.10.
office/openoffice.org: Updated for version 3.2.1.
system/dosbox: Updated for version 0.74.
system/gdm: Updated for version 2.20.11.
system/grub4dos: Added (bootloader based on GNU GRUB)
system/lbench: Added (system benchmark tool)
system/parallel: Updated for version 20100601.
system/pyserial: Updated for version 2.5_rc2.
system/roxterm: Updated for version 1.18.3.
system/zeroinstall-injector: Updated for version 0.48.
+--------------------------+
Wed Jun  9 07:24:26 UTC 2010
academic/octave: fftw is included in Slackware now.
academic/scipy: fftw is included in Slackware now.
audio/shntool: Fixed typo in README.
audio/swh-plugins: fftw is included in Slackware now.
development/yasm: Fix typo in README.
games/openttd: Updated for version 1.0.1.
libraries/CEGUI: libxml2 is included in Slackware.
libraries/librsync: Script cleanup.
misc/g15stats: Fixed typo in README.
multimedia/exaile: Fixed typo in README.
multimedia/kino: Fixed typo in README.
network/pflogsumm: Clean up README and fixed typo.
system/drbd-tools: Renamed from system/drbd per maintainer.
system/nvidia-legacy173-kernel: Fix ordering of arch detection.
system/nvidia-legacy96-kernel: Fix ordering of arch detection.
+--------------------------+
Sun Jun  6 06:42:04 UTC 2010
misc/ibus: Miscellaneous cleanups.
multimedia/farsight2: Fix build with recent libnice
network/claws-mail: Update the hicolor icon cache in doinst.sh
system/nvidia-kernel: Fix ordering of arch detection
system/qemu-kvm: Remove NAME= setting from udev rules file
system/rubygems: Removed (part of Slackware ruby package)
system/tiger: Correct md5sum in .info file
+--------------------------+
Sat Jun  5 05:46:20 UTC 2010
This batch is mostly just a bunch of automated cleanups to bring everything
  up to date with the latest template(s), with a few bugfixes and updates
  scattered around here and there.
We're hoping to open up the submission form real soon now, but for now,
  have a look at our new/updated templates, which are now hosted in a
  directory at http://slackbuilds.org/templates/ (and are also available in
  a git repo for those so inclined).
academic/GMT: Misc automated cleanups.
academic/R: Misc automated cleanups.
academic/WordNet: Misc automated cleanups.
academic/bibletime: Misc automated cleanups.
academic/calc: Misc automated cleanups.
academic/calcoo: Misc automated cleanups.
academic/cblas: Misc automated cleanups.
academic/chemtool: Misc automated cleanups.
academic/engauge: Misc automated cleanups.
academic/ent: Misc automated cleanups.
academic/galculator: Misc automated cleanups.
academic/gcompris: Misc automated cleanups.
academic/geda-gaf: Misc automated cleanups.
academic/genius: Misc automated cleanups.
academic/ggobi: Misc automated cleanups.
academic/ghemical: Misc automated cleanups.
academic/glpk: Misc automated cleanups.
academic/grace: Misc automated cleanups.
academic/grpn: Misc automated cleanups.
academic/gtkwave: Misc automated cleanups.
academic/gtypist: Misc automated cleanups.
academic/gwyddion: Misc automated cleanups.
academic/itex2mml: Misc automated cleanups.
academic/jpicedt: Misc automated cleanups.
academic/kile: Misc automated cleanups.
academic/ladr: Misc automated cleanups.
academic/lapack95: Misc automated cleanups.
academic/libghemical: Misc automated cleanups.
academic/link-grammar: Misc automated cleanups.
academic/mathomatic: Misc automated cleanups.
academic/maxima: Misc automated cleanups.
academic/mendeleydesktop: Misc automated cleanups.
academic/mopac7: Misc automated cleanups.
academic/mpqc: Misc automated cleanups.
academic/octave-forge: Misc automated cleanups.
academic/octave: Misc automated cleanups.
academic/orsa: Misc automated cleanups.
academic/qgis: Misc automated cleanups.
academic/qhull: Misc automated cleanups.
academic/qtoctave: Misc automated cleanups.
academic/rkward: Misc automated cleanups.
academic/scipy: Misc automated cleanups.
academic/slatec: Misc automated cleanups.
academic/solfege: Misc automated cleanups.
academic/speedcrunch: Misc automated cleanups.
academic/stellarium: Misc automated cleanups.
academic/sword: Misc automated cleanups.
academic/tuxmath: Misc automated cleanups.
academic/tuxtype2: Misc automated cleanups.
academic/units: Misc automated cleanups.
academic/verilog: Misc automated cleanups.
academic/words: Misc automated cleanups.
academic/wxMaxima: Misc automated cleanups.
academic/wxmacmolplt: Misc automated cleanups.
academic/xcircuit: Misc automated cleanups.
academic/xephem: Misc automated cleanups.
accessibility/easystroke: Misc automated cleanups.
accessibility/espeak: Misc automated cleanups.
accessibility/flite: Misc automated cleanups.
accessibility/jpilot: Misc automated cleanups.
accessibility/unclutter: Misc automated cleanups.
accessibility/xdotool: Misc automated cleanups.
audio/TiMidity++: Misc automated cleanups.
audio/a52dec: Misc automated cleanups.
audio/abcde: Misc automated cleanups.
audio/aften: Misc automated cleanups.
audio/amrnb: Misc automated cleanups.
audio/amrwb: Misc automated cleanups.
audio/ardour: Misc automated cleanups.
audio/ario: Misc automated cleanups.
audio/asunder: Misc automated cleanups.
audio/audacity: Misc automated cleanups.
audio/audacity: Update to 1.3.12
audio/audtty: Misc automated cleanups.
audio/caps: Misc automated cleanups.
audio/cd-discid: Misc automated cleanups.
audio/celt: Misc automated cleanups.
audio/clementine: Misc automated cleanups.
audio/cmt: Misc automated cleanups.
audio/cmus: Misc automated cleanups.
audio/cuberok: Misc automated cleanups.
audio/dcd: Misc automated cleanups.
audio/deadbeef: Misc automated cleanups.
audio/eyeD3: Misc automated cleanups.
audio/faac: Added external libmp4v2 patch.
audio/faac: Misc automated cleanups.
audio/faad2: Misc automated cleanups.
audio/flac123: Misc automated cleanups.
audio/fluidsynth: Misc automated cleanups.
audio/gimmix: Misc automated cleanups.
audio/gmpc-plugins: Misc automated cleanups.
audio/gmpc: Misc automated cleanups.
audio/gmusicbrowser: Misc automated cleanups.
audio/gnomad2: Misc automated cleanups.
audio/gnump3d: Misc automated cleanups.
audio/gtkpod: Misc automated cleanups.
audio/herrie: Misc automated cleanups.
audio/hydrogen: Misc automated cleanups.
audio/icecast: Misc automated cleanups.
audio/ices: Misc automated cleanups.
audio/id3: miscellaneous cleanups
audio/id3v2: Misc automated cleanups.
audio/iripdb: Misc automated cleanups.
audio/jack-audio-connection-kit: Misc automated cleanups.
audio/jamin: Misc automated cleanups.
audio/kanola: Misc automated cleanups.
audio/kid3: Misc automated cleanups.
audio/ladspa_sdk: Misc automated cleanups.
audio/lash: Misc automated cleanups.
audio/last.fm: Misc automated cleanups.
audio/lingot: Misc automated cleanups.
audio/listener: Misc automated cleanups.
audio/lv2core: Misc automated cleanups.
audio/mac: Misc automated cleanups.
audio/milkytracker: Misc automated cleanups.
audio/mixxx: Misc automated cleanups.
audio/moc: Misc automated cleanups.
audio/mp3blaster: Misc automated cleanups.
audio/mp3c: Misc automated cleanups.
audio/mp3check: Misc automated cleanups.
audio/mp3gain: Misc automated cleanups.
audio/mp3info: Misc automated cleanups.
audio/mp3splt: Misc automated cleanups.
audio/mpc123: Misc automated cleanups.
audio/mpc: Misc automated cleanups.
audio/mpd: Misc automated cleanups.
audio/mpdscribble: Misc automated cleanups.
audio/mt-daapd: Misc automated cleanups.
audio/musepack-tools: Misc automated cleanups.
audio/musicmanager: Misc automated cleanups.
audio/mutagen: Misc automated cleanups.
audio/ncmpc: Misc automated cleanups.
audio/ncmpcpp: Misc automated cleanups.
audio/ocp: Misc automated cleanups.
audio/ogmtools: Misc automated cleanups.
audio/opencore-amr: Misc automated cleanups.
audio/pd: Misc automated cleanups.
audio/phat: Misc automated cleanups.
audio/pmidi: Misc automated cleanups.
audio/portmidi: Misc automated cleanups.
audio/qjackctl: Misc automated cleanups.
audio/qsynth: Misc automated cleanups.
audio/rakarrack: Misc automated cleanups.
audio/rosegarden: Misc automated cleanups.
audio/schismtracker: Misc automated cleanups.
audio/sfarkxtc: Misc automated cleanups.
audio/shell-fm: Misc automated cleanups.
audio/shntool: Misc automated cleanups.
audio/shorten: Misc automated cleanups.
audio/sonata: Misc automated cleanups.
audio/specimen: Misc automated cleanups.
audio/speex: Misc automated cleanups.
audio/streamripper: Misc automated cleanups.
audio/streamtuner: Misc automated cleanups.
audio/swh-plugins: Misc automated cleanups.
audio/tagtool: Misc automated cleanups.
audio/twolame: Misc automated cleanups.
audio/vorbisgain: Misc automated cleanups.
audio/xforge: Misc automated cleanups.
audio/xmms-scrobbler: Misc automated cleanups.
audio/xmms-shn: Misc automated cleanups.
audio/xmms2: Misc automated cleanups.
business/AssociationSubscribersManager: Misc automated cleanups.
business/gnucash: Misc automated cleanups.
business/lemonpos: Misc automated cleanups.
business/openerp-client: Misc automated cleanups.
business/openerp-server: Misc automated cleanups.
desktop/CurseTheWeather: Misc automated cleanups.
desktop/QtCurve-Gtk2: Misc automated cleanups.
desktop/QtCurve-KDE4: Misc automated cleanups.
desktop/afterstep: Misc automated cleanups.
desktop/avant-window-navigator: Misc automated cleanups.
desktop/brightside: Misc automated cleanups.
desktop/cmatrix: Misc automated cleanups.
desktop/crystal: Misc automated cleanups.
desktop/cwp: Misc automated cleanups.
desktop/dekorator: Misc automated cleanups.
desktop/devilspie: Misc automated cleanups.
desktop/dmenu: Misc automated cleanups.
desktop/dzen2: Misc automated cleanups.
desktop/enlightenment: Misc automated cleanups.
desktop/fbpanel: Misc automated cleanups.
desktop/ffmpegthumbnailer: Misc automated cleanups.
desktop/google-gadgets-for-linux: Misc automated cleanups.
desktop/grun: Misc automated cleanups.
desktop/gtk-chtheme: Misc automated cleanups.
desktop/gtk-engines: Misc automated cleanups.
desktop/gtk-kde4: Misc automated cleanups.
desktop/gtk-nodoka-engine: Misc automated cleanups.
desktop/hsetroot: Misc automated cleanups.
desktop/icewm: Misc automated cleanups.
desktop/ion: Misc automated cleanups.
desktop/kanyremote: Misc automated cleanups.
desktop/kcometen4: Misc automated cleanups.
desktop/kover: Misc automated cleanups.
desktop/lxpanel: Misc automated cleanups.
desktop/macopix: Misc automated cleanups.
desktop/matchbox-desktop: Misc automated cleanups.
desktop/matchbox-panel: Misc automated cleanups.
desktop/matchbox-window-manager: Misc automated cleanups.
desktop/murrine: Misc automated cleanups.
desktop/musca: Misc automated cleanups.
desktop/nitrogen: Misc automated cleanups.
desktop/obconf: Misc automated cleanups.
desktop/odccm: Misc automated cleanups.
desktop/openbox: Misc automated cleanups.
desktop/parcellite: Misc automated cleanups.
desktop/pclock: Misc automated cleanups.
desktop/peksystray: Misc automated cleanups.
desktop/pekwm: Misc automated cleanups.
desktop/pidgin-guifications: Misc automated cleanups.
desktop/pidgin-libnotify: Misc automated cleanups.
desktop/plasma-applet-daisy: Misc automated cleanups.
desktop/q4wine: Misc automated cleanups.
desktop/qt-recordmydesktop: Misc automated cleanups.
desktop/qtwitter: Misc automated cleanups.
desktop/quickaccess: Misc automated cleanups.
desktop/ratpoison: Misc automated cleanups.
desktop/redshift: Misc automated cleanups.
desktop/root-tail: Misc automated cleanups.
desktop/rss-glx: Misc automated cleanups.
desktop/scrotwm: Misc automated cleanups.
desktop/slock: Misc automated cleanups.
desktop/sync-engine: Misc automated cleanups.
desktop/synce-hal: Misc automated cleanups.
desktop/synergy-plus: Misc automated cleanups.
desktop/synergy: Misc automated cleanups.
desktop/thunar-archive-plugin: Misc automated cleanups.
desktop/thunar-media-tags-plugin: Misc automated cleanups.
desktop/thunar-shares-plugin: Misc automated cleanups.
desktop/thunar-thumbnailers: Misc automated cleanups.
desktop/thunar-vcs-plugin: Misc automated cleanups.
desktop/tint2: Misc automated cleanups.
desktop/trayer: Misc automated cleanups.
desktop/vwm: Misc automated cleanups.
desktop/whaw: Misc automated cleanups.
desktop/windowlist: Misc automated cleanups.
desktop/wmCalClock: miscellaneous cleanups
desktop/wmMoonClock: miscellaneous cleanups
desktop/wmSun: miscellaneous cleanups
desktop/wmakerconf: miscellaneous cleanups
desktop/wmbiff: Misc automated cleanups.
desktop/wmcliphist: Misc automated cleanups.
desktop/wmclock: Misc automated cleanups.
desktop/wmctrl: Misc automated cleanups.
desktop/wmdate: Misc automated cleanups.
desktop/wmdl: Misc automated cleanups.
desktop/wmdrawer: Misc automated cleanups.
desktop/wmfire: Misc automated cleanups.
desktop/wmii: Misc automated cleanups.
desktop/wminfo: miscellaneous cleanups
desktop/wmmixer: Misc automated cleanups.
desktop/wmmon: Misc automated cleanups.
desktop/wmnet: miscellaneous cleanups
desktop/wmsm.app: Misc automated cleanups.
desktop/wmsystemtray: Misc automated cleanups.
desktop/wmtime: Misc automated cleanups.
desktop/wmtop: Misc automated cleanups.
desktop/wmvolman: Misc automated cleanups.
desktop/wmweather: miscellaneous cleanups
desktop/xfce4-clipman-plugin: Misc automated cleanups.
desktop/xfce4-cpugraph-plugin: Misc automated cleanups.
desktop/xfce4-datetime-plugin: Misc automated cleanups.
desktop/xfce4-dict: Misc automated cleanups.
desktop/xfce4-diskperf-plugin: Misc automated cleanups.
desktop/xfce4-fsguard-plugin: Misc automated cleanups.
desktop/xfce4-genmon-plugin: Misc automated cleanups.
desktop/xfce4-mailwatch-plugin: Misc automated cleanups.
desktop/xfce4-mount-plugin: Misc automated cleanups.
desktop/xfce4-mpc-plugin: Misc automated cleanups.
desktop/xfce4-netload-plugin: Misc automated cleanups.
desktop/xfce4-notes-plugin: Misc automated cleanups.
desktop/xfce4-places-plugin: Misc automated cleanups.
desktop/xfce4-quicklauncher-plugin: Misc automated cleanups.
desktop/xfce4-screenshooter: Added missing md5sum
desktop/xfce4-screenshooter: Misc automated cleanups.
desktop/xfce4-sensors-plugin: Misc automated cleanups.
desktop/xfce4-smartbookmark-plugin: Misc automated cleanups.
desktop/xfce4-systemload-plugin: Misc automated cleanups.
desktop/xfce4-taskmanager: Misc automated cleanups.
desktop/xfce4-time-out-plugin: Misc automated cleanups.
desktop/xfce4-timer-plugin: Misc automated cleanups.
desktop/xfce4-verve-plugin: Misc automated cleanups.
desktop/xfce4-volstatus-icon: Misc automated cleanups.
desktop/xfce4-volumed: Misc automated cleanups.
desktop/xfce4-wavelan-plugin: Misc automated cleanups.
desktop/xfce4-weather-plugin: Misc automated cleanups.
desktop/xfce4-xkb-plugin: Misc automated cleanups.
desktop/xfce4-xmms-plugin: Misc automated cleanups.
desktop/xfswitch-plugin: Misc automated cleanups.
desktop/xmobar: Misc automated cleanups.
desktop/xmobar: Update to 0.11.1 and change maintainer.
desktop/xmonad: Misc automated cleanups.
desktop/xonclock: Misc automated cleanups.
desktop/xpenguins: Misc automated cleanups.
desktop/xsession: Misc automated cleanups.
desktop/xtrascreenhacks: Misc automated cleanups.
desktop/xvkbd: Misc automated cleanups.
desktop/zenity: Misc automated cleanups.
development/Cython: Misc automated cleanups.
development/MySQL-python: Misc automated cleanups.
development/PyOpenGL: Added missing download link
development/PyOpenGL: Misc automated cleanups.
development/SQLAlchemy: Misc automated cleanups.
development/SoQt: Misc automated cleanups.
development/Xdialog: Misc automated cleanups.
development/acpica: Misc automated cleanups.
development/alex: Misc automated cleanups.
development/apache-ivy: Misc automated cleanups.
development/asl: Misc automated cleanups.
development/avr-binutils: Misc automated cleanups.
development/avr-gcc: Misc automated cleanups.
development/avr8-burn-o-mat: Misc automated cleanups.
development/avrdude: Misc automated cleanups.
development/bakefile: Misc automated cleanups.
development/bluefish: Misc automated cleanups.
development/bpython: Misc automated cleanups.
development/bsdiff: Misc automated cleanups.
development/bvi: Misc automated cleanups.
development/bzr: Misc automated cleanups.
development/cc65: Misc automated cleanups.
development/cgdb: Misc automated cleanups.
development/cim: Fixed non-working download link
development/cim: Misc automated cleanups.
development/couchdb: Misc automated cleanups.
development/cppcheck: Misc automated cleanups.
development/cppunit: Misc automated cleanups.
development/django: Misc automated cleanups.
development/docutils: Misc automated cleanups.
development/easygui: Misc automated cleanups.
development/egenix-mx-base: Misc automated cleanups.
development/eric: Misc automated cleanups.
development/erlang-otp: Misc automated cleanups.
development/esvn: Misc automated cleanups.
development/facile: Misc automated cleanups.
development/flawfinder: Misc automated cleanups.
development/freeglut: Misc automated cleanups.
development/ftjam: Misc automated cleanups.
development/gazpacho: Misc automated cleanups.
development/gc: Misc automated cleanups.
development/geany: Misc automated cleanups.
development/gob2: Misc automated cleanups.
development/gprolog: Misc automated cleanups.
development/gputils: Misc automated cleanups.
development/grails: Misc automated cleanups.
development/gsoap: Misc automated cleanups.
development/gtkdialog: Misc automated cleanups.
development/happy: Misc automated cleanups.
development/help2man: Misc automated cleanups.
development/hexedit: Misc automated cleanups.
development/ht: Misc automated cleanups.
development/hugs98: Misc automated cleanups.
development/icecream: Misc automated cleanups.
development/icoutils: Misc automated cleanups.
development/ipython: Misc automated cleanups.
development/jam: Misc automated cleanups.
development/jeex: Misc automated cleanups.
development/kdesvn: Misc automated cleanups.
development/kdiff3: Misc automated cleanups.
development/kiwi: Misc automated cleanups.
development/latrace: Misc automated cleanups.
development/ldns: Misc automated cleanups.
development/llvm: Misc automated cleanups.
development/lua: Misc automated cleanups.
development/ming: Misc automated cleanups.
development/mono: Misc automated cleanups.
development/mtd-utils: Misc automated cleanups.
development/mysqlcc: Misc automated cleanups.
development/nose: Misc automated cleanups.
development/nsis: Misc automated cleanups.
development/numpy: Misc automated cleanups.
development/nvi: Misc automated cleanups.
development/ocaml: Misc automated cleanups.
development/orc: Misc automated cleanups.
development/osc: Misc automated cleanups.
development/p4v: Misc automated cleanups.
development/paramiko: Misc automated cleanups.
development/patchutils: Misc automated cleanups.
development/perl-Bit-Vector: Misc automated cleanups.
development/perl-Carp-Clan: Misc automated cleanups.
development/perl-Class-Gomor: Misc automated cleanups.
development/perl-Math-Base85: Misc automated cleanups.
development/perl-Net-IPv4Addr: Misc automated cleanups.
development/perl-Net-IPv6Addr: Misc automated cleanups.
development/perl-Net-Libdnet: Misc automated cleanups.
development/perl-Net-Packet: Misc automated cleanups.
development/perl-Net-Write: Misc automated cleanups.
development/perl-xml-twig: Misc automated cleanups.
development/pip: Misc automated cleanups.
development/poedit: Misc automated cleanups.
development/polyml: Misc automated cleanups.
development/portaudio: Misc automated cleanups.
development/psycopg2: Misc automated cleanups.
development/pychecker: Misc automated cleanups.
development/pycrypto: Misc automated cleanups.
development/pydblite: Misc automated cleanups.
development/pyflakes: Misc automated cleanups.
development/pylint: Misc automated cleanups.
development/pyparsing: Misc automated cleanups.
development/pysetuptools: Misc automated cleanups.
development/python-pmw: Misc automated cleanups.
development/python3: Misc automated cleanups.
development/qdoc3: Misc automated cleanups.
development/qdoc3: use the same download link as for qt-doc
development/qjson: Misc automated cleanups.
development/qt-doc: Misc automated cleanups.
development/quilt: Misc automated cleanups.
development/rapidsvn: Misc automated cleanups.
development/rarian: Misc automated cleanups.
development/re2c: Misc automated cleanups.
development/scala: Misc automated cleanups.
development/scite: Misc automated cleanups.
development/scons: Misc automated cleanups.
development/shed: Misc automated cleanups.
development/sloccount: Misc automated cleanups.
development/splint: Misc automated cleanups.
development/sqliteman: Misc automated cleanups.
development/stgit: Misc automated cleanups.
development/teagtk: Misc automated cleanups.
development/tig: Misc automated cleanups.
development/trac: Misc automated cleanups.
development/udis86: Misc automated cleanups.
development/vala: Misc automated cleanups.
development/valgrind: Misc automated cleanups.
development/valkyrie: Misc automated cleanups.
development/xdebug: Misc automated cleanups.
development/xmlcopyeditor: Misc automated cleanups.
development/xmlstarlet: Misc automated cleanups.
development/xtruss: Misc automated cleanups.
development/yaml: Misc automated cleanups.
development/yasm: Misc automated cleanups.
development/zope.interface: Misc automated cleanups.
development/zope.sqlalchemy: Misc automated cleanups.
development/zope.testing: Misc automated cleanups.
games/Chatbot-Eliza: Misc automated cleanups.
games/FlightGear-data: Misc automated cleanups.
games/FlightGear: Misc automated cleanups.
games/abe: Misc automated cleanups.
games/advancemame: Misc automated cleanups.
games/advancescan: Misc automated cleanups.
games/an: Misc automated cleanups.
games/angband: Misc automated cleanups.
games/assaultcube: Misc automated cleanups.
games/atari++: Misc automated cleanups.
games/blobwars: Misc automated cleanups.
games/brainparty: Misc automated cleanups.
games/brickout: Misc automated cleanups.
games/brutalchess: Misc automated cleanups.
games/bsnes: Misc automated cleanups.
games/bzflag: Misc automated cleanups.
games/chromium-bsu: Misc automated cleanups.
games/circuslinux: Misc automated cleanups.
games/ckmame: Misc automated cleanups.
games/clonekeen: Misc automated cleanups.
games/defendguin: Misc automated cleanups.
games/desmume: Misc automated cleanups.
games/dreamchess: Misc automated cleanups.
games/egoboo: Misc automated cleanups.
games/einstein: Misc automated cleanups.
games/extremetuxracer: Misc automated cleanups.
games/fceux: Misc automated cleanups.
games/fgrun: Misc automated cleanups.
games/freeciv: Misc automated cleanups.
games/freedroidrpg: Misc automated cleanups.
games/frozen-bubble: Misc automated cleanups.
games/generator_cbiere: Misc automated cleanups.
games/gens-gs: Misc automated cleanups.
games/gl-117: Misc automated cleanups.
games/glbsp: Misc automated cleanups.
games/glest: Misc automated cleanups.
games/gnubg: Misc automated cleanups.
games/gnuski: Misc automated cleanups.
games/gtklife: Misc automated cleanups.
games/icebreaker: Misc automated cleanups.
games/jfsw: Misc automated cleanups.
games/jzintv: Misc automated cleanups.
games/koules: Misc automated cleanups.
games/lbreakout2: Misc automated cleanups.
games/lightyears: Misc automated cleanups.
games/lincity-ng: Misc automated cleanups.
games/liquidwar6: Misc automated cleanups.
games/loemu: Misc automated cleanups.
games/ltris: miscellaneous cleanups
games/madbomber: Misc automated cleanups.
games/maelstrom: Misc automated cleanups.
games/mednafen: Misc automated cleanups.
games/mfe: Misc automated cleanups.
games/micropolis: Misc automated cleanups.
games/monkey-bubble: Misc automated cleanups.
games/mupen64plus: Misc automated cleanups.
games/neverball: Misc automated cleanups.
games/openarena: Misc automated cleanups.
games/openttd: Misc automated cleanups.
games/pcsxr: Misc automated cleanups.
games/pengupop: Misc automated cleanups.
games/pokerth: Misc automated cleanups.
games/polyglot: Misc automated cleanups.
games/pysolfc: Misc automated cleanups.
games/qmc2: Misc automated cleanups.
games/rejoystick: Misc automated cleanups.
games/rezerwar: Misc automated cleanups.
games/robotfindskitten: Misc automated cleanups.
games/rott: Misc automated cleanups.
games/scid: Misc automated cleanups.
games/sdlmess: Misc automated cleanups.
games/sl: Misc automated cleanups.
games/smc: Misc automated cleanups.
games/snes9x: Misc automated cleanups.
games/starfighter: Misc automated cleanups.
games/stella: Misc automated cleanups.
games/supertux: Misc automated cleanups.
games/tmw: Misc automated cleanups.
games/toga2: Misc automated cleanups.
games/tome: Misc automated cleanups.
games/tomenet: Misc automated cleanups.
games/torcs: Misc automated cleanups.
games/trackballs: Misc automated cleanups.
games/tuxnes: Misc automated cleanups.
games/typhoon_2001: Misc automated cleanups.
games/uqm: Misc automated cleanups.
games/vbam: Misc automated cleanups.
games/vectoroids: Misc automated cleanups.
games/warzone2100: Misc automated cleanups.
games/wesnoth: Misc automated cleanups.
games/worldofgoo: Misc automated cleanups.
games/wormux: Misc automated cleanups.
games/xaos: Misc automated cleanups.
games/xbill: Misc automated cleanups.
games/xcowsay: Misc automated cleanups.
games/xroar: Misc automated cleanups.
games/xskat: Misc automated cleanups.
games/yabause: Misc automated cleanups.
games/z26: Misc automated cleanups.
games/zsnes: Misc automated cleanups.
graphics/FreeCAD: Misc automated cleanups.
graphics/OpenCASCADE: Misc automated cleanups.
graphics/VariCAD: Misc automated cleanups.
graphics/autopano-sift-C: Misc automated cleanups.
graphics/blender: Fixed ARCH setting bug
graphics/brlcad: Misc automated cleanups.
graphics/dcraw: Misc automated cleanups.
graphics/dia: Misc automated cleanups.
graphics/digikam: Misc automated cleanups.
graphics/discwrapper: Misc automated cleanups.
graphics/djview4: Misc automated cleanups.
graphics/exiftags: Misc automated cleanups.
graphics/feh: Misc automated cleanups.
graphics/fig2sxd: Misc automated cleanups.
graphics/fontforge: Misc automated cleanups.
graphics/fontmatrix: Misc automated cleanups.
graphics/fotowall: Misc automated cleanups.
graphics/fotoxx: Misc automated cleanups.
graphics/gimp-deskew-plugin: Misc automated cleanups.
graphics/gimp-lqr-plugin: Misc automated cleanups.
graphics/gimp-registry-plugins: Misc automated cleanups.
graphics/gliv: Misc automated cleanups.
graphics/goocanvas: Misc automated cleanups.
graphics/gpicview: Misc automated cleanups.
graphics/gpscorrelate: Misc automated cleanups.
graphics/graphviz: Misc automated cleanups.
graphics/gtkam: Misc automated cleanups.
graphics/inkscape: Misc automated cleanups.
graphics/jpeg2ps: Misc automated cleanups.
graphics/kipi-plugins: Misc automated cleanups.
graphics/kphotoalbum: Misc automated cleanups.
graphics/ldglite: Misc automated cleanups.
graphics/metapixel: Misc automated cleanups.
graphics/mftrace: Misc automated cleanups.
graphics/mtpaint: Misc automated cleanups.
graphics/nvidia-cg-toolkit: Misc automated cleanups.
graphics/opengtl: Misc automated cleanups.
graphics/optipng: Misc automated cleanups.
graphics/plotutils: Misc automated cleanups.
graphics/potrace: Misc automated cleanups.
graphics/povray: Misc automated cleanups.
graphics/qcomicbook: Misc automated cleanups.
graphics/qiv: Misc automated cleanups.
graphics/qtpfsgui: Misc automated cleanups.
graphics/raw-thumbnailer: Misc automated cleanups.
graphics/resynthesizer: Misc automated cleanups.
graphics/ristretto: Misc automated cleanups.
graphics/scantailor: Misc automated cleanups.
graphics/scrot: Misc automated cleanups.
graphics/svp: Misc automated cleanups.
graphics/tgif-QPL: Misc automated cleanups.
graphics/tuxpaint: Misc automated cleanups.
graphics/ufraw: Misc automated cleanups.
graphics/unpaper: Misc automated cleanups.
graphics/viewnior: Misc automated cleanups.
graphics/whyteboard: Misc automated cleanups.
graphics/xdot: Misc automated cleanups.
graphics/xpe: Misc automated cleanups.
graphics/yagf: Misc automated cleanups.
libraries/BeautifulSoup: Misc automated cleanups.
libraries/CEGUI: Misc automated cleanups.
libraries/CherryPy: Misc automated cleanups.
libraries/ClientForm: Misc automated cleanups.
libraries/Crypt-SSLeay: Misc automated cleanups.
libraries/DevIL: Misc automated cleanups.
libraries/FormEncode: Misc automated cleanups.
libraries/FreeImage: Misc automated cleanups.
libraries/GConf: Misc automated cleanups.
libraries/Impacket: Misc automated cleanups.
libraries/Mako: Misc automated cleanups.
libraries/Net-SSLeay: Misc automated cleanups.
libraries/ORBit2: Misc automated cleanups.
libraries/OpenAL: Misc automated cleanups.
libraries/OpenSceneGraph: Misc automated cleanups.
libraries/OpenSceneGraph: fixed wrong md5sum
libraries/PyQwt: Misc automated cleanups.
libraries/PyXML: Misc automated cleanups.
libraries/PythonDaap: Misc automated cleanups.
libraries/QuantLib-Python: Misc automated cleanups.
libraries/QuantLib: Misc automated cleanups.
libraries/SDL_Pango: Misc automated cleanups.
libraries/SDL_perl: Misc automated cleanups.
libraries/SDL_sound: Misc automated cleanups.
libraries/SOAPpy: Misc automated cleanups.
libraries/SQLObject: Misc automated cleanups.
libraries/SimGear: Misc automated cleanups.
libraries/afflib: Misc automated cleanups.
libraries/agg: Misc automated cleanups.
libraries/ant-contrib: Misc automated cleanups.
libraries/argparse: Misc automated cleanups.
libraries/argtable: Misc automated cleanups.
libraries/aubio: Misc automated cleanups.
libraries/barry: Misc automated cleanups.
libraries/blas: Misc automated cleanups.
libraries/boolstuff: Misc automated cleanups.
libraries/bsddb3: Misc automated cleanups.
libraries/c-ares: Misc automated cleanups.
libraries/cairomm: Misc automated cleanups.
libraries/cbase: Misc automated cleanups.
libraries/cddb-py: Misc automated cleanups.
libraries/cdk: Misc automated cleanups.
libraries/cln: Misc automated cleanups.
libraries/clutter-gtk: Misc automated cleanups.
libraries/clutter: Misc automated cleanups.
libraries/configobj: Misc automated cleanups.
libraries/confuse: Misc automated cleanups.
libraries/cracklib: Misc automated cleanups.
libraries/cryptopp: Misc automated cleanups.
libraries/cssutils: Misc automated cleanups.
libraries/cuneiform: Misc automated cleanups.
libraries/darcsver: Misc automated cleanups.
libraries/db46: Misc automated cleanups.
libraries/decorator: Misc automated cleanups.
libraries/dnspython: Misc automated cleanups.
libraries/e_dbus: Misc automated cleanups.
libraries/eaccelerator: Misc automated cleanups.
libraries/ecore: Misc automated cleanups.
libraries/edje: Misc automated cleanups.
libraries/eet: Misc automated cleanups.
libraries/efreet: Misc automated cleanups.
libraries/eina: Misc automated cleanups.
libraries/embryo: Misc automated cleanups.
libraries/enca: Misc automated cleanups.
libraries/evas: Misc automated cleanups.
libraries/exempi: Misc automated cleanups.
libraries/exiftool: Misc automated cleanups.
libraries/ffcall: Misc automated cleanups.
libraries/fltk2: Misc automated cleanups.
libraries/fltk: Misc automated cleanups.
libraries/fmodapi: Misc automated cleanups.
libraries/foolscap: Misc automated cleanups.
libraries/fox-toolkit: Misc automated cleanups.
libraries/fpconst: Misc automated cleanups.
libraries/freealut: Misc automated cleanups.
libraries/frei0r: Misc automated cleanups.
libraries/ftgl: Misc automated cleanups.
libraries/gdal: Misc automated cleanups.
libraries/gdata: Misc automated cleanups.
libraries/gdk-pixbuf: miscellaneous cleanups
libraries/genshi: Misc automated cleanups.
libraries/geos: Misc automated cleanups.
libraries/ggz-base-libs: Misc automated cleanups.
libraries/giblib: Misc automated cleanups.
libraries/ginac: Misc automated cleanups.
libraries/glibmm: Misc automated cleanups.
libraries/gnet: Misc automated cleanups.
libraries/gnome-python: Misc automated cleanups.
libraries/gobject-introspection: Misc automated cleanups.
libraries/goffice: Misc automated cleanups.
libraries/gsl: Misc automated cleanups.
libraries/gsm: Misc automated cleanups.
libraries/gsnmp: Misc automated cleanups.
libraries/gst-python: Misc automated cleanups.
libraries/gtk-aurora-engine: Misc automated cleanups.
libraries/gtk-qt-engine: Misc automated cleanups.
libraries/gtkglarea: Misc automated cleanups.
libraries/gtkglext: Misc automated cleanups.
libraries/gtkhtml: Misc automated cleanups.
libraries/gtkimageview: Misc automated cleanups.
libraries/gtkmm: Misc automated cleanups.
libraries/gtksourceview: Misc automated cleanups.
libraries/guichan: Misc automated cleanups.
libraries/haskell-HTTP: Misc automated cleanups.
libraries/haskell-HUnit: Misc automated cleanups.
libraries/haskell-QuickCheck: Misc automated cleanups.
libraries/haskell-X11-xft: Misc automated cleanups.
libraries/haskell-X11: Misc automated cleanups.
libraries/haskell-cgi: Misc automated cleanups.
libraries/haskell-deepseq: Misc automated cleanups.
libraries/haskell-editline: Misc automated cleanups.
libraries/haskell-fgl: Misc automated cleanups.
libraries/haskell-haskeline: Misc automated cleanups.
libraries/haskell-haskell-src: Misc automated cleanups.
libraries/haskell-hinotify: Misc automated cleanups.
libraries/haskell-html: Misc automated cleanups.
libraries/haskell-mtl: Misc automated cleanups.
libraries/haskell-network: Misc automated cleanups.
libraries/haskell-packedstring: Misc automated cleanups.
libraries/haskell-parallel: Misc automated cleanups.
libraries/haskell-parsec: Misc automated cleanups.
libraries/haskell-regex-base: Misc automated cleanups.
libraries/haskell-regex-compat: Misc automated cleanups.
libraries/haskell-regex-posix: Misc automated cleanups.
libraries/haskell-stm: Misc automated cleanups.
libraries/haskell-terminfo: Misc automated cleanups.
libraries/haskell-xhtml: Misc automated cleanups.
libraries/hdf5: Misc automated cleanups.
libraries/iaxclient: Misc automated cleanups.
libraries/icu4c: Misc automated cleanups.
libraries/id3lib: Misc automated cleanups.
libraries/ilbc: Misc automated cleanups.
libraries/imlib2: Misc automated cleanups.
libraries/jbigkit: Misc automated cleanups.
libraries/json-glib: Misc automated cleanups.
libraries/json-py: Misc automated cleanups.
libraries/lablgtk: Misc automated cleanups.
libraries/lame: Misc automated cleanups.
libraries/lapack: Misc automated cleanups.
libraries/lensfun: Misc automated cleanups.
libraries/libAfterImage: Misc automated cleanups.
libraries/libEMF: Misc automated cleanups.
libraries/libaosd: Misc automated cleanups.
libraries/libapreq2: Misc automated cleanups.
libraries/libass: Misc automated cleanups.
libraries/libast: Misc automated cleanups.
libraries/libatomic_ops: Misc automated cleanups.
libraries/libavc1394: Misc automated cleanups.
libraries/libbonobo: Misc automated cleanups.
libraries/libbonoboui: Misc automated cleanups.
libraries/libburn: Misc automated cleanups.
libraries/libcap-ng: Misc automated cleanups.
libraries/libchamplain: Misc automated cleanups.
libraries/libchewing: Misc automated cleanups.
libraries/libcli: Misc automated cleanups.
libraries/libcsv: Misc automated cleanups.
libraries/libcue: Misc automated cleanups.
libraries/libcuefile: Misc automated cleanups.
libraries/libdaemon: Misc automated cleanups.
libraries/libdbi-drivers: Misc automated cleanups.
libraries/libdbi: Misc automated cleanups.
libraries/libdc1394: Misc automated cleanups.
libraries/libdca: Misc automated cleanups.
libraries/libdmtx: Misc automated cleanups.
libraries/libdockapp: Misc automated cleanups.
libraries/libdv: Misc automated cleanups.
libraries/libdvbpsi: Misc automated cleanups.
libraries/libdvdcss: Misc automated cleanups.
libraries/libdvdnav: Misc automated cleanups.
libraries/libdynamite: Misc automated cleanups.
libraries/libeXosip2: Misc automated cleanups.
libraries/libebml: Misc automated cleanups.
libraries/libedit: Misc automated cleanups.
libraries/libelf: Misc automated cleanups.
libraries/libesmtp: Misc automated cleanups.
libraries/libetpan: Misc automated cleanups.
libraries/libev: Misc automated cleanups.
libraries/libevent: Misc automated cleanups.
libraries/libewf: Misc automated cleanups.
libraries/libexif-gtk: Misc automated cleanups.
libraries/libflashsupport: Misc automated cleanups.
libraries/libfprint: Misc automated cleanups.
libraries/libfwbuilder: Misc automated cleanups.
libraries/libg15: Misc automated cleanups.
libraries/libg15render: Misc automated cleanups.
libraries/libgadu: Misc automated cleanups.
libraries/libgcal: Misc automated cleanups.
libraries/libgdiplus: Misc automated cleanups.
libraries/libgee: Misc automated cleanups.
libraries/libgeotiff: Misc automated cleanups.
libraries/libgig: Misc automated cleanups.
libraries/libgksu: Misc automated cleanups.
libraries/libglademm: Misc automated cleanups.
libraries/libglpng: Misc automated cleanups.
libraries/libgnome: Misc automated cleanups.
libraries/libgnomecanvas: Misc automated cleanups.
libraries/libgnomecups: Misc automated cleanups.
libraries/libgnomeprint: Misc automated cleanups.
libraries/libgnomeprintui: Misc automated cleanups.
libraries/libgnomeui: Misc automated cleanups.
libraries/libgringotts: Misc automated cleanups.
libraries/libgsasl: Misc automated cleanups.
libraries/libgtop: Misc automated cleanups.
libraries/libiec61883: Misc automated cleanups.
libraries/libimobiledevice: Misc automated cleanups.
libraries/libiptcdata: Misc automated cleanups.
libraries/libisoburn: Misc automated cleanups.
libraries/libisofs: Misc automated cleanups.
libraries/libixp: Misc automated cleanups.
libraries/libjingle: Misc automated cleanups.
libraries/libjpeg-turbo: Misc automated cleanups.
libraries/liblinebreak: Misc automated cleanups.
libraries/liblo: Misc automated cleanups.
libraries/liblqr: Misc automated cleanups.
libraries/liblrdf: Misc automated cleanups.
libraries/liblscp: Misc automated cleanups.
libraries/libmaa: Misc automated cleanups.
libraries/libmatchbox: Misc automated cleanups.
libraries/libmatroska: Misc automated cleanups.
libraries/libmemcached: Misc automated cleanups.
libraries/libmicrohttpd: Misc automated cleanups.
libraries/libmikmod: Misc automated cleanups.
libraries/libmimedir: Misc automated cleanups.
libraries/libmimic: Misc automated cleanups.
libraries/libmirage: Misc automated cleanups.
libraries/libmms: Misc automated cleanups.
libraries/libmp3splt: Misc automated cleanups.
libraries/libmp4v2: Misc automated cleanups.
libraries/libmpcdec: Misc automated cleanups.
libraries/libmpd: Misc automated cleanups.
libraries/libmpdclient: Misc automated cleanups.
libraries/libmpeg2: Misc automated cleanups.
libraries/libmspack: Misc automated cleanups.
libraries/libmusicbrainz3: Misc automated cleanups.
libraries/libmusicbrainz: Misc automated cleanups.
libraries/libnet: Misc automated cleanups.
libraries/libnetfilter_conntrack: Misc automated cleanups.
libraries/libnetfilter_log: Misc automated cleanups.
libraries/libnetfilter_queue: Misc automated cleanups.
libraries/libnfnetlink: Misc automated cleanups.
libraries/libnice: Misc automated cleanups.
libraries/libnxml: Misc automated cleanups.
libraries/libofa: Misc automated cleanups.
libraries/libofx: Misc automated cleanups.
libraries/liboglappth: Misc automated cleanups.
libraries/liboop: Misc automated cleanups.
libraries/libopenraw: Misc automated cleanups.
libraries/libopensync-plugin-file: Misc automated cleanups.
libraries/libopensync-plugin-syncml: Misc automated cleanups.
libraries/libopensync: Misc automated cleanups.
libraries/libosip2: Misc automated cleanups.
libraries/libotf: Misc automated cleanups.
libraries/libotr: Misc automated cleanups.
libraries/libpano13: Misc automated cleanups.
libraries/libpaper: Misc automated cleanups.
libraries/libpar2: Misc automated cleanups.
libraries/libplist: Misc automated cleanups.
libraries/libproxy: Misc automated cleanups.
libraries/libpseudo: Misc automated cleanups.
libraries/libquicktime: Misc automated cleanups.
libraries/librapi2: Misc automated cleanups.
libraries/librcd: Misc automated cleanups.
libraries/libreplaygain: Misc automated cleanups.
libraries/librra: Misc automated cleanups.
libraries/librsync: Misc automated cleanups.
libraries/librtfcomp: Misc automated cleanups.
libraries/libsexy: Misc automated cleanups.
libraries/libshout: Misc automated cleanups.
libraries/libsigc++: Misc automated cleanups.
libraries/libsmbios: Misc automated cleanups.
libraries/libsmi: Misc automated cleanups.
libraries/libsndfile: Misc automated cleanups.
libraries/libsoup: Misc automated cleanups.
libraries/libssh2: Misc automated cleanups.
libraries/libssh: Misc automated cleanups.
libraries/libsynce: Misc automated cleanups.
libraries/libsyncml: Misc automated cleanups.
libraries/libtar: Misc automated cleanups.
libraries/libtasn1: Misc automated cleanups.
libraries/libtorrent-rasterbar: Misc automated cleanups.
libraries/libtorrent: Misc automated cleanups.
libraries/libtunepimp: Misc automated cleanups.
libraries/libunique: Misc automated cleanups.
libraries/libvdpau: Misc automated cleanups.
libraries/libvidcap: Misc automated cleanups.
libraries/libviper: Misc automated cleanups.
libraries/libvirt: Misc automated cleanups.
libraries/libwbxml: Misc automated cleanups.
libraries/libwhisker2: Misc automated cleanups.
libraries/libwpg: Misc automated cleanups.
libraries/libwww-perl: Misc automated cleanups.
libraries/libx86emu: Misc automated cleanups.
libraries/libxmi: Misc automated cleanups.
libraries/libxml++: Misc automated cleanups.
libraries/lightblue: Misc automated cleanups.
libraries/locale-gettext: Misc automated cleanups.
libraries/logilab-astng: Misc automated cleanups.
libraries/logilab-common: Misc automated cleanups.
libraries/lxml: Misc automated cleanups.
libraries/matplotlib: Re-added and updated to 0.99.1.2.
libraries/meanwhile: Misc automated cleanups.
libraries/mechanize: Misc automated cleanups.
libraries/mini18n: Misc automated cleanups.
libraries/mmpython: Misc automated cleanups.
libraries/mxml: Misc automated cleanups.
libraries/mysql++: Misc automated cleanups.
libraries/netcdf: Misc automated cleanups.
libraries/nltk: Misc automated cleanups.
libraries/ode: Misc automated cleanups.
libraries/opal: Misc automated cleanups.
libraries/openbabel: Misc automated cleanups.
libraries/opencv: Misc automated cleanups.
libraries/openjpeg: Misc automated cleanups.
libraries/openmotif: Misc automated cleanups.
libraries/ortp: Misc automated cleanups.
libraries/pangomm: Misc automated cleanups.
libraries/perl-Archive-Zip: Misc automated cleanups.
libraries/perl-BerkeleyDB: Misc automated cleanups.
libraries/perl-Cache-FastMmap: Misc automated cleanups.
libraries/perl-Config-IniFiles: Misc automated cleanups.
libraries/perl-Convert-BinHex: Misc automated cleanups.
libraries/perl-Convert-TNEF: Misc automated cleanups.
libraries/perl-Convert-UUlib: Misc automated cleanups.
libraries/perl-Crypt-OpenSSL-Bignum: Misc automated cleanups.
libraries/perl-Crypt-OpenSSL-RSA: Misc automated cleanups.
libraries/perl-Crypt-OpenSSL-Random: Misc automated cleanups.
libraries/perl-DBD-Pg: Misc automated cleanups.
libraries/perl-Date-Calc: Misc automated cleanups.
libraries/perl-Encode-Detect: Misc automated cleanups.
libraries/perl-ExtUtils-XSBuilder: Misc automated cleanups.
libraries/perl-File-Slurp: Misc automated cleanups.
libraries/perl-Geography-Countries: Misc automated cleanups.
libraries/perl-IO-stringy: Misc automated cleanups.
libraries/perl-IP-Country: Misc automated cleanups.
libraries/perl-Image-Info: Misc automated cleanups.
libraries/perl-Magick: Misc automated cleanups.
libraries/perl-Net-LibIDN: Misc automated cleanups.
libraries/perl-Net-Telnet: Misc automated cleanups.
libraries/perl-Parse-RecDescent: Misc automated cleanups.
libraries/perl-Sub-Uplevel: Misc automated cleanups.
libraries/perl-Test-Exception: Misc automated cleanups.
libraries/perl-Test-Pod: Misc automated cleanups.
libraries/perl-Text-Autoformat: Misc automated cleanups.
libraries/perl-Text-Reform: Misc automated cleanups.
libraries/perl-Tie-IxHash: Misc automated cleanups.
libraries/perl-TimeDate: Misc automated cleanups.
libraries/perl-cairo: Misc automated cleanups.
libraries/perl-class-accessor: Misc automated cleanups.
libraries/perl-dbd-sqlite: Misc automated cleanups.
libraries/perl-dbd-sqlite: Trivial fixups
libraries/perl-digest-hmac: Misc automated cleanups.
libraries/perl-digest-sha1: Misc automated cleanups.
libraries/perl-event: Misc automated cleanups.
libraries/perl-extutils-depends: Misc automated cleanups.
libraries/perl-extutils-pkgconfig: Misc automated cleanups.
libraries/perl-file-path-expand: Misc automated cleanups.
libraries/perl-glib: Misc automated cleanups.
libraries/perl-gtk2: Misc automated cleanups.
libraries/perl-html-parser: Misc automated cleanups.
libraries/perl-html-tagset: Misc automated cleanups.
libraries/perl-libintl: Misc automated cleanups.
libraries/perl-lirc-client: Misc automated cleanups.
libraries/perl-net-dns: Misc automated cleanups.
libraries/perl-net-ip: Misc automated cleanups.
libraries/perl-test-number-delta: Misc automated cleanups.
libraries/perl-tk: Misc automated cleanups.
libraries/perl-trayicon: Misc automated cleanups.
libraries/perl-xml-libxml-common: Misc automated cleanups.
libraries/perl-xml-libxml: Misc automated cleanups.
libraries/perl-xml-namespacesupport: Misc automated cleanups.
libraries/perl-xml-sax: Misc automated cleanups.
libraries/pexpect: Misc automated cleanups.
libraries/pgtcl-ng: Misc automated cleanups.
libraries/physfs: Fixed a syntax error, script cleanup.
libraries/physfs: Misc automated cleanups.
libraries/plib: Misc automated cleanups.
libraries/pthsem: Misc automated cleanups.
libraries/ptlib: Misc automated cleanups.
libraries/purple-plugin_pack: Misc automated cleanups.
libraries/pyPdf: Misc automated cleanups.
libraries/pybluez: Misc automated cleanups.
libraries/pychart: Misc automated cleanups.
libraries/pychm: Misc automated cleanups.
libraries/pycryptopp: Misc automated cleanups.
libraries/pycurl: Misc automated cleanups.
libraries/pydot: Misc automated cleanups.
libraries/pyfltk: Misc automated cleanups.
libraries/pygame: Misc automated cleanups.
libraries/pygoocanvas: Misc automated cleanups.
libraries/pygoogle: Misc automated cleanups.
libraries/pygtksourceview: Misc automated cleanups.
libraries/pyicu: Misc automated cleanups.
libraries/pyorbit: Misc automated cleanups.
libraries/pypoppler: Misc automated cleanups.
libraries/pyquery: Misc automated cleanups.
libraries/pytables: Misc automated cleanups.
libraries/python-cluster: Misc automated cleanups.
libraries/python-dateutil: Misc automated cleanups.
libraries/python-distutils-extra: Misc automated cleanups.
libraries/python-lastfm: Misc automated cleanups.
libraries/python-mpd: Misc automated cleanups.
libraries/python-musicbrainz2: Misc automated cleanups.
libraries/python-spidermonkey: Misc automated cleanups.
libraries/python-transaction: Misc automated cleanups.
libraries/python-twitter: Misc automated cleanups.
libraries/python-xlib: Misc automated cleanups.
libraries/python2-chardet: Misc automated cleanups.
libraries/pytz: Misc automated cleanups.
libraries/pyusb: Misc automated cleanups.
libraries/pyutil: Misc automated cleanups.
libraries/pywebkitgtk: Misc automated cleanups.
libraries/pyxdg: Misc automated cleanups.
libraries/pyyaml: Misc automated cleanups.
libraries/qoauth: Misc automated cleanups.
libraries/reportlab: Misc automated cleanups.
libraries/rhino: Misc automated cleanups.
libraries/rlog: Misc automated cleanups.
libraries/ruby-gtk2: Misc automated cleanups.
libraries/rxtx: Misc automated cleanups.
libraries/sexy-python: Misc automated cleanups.
libraries/simplejson: Misc automated cleanups.
libraries/slib: Misc automated cleanups.
libraries/slv2: Misc automated cleanups.
libraries/subvertpy: Misc automated cleanups.
libraries/tagpy: Misc automated cleanups.
libraries/tcllib: Misc automated cleanups.
libraries/tinyxml: Misc automated cleanups.
libraries/tls: Misc automated cleanups.
libraries/tolua++: Misc automated cleanups.
libraries/tre: Misc automated cleanups.
libraries/unixODBC: Misc automated cleanups.
libraries/virtualenv: Misc automated cleanups.
libraries/vobject: Misc automated cleanups.
libraries/webkit: Misc automated cleanups.
libraries/wvstreams: Misc automated cleanups.
libraries/wxPython: Misc automated cleanups.
libraries/wxX11: Misc automated cleanups.
libraries/wxsvg: Misc automated cleanups.
libraries/xalan-c: Misc automated cleanups.
libraries/xalan: Misc automated cleanups.
libraries/xapian-core: Misc automated cleanups.
libraries/xerces: Misc automated cleanups.
libraries/xforms: Misc automated cleanups.
libraries/xlt: Misc automated cleanups.
libraries/xmltv_prereq: Misc automated cleanups.
libraries/xmonad-contrib: Misc automated cleanups.
libraries/xulrunner: Misc automated cleanups.
libraries/yaz: Misc automated cleanups.
libraries/zbase32: Misc automated cleanups.
libraries/zfec: Misc automated cleanups.
libraries/zsi: Misc automated cleanups.
libraries/zziplib: Misc automated cleanups.
misc/ascii: Misc automated cleanups.
misc/bchunk: Misc automated cleanups.
misc/beep: Misc automated cleanups.
misc/boncuk: Misc automated cleanups.
misc/bsdsfv: Misc automated cleanups.
misc/chm2pdf: Misc automated cleanups.
misc/chmlib-examples: Misc automated cleanups.
misc/cksfv: miscellaneous cleanups
misc/conkyforecast: Misc automated cleanups.
misc/dbview: Misc automated cleanups.
misc/dwdiff: Misc automated cleanups.
misc/fcitx: Misc automated cleanups.
misc/figlet: Misc automated cleanups.
misc/fileinfo: Misc automated cleanups.
misc/fribid: Misc automated cleanups.
misc/g15composer: Misc automated cleanups.
misc/g15daemon: Misc automated cleanups.
misc/g15stats: Misc automated cleanups.
misc/gcolor2: Misc automated cleanups.
misc/gnome-keyring: Misc automated cleanups.
misc/gnome-mime-data: Misc automated cleanups.
misc/gramps: Misc automated cleanups.
misc/gxmessage: Misc automated cleanups.
misc/heyu: Misc automated cleanups.
misc/htscanner: Misc automated cleanups.
misc/ibus-anthy: Misc automated cleanups.
misc/ibus-pinyin: Misc automated cleanups.
misc/ibus-qt: Misc automated cleanups.
misc/ibus-unikey: Misc automated cleanups.
misc/ibus: Misc automated cleanups.
misc/jmri: Misc automated cleanups.
misc/kasumi: Misc automated cleanups.
misc/krename: Misc automated cleanups.
misc/lbdb: Misc automated cleanups.
misc/lxappearance: Misc automated cleanups.
misc/matchbox-common: Misc automated cleanups.
misc/megatunix: Misc automated cleanups.
misc/merkaartor: Misc automated cleanups.
misc/misctools: Misc automated cleanups.
misc/nfoview: Misc automated cleanups.
misc/nvclock: Misc automated cleanups.
misc/ophcrack: Misc automated cleanups.
misc/par2cmdline: Misc automated cleanups.
misc/par: Misc automated cleanups.
misc/pinfo: Misc automated cleanups.
misc/protobuf: Misc automated cleanups.
misc/recode: Misc automated cleanups.
misc/rlwrap: Misc automated cleanups.
misc/rsnapshot: Misc automated cleanups.
misc/scim-chewing: Misc automated cleanups.
misc/siege: Misc automated cleanups.
misc/siege: fixed wrong md5sum
misc/stardict: Misc automated cleanups.
misc/tal: Misc automated cleanups.
misc/tangogps: Misc automated cleanups.
misc/task: Misc automated cleanups.
misc/vdpauinfo: Misc automated cleanups.
misc/viking: Misc automated cleanups.
misc/xclip: Misc automated cleanups.
misc/xdelta: Misc automated cleanups.
multimedia/2ManDVD: Misc automated cleanups.
multimedia/DivFix++: Misc automated cleanups.
multimedia/GoogleEarth: Misc automated cleanups.
multimedia/LiVES: fixed link to lives-exe binary
multimedia/Songbird: Misc automated cleanups.
multimedia/anyremote: Misc automated cleanups.
multimedia/avidemux: Misc automated cleanups.
multimedia/avidemux: Miscellaneous fixes.
multimedia/cuetools: Misc automated cleanups.
multimedia/dirac: Misc automated cleanups.
multimedia/dssi: Misc automated cleanups.
multimedia/dvdauthor: Misc automated cleanups.
multimedia/dvdstyler: Misc automated cleanups.
multimedia/dvgrab: miscellaneous cleanups
multimedia/emoc: Misc automated cleanups.
multimedia/exaile: Misc automated cleanups.
multimedia/farsight2: Misc automated cleanups.
multimedia/ffmpeg2theora: Misc automated cleanups.
multimedia/ffmpeg: Misc automated cleanups.
multimedia/flvtool2: Misc automated cleanups.
multimedia/gaupol: Misc automated cleanups.
multimedia/gecko-mediaplayer: Misc automated cleanups.
multimedia/gigedit: Misc automated cleanups.
multimedia/gnome-mplayer: Misc automated cleanups.
multimedia/gpodder: Misc automated cleanups.
multimedia/grip: Misc automated cleanups.
multimedia/gst-gnome-vfs: Misc automated cleanups.
multimedia/gst-plugins-bad: Misc automated cleanups.
multimedia/gst-plugins-farsight: Misc automated cleanups.
multimedia/gst-plugins-ugly: Misc automated cleanups.
multimedia/gtk-recordmydesktop: Misc automated cleanups.
multimedia/hexter: Misc automated cleanups.
multimedia/iat: Misc automated cleanups.
multimedia/k9copy: Misc automated cleanups.
multimedia/kaffeine-mozilla: Misc automated cleanups.
multimedia/kaffeine: Misc automated cleanups.
multimedia/kdenlive: Misc automated cleanups.
multimedia/kino: Misc automated cleanups.
multimedia/linuxsampler: Misc automated cleanups.
multimedia/llcon: Misc automated cleanups.
multimedia/loopy: Misc automated cleanups.
multimedia/lsdvd: Misc automated cleanups.
multimedia/minitube: Misc automated cleanups.
multimedia/mjpegtools: miscellaneous cleanups
multimedia/mkvtoolnix: Misc automated cleanups.
multimedia/mlt: Misc automated cleanups.
multimedia/mozplugger: Misc automated cleanups.
multimedia/mpgtx: Misc automated cleanups.
multimedia/mplayer-codecs: Misc automated cleanups.
multimedia/mscore: Misc automated cleanups.
multimedia/mtpfs: Misc automated cleanups.
multimedia/mythplugins: Misc automated cleanups.
multimedia/mythtv: Misc automated cleanups.
multimedia/oggvideotools: Misc automated cleanups.
multimedia/openshot: Misc automated cleanups.
multimedia/picard: Misc automated cleanups.
multimedia/qsampler: Misc automated cleanups.
multimedia/schroedinger: Misc automated cleanups.
multimedia/seq24: Misc automated cleanups.
multimedia/smpeg: Misc automated cleanups.
multimedia/smplayer: Misc automated cleanups.
multimedia/stills2dv: Misc automated cleanups.
multimedia/subtitlecomposer: Misc automated cleanups.
multimedia/tabu_audio_player: Misc automated cleanups.
multimedia/tovid: Misc automated cleanups.
multimedia/transcode: Misc automated cleanups.
multimedia/tvtime: Misc automated cleanups.
multimedia/vcdimager: Misc automated cleanups.
multimedia/videocut: Misc automated cleanups.
multimedia/vkeybd: Misc automated cleanups.
multimedia/vobcopy: Misc automated cleanups.
multimedia/wxcam: miscellaneous cleanups
multimedia/x264: Misc automated cleanups.
multimedia/xfmedia: Misc automated cleanups.
multimedia/xmltv: Misc automated cleanups.
multimedia/xmms-crossfade: Misc automated cleanups.
multimedia/xvid4conf: Misc automated cleanups.
multimedia/xvidcore: Misc automated cleanups.
multimedia/xvst: Misc automated cleanups.
network/3proxy: Misc automated cleanups.
network/DMitry: Misc automated cleanups.
network/GeoIP: Misc automated cleanups.
network/GhostInTheMail: Misc automated cleanups.
network/SocksiPy: Misc automated cleanups.
network/aMule: Misc automated cleanups.
network/aircrack-ng: Misc automated cleanups.
network/airpwn: Misc automated cleanups.
network/allmydata-tahoe: Misc automated cleanups.
network/amap: Misc automated cleanups.
network/amavisd-new: Misc automated cleanups.
network/aria2: Misc automated cleanups.
network/arp-scan: Misc automated cleanups.
network/arptables: Misc automated cleanups.
network/asterisk: Misc automated cleanups.
network/authbind: Misc automated cleanups.
network/autossh: Misc automated cleanups.
network/avahi: Misc automated cleanups.
network/axel: Misc automated cleanups.
network/b43-fwcutter: Misc automated cleanups.
network/bitlbee: Misc automated cleanups.
network/bmon: Misc automated cleanups.
network/bsflite: Misc automated cleanups.
network/btpd: Misc automated cleanups.
network/cadaver: Misc automated cleanups.
network/centerim: Misc automated cleanups.
network/cgterm: Misc automated cleanups.
network/choqok: Misc automated cleanups.
network/claws-mail-extra-plugins: Misc automated cleanups.
network/claws-mail: Misc automated cleanups.
network/clive: Misc automated cleanups.
network/conntrack-tools: Misc automated cleanups.
network/corkscrew: Misc automated cleanups.
network/cryptcat-unix: Misc automated cleanups.
network/dansguardian: Misc automated cleanups.
network/darkstat: miscellaneous cleanups
network/ddclient: Misc automated cleanups.
network/deluge: Misc automated cleanups.
network/dillo: Misc automated cleanups.
network/dnsflood: Misc automated cleanups.
network/dnstop: Misc automated cleanups.
network/dnstracer: Misc automated cleanups.
network/dovecot-cmusieve: Misc automated cleanups.
network/dovecot: Misc automated cleanups.
network/driftnet: Misc automated cleanups.
network/dropbear: Misc automated cleanups.
network/efax-gtk: Misc automated cleanups.
network/ekiga: Misc automated cleanups.
network/elinks: Misc automated cleanups.
network/enet: Misc automated cleanups.
network/ettercap-NG: Misc automated cleanups.
network/exim: Misc automated cleanups.
network/fail2ban: Misc automated cleanups.
network/fdm: Misc automated cleanups.
network/feedparser: Misc automated cleanups.
network/filezilla: Misc automated cleanups.
network/flvstreamer: Misc automated cleanups.
network/fping6: Misc automated cleanups.
network/fping: Misc automated cleanups.
network/fqterm: Misc automated cleanups.
network/framework: Misc automated cleanups.
network/fwbuilder: Misc automated cleanups.
network/gnome-mail-notification: Misc automated cleanups.
network/gns3: Misc automated cleanups.
network/gnubiff: Misc automated cleanups.
network/greenbone-security-assistant: Misc automated cleanups.
network/grsync: Misc automated cleanups.
network/gwibber: Misc automated cleanups.
network/haproxy: Misc automated cleanups.
network/heimdal: Misc automated cleanups.
network/hiawatha: Misc automated cleanups.
network/hostapd: Misc automated cleanups.
network/hping3: miscellaneous cleanups
network/hydra: Misc automated cleanups.
network/hylafax: Misc automated cleanups.
network/icecat: Misc automated cleanups.
network/ifstatus: Misc automated cleanups.
network/iftop: Misc automated cleanups.
network/imapfilter: Misc automated cleanups.
network/inadyn: Misc automated cleanups.
network/iodine: Misc automated cleanups.
network/iperf: Misc automated cleanups.
network/ipvsadm: Misc automated cleanups.
network/irssi_otr: Misc automated cleanups.
network/isync: Misc automated cleanups.
network/js: Misc automated cleanups.
network/kadu: Misc automated cleanups.
network/kmess: Misc automated cleanups.
network/knemo: Misc automated cleanups.
network/knock: Misc automated cleanups.
network/konversation: Misc automated cleanups.
network/krb5: Misc automated cleanups.
network/kvirc: Misc automated cleanups.
network/leafnode: Misc automated cleanups.
network/libdnet: Misc automated cleanups.
network/liferea: Misc automated cleanups.
network/lighttpd: Misc automated cleanups.
network/linuxdcpp: Misc automated cleanups.
network/lurc: Misc automated cleanups.
network/macchanger: Misc automated cleanups.
network/maildrop: Misc automated cleanups.
network/mailman: Misc automated cleanups.
network/memcached: Misc automated cleanups.
network/mew: Misc automated cleanups.
network/midori: Misc automated cleanups.
network/mitter: Misc automated cleanups.
network/mldonkey: Misc automated cleanups.
network/mod_chroot: Misc automated cleanups.
network/mod_evasive: Misc automated cleanups.
network/mod_geoip2: Misc automated cleanups.
network/mod_hosts_access: Misc automated cleanups.
network/mod_limitipconn: Misc automated cleanups.
network/mod_perl: Misc automated cleanups.
network/mod_python: Misc automated cleanups.
network/mpop: Misc automated cleanups.
network/msmtp: Misc automated cleanups.
network/msn-proxy: Misc automated cleanups.
network/msynctool: Misc automated cleanups.
network/murmur: Misc automated cleanups.
network/museek+: Misc automated cleanups.
network/mz: Misc automated cleanups.
network/naim: Misc automated cleanups.
network/nbd: Misc automated cleanups.
network/ndiswrapper: Misc automated cleanups.
network/netcat: Misc automated cleanups.
network/nethogs: Misc automated cleanups.
network/netstat-nat: Misc automated cleanups.
network/ngrep: Misc automated cleanups.
network/nicotine+: Misc automated cleanups.
network/nikto: Misc automated cleanups.
network/nload: Misc automated cleanups.
network/nmh: Misc automated cleanups.
network/nrpe: Misc automated cleanups.
network/nss-mdns: Misc automated cleanups.
network/ntop: Misc automated cleanups.
network/ntpclient: Misc automated cleanups.
network/obexpushd: Misc automated cleanups.
network/offlineimap: Misc automated cleanups.
network/opendchub: Misc automated cleanups.
network/openntpd: Misc automated cleanups.
network/openrdate: Misc automated cleanups.
network/openvas-administrator: Misc automated cleanups.
network/openvas-client: Misc automated cleanups.
network/openvas-libraries: Misc automated cleanups.
network/openvas-manager: Misc automated cleanups.
network/openvas-scanner: Misc automated cleanups.
network/p0f: Misc automated cleanups.
network/packit: Misc automated cleanups.
network/pdnsd: Misc automated cleanups.
network/pebrot: Misc automated cleanups.
network/periscope: Misc automated cleanups.
network/perl-IO-Interface: Misc automated cleanups.
network/perl-IO-Socket-INET6: Misc automated cleanups.
network/perl-MIME-tools: Misc automated cleanups.
network/perl-Mail-DKIM: Misc automated cleanups.
network/perl-Mail-SPF: Misc automated cleanups.
network/perl-MailTools: Misc automated cleanups.
network/perl-Net-CIDR: Misc automated cleanups.
network/perl-Net-DNS-Resolver-Programmable: Misc automated cleanups.
network/perl-Net-Ident: Misc automated cleanups.
network/perl-Net-Pcap: Misc automated cleanups.
network/perl-Net-RawIP: Misc automated cleanups.
network/perl-Net-Server: Misc automated cleanups.
network/perl-NetAddr-IP: Misc automated cleanups.
network/perl-NetPacket: Misc automated cleanups.
network/perl-Socket6: Misc automated cleanups.
network/pidgin-facebookchat: Misc automated cleanups.
network/pidgin-musictracker: Misc automated cleanups.
network/pidgin-otr: Misc automated cleanups.
network/pidgin-visnotes: Misc automated cleanups.
network/policyd2: Misc automated cleanups.
network/policyd: Misc automated cleanups.
network/polipo: Misc automated cleanups.
network/postfix: Misc automated cleanups.
network/pound: Misc automated cleanups.
network/pptp: Misc automated cleanups.
network/pptp: Various fixes to the script.
network/pptpd: Misc automated cleanups.
network/privoxy: Misc automated cleanups.
network/proxychains: Misc automated cleanups.
network/proxymini: Misc automated cleanups.
network/proxytunnel: Misc automated cleanups.
network/psi: Misc automated cleanups.
network/python-twisted-web2: Misc automated cleanups.
network/python-twisted: Misc automated cleanups.
network/pyzor: Misc automated cleanups.
network/qwit: Misc automated cleanups.
network/r2e: Misc automated cleanups.
network/radvd: Misc automated cleanups.
network/rhapsody: Misc automated cleanups.
network/rtorrent: Misc automated cleanups.
network/scapy: Misc automated cleanups.
network/scli: Misc automated cleanups.
network/smb4k: Misc automated cleanups.
network/socat: Misc automated cleanups.
network/spamassassin: Misc automated cleanups.
network/sphinx: Misc automated cleanups.
network/squid: Misc automated cleanups.
network/strongswan: Misc automated cleanups.
network/suhosin: Misc automated cleanups.
network/suphp: Misc automated cleanups.
network/surfraw: Misc automated cleanups.
network/sylpheed: Misc automated cleanups.
network/thttpd: Misc automated cleanups.
network/tinyproxy: Misc automated cleanups.
network/tor: Misc automated cleanups.
network/transmission: Misc automated cleanups.
network/ttcp: Misc automated cleanups.
network/tunctl: Misc automated cleanups.
network/twitter-cmdline: Misc automated cleanups.
network/ucspi-ssl: Misc automated cleanups.
network/ucspi-tcp: Misc automated cleanups.
network/udpcast: Misc automated cleanups.
network/ufw: Misc automated cleanups.
network/umtsmon: Misc automated cleanups.
network/unfs3: Misc automated cleanups.
network/urlgrabber: Misc automated cleanups.
network/urlview: Misc automated cleanups.
network/vde2: Misc automated cleanups.
network/verlihub: Misc automated cleanups.
network/vnstat: Misc automated cleanups.
network/vpnc: Misc automated cleanups.
network/wavemon: Misc automated cleanups.
network/weechat: Misc automated cleanups.
network/wireshark: Misc automated cleanups.
network/wol: Misc automated cleanups.
network/wput: Misc automated cleanups.
network/x11vnc: Added missing md5sum
network/x11vnc: Misc automated cleanups.
network/xl2tpd: Misc automated cleanups.
network/xnetload: Misc automated cleanups.
network/xsp: Misc automated cleanups.
network/znc: Misc automated cleanups.
network/zsync: Misc automated cleanups.
office/abiword: Misc automated cleanups.
office/abiword: Updated for version 2.8.5.
office/abook: Misc automated cleanups.
office/aiksaurus: Misc automated cleanups.
office/akonadi-googledata: Misc automated cleanups.
office/antiword: Misc automated cleanups.
office/apvlv: Misc automated cleanups.
office/auctex: Misc automated cleanups.
office/bbdb: Misc automated cleanups.
office/calcurse: Misc automated cleanups.
office/calibre: Misc automated cleanups.
office/catdoc: Misc automated cleanups.
office/cups-pdf: Misc automated cleanups.
office/devtodo: Misc automated cleanups.
office/dictd: Fixed homepage URL; thanks to Eugen Wissner.
office/dictd: Misc automated cleanups.
office/epdfview: Misc automated cleanups.
office/eqonomize: Misc automated cleanups.
office/evince: Fixed segfault due to missing configdir
office/evince: Fixed the NLS test.
office/evince: Misc automated cleanups.
office/gnokii: Misc automated cleanups.
office/gocr: Misc automated cleanups.
office/grisbi: Misc automated cleanups.
office/hevea: Misc automated cleanups.
office/homebank: Misc automated cleanups.
office/htmldoc: Misc automated cleanups.
office/kchmviewer: Misc automated cleanups.
office/keepassx: Misc automated cleanups.
office/keepnote: Misc automated cleanups.
office/kmymoney2: Misc automated cleanups.
office/latex2html: Misc automated cleanups.
office/mdbtools: Misc automated cleanups.
office/odt2txt: Misc automated cleanups.
office/openoffice.org: Misc automated cleanups.
office/org-mode: Misc automated cleanups.
office/osmo: Misc automated cleanups.
office/pandoc: Misc automated cleanups.
office/pdfedit: Misc automated cleanups.
office/ps2eps: Misc automated cleanups.
office/pstoedit: Misc automated cleanups.
office/pstotext: Misc automated cleanups.
office/rastertospp: Misc automated cleanups.
office/rednotebook: Misc automated cleanups.
office/scribus: Misc automated cleanups.
office/tellico: Misc automated cleanups.
office/texlive: Fix the texi2hmtl download link.
office/texlive: Misc automated cleanups.
office/texmaker: Misc automated cleanups.
office/texworks: Misc automated cleanups.
office/vym: Misc automated cleanups.
office/wink: Misc automated cleanups.
office/xpad: Misc automated cleanups.
system/Eterm: Misc automated cleanups.
system/MySQL-Sandbox: Misc automated cleanups.
system/acpi: Misc automated cleanups.
system/acpitool: Misc automated cleanups.
system/afuse: Misc automated cleanups.
system/aimage: Misc automated cleanups.
system/amanda: Misc automated cleanups.
system/anacron: Misc automated cleanups.
system/apachetop: Misc automated cleanups.
system/apcupsd: Misc automated cleanups.
system/artwiz-aleczapka: Misc automated cleanups.
system/aterm: Misc automated cleanups.
system/atool: Misc automated cleanups.
system/atop: Misc automated cleanups.
system/bacula-client: Misc automated cleanups.
system/bacula: Misc automated cleanups.
system/bogofilter: Misc automated cleanups.
system/bonnie++: Misc automated cleanups.
system/cabextract: miscellaneous cleanups
system/cage: Misc automated cleanups.
system/cbmfs: Misc automated cleanups.
system/ccd2iso: Misc automated cleanups.
system/ccid: Misc automated cleanups.
system/ccrypt: Misc automated cleanups.
system/cdemu-daemon: Misc automated cleanups.
system/cfengine: Misc automated cleanups.
system/chkconfig: Misc automated cleanups.
system/chkrootkit: Misc automated cleanups.
system/clamav: Misc automated cleanups.
system/clamsmtp: Misc automated cleanups.
system/clusterglue: Misc automated cleanups.
system/clusterresourceagents: Misc automated cleanups.
system/commons-daemon: Misc automated cleanups.
system/conky: Misc automated cleanups.
system/conky: re-added audacious support.
system/conserver: Misc automated cleanups.
system/convmv: Misc automated cleanups.
system/coolkey: Misc automated cleanups.
system/corosync: Misc automated cleanups.
system/cpulimit: Misc automated cleanups.
system/crikey: Misc automated cleanups.
system/curlftpfs: Misc automated cleanups.
system/daa2iso: Misc automated cleanups.
system/dar: Misc automated cleanups.
system/dash: Misc automated cleanups.
system/davfs2: Misc automated cleanups.
system/ddrescue: Misc automated cleanups.
system/dosbox: Misc automated cleanups.
system/dosemu: Misc automated cleanups.
system/drbd: Misc automated cleanups.
system/dtach: Misc automated cleanups.
system/dump: Misc automated cleanups.
system/eibd: Misc automated cleanups.
system/emelfm2: Misc automated cleanups.
system/fakeroot: Misc automated cleanups.
system/fbterm: Misc automated cleanups.
system/fdupes: Misc automated cleanups.
system/filelight: Misc automated cleanups.
system/fish: Misc automated cleanups.
system/foremost: miscellaneous cleanups
system/fpm2: Misc automated cleanups.
system/fsarchiver: Misc automated cleanups.
system/fuseiso: Misc automated cleanups.
system/fusesmb: Misc automated cleanups.
system/fxload: Misc automated cleanups.
system/gammu: Misc automated cleanups.
system/gconf-editor: Misc automated cleanups.
system/gdm: Misc automated cleanups.
system/gigolo: Misc automated cleanups.
system/gkrellm-volume: Misc automated cleanups.
system/gksu: Misc automated cleanups.
system/gnome-commander: Misc automated cleanups.
system/gnome-vfs: Misc automated cleanups.
system/gparted: Misc automated cleanups.
system/gpsbabel: Misc automated cleanups.
system/gpsd: Misc automated cleanups.
system/graveman: Misc automated cleanups.
system/gsmartcontrol: Misc automated cleanups.
system/gtk-vnc: Misc automated cleanups.
system/gxemul: Misc automated cleanups.
system/halevt: Misc automated cleanups.
system/hdapsd: Misc automated cleanups.
system/hddtemp: Misc automated cleanups.
system/hercules: Misc automated cleanups.
system/herculesstudio: Misc automated cleanups.
system/htop: Misc automated cleanups.
system/hwinfo: Misc automated cleanups.
system/ibam: Misc automated cleanups.
system/ifuse: Misc automated cleanups.
system/imwheel: Misc automated cleanups.
system/iotop: Misc automated cleanups.
system/ipmitool: Misc automated cleanups.
system/irqbalance: Misc automated cleanups.
system/isomaster: Misc automated cleanups.
system/joystick: Misc automated cleanups.
system/kerneloops: Misc automated cleanups.
system/kqemu: Misc automated cleanups.
system/krusader: Misc automated cleanups.
system/ksh: Misc automated cleanups.
system/ksplice: Misc automated cleanups.
system/ktsuss: Misc automated cleanups.
system/kvm-kmod: Misc automated cleanups.
system/kvm: Misc automated cleanups.
system/lbzip2: Misc automated cleanups.
system/lirc: Misc automated cleanups.
system/lshw: Misc automated cleanups.
system/luckybackup: Misc automated cleanups.
system/lxsplit: Misc automated cleanups.
system/lzip: Misc automated cleanups.
system/makepasswd: Misc automated cleanups.
system/mcrypt: Misc automated cleanups.
system/md5deep: Misc automated cleanups.
system/memuse: Misc automated cleanups.
system/microcode_ctl: Misc automated cleanups.
system/mlterm: Misc automated cleanups.
system/monit: Misc automated cleanups.
system/mrxvt: Misc automated cleanups.
system/mtftar: Misc automated cleanups.
system/multitail: Misc automated cleanups.
system/nagios-plugins: Misc automated cleanups.
system/nbench: Misc automated cleanups.
system/ncdu: Misc automated cleanups.
system/nilfs-utils: Misc automated cleanups.
system/nss-mysql: Misc automated cleanups.
system/nss_ldap: Misc automated cleanups.
system/numlockx: Misc automated cleanups.
system/nvidia-driver: Misc automated cleanups.
system/nvidia-kernel: Misc automated cleanups.
system/nvidia-legacy173-driver: Misc automated cleanups.
system/nvidia-legacy173-kernel: Misc automated cleanups.
system/nvidia-legacy96-driver: Misc automated cleanups.
system/nvidia-legacy96-kernel: Misc automated cleanups.
system/openais: Misc automated cleanups.
system/openct: Misc automated cleanups.
system/opensc: Misc automated cleanups.
system/oss: Misc automated cleanups.
system/p7zip: Misc automated cleanups.
system/pacemaker: Misc automated cleanups.
system/pax: Misc automated cleanups.
system/pbzip2: Misc automated cleanups.
system/pcmanfm: Misc automated cleanups.
system/pcsc-lite: Misc automated cleanups.
system/pcsc-perl: Misc automated cleanups.
system/pdksh: Misc automated cleanups.
system/perl-Unix-Syslog: Misc automated cleanups.
system/pgadmin3: Misc automated cleanups.
system/picocom: Misc automated cleanups.
system/pipemeter: Misc automated cleanups.
system/pmount: Misc automated cleanups.
system/postgis: Misc automated cleanups.
system/postgresql: Misc automated cleanups.
system/powernowd: Misc automated cleanups.
system/preload: Misc automated cleanups.
system/proj: Misc automated cleanups.
system/pv: Misc automated cleanups.
system/pwgen: Misc automated cleanups.
system/pwsafe: Misc automated cleanups.
system/pyserial: Miscellaneous cleanups (template update)
system/qemu-kvm: Misc automated cleanups.
system/qemu: Misc automated cleanups.
system/ranger: Misc automated cleanups.
system/rdiff-backup: Misc automated cleanups.
system/recorder: Misc automated cleanups.
system/redis: Misc automated cleanups.
system/regionset: Misc automated cleanups.
system/rkhunter: Misc automated cleanups.
system/rox-filer: Misc automated cleanups.
system/roxterm: Misc automated cleanups.
system/rubygems: Misc automated cleanups.
system/runit: Misc automated cleanups.
system/rxvt-unicode: Misc automated cleanups.
system/safecopy: Misc automated cleanups.
system/sakura: Misc automated cleanups.
system/samhain: Misc automated cleanups.
system/sash: Misc automated cleanups.
system/schedtool: Misc automated cleanups.
system/set_rlimits: Misc automated cleanups.
system/shake: Misc automated cleanups.
system/sleuthkit: Misc automated cleanups.
system/slim: Included a logrotate config file
system/slim: Patched to use libpng14.
system/spambayes: Misc automated cleanups.
system/speedcontrol: Misc automated cleanups.
system/splix: Misc automated cleanups.
system/sqlite2: Misc automated cleanups.
system/srm: Misc automated cleanups.
system/sshfs-fuse: Misc automated cleanups.
system/statifier: Misc automated cleanups.
system/t1utils: Misc automated cleanups.
system/tarsnap: Misc automated cleanups.
system/terminator: Misc automated cleanups.
system/testdisk: Misc automated cleanups.
system/tiger: Misc automated cleanups.
system/tkdvd: Misc automated cleanups.
system/tmux: Misc automated cleanups.
system/tokyocabinet: Misc automated cleanups.
system/tokyotyrant: Misc automated cleanups.
system/tp_smapi: Misc automated cleanups.
system/trackfs: Misc automated cleanups.
system/ts: Misc automated cleanups.
system/twin: Misc automated cleanups.
system/ufiformat: Misc automated cleanups.
system/uif2iso: Misc automated cleanups.
system/ulogd: Misc automated cleanups.
system/unison: Misc automated cleanups.
system/unrar: Misc automated cleanups.
system/unrtf: Misc automated cleanups.
system/usbmon: Misc automated cleanups.
system/usbmuxd: Misc automated cleanups.
system/usbview: Misc automated cleanups.
system/vice: Patched to fix build; miscellaneous cleanups
system/vifm: Misc automated cleanups.
system/virt-manager: Misc automated cleanups.
system/virtinst: Misc automated cleanups.
system/virtualbox-kernel-addons: Misc automated cleanups.
system/virtualbox-kernel: Misc automated cleanups.
system/vlock: Misc automated cleanups.
system/whowatch: Misc automated cleanups.
system/wiimms-wbfs-tool: Misc automated cleanups.
system/worker: Misc automated cleanups.
system/xar: Misc automated cleanups.
system/xarchiver: Misc automated cleanups.
system/xautomation: Misc automated cleanups.
system/xbindkeys: Misc automated cleanups.
system/xcdroast: Misc automated cleanups.
system/xchm: Misc automated cleanups.
system/xfburn: Misc automated cleanups.
system/xfe: Misc automated cleanups.
system/xjobs: Misc automated cleanups.
system/xosd: Misc automated cleanups.
system/xrdp: Misc automated cleanups.
system/xrestop: Misc automated cleanups.
system/xtrs: Misc automated cleanups.
system/yakuake: Misc automated cleanups.
system/yeahconsole: Misc automated cleanups.
system/zeroinstall-injector: Misc automated cleanups.
system/zfs-fuse: Misc automated cleanups.
+--------------------------+
Thu May 27 05:13:34 UTC 2010
Okay, folks, it's that time again.  We're running a bit behind this time, 
  but we think (most of) the kinks are worked out at this point.   As we 
  announced on the mailing list a couple of days ago, we've spent a *lot* of 
  time and effort getting our entire repository into git, so everything is 
  now available there in addition to our "normal" offerings (http, ftp, and 
  rsync).  This has not been without a few hiccups along the way, and one of
  them is a mixed blessing: git keeps track of *everything*  :-)  As such, 
  it seems like too much time/effort involved in providing a ChangeLog *this*
  time to detail what's added, removed, patched, and so on; therefore, if 
  you are interested in that (and you should be), have a look here:
    http://slackbuilds.org/gitweb/?p=slackbuilds.git;a=log;h=refs/heads/13.1
  We'll be creating the usual "Slackware-style" ChangeLog.txt from this point
  forward, so don't get too excited about having to crawl the git logs... :-)
Anyway, I (rworkman) would like to take this opportunity to thank the other
  admins for all of the help with this, particularly: Heinz Wiesinger for 
  providing lots of git expertise and massive improvements to our "system"
  for managing submissions behind the scenes; Erik Hanson for an outstanding
  job managing the server; David Somero for test-building the entire tree on
  -current to find out what was broken; Ezra Free for popping in to fix the
  occasional "emergency" with the website code; Rob McGee for sitting in the
  shadows (well, mostly) making sure our DNS resolves correctly and our mail
  gets delivered; Michiel van Wessem for the "routine" stuff (and laughing
  at my lame jokes); and for the sake of completeness, Eric Hameleers and Alan
  Hicks for all of the little things that are so often overlooked and/or
  unrecognized but nonetheless necessary.  Thanks, guys - you are sincerely
  appreciated!
Finally, thanks to all of you readers for helping bring us to where we are
  today - obviously this applies to those of you who maintain various scripts
  in the repo, as those are the reason anyone visits the site - but it also
  applies to the "normal" users.  Thanks for the feedback, the bug reports,
  the fixes, the word-of-mouth recommendations on forums and mailing lists, 
  and so on - we appreciate your votes of confidence.  That being said, there
  are almost surely some bugs lurking in this first batch of public offerings,
  but maybe we can get those shaken out pretty quickly.  We're going to wait
  a few days (maybe even a week or so) before we open the submission form
  back up - this will give us time to knock out any bugs that are uncovered.
Enjoy!  --rworkman