summaryrefslogtreecommitdiffstats
path: root/ChangeLog.txt
blob: 1e179fce90b7c9ca50bf67b4d8e9b7a53dca3eb1 (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
Mon Dec  1 05:58:25 UTC 2008
games/spring: Added - Spring is a project aiming to create a new and 
  versatile RTS Engine.  Thanks to Erik Hanson.  --rworkman
games/springlobby: Added - SpringLobby is a free cross-platform lobby client 
  for the Spring RTS project.  Thanks to Erik Hanson.  --rworkman
misc/asr-manpages: Added - this is a set of humorous manual pages developed 
  on alt.sysadmin.recovery.  Thanks to Michiel van Wessem.  --rworkman
misc/funny-manpages: Added - this is another set of humorous manual pages,
  some of which might be considered "off-color" by some people.
  Thanks to Michiel van Wessem.  --rworkman
system/pm-utils: Updated the script with various bugfixes and improvements
  backported from the upcoming 1.2.3 release.
  Thanks to Robby Workman.  --dsomero
system/radeontool: Added - radeontool is a small utility to control ATI
  Radeon-based laptops' backlight and external output functions.
  Thanks to Robby Workman.  --dsomero
system/xarchiver: Updated for version 0.5.2.
  Thanks to Robby Workman.  --dsomero
+--------------------------+
Sun Nov 30 21:34:49 UTC 2008
audio/ardour: Updated for version 2.7.
  Thanks to Heinz Wiesinger.  --Erik
audio/lv2core: Updated for version 3.0.
  Thanks to Heinz Wiesinger.  --Erik
business/tinyerp-client: Updated for version 4.2.3.4.
  Thanks to Heinz Wiesinger.  --rworkman
business/tinyerp-server: Updated for version 4.2.3.4.
  Thanks to Heinz Wiesinger.  --rworkman
desktop/docker: Added - docker is a docking application which acts as a
  system tray.  Thanks to Timothy Pollard.  --dsomero
desktop/rezlooks: Added - an alternative GTK engine created by rezza.
  Thanks to Jonathan Yu.  --Erik
desktop/tint: Added - tint is a simple panel/taskbar for openbox and other
  window managers.  Thanks to Jonathan Yu.  --rworkman
desktop/xfce4-dict: Updated for version 0.5.1. This replaces xfce4-dict-plugin.
  Thanks to Robby Workman.  --dsomero
desktop/xfce4-fsguard-plugin: Updated for version 0.4.2.
  Thanks to Robby Workman.  --dsomero
desktop/xfce4-notes-plugin: Updated for version 1.6.3.
  Thanks to Robby Workman.  --dsomero
desktop/xfce4-verve-plugin: Updated for version 0.3.6. This replaces 
  verve-plugin.  Thanks to Robby Workman.  --dsomero
development/Scalar-List-Utils: Added - this is Perl's Scalar List Utilities.
  Thanks to Robert Delahunt.  --rworkman
development/netbeans: Updated for version 6.5.
  Thanks to Antonio Hernández Blas.  --dsomero
development/sip: Updated for version 4.7.9.
  Thanks to Aleksandar Samardzic.  --dsomero
development/subversion-bindings: Added - this adds Subversion bindings for 
  Perl, Python and Ruby.  Thanks to Mauro Giachero.  --rworkman
games/pysolfc: Fixed .info file.  --dsomero
graphics/djview4: Added - djview4 is a DjVu viewer and browser plugin.
  Thanks to Murat D. Kadirov.  --rworkman
libraries/IO-Zlib: Added - this is the Perl IO::Zlib module.
  Thanks to Robert Delahunt.  --rworkman
libraries/fftw: Updated for version 3.2.  Thanks to Kyle Guinn.  --rworkman
libraries/icu4c: Updated for version 4.0.
  Thanks to Heinz Wiesinger.  --dsomero
libraries/libavc1394: Fixed dependency in README.  --dsomero
libraries/libtorrent-rasterbar: Added - this is a C++ library that aims to be 
  a good alternative to all the other bittorrent implementations around.
  Thanks to Erik Hanson and Heinz Wiesinger.  --rworkman
libraries/perl-xml-libxml: Added - perl bindings for libxml.
  Thanks to Murat D. Kadirov.  --rworkman
libraries/perl-xml-libxml-common: Added - xml-libxml-common perl module.
  Thanks to Murat D. Kadirov.  --dsomero
libraries/perl-xml-namespacesupport: Added - xml-namespacesupport perl module.
  Thanks to Murat D. Kadirov.  --dsomero
libraries/perl-xml-sax: Added - xml-sax perl module.
  Thanks to Murat D. Kadirov.  --dsomero
libraries/pyqt4: Updated for version 4.4.4.
  Thanks to Aleksandar Samardzic.  --dsomero
libraries/slv2: Updated for version 0.6.1.
  Thanks to Heinz Wiesinger.  --Erik
libraries/soundtouch: Updated for version 1.3.1.
  Thanks to Heinz Wiesinger.  --dsomero
multimedia/avidemux: Updated for version 2.4.3.
  Thanks to Niklas 'Nille' Åkerström.  --dsomero
multimedia/gcstar: Added - GCstar is a free open source application for 
  managing your collections.  Thanks to Murat D. Kadirov.  --rworkman
multimedia/nted: Updated for version 1.4.15.
  Thanks to Corrado Franco.  --dsomero
multimedia/smplayer: Updated for version 0.6.5.1.
  Thanks to Erik Hanson.  --dsomero
multimedia/transcode: Updated for version 1.0.7.
  Thanks to Heinz Wiesinger.  --Erik
network/davfs2: Added - davfs2 is a Linux file system driver that allows you 
  to mount a WebDAV server as a local file system.  
  Thanks to Justin Haynes.  --rworkman
network/efax-gtk: Added - efax-gtk is a GTK+ front end for the efax program.
  Thanks to LukenShiro.  --rworkman
network/esmtp: Updated for version 1.0.
  Thanks to Paul Wisehart.  --dsomero
network/flock: Added - Flock is a web browser built on Mozilla¿s Firefox 
  codebase that specializes in providing social networking and Web 2.0 
  facilities built into its user interface.
  Thanks to Vincent Batts.  --rworkman
network/hylafax: Fixed path for faxgetty in README.  --dsomero
network/iftop: Added - iftop does for network usage what top(1) does for
  CPU usage.  Thanks to "chopp".  --dsomero
network/noip: Updated for version 2.1.9.
  Thanks to Dhaby Xiloj.  --Erik
network/tor: Updated for version 0.2.0.32.
  Thanks to Erik Hanson.  --dsomero
network/udpcast: Updated for version 20081116.
  Thanks to Heinz Wiesinger.  --Erik
network/vpnc: Enabled openssl support in the build script.  Note that it's 
  not an issue for us, as we don't provide any binary packages, but the 
  upstream developers assert that linking openssl violates the GPL *if* you 
  distribute a binary that does so.  
  Thanks to Cherife Li for the suggestion.  --rworkman
network/x11vnc: Updated for version 0.9.6.
  Thanks to Pierre Cazenave.  --Erik
office/cups-pdf: Added - cups-pdf is designed to produce PDF files by
  providing a PDF printer.  Thanks to Sebastien Ballet.  --dsomero
office/homebank: Updated for version 4.0.
  Thanks to Erik Hanson.  --dsomero
system/ddrescue: Updated for version 1.9.
  Thanks to Heinz Wiesinger.  --Erik
system/dump: Added - this is a dump and restore backup utility.
  Thanks to Chris Abela.  --rworkman
system/gxemul: Updated for version 0.4.6.6.
  Thanks to Alex Samardzic.  --rworkman
system/nvidia-driver: Updated for version 177.82.
  Thanks to Heinz Wiesinger.  --dsomero
system/nvidia-kernel: Updated for version 177.82.
  Thanks to Heinz Wiesinger.  --dsomero
system/openct: Added - OpenCT implements drivers for several smart card 
  readers.  Thanks to LukenShiro.  --rworkman
system/opensc: Added - OpenSC provides a set of libraries and utilities to 
  access smart cards.  Thanks to LukenShiro.  --rworkman
system/postgresql: Fixed the libxml configure line in the script.
  Thanks to "ginkgo" and Adis Nezirovic.  --rworkman
system/twin: Added - Twin is a text-mode window environment.
  Thanks to "chopp"  --rworkman
system/vbetool: Updated for version 1.1.
  Thanks to Robby Workman.  --dsomero
system/virtualbox-kernel-addons: Updated for version 2.0.6.
  Thanks to Heinz Wiesinger.  --dsomero
system/virtualbox-kernel: Updated for version 2.0.6.
  Thanks to Heinz Wiesinger.  --dsomero
system/virtualbox-ose-addons: Updated for version 2.0.6.
  Thanks to Heinz Wiesinger.  --dsomero
system/virtualbox-ose: Updated for version 2.0.6.
  Thanks to Heinz Wiesinger.  --dsomero
system/webcore-fonts: Fixed README file.  --dsomero
+--------------------------+
Wed Nov 19 20:51:13 UTC 2008
audio/ardour: Updated for version 2.6.
  Thanks to Heinz Wiesinger.  --dsomero
audio/audacity: Fix a few issues with Audacity SlackBuild.
  Thanks to Jakub Jankowski, Heinz Wiesinger, and Chess Griffin.  --dsomero
audio/speex: Updated for version 1.2rc1.
  Thanks to Alex Lysenka.  --dsomero
desktop/xfce4-screenshooter-plugin: Updated for version 1.4.0.
  Thanks to Robby Workman.  --Erik
desktop/xfce4-sensors-plugin: Updated for version  0.10.99.6.
  Thanks to Robby Workman.  --dsomero
games/openarena: Updated for version 0.8.1.
  Thanks to Chess Griffin.  --dsomero 
graphics/inkscape: Reverted the patch for newer poppler versions.  In my 
  testing here, it didn't cause any problem on 12.1, but we've had *numerous*
  reports to the contrary from users, so it's not applied by default in the
  build script.  If you need it, uncomment it.  --rworkman
libraries/barry: Updated for version 0.14.
  Thanks to Vincent Batts.  --dsomero
libraries/libewf: Noted maintainer change and fixed download link.
  Thanks to Barry J. Grundy.  --dsomero
libraries/libeXosip2: Updated for version 3.2.0.
  Thanks to "adev".  --dsomero
libraries/libmpeg2: Renamed from mpeg2dec (to match upstream's nomenclature),
  moved from Multimedia category, and updated for version 0.5.1.
  Thanks to Heinz Wiesinger.  --dsomero
libraries/libosip2: Updated for version 3.2.0.
  Thanks to "adev".  --dsomero
libraries/libquicktime: Updated for version 1.1.0.
  Thanks to Heinz Wiesinger.  --dsomero
libraries/libssh2: Added - libssh2 is a library implementing the SSH2 protocol.
  Thanks to Menno Duursma.  --dsomero
misc/gpodder: Updated for version 0.13.1.
  Thanks to Chess Griffin.  --dsomero 
multimedia/dvgrab: Updated for version 3.2.
  Thanks to Murat D. Kadirov.  --dsomero
multimedia/ffmpeg: Updated for version 20081105.
  Thanks to Heinz Wiesinger.  --dsomero
multimedia/kino: Updated for version 1.3.2 and fixed handling of ffmpeg.
  Thanks to Heinz Wiesinger.  --dsomero
multimedia/mpeg2dec: Removed (renamed to libmpeg2).  
multimedia/transcode: Updated for version 1.0.7rc1.
  Thanks to Heinz Wiesinger.  --dsomero
multimedia/x264: Updated for version 20081104.
  Thanks to Heinz Wiesinger.  --dsomero
network/firehol: Added - firehol is an easy to use but powerfull iptables
  stateful firewall.  Thanks to Ferenc Deak.  --dsomero
network/ipcalc: Fixed a few things in the build script; changed ARCH to noarch
  and make the cgi-bin directory configurable with a sane default.
  Thanks to Jakub Jankowski and Vincent Batts.  --rworkman
network/iperf: Added - iperf is a tool to measure IP bandwidth using UDP or
  TCP.  Thanks to "nullboy".  --dsomero
network/iw: Added - iw is a command-line configuration utility for mac80211
  wireless devices.  Thanks to nullboy.  --rworkman
network/leafnode: Updated for version 2.0.0.alpha20081110a and various build
  script cleanups.  Thanks to Andrew Strong.  --rworkman
network/liferea: Updated - New SlackBuild and maintainer for version 1.4.20;
  also moved from Desktop to Network.  Thanks to Erik Hanson.  --dsomero
network/linphone: Updated for version 3.0.0.
  Thanks to "adev".  --dsomero
office/calcurse: Added - calcurse is console-based calendar and todo list.
  Thanks to Michiel van Wessem.  --rworkman
system/motion: Updated for version 0.5.1.
  Thanks to Heinz Wiesinger.  --dsomero
system/pcmanfm: Fix missing dependency in README.
  Thanks to  Aleksandar Kukic and Chess Griffin.  --dsomero
system/postgresql: Updated for version 8.3.5 and fixed bug in logrotate script.
  Thanks to Adis Nezirovic.  --dsomero 
system/rubygems: Updated for version 1.3.1.
  Thanks to Vincent Batts.  --dsomero
system/rxvt-unicode: Updated for version 9.06.
  Thanks to Duane Dohrman II.  --dsomero
system/xf86-input-synaptics: Updated for version  0.99.1.
  Thanks to Robby Workman.  --dsomero
+--------------------------+
Tue Nov 11 21:32:39 UTC 2008
academic/gtypist: Updated for version 2.8.1.
  Thanks to Grigorios Bouzakis.  --dsomero
audio/schismtracker: Updated for version git20081102.
  Thanks to Erik Hanson.  --dsomero
desktop/xfce4-taskmanager: Updated for version 0.4.1.
  Thanks to Robby Workman.  --dsomero
development/kdesvn: Updated for version 1.0.4.
  Thanks to Michiel van Wessem.  --dsomero
games/robotfindskitten: Added - robotfindskitten is a Zen simulation.
  Thanks to Josiah Boothby.  --dsomero
libraries/libburn: Updated for version 0.5.4.
  Thanks to Robby Workman.  --dsomero
libraries/libisofs: Updated for version 0.6.10.
  Thanks to Robby Workman.  --dsomero
misc/kvm: Updated for version 78.
  Thanks to Murat D. Kadirov.  --dsomero
multimedia/gst-plugins-bad: Updated for version 0.10.9.
  Thanks to Michiel van Wessem.  --dsomero
multimedia/gst-plugins-good: Updated for version 0.10.11.
  Thanks to Michiel van Wessem.  --dsomero
multimedia/nted: Updated for version 1.4.14.
  Thanks to Corrado Franco.  --dsomero
office/acroread: Updated for version 8.1.3. This fixes several security bugs:
  http://www.adobe.com/support/security/bulletins/apsb08-19.html
  Thanks to Heinz Wiesinger.  --dsomero
system/gsmartcontrol: Updated for version 0.8.1.
  Thanks to Erik Hanson.  --rworkman
system/sshfs-fuse: Updated for version 2.2.
  Thanks to Michiel van Wessem.  --dsomero
system/vice: Updated for version 2.0.
  Thanks to Mauro Giachero.  --dsomero
system/webcore-fonts:Added - webcore-fonts are the Microsoft core web fonts.
  Thanks to Dugan Chen.  --dsomero
system/xfburn: Updated for version 0.3.91.
  Thanks to Robby Workman.  --dsomero
system/zisofs-tools: Updated for version 1.0.8.
  Thanks to Robby Workman.  --dsomero
+--------------------------+
Wed Nov  5 04:00:17 UTC 2008
multimedia/mplayer: Fixed build of multiple languages for html docs.  
  There were no bug reports on this, but I just happened to catch it when
  double checking another (invalid) bug report. :-)  --rworkman
+--------------------------+
Tue Nov  4 22:09:23 UTC 2008
audio/rubyripper: Updated for version 0.5.4.
  Thanks to Grigorios Bouzakis.  --dsomero
academic/solfege: Added - solfege is free music education software.
  Thanks to Phillip Warner.  --dsomero
audio/audacity: Updated for version 1.3.6.
  Thanks to Chess Griffin.  --dsomero
desktop/dmenu: Updated for version 3.9.
  Thanks to Antonio Hernández Blas.  --dsomero
desktop/ratpoison: Updated for version 1.4.3.
  Thanks to Grigorios Bouzakis.  --dsomero
development/pycups: Updated for version 1.9.42.
  Thanks to Heinz Wiesinger.  --dsomero
games/mednafen: Updated for version 0.8.A.
  Thanks to Heinz Wiesinger.  --dsomero
games/pysolfc: Added - Ppysolfc (PySol Fanclub Edition) is a solitaire suite
  containing over 1000 individual games.  Thanks to Wade Nelson.  --dsomero
libraries/Crypt-SSLeay: Added - Crypt-SSLeay provides support for the https
  protocol under LWP.  Thanks to Manuel Reimer.  --dsomero
libraries/libcap: Updated for version 2.14.
  Thanks to Menno Duursma.  --rworkman
libraries/libdvdcss: Updated for version 1.2.10.
  Thanks to Robby Workman.  --dsomero
libraries/libical: Added - libical is an Open Source implementation of the
  IETF's iCalendar Calendaring and Scheduling protocols.
  Thanks to Heinz Wiesinger.  --dsomero
libraries/libopensync-plugin-kdepim: Added - libopensync-plugin-kdepim is a
  kdepim plugin for opensync.  Thanks to Michael Wagner.  --dsomero
libraries/libopensync-plugin-syncml: Added - libopensync-plugin-syncml is a
  syncml plugin for opensync.  Thanks to Michael Wagner.  --dsomero
libraries/loudmouth: Updated for version 1.4.3.
  Thanks to Heinz Wiesinger.  --dsomero
libraries/perl-digest-hmac: Added - perl-digest-hmac is a perl module used
  for message integrity checks between two parties that share a secret key.
  Thanks to lukenshiro.  --dsomero
libraries/pyfltk: Updated for version 1.1.3.
  Thanks to lukenshiro.  --dsomero
libraries/pyqt4: Updated for version 4.4.3.
  Thanks to Aleksandar Samardzic.  --dsomero
libraries/wxGTK: Updated for version 2.8.9.
  Thanks to Chess Griffin.  --dsomero
multimedia/mplayer: Updated for version svn_r27865.
  Thanks to Robby Workman.  --dsomero
multimedia/mkvtoolnix: Updated for version 2.4.0. Added mkvinfo desktop file
  and icon. Thanks to Andrew Strong.  --Erik Hanson
multimedia/mppenc: mppenc is a command line tool that produces MPC or
  Musepack files.  Thanks to Andrew Strong.  --dsomero
network/axel: Updated for version 2.2.
  Thanks to Antonio Hernández Blas.  --dsomero
network/bot-sentry: Added - bot-sentry is a Pidgin plugin to prevent Instant
  Message spam.  Thanks to John Tyree.  --dsomero
network/mz: Updated for version 0.34.5.
  Thanks to Heinz Wiesinger.  --dsomero
network/opera: Updated for version 9.62.
  Thanks to Robby Workman.  --dsomero
network/smb4k: Updated for version version 0.9.8.
  Thanks to Roberto Neri.  --dsomero
network/tork: Updated for version 0.30.
  Thanks to Heinz Wiesinger.  --dsomero
office/epdfview: Fixed  build to install default icons and force their use in 
  the epdfview.desktop file.  Thanks to Andrew Brouwers.  --dsomero
office/vym: Updated for version 1.12.2.
  Thanks to Heinz Wiesinger.  --dsomero
system/emelfm2: Updated for version  0.5.0.
  Thanks to Chess Griffin.  --dsomero
system/fakeroot: Updated for version 1.10.1. Thanks to Ferenc Deak. --rworkman
system/gsmartcontrol: Added - gsmartcontrol is a gtk frontend to the
  smartctl suite.  Thanks to Erik Hanson.  --rworkman
system/pbzip2: Updated for version 1.0.3.
  Thanks to Erik Hanson.  --dsomero
+--------------------------+
Wed Oct 29 21:34:26 UTC 2008
We have managed to fix our backend, so we no longer have to 
rename packages to xx when they end on ++. Thanks to Ezra Free. 
Also because the final packages remain the same, the build 
numbers haven't been bumped.
libraries/libsigc++: Moved - moved from libsigcxx to the 
  offical name, now our backend supports it. --Michiel
libraries/libtorrent: Updated the README so it shows the 
  correct dependencies now. (libsig++ instead of libsigcxx). --Michiel
libraries/libxml++: Moved - Moved - moved from libxmlxx to the
  offical name, now our backend supports it. --Michiel
multimedia/TiMidity+: Moved - moved from TiMidityxx to the
  offical name, now our backend supports it. --Michiel
multimedia/subtitleeditor:  Updated the README so it shows the
  correct dependencies now. (libsig++/libxml++ instead of 
  libsigcxx/libxmlxx). --Michiel
system/bonnie++: Moved - moved from bonniexx  to the
  offical name, now our backend supports it. --Michiel
+--------------------------+
Wed Oct 29 01:27:45 UTC 2008
desktop/nted: Added - NtEd is a GTK+ score editor.
  Thanks to Corrado Franco.  --dsomero
desktop/alltray: Updated for version 0.70.
  Thanks to Antonio Hernandez Blas.  --rworkman
development/bashdb: Updated for version 0.4.0-0.1.
  Thanks to Erik Hanson. --Michiel
development/boost: Included some "hotfix" patches from upstream and
  minor cleanups to the build scripts.
  Thanks to Heinz Wiesinger.  --rworkman
development/eclipse: Updated for version 3.4.1.
  Thanks to Antonio Hernández Blas. --Erik
development/lua: Updated for version 5.1.4.
  Thanks to Menno Duursma and Old_Fogie.  --rworkman
development/Pivy: Added - Pivy is a Coin binding for Python.
  Thanks to Aleksandar Samardzic. --Michiel
development/pygccxml: Updated for version 1.0.0.
  Thanks to Aleksandar Samardzic.  --dsomero
development/pyplusplus: Updated for version 1.0.0.
  Thanks to Aleksandar Samardzic.  --dsomero
development/uncrustify: Updated for version 0.50.
  Thanks to Aleksandar Samardzic.  --dsomero
games/wormux: Updated for version 0.8.2. 
  Thanks to Heinz Wiesinger. --Michiel
graphics/blender: Updated for version 2.48a.
  Thanks to Robby Workman.  --Erik
libraries/clucene: Updated for version 0.9.21b.
  Thanks to Heinz Wiesinger. --Michiel
libraries/imlib2: Updated for version 1.4.2.
  This fixes Multiple Unspecified Vulnerabilities as noted by
  http://www.securityfocus.com/bid/31880. 
  Thanks to Chess Griffin. --Michiel.
libraries/libsyncml: Added - libsyncml is a implementation of the SyncML
  protocol.  Thanks to Michael Wagner.  --dsomero
libraries/libwww-perl:Updated for version 5.819.
  Thanks to LukenShiro.  --dsomero
libraries/wbxml2: Added - wbxml2 allows you to parse, encode and handle WBXML
  documents.  Thanks to Michael Wagner.  --dsomero
multimedia/smplayer: Updated for version 0.6.4.
  Thanks to Erik Hanson.  --dsomero
network/bip: Updated for version 0.7.5.
  Thanks to Chess Griffin.  --dsomero
network conntrack-tools: Updated for version 0.9.8. 
  Thanks to Robby Workman.  --Michiel
network/DMitry: Added - DMitry (Deepmagic Information Gathering Tool).
  Thanks to Corrado Franco.  --dsomero
network/filezilla: Updated for version 3.1.5.
  Thanks to Grigorios Bouzakis.  --Erik
network/knetmon: Added - Knetmon is a network monitor program
  for the KDE3 Desktop Enviroment.
  Thanks to Corrado Franco. --Michiel
network/nbd: Added - nbd allows access block device on remote host just as if
  it was in your local /dev.  Thanks to Andrzej Telszewski.  --dsomero
network/opera: Fixed my mistake in "accidentally on purpose" using the gcc3
  build of opera instead of the gcc4 build.  Not enough beer, I guess.  ;-)
  Thanks to Old Fogie for the cluebat.  --rworkman
network/privoxy: Updated for version 3.0.10.
  Thanks to "alkos333".  --Erik
network/wicd: Updated for version 1.5.4 and added an option to use pm-utils.
  Thanks to Robby Workman.  --dsomero
system/chmsee: Updated for version 1.0.1.
  Thanks to Robby Workman. --Michiel
system/conky: Updated for version 1.6.1.
  Thanks to Antonio Hernández Blas. --Erik
system/dc3dd: Added - dc3dd is a modified version of dd intended for 
  usage in forensics applications.  Thanks to Barry Grundy, author of
  "The Beginner's Guide" to Linux for Law Enforcement and Forensic
  Examiners - http://linuxleo.com/.  Thanks, Barry!  --rworkman
system/freefont: Added - freefont is a free family of scalable outline fonts.
  Thanks to Dugan Chen.  --dsomero
system/pcmanfm: Update for version 0.5.
  Thanks to Chess Griffin.  --dsomero
system/pm-utils: Added - pm-utils provides simple shell command line tools
  to suspend and hibernate computers.  Thanks to Robby Workman.  --Erik
system/virtualbox-ose: Updated for version 2.0.4 and some script cleanup.
  Thanks to Heinz Wiesinger and David Somero.  --rworkman
system/virtualbox-ose-addons: Updated for version 2.0.4.
  Thanks to Heinz Wiesinger.  --rworkman
system/virtualbox-kernel: Updated for version 2.0.4.
  Thanks to Heinz Wiesinger.  --rworkman
system/virtualbox-kernel-addons: Updated for version 2.0.4.
  Thanks to Heinz Wiesinger.  --rworkman
system/vncviewer: Added - vncviewer is the tightvnc client only.
  Thanks to "alkos333".  --dsomero
system/xf86-video-openchrome: Updated for version 0.2.903.
  Thanks to Antonio Hernandez Blas.  --rworkman
+--------------------------+
Tue Oct 21 18:23:02 UTC 2008
graphics/gphoto2: Updated for version 2.4.3.  
  Thanks to Robby Workman.  --dsomero
libraries/afflib: Added - afflib is library for support of the 
  Advanced Forensic Format. Thanks to Heinz Wiesinger. --Michiel
libraries/libewf: Added - libewf is library for support of the 
  Expert Witness Compression Format (EWF).
  Thanks to Heinz Wiesinger. --Michiel
libraries/libgphoto2: Updated for version 2.4.3 and included a patch
  to fix a bug in the included check-ptp-camera script.
  Thanks to Robby Workman.  --dsomero
multimedia/blender: Added - Blender is the free open
  source 3D content creation suite. 
  Thanks to Robby Workman. --Michiel
network/elinks: Updated for version 0.11.5. 
  Thanks to Brian Muramatsu. --Michiel
network/ettercap-NG: Added - Ettercap is a suite for man in the 
  middle   attacks on LAN. Thanks to Tom Bradish. --Michiel
network/opera: Updated for version 9.61. 
  Thanks to Robby Workman. --Michiel
office/ding: Added - Ding is a Dictionary lookup program for the
  X window system. Thanks to Martin Ivanov. --Michiel
office/full-pack: Added - A set of dictionaries for kbgoffice.
  Thanks to Martin Ivanov. --Michiel
office/kbibtex: Added - KBibTeX is a BibTeX editor for KDE to edit
  bibliographies used with LaTeX. Thanks to Martin Ivanov. -- Michiel
office/kbgoffice: Added - A bulgarian/english dictionairy program.
  Thanks to Martin Ivanov. --Michiel
system/nvidia-legacy173-driver: Added - nvidia-legacy173-driver
  Nvidia's legacy 173.x driver.  Thanks to Heinz Wiesinger.  --dsomero
system/nvidia-legacy173-kernel: Added - nvidia-legacy173-kernel
  Nvidia's legacy 173.x kernel module. Thanks to Heinz Wiesinger  --dsomero
system/sleuthkit: Added - The Sleuth Kit is an open source forensic toolkit 
  for analyzing Microsoft and UNIX file systems and disks.
  Thanks to Heinz Wiesinger. --Michiel
+--------------------------+
Sun Oct 19 23:41:32 UTC 2008
academic/ladr: Updated for version 2008_09A. 
  Thanks to Heinz Wiesinger. --Michiel
desktop/icewm: Updated for version 1.2.36.
  Thanks to Robby Workman.  --dsomero
development/boost-bindings: Fixed the install path.
  Thanks to Aleksandar Samardzic.  --dsomero
development/facile: Added - FaCiLe is a Functional Constraint Library 
  implemented in Objective Caml. Thanks to Heinz Wiesinger. --Michiel
development/patchutils: Added - patchutils is a collection of tools that
  operate on patch files.  Thanks to Robby Workman.  --dsomero
development/pyparsing: Updated for version 1.5.1.
  Thanks to Heinz Wiesinger.  --dsomero
graphics/fontforge: Updated for version 20080927.
  Thanks to Robby Workman.  --dsomero
libraries/libcap: Updated for version 2.13.  Note that this build no longer
  installs the capability.h header with a .new extension, as there is (or
  at least should be) no expectation that header changes are preserved in
  package upgrades.  This build also adds a patch from Slackware -current to
  only build the shared libraries; upstream says that this is fine and should
  probably be the default at this point.  Thanks to Menno Duursma for the 
  updated script and to Andrew Morgan for his work with upstream.  --rworkman
libraries/libfprint: Added - libfprint is a simple API for fingerprint reading
  devices.  Thanks to Terry Laundos.  --dsomero
libraries/ORBit2: Updated for version 2.14.16.
  Thanks to Daniel Liljeqvist.  --dsomero
libraries/qt4: Updated for version 4.4.3.
  Thanks to Aleksandar Samardzic.  --dsomero
multimedia/cuetools: Added - cuetools is cue and toc file parsers and
  utilities.  Thanks to grissiom.  --dsomero
multimedia/flash-player-standalone: Updated for version 10.0.12.36.
  Thanks to Heinz Wiesinger.  --dsomero
network/driftnet: Fixed some errrors in the buildscript. 
  Thanks to JK Wood. --Michiel
network/squid: Updated for version 3.0.STABLE10.
system/john: Added - John the Ripper is a fast password cracker.
  Thanks to Murat D. Kadirov.  --dsomero
system/microcode_ctl: Added - microcode_ctl is a Intel Microcode Update
  Utility for Linux.  Thanks to Andrzej Telszewski.  --dsomero
system/nvidia-legacy71-driver: Name changed from nvidia-old-legacy-driver;
  updated nvidia-switch to work with installpkg's -root switch.
  Thanks to Heinz Wiesinger.  --dsomero
system/nvidia-legacy71-kernel: Name changed from nvidia-old-legacy-kernel;
  included patch for kernel >= 2.6.27.
  Thanks to Heinz Wiesinger.  --dsomero
system/nvidia-legacy96-driver: Name changed from nvidia-legacy-driver;
  updated nvidia-switch to work with installpkg's -root switch.
  Thanks to Heinz Wiesinger.  --dsomero
system/nvidia-legacy96-kernel: Name changed from nvidia-legacy-kernel;
  included patch for kernel >= 2.6.27.
  Thanks to Heinz Wiesinger.  --dsomero
system/unison: Updated for version 2.27.57. 
  Thanks to Ferenc Deak. --Michiel
system/wine: Updated for version 1.0.1.  Thanks to Robby Workman.  --dsomero
+--------------------------+
Fri Oct 17 19:11:55 UTC 2008
audio/herrie: Updated for version 2.2.  Thanks to Phillip Warner.  --rworkman
audio/shntool: Updated for version 3.0.8.  Thanks to "slakmagik".  --dsomero
development/openmpi: Updated for version 1.2.8.
  Thanks to Alex Samardzic.  --rworkman
development/tig: Added - tig is an ncurses/console frontend for the git
  version control system. Thanks to Grigorios Bouzakis. --Michiel
development/sdcc: Updated for version 2.8.0.
  Thanks to Kyle Guinn.  --rworkman
development/swi-prolog-lite: Updated for version 5.6.61.
  Thanks to whitehate at gmail.com.  --dsomero
libraries/stfl: Updated for version 0.19.  Thanks to slakmagik.  --rworkman
libraries/python-xlib: Updated for version 0.14. Thanks to LnxSlck. --rworkman
network/driftnet: Added - Driftnet is a program that allows you to view images
  that pass over any network you are connected to.
  Thanks to JK Wood.  --dsomero
network/newsbeuter: Updated for version 1.2.  Thanks to "slakmagik".  --dsomero
network/ntop: Updated for version 3.3.8.
  Thanks to Michiel van Wessem.  --dsomero
network/opera: Updated for version 9.60.  Thanks to Robby Workman.  --dsomero
office/openoffice.org: Improved the installation of dictionaries so that it 
  works on non-english versions of OOo.  Thanks to Thomas Morper for the bug
  report and code sample.  --rworkman
system/cdemu-daemon: Added - CDEmu daemon is the userspace daemon part of the
  cdemu suite, a free, GPL CD/DVD-ROM device emulator for linux.
  Thanks to Niklas 'Nille' Åkerström and Heinz Wiesinger.  --dsomero
system/clamav: Updated for version 0.94.
  Thanks to javivf at gmail.com.  --dsomero
system/commons-daemon: Added - this implements a Java API for non-interactive
  Java applications (otherwise known as daemons). 
  Thanks to Heinz Wiesinger.  --rworkman
system/speedcontrol: Added - speedcontrol is a console app to change the 
  rotation speed of dvd-rom drives.  Thanks to Heinz Wiesinger.  --rworkman
system/testdisk: Added - TestDisk is a powerful free data recovery software.
  Thanks to Michales Michaloudes.  --rworkman
+--------------------------+
Thu Oct 16 04:44:22 UTC 2008
academic/bibletime-i18n: Added - bibletime-i18n is the alternative interface
  languages for bibletime.  Thanks to Timothy Pollard.  --David Somero
academic/bibletime: Added - bibletime is a Bible study application for Linux.
  Thanks to Timothy Pollard.  --David Somero
audio/mp3splt-gtk: Added - mp3splt-gtk is a frontend for mp3splt.
  Thanks to Roberto Neri.  --David Somero
audio/mp3splt: Added - mp3splt is a utility to split mp3 and ogg files.
  Thanks to Roberto Neri.  --David Somero
audio/ogmtools: Added - ogmtools is a set of tools to create, alter and
  inspect OGG media files.  Thanks to Nishant Limbachia.  --dsomero
audio/rubyripper: Added - rubyripper is a secure audio ripper which aims to
  deliver high quality rips from audio cd's to your computer drive. 
  Thanks to Grigorios Bouzaki.  --David Somero
business/tinyerp-client: Updated for version 4.2.3.3.
  Thanks to Heinz Wiesinger.  --dsomero
business/tinyerp-server: Updated for version 4.2.3.3.
  Thanks to Heinz Wiesinger.  --dsomero
desktop/adesklets: Added - adesklets is an interactive Imlib2 console for the
  X Window System.  Thanks to Jorge Courbis Araya.  --David Somero
development/boost-bindings: Updated for version 20080816.
  Thanks to Aleksandar Samardzic.  --David Somero
development/easygui: Updated info file.  Thanks to LukenShiro.  --dsomero
development/Quarter:  Added - Quarter is a light-weight glue library that
  provides seamless integration between Systems in Motions's Coin high-level
  3D visualization library and Trolltech's Qt 2D user interface library.
  Thanks to Aleksandar Samardzic.  --dsomero
games/smc: Updated for version 1.6.  Thanks to Phillip Warner.  --dsomero
graphics/graphviz: Updated for version 2.20.3.
  Thanks to Audrius Kazukauskas.  --David Somero
libraries/libgeotiff: Added - libgeotiff is designed for reading and writing
  coordinate system information from/to GeoTIFF files.
  Thanks to Marco Cecchetti.  --dsomero
libraries/libmp3splt: Added - libmp3splt is the mp3splt library.
  Thanks to Roberto Neri.  --David Somero
libraries/libnetfilter_conntrack: Updated for version 0.0.97.
  Thanks to Robby Workman.  --dsomero
libraries/libnfnetlink: Updated for version 0.0.39.
  Thanks to Robby Workman.  --dsomero
libraries/libwww-perl: Added - libwww-perl perl module
  Thanks to LukenShiro.  --David Somero
libraries/perl-digest-sha1: Added - perl-digest-sha1 is a interface to the
  SHA-1 algorithm.  Thanks to LukenShiro.  --David Somero
libraries/perl-html-parser: Added - perl-html-parser is a html parser module
  collection.  Thanks to LukenShiro.  --David Somero
libraries/perl-html-tagset: Added - perl-html-tagset is a html data tables
  module.  Thanks to LukenShiro.  --David Somero
libraries/perl-module-build: Updated for version 0.30.
  Thanks to Heinz Wiesinger.  --David Somero
libraries/perl-net-dns: Added - perl-net-dns is a DNS resolver module.
  Thanks to LukenShiro.  --David Somero
libraries/perl-net-ip: Added - perl-net-ip is an IP address manipulation 
  module.  Thanks to LukenShiro.  --David Somero
libraries/wxPython: Updated for version 2.8.9.1.
  Thanks to Heinz Wiesinger.  --David Somero
multimedia/flash-player-plugin: Updated for version 10.0_r12.
  Thanks to Robby Workman (and thanks to LnxSlck for the push). --David Somero
network/clive: Added - clive is a command-line utility for extracting videos
  from Youtube and other video sharing websites.
  Thanks to Javier Rojas. --dsomero
network/conntrack-tools: Fixed the config file directory in the build script.
  Thanks to Lebbeous Fogle-Weekley for the report.  --rworkman/dsomero
network/deluge: Updated for version 1.0.2.
  Thanks to Stylianos Tsampas.  --dsomero
network/kvirc: Updated for version 3.4.2. Thanks to Elvio Basello. --dsomero
network/lighttpd: Updated for version 1.4.20.
  Thanks to paul wisehart.  --David Somero
network/mz: Updated for version 0.34.1.
  Thanks to Heinz Wiesinger.  --David Somero
network/spamassassin: Added - spamassassin is a  perl e-mail filter to
  identify spam.  Thanks to LukenShiro.  --dsomero
network/urlgrabber: Added - urlgrabber is a python url-fetching module.
  Thanks to Javier Rojas.  --dsomero
network/wireshark: Updated for version 1.1.1.
  Thanks to Michiel van Wessem.  --David Somero
office/openoffice.org: Bugfix to add the various dictionaries (en, es, fr) 
  included with the prepackaged binaries in such a way that they're actually 
  installed via the extension manager.  This should enable spell-checking 
  support without user intervention.  
  Thanks to Phil Warner, Willy Sudiarto Raharjo, and everyone who participated
  in the LQ thread and SBo-users list about this.  If I missed anything else, 
  let me know.  --rworkman
system/mktorrent: Added - mktorrent is a console .torrent file creator.
  Thanks to Grigorios Bouzakis.  --David Somero
system/nvidia-driver: Updated for version 177.80.
  Thanks to Heinz Wiesinger.  --David Somero
system/nvidia-kernel: Updated for version 177.80.
  Thanks to Heinz Wiesinger.  --David Somero
system/postgresql: Updated for version 8.3.4.
  Thanks to Adis Nezirovic.  --dsomero
+--------------------------+
Tue Oct 14 21:09:23 UTC 2008
academic/link-grammar: Added - the Link Grammar Parser is a syntactic parser 
  of English language.  Thanks to Michael Gabilondo.  --rworkman
audio/flac123: Added - flac123 is a command line flac player.
  Thanks to Andrew Strong.  --rworkman
desktop/CurseTheWeather: Updated for version 0.4. 
  Thanks to Philip Warner. --Michiel
desktop/kcometen3: Added - KCometen3 is an OpenGL screensaver for KDE.
  Thanks to Michiel van Wessem.  --rworkman
desktop/whaw: Added - whaw is a window tiling tool.
  Thanks to Phillip Warner.  --rworkman
development/gccxml: Added - GCC-XML is the XML output extension to GCC.
  Thanks to Alex Samardzic.  --rworkman
development/numpy: Updated for version 1.2.0.
  Thanks to Alex Samardzic.  --rworkman
development/pygccxml: Added - the purpose of pygccxml is to read a generated 
  file and provide a simple framework to navigate C++ declarations using 
  Python classes.  Thanks to Alex Samardzic.  --rworkman
development/pyplusplus: Added - Py++ is an object-oriented framework for 
  creating a code generator for the Boost.Python library.
  Thanks to Alex Samardzic.  --rworkman
games/gnubg: Updated for the 20081013 snapshot.
  Thanks to Erik Hanson.  --rworkman
games/tmw: Updated for version 0.0.26.  Thanks to Erik Hanson.  --rworkman
games/wesnoth: Updated for version 1.4.5. 
  Thanks to Michiel van Wessem.  --rworkman
libraries/babl: Added - babl is a pixel format translation library.
  Thanks to Manfred Mueller.  --rworkman
libraries/decorator: Added decorator Python module.
  Thanks to Mikko Varri.  --rworkman
libraries/gegl: Added - gegl is a graph based image processing library.
  Thanks to Manfred Mueller.  --rworkman
libraries/libmirage: Miscellaneous cleanups to the build script and README
  file.   --rworkman
libraries/liboop: Added - liboop is a low-level event loop management library
  for POSIX-based operating systems.  Thanks to Menno Duursma.  --rworkman
libraries/pytables: Updated for version 2.0.4.
  Thanks to LukenShiro.  --rworkman
libraries/quesoglc: Added - QuesoGLC is a free implementation of the OpenGL 
  Character Renderer (GLC).  Thanks to Andrew Waters.  --rworkman
libraries/reportlab: Updated for version 2.2.
  Thanks to LukenShiro.  --rworkman
misc/torrentinfo: Added - TorrentInfo is a command line script that parses 
  .torrent files and displays the information contained within them.
  Thanks to Erik Hanson.  --rworkman
network/bitlbee: Updated for version 1.2.3.  This fixes some potential 
  security flaws, so upgrading is strongly encouraged.  More information:
  http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-3920
  http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-3969
  Thanks to Michiel van Wessem.  --rworkman
network/dansguardian: Added - DansGuardian is a web content filter.
  Thanks to David Somero.  --rworkman
network/ntop: Updated for version 3.3.  
  Thanks to Michiel van Wessem.  --rworkman
network/pound: Added - Pound is a reverse proxy, load balancer and HTTPS 
  front-end for Web servers.  Thanks to Thales A. Tsailas.  --rworkman
network/squid: Fixed the installing of the logrotate file.  --dsomero
network/udpcast: Updated for version 20080914.  
  Thanks to Heinz Wiesinger.  --rworkman
network/umtsmon: Added - umtsmon is a program to control your UMTS (and 
  GPRS/EDGE) card.  Thanks to Heinz Wiesinger.  --rworkman
network/unfs3: Updated for version 0.9.21. Thanks to Menno Duursma. --rworkman
office/kile: Updated for version 2.0.2.
  Thanks to Michiel van Wessem.  --rworkman
system/fslint: Added - fslint is a utility to find and clean various forms
  of "lint" on a filesystem.  Thanks to Erik Hanson.  --rworkman
system/p7zip: Included the 7zr binary in the final package and miscellaenous
  build script enhancements.  Thanks to Heinz Wiesinger.  --rworkman
system/pmount: Updated for version 0.9.17. 
  Thanks to Guillermo Bonvehi.  --rworkman
system/rubygems: Added - rubygems is the Ruby standard for publishing and
  managing third party libraries.  Thanks to Vincent Batts.  --David Somero
system/vhba-module: Added - VHBA (Virtual SCSI Host Bus adapter) is part of
  the userspace-cdemu suite.
  Thanks to Nille Åkerström and Heinz Wiesinger.  --rworkman
system/virtualbox-kernel-addons: Added - virtualbox-kernel-addons are the
  suplementary kernel drivers for VirtualBox guests running Slackware.
  Thanks to Heinz Wiesinger.  --David Somero
system/virtualbox-ose-addons: Added - virtualbox-ose-addons are the userspace
  part of the VirtualBox Guest Additions, intended for guest machines running
  Slackware.  Thanks to Heinz Wiesinger.  --David Somero
+--------------------------+
Sun Oct 12 02:11:37 UTC 2008
audio/faad2: Included a patch to fix a possible heap overflow.
  Thanks to Nille Åkerström and Heinz Wiesinger.  --rworkman
development/yasm: Updated for version 0.7.2.
  Thanks to Heinz Wiesinger.  -Erik Hanson
games/chromium: Updated for version 0.9.13.3.
  Thanks to Niklas 'Nille' Åkerström.  --Erik Hanson
games/openttd: Updated for version 0.6.3.
  Thanks to Chess Griffin.  --Erik Hanson
libraries/libcap: Updated for version 2.12 and added a patch from Slackware
  -current to prevent building all of the static libraries.
  Thanks to Menno Duursma and Patrick Volkerding.  --rworkman
libraries/libetpan: Updated for version 0.57. 
  Thanks to Erik Hanson.  --rworkman
misc/cksfv: Updated for version 1.3.13.
  Thanks to Niklas 'Nille' Åkerström.  --Erik Hanson
misc/xclip: Updated for version 0.11.
  Thanks to Peter Drauden.  --Erik Hanson
multimedia/mkvtoolnix: Updated for version 2.3.0. Switch to boost regex from
  pcre, bug fixes and enhancements. Thanks to Andrew Strong.  --Erik Hanson
network/claws-mail-extra-plugins: Updated for version 3.6.1.
  Thanks to Erik Hanson.  --rworkman
network/claws-mail: Updated for version 3.6.1.
  Thanks to Erik Hanson.  --rworkman
network/snownews: Updated for version 1.5.10.
  Thanks to Grigorios Bouzakis.  --Erik Hanson
office/openoffice.org: Updated for version 3.0.0.
  Thanks to Robby Workman.  --Erik Hanson
system/htop: Updated for version 0.8.1.
  Thanks to Michiel van Wessem.  --Erik Hanson
system/lzma: Added - High compression utilities based on LZMA SDK.
  Thanks to Martin Ivanov.  --Erik Hanson
system/mlterm: Added - a multilingual terminal emulator for X11.
  Thanks to Marco Cecchetti.  --Erik Hanson
system/pcsc-lite: Updated for version 1.4.102.
  Thanks to LukenShiro.  --rworkman
system/t1utils: Updated for version 1.33.
  Thanks to Kyle Guinn.  --Erik Hanson
+--------------------------+
Thu Oct  9 04:23:27 UTC 2008
system/virtualbox-ose: Updated the build script to fix some build bugs.
  Thanks to Heinz again :-)  --rworkman
+--------------------------+
Sun Oct  5 00:08:41 UTC 2008
academic/gwyddion: Added - gwyddion is a scanning probe microscopy data
  analyzer. Thanks to Daniil Bratashov.  --David Somero
academic/qtoctave: Updated for version 0.8.1.
  Thanks to Mauro Giachero.  --David Somero
audio/Songbird: Updated for version 0.7.0.
  Thanks to Michiel van Wessem.  --Erik Hanson
audio/mpdscribble: Added - mpdscribble is a music player daemon client.
  Thanks to Erik Hanson.  --David Somero
audio/sonata: Updated for version 1.5.3.
  Thanks to Andrew Brouwers.  --David Somero
desktop/enlightenment: Updated for DR17 0.16.999.050.
  Thanks to Aleksandar Samardzic.  --Erik Hanson
development/Coin: Updated for version 3.0.0.
  Thanks to Aleksandar Samardzic.  --David Somero
development/paramiko: Added - paramiko is a module for python 2.2+ that
  implements the SSH2 protocol. Thanks to Heinz Wiesinger.  --David Somero
development/pycrypto: Added - pycrypto is a collection of both secure hash
  functions and various encryption algorithms.
  Thanks to Heinz Wiesinger.  --David Somero
games/wormux: Updated for version 0.8.1.
  Thanks to Heinz Wiesinger.  --David Somero
graphics/inkscape: Included a patch to allow compiling with later versions
  of poppler (such as that in Slackware -current).  --rworkman
libraries/barry: Updated for version 0.13.
  Thanks to Vincent Batts.  --David Somero
libraries/e_dbus: Updated for version 0.5.0.050.
libraries/ecore: Updated for version 0.9.9.050.
libraries/edje: Updated for version 0.9.9.050.
libraries/efreet: Updated for version 0.5.0.050.
libraries/eet: Updated for version 1.1.0.
libraries/embryo: Updated for version 0.9.9.050.
libraries/evas: Updated for version 0.9.9.050.
  Thanks to Aleksandar Samardzic.  --Erik Hanson
libraries/exempi: Updated for version 2.0.2.
  Thanks to Michiel van Wessem.  --Erik Hanson
libraries/gstreamer: Updated for version 0.10.21.
  Thanks to Michiel van Wessem.  --Erik Hanson
libraries/lame: Updated for version 3.98.2.
  Thanks to Michiel van Wessem. --Erik Hanson
libraries/libetpan: Updated for version 0.56.
  Thanks to Erik Hanson. --Michiel
libraries/libmcrypt: Added - libmcrypt is a program for encrypting files
  or streams. Thanks to Frank Gingras.  --David Somero
libraries/libmirage: Added - libmirage is a CD-ROM image access library.
  Thanks to Niklas 'Nille' Åkerström.  --David Somero
libraries/plib: Added - plib is Steve's Portable Game Library.
  Thanks to "x-ip".  --David Somero
libraries/yaz: Updated for version 3.0.36.
  Thanks to Michiel van Wessem. --Erik Hanson
multimedia/MPlayer: Added a patch to fix a heap overflow in the RealPlayer
  demuxer.  Thanks to OCert for the patch.  --rworkman
multimedia/gst-plugins-base: Updated for version 0.10.21.
multimedia/gst-plugins-good: Updated for version 0.10.10.
multimedia/gst-plugins-ugly: Updated for version 0.10.9.
  Thanks to Michiel van Wessem. --Erik Hanson
multimedia/smplayer: Updated for version 0.6.3.
  Thanks to Erik Hanson. --Michiel
network/claws-mail: Updated for version 3.6.0.
  Thanks to Erik Hanson. --Michiel
network/claws-mail-extra-plugins: Updated for version 3.6.0.
    Thanks to Erik Hanson. --Michiel
network/fdm: Updated for version 1.5.
  Thanks to Grigorios Bouzakis.  --David Somero
network/flock: Added - Flock is mozilla based browser, aimed 
  at social networking sites. Thanks to VBatts. --Michiel
network/kdesvn: Updated for version 1.0.2.  
  Thanks to Michiel van Wessem.  --rworkman
network/mz: Added - mz (Mausezahn) is basically a versatile packet
  creation tool. Thanks to Heinz Wiesinger.  --David Somero
network/netkit-filesystem: Added - netkit-filesystem contains an installed
  Debian Linux distribution.
network/netkit-kernel: Added - netkit-kernel is the Netkit UML kernel K2.5.
network/netkit: Added - Netkit is a self-contained environment that makes
  it easy and costless to emulate complex network configurations.
  Thanks to Murat D. Kadirov.  --David Somero
network/squid: Updated for version 3.0.STABLE9.
network/suhosin: Updated for version 0.9.27.
  Thanks to Menno E. Duursma.  --David Somero
network/transmission: Updated for version 1.34.
  Thanks to Iskar Enev.  --David Somero
network/wicd: Updated for version 1.5.3.
  Thanks to Robby Workman. --Michiel
network/xrdp: Updated for version 0.4.1.
  Thanks to Phillip Warner.  --David Somero
office/kmymoney2: Updated for version 0.9.2.
  Thanks to Michiel van Wessem.  --rworkman
office/tellico: Updated for version 1.3.4.
  Thanks to Michiel van Wessem. --David Somero
system/adcfw-log: Added - adcfw-log is an iptables Log analyser.
  Thanks to Ashley Wiren.  --David Somero
system/gammu: Updated for version 1.21.0.
  Thanks to Heinz Wiesinger.  --Erik Hanson
system/pcsc-lite: Updated for version 1.4.102.
  Thanks to LukenShiro.  --David Somero
system/tdb: Added - TDB is a Trivial Database. In concept, it is very much
  like GDBM, and BSD's DB. Thanks to Grigorios Bouzakis.  --David Somero
+--------------------------+
Thu Sep 25 23:47:46 UTC 2008
desktop/fbdesk: Added - a fluxbox-util application that creates and manages
  icons on your Fluxbox desktop. Thanks to Sahil Raina.  --Erik Hanson
development/apache-ant: Updated for version 1.7.1.
  Thanks to Dugan Chen.  --Erik Hanson
development/codeblocks: Added - CodeBlocks is a free C++ IDE built to meet
  the most demanding needs of its users.
  Thanks to Jeanne-Kamikaze.  --Erik Hanson
development/re2c: Added - re2c is a tool for converting regular expressions
  to C/C++. Thanks to Luken Shiro.  --Erik Hanson
development/sip: Updated for version 4.7.7.
  Thanks to Aleksandar Samardzic.  --Erik Hanson
games/chromium: Updated for version 0.9.13.2. New Maintainer.
  Thanks to Niklas "Nille" Åkerström.  --Erik Hanson
graphics/dcraw: Updated for version 8.87.
  Thanks to Nishant Limbachia.  --Erik Hanson
graphics/rawstudio: Updated for version 1.0.
  Thanks to Nishant Limbachia.  --Erik Hanson
libraries/libmspack: Added - libmspack provides both compression and
  decompression of some file formats used by Microsoft.
  Thanks to Erik Hanson.  --David Somero
network/deluge: Added - a GTK based bittorrent client.
  Thanks to Stylianos Tsampas.  --Erik Hanson
network/nethogs: Added - a small 'net top' tool that displays bandwidth
  by process. Thanks to Michales Michaloudes.  --Erik Hanson
system/dar: Updated for version 2.3.8.
  Thanks to Nishant Limbachia.  --Erik Hanson
system/ncdu: Updated for version 1.4.
  Thanks to Erik Hanson. --Michiel
system/terminus-font: Updated for version 4.28. 
  Thanks to Antonio Hernández Blas. --Michiel
system/virtualbox-kernel: Updated for version 2.0.2.
system/virtualbox-ose: Updated for version 2.0.2.
  Thanks to Heinz Wiesinger.  --rworkman
+--------------------------+
Wed Sep 17 10:21:52 UTC 2008
misc/kvm: Fixed not building man pages if built after just "su" (as opposed
  to "su -" or an actual root login) and added kernel version to the package
  version; also fixed an incorrect path to udev rules. 
  Thanks to Murat D. Kadirov for pointing this out.  --David Somero
+--------------------------+
Tue Sep 16 21:44:46 UTC 2008
audio/ardour: Fix building with lv2 enabled.
  Thanks to Heinz Wiesinger.  --David Somero
audio/musicmanager: Added - musicmanager is Goggles Music Manager.
  Thanks to Keith Richie.  --David Somero
audio/nero-aac: Added - nero-acc is Nero's AAC Encoder and Decoder.
  Thanks to Erik Hanson.  -David Somero
audio/rosegarden: Updated for version 1.7.2.
  Thanks to Heinz Wiesinger.  --David Somero
desktop/awesome: Updated for version 2.3.4.
  Thanks to Chess Griffin.  --David Somero
desktop/cmatrix: Added - cmatrix creates a ncurses-based scrolling Matrix
  screen.  Thanks to Phillip Warner.  --David Somero
desktop/thunar-shares: Added - thunar-shares is a Thunar file manager
  extension to share files using Samba. Robby Workman would like to thank
  Slava Stetskevych for the suggestion.  --David Somero --Erik Hanson
desktop/xfce4-battery-plugin: Added - a battery monitor for the Xfce panel.
  Thanks to Robby Workman.  --Erik Hanson
desktop/xfce4-screenshooter-plugin: Updated for version 1.3.2.
  Thanks to Robby Workman.  --Erik Hanson
development/acpica: Updated for version 20080829.
  Thanks to Heinz Wiesinger.  --rworkman
development/Amaya: Updated for version 10.0.1. Thanks to Kai.  --David Somero
development/cc65: Added - cc65 is a complete cross development package for
  65(C)02 systems.  Thanks to B. Watson.  --David Somero
development/Genshi: Updated for version 0.5.1.
  Thanks to Andrea Maccis.  --David Somero
development/gmm: Updated for version 3.1.
  Thanks to Heinz Wiesinger.  --David Somero
development/hugs98: Added - Hugs 98 is a functional programming system based
  on Haskell 98.  Thanks to Daniel.  --David Somero
development/kdesvn: Updated for version 1.0.1.
  Thanks to Michiel van Wessem.  --rworkman
development/R: Updated for version 2.72.
  Thanks to Joel J. Adamson.  --David Somero
development/Werkzeug: Update for version 0.3.1.
  Thanks to Andrea Maccis.  --David Somero
games/openarena: Updated for version 0.8.0.
  Thanks to Chess Griffin.  --David Somero
games/qmc2: Added - QMC2 is a Qt 4 based UNIX GUI frontend for SDLMAME.
  Thanks to Erik Hanson.  --David Somero
games/smc: Added - smc (Secret Maryo Chronicles) is an Open Source
  two-dimensional platform game   Thanks to Phillip Warner.  --David Somero
games/smc_music: Added - smc_music is a music pack for smc.
  Thanks to Phillip Warner.  --David Somero
games/supertux: Added - SuperTux is a classic 2D jump'n run sidescroller game.
  Thanks to Nille Åkerström for sending in the gcc4 patch.  --David Somero
games/typhoon_2001: Added - Typhoon 2001 is a freeware game inspired by both
  the Atari Jaguar hit game Tempest 2000 and the arcade hit Tempest.
  Thanks to B. Watson.  --David Somero
games/xbill: Added - xbill,Stop Bill from loading his OS into all the computers.
  Thanks to Menno E. Duursma.  --David Somero
graphics/opengtl: Added - opengtl provide the tools, languages and libraries
  to create generic transformation for graphics.
  Thanks to Heinz Wiesinger.  --David Somero
libraries/libcap: Included a patch to fix a build problem in which libcap
  tries to include a file that's only present in its own package.  Note 
  that this was submitted upstream and is fixed in the git repo, but in a
  different way.  We'll get the newer version when it releases.  --rworkman
libraries/libdvdread: Updated for version 4.1.3.
libraries/libdvdnav: Updated for version 4.1.3. This now requires libdvdread
  and is no-longer a conflict. Thanks to Heinz Wiesinger.  --Erik Hanson
libraries/liblinebreak: Added - liblinebreak is an implementation of the line
  breaking algorithm.  Thanks to Audrius Kaukauskas.
libraries/rlog: Updated for version 1.4.
  Thanks to Heinz Wiesinger.  --David Somero
libraries/swfdec: Added - Swfdec is a decoder/renderer for Macromedia Flash
  animations.  Thanks to Erik Hanson.  --David Somero
misc/kvm: Added - kvm is a full virtualization solution for Linux on x86
  hardware containing virtualization extensions.
  Thanks to Murat D. Kadirov.  --David Somero
network/btpd: Added - btpd is a bittorrent client.
  Thanks to Nilton Moura.  --David Somero
network/cryptcat-unix: Added - cryptcat-unix is a lightweight version
  of netcat.   Thanks to Jeanne-Kamikaze.  --David Somero
network/dovecot: Updated for version 1.1.3.  This is required for the
  new dovecot-sieve application.  --Alan Hicks
network/dovecot-sieve: Added - dovecot-sieve is a mail filtering plugin
  for dovecot.  Thanks to Nishant Limbachia.  --rworkman
network/ipvsadm: Added - ipvsadm is admin an tool for the Linux
  Virtual Server.  Thanks to luoyi.  --David Somero
network/leafnode:  Updated for version 2.0.0.alpha20080904a.
  Thanks to Andrew Strong.  --David Somero
network/memcached: Added - memcached is a high-performance, distributed memory
  object caching system.  Thanks to Conrado Ruch Jr.  --David Somero
network/openntpd: Minor cleanup and better error checking. 
  Robby Workman would like to thank Nenad Spirkoski for the
  suggestions.  --David Somero
network/postfix: Updated for version 2.5.5.  This fixes a local DoS and
  possible privilege escalation under certain conditions; see this link:
    http://www.postfix.org/announcements/20080902.html
  Thanks to Alan Hicks.  --rworkman
network/tor: Updated for version  0.2.0.31.
  Thanks to Erik Hanson.  --David Somero
network/tunctl: Added - tunctl is used to set up and maintain persistent
  TUN/TAP network interfaces.  Thanks to Murat D. Kadirov.  --David Somero
network/wicd: Updated for version 1.5.2.
  Thanks to rworkman. -- Michiel
network/wireshark: Updated for version 1.0.3.
  Thanks to Michiel van Wessem.  --rworkman
office/acroread: Updated for version 8.1.2_SU1. Added language to the version
  string (like OOo). Thanks to Heinz Wiesinger.  --Erik Hanson
office/fbreader: Updated for version 0.8.17.
  Thanks to Audrius Kazukauskas.  --David Somero
office/scribus: Updated for version 1.3.3.12.
  Thanks to Heinz Wiesinger.  --David Somero
system/bogofilter: Added - bogofilter is a bayes filtering app that can be 
  used with claws-mail. Thanks to Robby Workman.  --David Somero
system/encfs: Updated for version 1.5.
  Thanks to Heinz Wiesinger.  --David Somero
system/gparted: Updated to 0.3.8.
  Thanks to Erik Hanson.  --David Somero
system/irqbalance: Moved the binary from /usr/bin to /usr/sbin and added
  some semblance of documentation.  Thanks to Grissiom.  --rworkman
system/multitail: Updated for version 5.2.2.
  Thanks to Erik Hanson.  -David Somero
system/stress: Added - stress is a simple, small app to stress test a system.
  Thanks to Vincent Batts.  --David Somero
system/trrntzip: Added - trrntzip is a replacement for MameZip.
  Thanks to Erik Hanson.  -David Somero
system/virtualbox-kernel: Upgraded to version 2.0.0.
system/virtualbox-ose: Upgraded to version 2.0.0.
  NOTE: Be sure to move/merge /etc/vbox/vbox.cfg.new if you are upgrading
  from an earlier version, as the installation prefix has changed.
  Thanks to Heinz Wiesinger for both of these updates.  --rworkman
system/xf86-input-synaptics: This replaces synaptics in our tree.
  Thanks to Heinz Wiesinger for working out the changes needed.  --David Somero
+--------------------------+
Thu Sep  4 19:51:55 UTC 2008
system/virtualbox-kernel: Upgraded to version 1.6.6.
  Thanks to Heinz Wiesinger.  --rworkman
system/virtualbox-ose: Upgraded to version 1.6.6.
  Thanks to Heinz Wiesinger.  --rworkman
+--------------------------+
Wed Sep  3 22:40:27 UTC 2008
desktop/rss-glx: Added - rss-glx is a port of some nifty OpenGL screensavers
  that were originally written for Windows to GLX.
  Thanks to Erik Hanson.  --David Somero
desktop/xfce4-screenshooter-plugin: Updated for version 1.3.1.
  Thanks to Robby Workman.  --Erik Hanson
libraries/sqlite: Updated for version 3.6.2.
   Thanks to Robby Workman.  --Erik Hanson
libraries/wxGTK: Updated for version 2.8.8.
  Thanks to Chess Griffin.  --David Somero
misc/zaptel: Updated for version 1.4.11 and added back to the 12.1 repo. 
  Thanks to Alan Hicks.  --David Somero
multimedia/gpac: Added - gpac is a multimedia framework oriented towards
  rich media.  Thanks to Nishant Limbachia.  --David Somero
multimedia/subtitleeditor: Updated for version 0.21.3.
  Thanks to Juan Valencia Escalante.  --Erik Hanson
network/asterisk: Updated for version  1.4.21.2.
  Thanks to Alan Hicks.  --David Somero
network/filezilla: Added - a fast and reliable FTP, FTPS and SFTP client.
  Thanks to Grigorios Bouzakis.  --Erik Hanson
network/lighttpd:  Updated for version 1.2.19. IMPORTANT all 1.4.x users
  should upgrade to 1.4.19.  Thanks to Paul Wisehart.  --David Somero
network/midori: Updated for version 0.0.21.
  Thanks to Andrew Brouwers.  --Erik Hanson
network/squid: Updated for version 3.0.STABLE8.
  Thanks to Robby Workman.  --David Somero
+--------------------------+
Mon Sep  1 18:48:37 UTC 2008
academic/stellarium: Patched to build with boost 1.36. --David Somero
+--------------------------+
Mon Sep  1 13:28:11 UTC 2008
academic/ladr: Updated for version 2008_06A.
  Thanks to Heinz Wiesinger. --David Somero
academic/octave-forge: Added - octave-forge is extra packages for GNU
  Octave. Thanks to Mauro Giachero. --David Somero
academic/stellarium: Updated - Updated for version  0.9.1.
  Thanks to Michael Bueker. --David Somero
academic/sword: Added - SWORD Bible Framework allows easy manipulation of 
  Bible texts, commentaries, lexicons, dictionaries, etc.
  Thanks to Heinz Wiesinger. --David Somero
accessibility/jpilot: Updated for version 1.6.0.
  Thanks to Alex Lysenka. --David Somero
audio/ardour: Updated for version 2.4.1.
  Thanks to Heinz Wiesinger. --David Somero
audio/ario: Added - ario is a GTK2 client for MPD (Music player daemon).
  Thanks to Erik Hanson. --David Somero
audio/audacity: Updated build. Chess would like to thank Heinz Wiesinger 
  for various bug fixes and the soundtouch and twolame improvements. 
  --David Somero
audio/jack-audio-connection-kit: Updated build to remove dependency on libcap.
  Thanks to Heinz Wiesinger --David Somero
audio/listener: Added - listener listens for sound. If it detects any, it 
  starts recording automatically and also automatically stops when things 
  become silent again.  Thanks to Pierre Cazenave.  --David Somero
business/xtuple: Added - xtuple is a fully integrated ERP, CRM, and
  accounting for small to midsized businesses.
  Thanks to Heinz Wiesinger.  --David Somero
desktop/ffmpegthumbnailer: Updated for version 1.2.6.
  Thanks to Frank Caraballo.  --David Somero
desktop/kirocker: Added - kirocker is a Kicker applet that displays what you
  listen to in Amarok.  Thanks to Dhaby Xiloj. --David Somero
desktop/krypt: Added - krypt is a simple application that sits in the tray,
  and provides easy access to the list of volumes encrypted with LUKS. 
  Thanks to Nishant Limbachia. --David Somero
desktop/QtCurve-Gtk2: Updated for version 0.59.7.
  Thanks to Michiel van Wessem. --David Somero
desktop/QtCurve-KDE3: Updated for version 0.59.5.
  Thanks to Michiel van Wessem. --David Somero
desktop/ubuntulooks: Added - ubuntulooks is the gtk2 theme engine used by 
  Ubuntu.  Thanks to Andrew Brouwers. --David Somero
development/apache-maven: Added - apache-maven is a software project
  management and comprehension tool.
  Thanks to Heinz Wiesinger. --David Somero
development/bzr: Updated build to correctly build docs.
  Thanks to zpcspm at gmail.com for the patches.  --David Somero / rworkman
development/diakonos: Added - diakonos is a advanced console text editor.
  Thanks to Phillip Warner. --David Somero
development/egenix-mx-base: Updated for version 3.1.1.
  Thanks to Heinz Wiesinger. --David Somero
development/gtkdialog: Updated build. Thanks to David B. Cortarello for the 
  patch to get around an infinite loop issue.  --David Somero
development/kdesvn: Updated for version 1.0.0.
  Thanks to Michiel van Wessem. --David Somero
development/llvm: Added - llvm is a Low Level Virtual Machine is a toolkit
  for the construction of highly optimized compilers, optimizers, and runtime
  environments.  Thanks to Heinz Wiesinger. --David Somero
development/medit: Updated for version 0.9.4.
  Thanks to Erik Hanson.  --David Somero
development/ming: Added - ming is a Flash (SWF) output library.
  Thanks to Heinz Wiesinger. --David Somero
development/ndesk-dbus-glib: Added - ndesk-dbus-glib provides GLib main loop
  integration for ndesk-dbus.  Thanks to Erik Hanson.  --David Somero
development/ndesk-dbus: Added - ndesk-dbus is a C# implementation of D-Bus.
  Thanks to Erik Hanson.  --David Somero
development/openmpi:  Updated for version 1.2.7.
  Thanks to Aleksandar Samardzic. --David Somero
development/perl-extutils-cbuilder: Added - This perl-module can build the C
  portions of Perl modules by invoking the appropriate compilers and linkers
  in a cross-platform manner. Thanks to Heinz Wiesinger. --David Somero
development/perl-extutils-parsexs: Added - ExtUtils::ParseXS will compile XS
  code into C code by embedding the constructs necessary to let C functions
  manipulate Perl values Thanks to Heinz Wiesinger. --David Somero
development/perl-module-build: Added - perl-module-build is meant to be an
  alternative to ExtUtils::MakeMaker.
  Thanks to Heinz Wiesinger. --David Somero
development/tokyocabinet: Added - tokyocabinet a library of routines for
  managing a database.  Thanks to luoyi. --David Somero
development/xmlstarlet:  Added - xmlstarlet is a command line XML toolkit that
  can be used to transform, query, validate, and edit XML documents.
  Thanks to Vincent Batts. --David Somero
development/zile: Added - Zile is a lightweight Emacs clone.
  Thanks to Rob Ellis. --David Somero
games/freeciv: AUpdated for version 2.1.6.
  Thanks to Iskar Enev. --David Somero
games/ivan: Added - ivan is a graphical roguelike game.
  Thanks to Niklas 'Nille' Åkerström. --David Somero
games/openttd: Updated for version 0.6.2.
  Thanks to Chess Griffin.  --David Somero
games/pcsx-df:  Added - pcsx-df is a forked version of the dead PCSX emulator.
  Thanks to Heinz Wiesinger. --David Somero
games/pokerth: Added - play the popular "Texas Hold'em" poker variant against
  up to six computer-opponents or play network games with people all over the
  world. Thanks to Marcel Saegebarth.  --Erik Hanson
games/tmw: Update for version 0.0.25.
  Thanks to Erik Hanson. --David Somero
games/wesnoth: Updated for version 1.4.4.
  Thanks to Michiel van Wessem. --David Somero
games/widelands: Added - Widelands is a strategy game based on Settlers II.
  Thanks to Heinz Wiesinger.  --Erik Hanson
games/wormux: Updated for version 0.8. 
  Thanks to Heinz Wiesinger --David Somero
games/xskat:  Added - xskat lets you play the card game Skat.
  Thanks to Jan Herrygers.  --David Somero
graphics/autopano-sift-C: Added - autopano-sift-C is a C port of the C#
  software autopano-sift. Thanks to Erik Hanson.  --David Somero
graphics/enblend: Added - Enblend is a tool for compositing images.
  Thanks to Erik Hanson.  --David Somero
graphics/hugin: Added - hugin is an easy to use cross-platform panoramic
  imaging toolchain based on Panorama Tools.
  Thanks to Erik Hanson. --David Somero
graphics/yafray: Added - yafray is a powerful raytracer.
  Thanks to Brian Muramatsu. --David Somero
libraries/aubio: Added - aubio is a library for audio labelling.
  Thanks to Heinz Wiesinger. --David Somero
libraries/clucene: Updated for version 0.9.21.
  Thanks to Heinz Wiesinger. --David Somero
libraries/eaccelerator: Added - eaccelerator is a free open-source PHP
  accelerator.  Thanks to "javivf". --David Somero
libraries/guichan: Update for version 0.8.1. 
  Thanks to Erik Hanson.  --David Somero
libraries/lame: Updated for version 3.98. 
  Thanks to Michiel van Wessem. --David Somero
libraries/libebml: Added - libebml is a C++ libary to parse EBML files. 
  Thanks to Andrew Strong --David Somero
libraries/libeXosip2: Added - libeXosip2 is a library that hides the
  complexity of using the SIP protocol for mutlimedia session establishement.
  Thanks to "adev". --David Somero
libraries/libmatroska: Added - libmatroska is a  library which is used to
  manipulate .mkv files.  Thanks to Andrew Strong. --David Somero
libraries/libmms:  Added - libmms is common library for parsing mms:// 
  and mmsh:// type network streams. Thanks to Heinz Wiesinger. --David Somero
libraries/liboil: Updated for version 0.3.15. 
  Thanks to Michiel van Wessem. --David Somero
libraries/libpano13: Added - libpano13 is the pano13 library, part of the
  Panorama Tools by Helmut Dersch of the University of Applied Sciences
  Furtwangen.  Thanks to Erik Hanson.  --David Somero
libraries/libsoup: Added - libsoup is an HTTP library implementation in C. 
  Thanks to Erik Hanson.  --David Somero
libraries/openbabel: Update for version 2.2.0. 
  Thanks to Robby Workman. --David Somero
libraries/pcsc-perl: Added - pcsc-perl is a Perl module that allows you to
  communicate with a smartcard  Thanks to Andrew Psaltis. --David Somero
libraries/pcsc-tools: Added - pcsc-tools provides some utilities that allow 
  you to use your smart card reader.  Thanks to Andrew Psaltis. --David Somero
libraries/pyusb: Added - PyUSB is a native Python module written in C which 
  provides easy USB access to Python.  Thanks to Kyle Guinn.  --David Somero
libraries/slv2: Added - SLV2 is a library for LV2 hosts intended to make 
  using LV2 Plugins as simple as possible.
  Thanks to Heinz Wiesinger.  --David Somero
libraries/webkit: Updated for snapshot r35963.  --Erik Hanson
libraries/xalan-c:  Updated for version 1.10.0.
  Thanks to Heinz Wiesinger. --David Somero
libraries/xerces-c:  Updated for version 2.8.0.
  Thanks to Heinz Wiesinger. --David Somero
misc/iscan-proprietary-drivers: Added - iscan-proprietary-drivers are the 
  proprietary binary-only i386-only libraries for EPSON USB scanners.
  Thanks to Simone Giustetti.  --David Somero
multimedia/avidemux: Updated for version 2.4.3. 
  Thanks to Niklas 'Nille' Åkerström.
  And Heinz Wiesinger for the patch. --David Somero 
multimedia/devede: Updated for version 3.11.
  Thanks to Roberto Neri. --David Somero
multimedia/gst-plugins-bad: Updated for version 0.10.8.
  Thanks to Michiel van Wessem. --David Somero
multimedia/gst-plugins-good: Updated for version 0.10.9.
  Thanks to Michiel van Wessem. --David Somero
multimedia/mkvtoolnix: Added - MKVToolnix is a set of tools to create, alter,
  and inspect Matroska files.  Thanks to Andrew Strong. --David Somero
multimedia/smplayer: Update for version 0.6.2.
  Thanks to Erik Hanson.  --David Somero
multimedia/transcode: Update for version 1.0.6.
  Thanks to Heinz Wiesinger. --David Somero
multimedia/vobcopy: Added - vobcopy copies .vob files from DVD to hard drive.
  Thanks to Nishant Limbachia. --David Somero
network/3proxy: Added - 3proxy is tiny http/ftp/pop3/socks proxy server.
  Thanks to Ilya Poneatyev. --David Somero
network/amsn: Updated for version 0.97.2.
  Thanks to Niklas 'Nille' Åkerström. --David Somero
network/aMule: Updated for version 2.2.2. 
  Thanks to Iskar Enev. --David Somero
network/gajim: Updated for version 0.11.4.
  Thanks to mozg667@wp.eu, This build needs a new maintainer. --David Somero
network/galaxium: Updated for version 0.7.4.1.
  Thanks to Erik Hanson. --David Somero
network/htscanner: Added - Htscanner allows one to use htaccess-like files to
  configure PHP on a per-directory basis.
  Thanks to Menno E. Duursma. --David Somero
network/iscsitarget: Added - iSCSI Enterprise Target is for building an iSCSI
  storage system on Linux.  Thanks to Thales A. Tsailas. --David Somero
network/konversation: Updated for version 1.1. 
  Thanks to Michiel van Wessem. --David Somero
network/kuftp: Added - KuFTP is a graphical FTP client for the K Desktop
  Environment.  Thanks to Manfred Mueller. --David Somero
network/linphone: Added - linphone is an audio and video Internet phone with 
  GTK+ and console interfaces.  Thanks to "adev". --David Somero
network/midori: Added - Midori is a lightweight, webkit-based web browser.
  Thanks to Andrew Brouwers. --David Somero
network/mod_chroot:  Added - mod_chroot allows you to run Apache in a chroot
  jail with no additional files.  Thanks to Menno E. Duursma.  --David Somero
network/opendchub: Added - opendchub is an Open Source Linux/Unix version of 
  the hub software for Direct Connect.  
  Thanks to Michael Kapelko.  --David Somero
network/opera: Updated for version 9.52.
  Robby Workman would like to thank Daniel Kao for this update. --David Somero
network/tork:  Added - tork is a gui for KDE3 to configure tor and privoxy.
  Thanks to Heinz Wiesinger. --David Somero
network/transmission: Update for version 1.32.
  Thanks to Iskar Enev.  --David Somero
office/basket: Updated for version 1.0.3.1. 
  Thanks to Michiel van Wessem. --David Somero
office/keepassx: Added - keepassx is an application for people with extremely 
  high demands on secure personal data management. 
  Thanks to Ferenc Deak. --David Somero
office/osmo: Updated for version 0.2.2 and now depends on libnotify.
  Thanks to Frank Caraballo. --David Somero
office/vym: Update for version 1.12.0.
  Thanks to Heinz Wiesinger. --David Somero
system/ccid: Updated for version 1.3.8.
  Thanks to Andrew Psaltis. --David Somero
system/cfengine: Updated for version 2.2.8.
  Thanks to Menno E. Duursma.  --David Somero
system/curlftpfs: Added - CurlFtpFS is a filesystem for acessing ftp hosts
  based on FUSE and libcurl.  Thanks to Heinz Wiesinger. --David Somero
system/fakeroot: Updated for version 1.9.6.
  Thanks to Ferenc Deak. --David Somero
system/xcdroast: Added - xcdroast is a graphical frontend for cdrtools.
  Thanks to Georgios Efstathiou.  --David Somero
+--------------------------+
Wed Aug 20 22:59:14 UTC 2008
academic/WordNet: Added - WordNet is a large lexical database of English.
  Thanks to Michael Gabilondo. --David Somero
academic/xdrawchem: Minor script cleanup.  --rworkman
desktop/lxpanel: Updated for version 0.3.8.1.
  Thanks to Michael Wagner. --David Somero
desktop/openbox: Fixed the xinitrc.openbox-session script so that it
  starts openbox-session instead of plain openbox.  
  Thanks to Chess Griffin for the update, and he asks that we pass along
  thanks to Bruno Queiros for the original bug report on openbox session
  management and to Phil Warner for *lots* of help with fixes to the 
  build script and associated files.  --rworkman
development/boost: Updated for version 1.36.0.
  Thanks to Heinz Wiesinger. --Michiel
development/docutils: Updated for version 0.5.
  Thanks to Robby Workman. --David Somero
development/eclipse: Updated for version 3.4.
  Thanks to Antonio Hernández Blas. --David Somero
development/empty: Added - empty is an expectlike tool to run command-line
  interactive programs  Thanks to Menno E. Duursma. --David Somero
development/udis86: Added - udis86 is an easy-to-use minimalistic
  disassembler library for the x86 and AMD64 (x86-64) range of
  instruction set architectures.  Thanks to Kyle Guinn. --David Somero
games/eduke32: Added - eduke32 is a fork of the JFDuke3D port of Duke
  Nukem 3D.
games/eduke32_hires_pack: Added - eduke32_hires_pack
games/eduke32_shareware_data: Added - eduke32_shareware_data
  Thanks to B. Watson. --David Somero
games/gnubg: Updated to a more recent snapshot.  
  Thanks to Erik Hanson.  --rworkman
games/openttd: Fixed a build issue with the script.  --David Somero
graphics/graphviz: Updated for version 2.20.2.
  Thanks to Audrius Kazukauskas. --David Somero
libraries/FreeImage: Updated for version 3.11.0.
  Thanks to Phil Warner. --David Somero
libraries/geos: Added - geos is a C++ port of the Java Topology Suite
  (JTS).  Thanks to Kyle Guinn. --David Somero
libraries/icu4c: Updated for version 4.0.
  Thanks to Heinz Wiesinger. --David Somero
libraries/libwpg: Updated for version 0.1.3.
  Thanks to Heinz Wiesinger. --David Somero
libraries/loudmouth: Updated for version 1.4.1.
  Thanks to Heinz Wiesinger. --David Somero
misc/dwdiff: Updated for version 1.4.1
   Thanks to "slakmagik". --David Somero
multimedia/gpodder: Updated for version 0.12.2.
  Thanks to Chess Griffin. --David Somero
network/arptables: Added - arptables is used to set up, maintain,
  and inspect the tables of ARP rules in the Linux kernel.
  Thanks to Menno  E. Duursma. --David Somero
network/bmon: Added - bmon is a portable bandwidth monitor and rate
  estimator. Thanks to B. Watson. --David Somero
network/fail2ban: Updated for version 0.8.3.
  Thanks to Nishant Limbachia. --David Somero
network/heimdal: Updated for version 1.2.1.
  Thanks to Menno E. Duursma. --David Somero
network/mozplugger: Updated for version 1.10.2.
  Thanks to Michael Wagner. --David Somero
network/pptpd: Added - pptpd  is a PoPToP Point to Point Tunneling Server.
  Thanks to Robby Workman. --David Somero
network/wicd: Updated for version 1.5.1.
   Thanks to Robby Workman. --David Somero
system/clamsmtp: Updated for version 1.10.
  Thanks to Nishant Limbachia. --David Somero
system/fglrx-driver: Updated for version 8.512.
  Thanks to Antonio Hernández Blas. --David Somero
system/fglrx-module: Updated for version 8.512.
  Thanks to Antonio Hernández Blas. --David Somero
system/nvidia-driver: Updated for version 173.14.12.
  Thanks to Heinz Wiesinger. --David Somero
system/nvidia-kernel: Updated for version 173.14.12.
  Thanks to Heinz Wiesinger. --David Somero
system/nvidia-legacy-driver: Updated for version 96.43.07.
  Thanks to Heinz Wiesinger. --David Somero
system/nvidia-legacy-kernel: Updated for version 96.43.07.
  Thanks to Heinz Wiesinger. --David Somero
system/nvidia-old-legacy-driver: Added - nvidia-old-legacy-driver is the 
  71.x version.  Thanks to Heinz Wiesinger. --David Somero
system/nvidia-old-legacy-kernel: Added - nvidia-old-legacy-kernel is the 
  71.x version.  Thanks to Heinz Wiesinger. --David Somero
system/proj: Added - proj is a standard UNIX filter function which
  converts geographic longitude and latitude coordinates into cartesian
  coordinates.  Thanks to Kyle Guinn. --David Somero
system/runit: Added - runit is a replacement for sysvinit and other init 
  schemes.  Thanks to David Miller. --David Somero
+--------------------------+
Sun Aug 10 06:15:27 UTC 2008
business/tinyerp-client: Added - Tiny ERP is a free enterprise management 
  software package.  This is the client application.  
  Thanks to Heinz Wiesinger.  --rworkman
business/tinyerp-server: Added - Tiny ERP is a free enterprise management 
  software package.  This is the server application.  
  Thanks to Heinz Wiesinger.  --rworkman
development/acpica: Updated for version 20080729.
  Thanks to Heinz Wiesinger.  --rworkman
graphics/kipi-plugins: Updated for version 0.1.5.
  Thanks to Frank Caraballo.  --rworkman
libraries/qt4: Updated for version 4.4.1.
  Thanks to Alex Samardzic.  --rworkman
libraries/webkit: Added - WebKit is an open-source web browser engine.
  Thanks to Erik Hanson and Andrew Brouwers.  --rworkman
libraries/webkit-sharp: Added - C# bindings for webkit.
  Thanks to Erik Hanson.  --rworkman
network/frostwire: Updated for version 4.17.0.
  Thanks to Phil Warner.  --rworkman
network/hostapd: Added - hostapd is a userspace daemon for access point and
  authentication servers.  Thanks to Murat D. Kadirov.  --rworkman
office/vym: Added - vym (View Your Mind) is a mindmapping application.
  Thanks to Heinz Wiesinger.  --rworkman
system/gdm: Updated for version 2.20.7.
  Thanks to Frank Caraballo.  --rworkman
system/hibernate-script: Added - hibernate-script is a set of userspace
  scripts to assist with suspend and hibernate.  The TuxOnIce patches
  to the kernel are strongly recommended for use with this.
  Thanks to Sergey Portnov.  --rworkman
system/sshfs-fuse: Updated for version 2.1.
  Thanks to Michiel van Wessem.  --rworkman
system/virtualbox-ose: Updated for version 1.6.4.
system/virtualbox-kernel: Updated for version 1.6.4.
  Thanks to Heinz Wiesinger for both of these.  --rworkman
+--------------------------+
Mon Aug  4 04:52:51 UTC 2008
graphics/djvulibre: Fixed browser plugin directory location and a few other
  minor enhancements to the build script.  Thanks to Wayne Walton for the
  heads-up on the plugin directory.  --rworkman
+--------------------------+
Sun Aug  3 16:54:07 UTC 2008
accessibility/linuxwacom: Added - linuxwacom is Wacom tablets drivers and
  tools.  Thanks to Menno E. Duursma. --David Somero
audio/herrie: Updated for version 2.1.
  Thanks to Phil Warner.  --David Somero
audio/milkytracker: Added - milkyTracker is a open source, multi-platform
  music tracker. Thanks to Nikolas Nyby.  --David Somero
desktop/openbox: Updated build script.
  Thanks to Chess Griffin.  --David Somero
desktop/QtCurve-Gtk2: Updated for version 0.59.5.
  Thanks to "bughunter2".  --David Somero
desktop/furiusisomount: Updated for version 0.8.4.0. 
  Thanks to Erik Hanson. --Michiel
desktop/xfce4-screenshooter-plugin: Updated for version 1.3.0.
  Thanks to Robby Workman.  --David Somero
development/astyle: Updated for version 1.22.
  Thanks to Dugan Chen. --David Somero
development/libanculus-sharp: Added - libanculus-sharp is a reusable 
  utility library written in C#. Thanks to Erik Hanson. --Michiel
development/mono-addins: Added - mono-addings is a framework for creating 
 extensible applications. Thanks to Erik Hanson. --Michiel
development/pycups: Added - pycups is python bindings are intended to wrap
  the CUPS API.  Thanks to Heinz Wiesinger. --David Somero
games/neverball: Updated for version 1.4.0.
  Thanks to Frank Caraballo. --David Somero
graphics/digikam: Updated for version 0.9.4.
  Thanks to Frank Caraballo. --David Somero
graphics/mirage: Updated for version 0.9.3.
  Thanks to Frank Caraballo. --David Somero
libraries/CEGUI: Updated for version 0.6.1.
  Thanks to Phil Warner.  --David Somero
libraries/cryptopp: Added - Crypto++ Library is a free C++ class library
  of cryptographic schemes. Thanks to Iskar Enev.  --David Somero
libraries/DevIL: Updated and patched to work with Slackware 12.1. 
  Thanks to Phil Warner.  --David Somero
libraries/exempi: Added - exempi is a implementation of adobe's XMP
  Thanks to Michiel van Wessem.  --David Somero
libraries/exiv2: Updated for version 0.17.1.
  Thanks to Frank Caraballo. --David Somero
libraries/gail: Updated for version 1.22.3.
  Thanks to Frank Caraballo. --David Somero
libraries/goffice: Updated for version 0.7.0.
  Thanks to "alkos333".  --David Somero
libraries/gtksourceview: Added - gtksourceview is a C library for multiline
  text editing.  Thanks to Michiel van Wessem. --David Somero
libraries/libAfterImage: Updated for version 1.18.
  Thanks to Dugan Chen.  --Erik Hanson
libraries/libcap: Updated for version 2.11.
  Thanks to Menno E. Duursma.  --Erik Hanson
libraries/libffi: Added - libffi is a portable foreign function interface
  library. Thanks to Michael Kapelko.  --David Somero
libraries/libflashsupport: Added - libflashsupport is an experimental
  library adding support for TLS and non-ALSA sound systems to Adobe
  Flash Player. Thanks to Mauro Giachero.  --David Somero
libraries/libkdcraw: Updated for version 0.1.4.
  Thanks to Frank Caraballo. --David Somero
libraries/libkexiv2: Updated for version 0.1.7.
  Thanks to Frank Caraballo. --David Somero
libraries/libkipi: Updated for version 0.1.6.
  Thanks to Frank Caraballo. --David Somero
libraries/liblo: Updated for version 0.25.
  Thanks to Heinz Wiesinger.  --Erik Hanson
libraries/libosip2: Added - libosip2 is the GNU oSIP library.
  Thanks to "adev".  --David Somero
libraries/libquicktime: Updated for version 1.0.3.
  Thanks to Heinz Wiesinger. --David Somero
libraries/libzip: Updated for version 0.9.
  Thanks to Heinz Wiesinger. --David Somero
libraries/loudmouth: Added - loudmouth is a lightweight and easy-to-use C
  library for programming with the Jabber protocol.
  Thanks to Heinz Wiesinger. --David Somero
libraries/lrmi: Added - lrmi provides a DPMI-like interface using vm86.
  Thanks to Heinz Wiesinger.  --David Somero
libraries/python-mpd: Updated for version 0.2.1.
  Thanks to Andrew Brouwers. --David Somero
libraries/wxPython: Updated for version 2.8.8.1.
  Thanks to Heinz Wiesinger.  --Erik Hanson
misc/rng-tools: Added - rng-tools are hardware random number generator
  utilities.  Thanks to David Miller. --David Somero
multimedia/GoogleEarth: Updated for version 4.3.7284.3916.
  Thanks to Michiel van Wessem. --David Somero
multimedia/kaffeine: Updated for version 0.8.7.
  Thanks to Michiel van Wessem. --David Somero
multimedia/mplayerplug-in: Updated for version 3.55.
  Thanks to Frank Caraballo. --David Somero
network/aMule: Updated for version 2.2.1.
  Thanks to Iskar Enev.  --David Somero
network/ndiswrapper: Updated for version 1.53.
  Thanks to Robby Workman.  --Erik Hanson
network/opera: Updated to fix chinese fonts.
  Robby would like to thank . --David Somero
network/retroshare: Added - retroshare is a private and secure decentralised
  commmunication platform.  Thanks to "adev". --David Somero
office/abiword: Updated for version 2.6.4.
  Thanks to Robby Workman.  --Erik Hanson
office/gnumeric: Updated for version 1.9.1.
  Thanks to "alkos333".  --Erik Hanson
office/mdbtools: Added - mdbtools is a suite of libraries and utilities
  to read MDB files. Thanks to Hans Goossen.  --David Somero
office/openrpt: Added - openrpt is a graphical sql report writer.
  Thanks to Heinz Wiesinger.  --David Somero
office/tellico: Updated for version 1.3.3.
  Thanks to Michiel van Wessem.  --David Somero
office/xpad: Updated for version 2.14.
  Thanks to Frank Caraballo. --David Somero
system/atop: Updated for version 1.23.
  Thanks to Menno E. Duursma. --David Somero
system/conky: Updated for version 1.6.0.
  Thanks to Antonio Hernández Blas. --David Somero
system/dosbox: Updated for version 0.72.
  Thanks to Michiel van Wessem.  --David Somero
system/fusesmb: Added - fusesmb is a fuse smb plugin.
  Thanks to Murat D. Kadirov. --David Somero
system/iscan: Updated for version 2.11.0.
  Thanks to Frank Caraballo. --David Somero
system/tmux: Added - tmux is a terminal multiplexer. It enables a number of
  terminals to be accessed and controlled from a single terminal.
  Thanks to Chess Griffin. --David Somero
system/xfburn: Updated for version 0.3.2.
  Thanks to Robby Workman.  --Erik Hanson
+--------------------------+
Mon Jul 21 16:27:39 UTC 2008
audio/gmpc-plugins: Added - gmpc-plugins are extra plugins for GMPC.
  Thanks to Erik Hanson.  --David Somero
audio/gmpc: Added - GMPC is a frontend for the mpd.
  Thanks to Erik Hanson.  --David Somero
audio/lv2core: Added - LV2 is a successor to LADSPA,
  Thanks to Heinz Wiesinger.  --David Somero
development/help2man: Added - a tool for automatically generating
  simple manual pages from program output.
  Thanks to Chess Griffin.  --David Somero
games/openarena: Updated for version 0.7.7.
  Thanks to Chess Griffin.  --David Somero
libraries/ftgl: Added - FTGL is a font rendering library for OpenGL
  applications.  Thanks to Niklas "Nille" Åkerström.  --David Somero
libraries/gstreamer: Upated for version 0.10.20. This is necessary for
  building the gst-plugins currently in the repository. Sorry for letting
  that slip. Thanks to Michiel van Wessem.  --Erik Hanson
multimedia/dvgrab: Added - dvgrab receives audio and video data from
  a digital camcorder via an IEEE1394 
  Thanks to Murat D. Kadirov.  --David Somero
multimedia/gpodder: Updated for version 0.11.3.
  Thanks to Chess Griffin.  --David Somero
multimedia/smplayer: Added support for the optional icon themes
  available. Thanks to Erik Hanson.  --David Somero
network/elinks: Updated for version 0.11.4.
  Thanks to Brian Muramatsu.  --David Somero
network/leafnode: Updated for version 2.0.0.alpha20080624a.
  Thanks to Andrew Strong.  --David Somero
network/murmur: Added - Murmur is the VoIP server component for Mumble.
  Thanks to "adev".  --David Somero 
network/nginx: Updated for version 0.7.5.
  Thanks to Cherife Li.  --David Somero
network/wireshark: Updated for version 1.0.2.
  Thanks to Michiel van Wessem.  --David Somero
network/wol: Added - wol implements Wake On LAN functionality in a
  small program. Thankd to Brian Muramatsu.  --David Somero
office/freemind: Added - freemind helps keeping track of projects,
  including subtasks, state of subtasks and time recording.
  Thanks to Dhaby Xiloj.  --David Somero
system/fpm2: Added - Figaro's Password Manager 2 is a program that
  allows you to securely store passwords using a GTK2 interface.
  Thanks to Erik Hanson.  --David Somero
system/nvidia-driver: Updated for version 173.14.09.
system/nvidia-kernel: Updated for version 173.14.09.
system/nvidia-legacy-driver: Added - nvidia legacy version 96.43.05.
system/nvidia-legacy-kernel: Added - nvidia legacy version 96.43.05.
  Thanks to Heinz Wiesinger.  --David Somero
system/qstardict: Added - qstardict is a StarDict clone written with 
  using Qt4. Thanks to grissiom.  --David Somero
system/sakura: Updated for version 2.2.0. New Maintainer.
  Thanks to Kristaps Esterlinsh.  --David Somero
system/stardict: Updated for version 3.0.1.
  Thanks to Murat D. Kadirov.  --David Somero
system/suspend: Added - suspend is a set of userland tools for suspend and 
  resume on laptops; it supports some features not included in the kernel's 
  suspend/resume framework.  Thanks to Murat D. Kadirov.  --rworkman
+--------------------------+
Thu Jul 17 02:07:30 UTC 2008
audio/last.fm: Small change to the last.fm script, to allow passing
  command-line arguments to the main executable.  --Erik Hanson
audio/mt-daapd: Updated for version 0.2.4.2.
  Thanks to Andrew Brouwers.  --rworkman
desktop/awesome: Updated for version 2.3.2.
  Thanks to Chess Griffin.  --Erik Hanson
development/bzr: Added - Bazaar (bzr) is a decentralized revision control
  system, designed to be easy for developers and end users alike.
  Thanks to Robby Workman. --Michiel
development/scons: Updated for version 0.98.5. 
  Thanks to Kyle Guinn. --Michiel
games/freeciv: Updated for version 2.1.5.
  Thanks to Iskar Enev.  --Erik Hanson
games/openttd: Updated for version 0.6.1.
 Thanks to Chess Griffin.  --Erik Hanson
games/wesnoth: Updated for version 1.4.3.
  Thanks to Michiel van Wessem.  --Erik Hanson
graphics/dia: Updated for version 0.96.1.
  Thanks to Matt Hayes. --Michiel
libraries/gst-ffmpeg: Added - gst-ffmpeg is a
  FFmpeg plugin for GStreamer. 
  Thanks to Juan Valencia Escalante. --Michiel
libraries/gst-python: Added - gst-pythons are python bindings for 
  gstreamer. Thanks to Thiago Coutinho. --Michiel
libraries/libarchive: Updated for version 2.5.5.
  Thanks to Heinz Wiesinger.  --Erik Hanson
libraries/libcap: Updated for version 2.10.  
  Thanks to Menno Duursma.  --rworkman
libraries/libsamplerate: Updated for version 0.1.4.
  Thanks to Paul Wisehart.  --rworkman
libraries/rasqal: Updated for version 0.9.16.
  Thanks to Heinz Wiesinger.  --Erik Hanson
libraries/redland: Updated for version 1.0.8.
  Thanks to Heinz Wiesinger.  --Erik Hanson
libraries/xmltv_prereq: Updated to reflect a new dependency.
  Thanks to David Somero.  --rworkman
libraries/yaz: Updated for version 3.0.34.
  Thanks to Michiel van Wessem.  --Erik Hanson
misc/clawsker: Updated for version 0.5.0.
  Thanks to Erik Hanson. --Michiel
multimedia/devede: Updated for version 3.9.
  Thanks to Roberto Neri.  --Erik Hanson
multimedia/gst-plugins-base: Updated for version 0.10.20.
  Thanks to Michiel van Wessem.  --Erik Hanson
multimedia/gst-plugins-ugly: Updated for version 0.10.8.
  Thanks to Michiel van Wessem.  --Erik Hanson
multimedia/mythtv: Updated for version 0.21.
multimedia/myththemes: Updated for version 0.21.
multimedia/mythplugins: Updated for version 0.21.
  Thanks to David Somero for the mythtv stuff.  --rworkman
multimedia/subtitleeditor: Added - subtitleeditor is 
  GTK2 editor for subtitles.
  Thanks to Juan Valencia Escalante. --Michiel
multimedia/xmltv: Updated for version 0.5.51.
  Thanks to David Somero.  --rworkman
network/bip: Updated for version 0.7.4.
  Thanks to Chess Griffin.  --Erik Hanson
network/hylafax: Updated for version 4.4.4.
  Thanks to David Somero.  --Erik Hanson
network/linuxdcpp: Updated for version 1.0.2.
  Thanks to Nille Kungen.  --Erik Hanson
network/opera: Updated for version 9.51.
  Thanks to Robby Workman.  --Erik Hanson
network/pptp: Updated for version 1.7.2.
  Thanks to Robby Workman.  --Erik Hanson
office/tellico: Updated for version 1.3.2.1.
  Thanks to Michiel van Wessem.  --Erik Hanson
system/cfengine: Updated for version 2.2.7.
  Thanks to Menno Duursma.  --rworkman
system/ktsuss: Added - ktsuss is a simple graphical su helper.
  Thanks to Murat D. Kadirov. --Michiel
system/lirc: Updated for version 0.8.3.
  Thanks to David Somero.  --Erik Hanson
system/rxvt-unicode: Updated for version 9.05.
  Thanks to Thanks to Dugan Chen.  --Erik Hanson
system/xorg-server-xephyr: Updated for version 1.4.2 (to stay in sync with
  slackware-12.0/patches/).  Thanks to Heinz Wiesinger.  --rworkman
+--------------------------+
Tue Jul  8 23:05:53 UTC 2008
audio/moc: Updated for version 2.4.3.
  Thanks to Michael Wagner.  --David Somero
desktop/crystal: Updated for version 1.0.6.
  Thanks to Michiel van Wessem.  --David Somero
desktop/lxpanel: Updated for version 0.3.7.
  Thanks to Michael Wagner.  --David Somero
desktop/QtCurve-Gtk2: Updated for version 0.59.4.
  Thanks to Michiel van Wessem.  --David Somero
desktop/QtCurve-KDE3: Updated for version 0.59.3.
  Thanks to Michiel van Wessem.  --David Somero
development/egenix-mx-base: Updated for version 3.1.0.
  Thanks to Heinz Wiesinger.  --David Somero
development/ipython: Added - ipython is an enhanced Python shell, library, and 
  distributed/parallel computing system. Thanks to Carlos Corbacho. --rworkman
development/kdesvn: Updated for version 0.14.4.
  Thanks to Michiel van Wessem.  --David Somero
development/libx86: Added - libx86 is a hardware-independent library for
  executing real-mode x86 code. Thanks to Murat D. Kadirov.  --David Somero
development/stgit: Updated for version 0.14.3.
  Thanks to Carlos Corbacho.  --rworkman
graphics/djvulibre: Added - djvulibre includes a standalone viewer, a browser
  plug-in and command line tools for DjVu files.
  Thanks to Murat D. Kadirov.  --David Somero
libraries/libfwbuilder: Updated for version 2.1.19.
  Thanks to David Somero.  --rworkman
libraries/raptor: Updated for version 1.4.18.
  Thanks to Heinz Wiesinger.  --David Somero
libraries/SDL_gfx: Updated for version 2.0.17.
  Thanks to Michiel van Wessem.  --David Somero
network/bitlbee: Updated for version 1.2.1.
  Thanks to Michiel van Wessem.  --David Somero
network/claws-mail: Updated for version 3.5.0. 
  Thanks to Erik Hanson. --Michiel
network/claws-mail-extra-plugins: Updated for version 3.5.0. 
  Thanks to Erik Hanson. --Michiel
network/fwbuilder: Updated for version 2.1.19.
  Thanks to David Somero.  --rworkman
network/haproxy: Updated for version 1.3.15.2.
  Thanks to Cherife Li.  --David Somero
network/Limewire: Updated for version 4.18.3. 
  Thanks to Rob Workman. --Michiel
network/skype: Updated for version 2.0.0.72.
  Thanks to Mauro Giachero.  --rworkman
network/squid: Updated for version 3.0.STABLE7.  Thanks to David Somero.
network/wifi-radar: Updated for version 1.9.9.
  Thanks to David Somero.  --rworkman
multimedia/Songbird: Updated for version 0.6.1.
  Thanks to Michiel van Wessem.  --David Somero
office/basket: Updated for version 1.0.3.
  Thanks to Michiel van Wessem.  --David Somero
office/kile: Updated for version 2.0.1.
  Thanks to Michiel van Wessem.  --David Somero
+--------------------------+
Tue Jun 24 20:05:06 UTC 2008
audio/amrnb: Updated for version 7.0.0.2.
  Thanks to Heinz Wiesinger.  --rworkman
audio/amrwb: Updated for version 7.0.0.3.
  Thanks to Heinz Wiesinger.  --rworkman
audio/ladspa_sdk: Miscellaneous script cleanup; added profile scripts to 
  set LADSPA_PATH on login.  Thanks to Wayne Walton for reporting the
  environment issue and to Heinz Wiesinger for the update.  --rworkman
audio/mpd: Updated for version 0.13.2. Thanks to Andrew Brouwers. --Michiel
audio/sonata: Updated for version 1.5.2. Thanks to Andrew Brouwers. --Michiel
desktop/furiusisomount: Added - Furius ISO Mount is a simple Gtk+ interface 
  to mount ISO images. Thanks to Erik Hanson. --Michiel
development/boost-bindings: Added - Boost Bindings is a bindings library 
  for Boost.Ublas and others.  Thanks to Aleksandar Samardzic. --Michiel
development/gtk-sharp: Added - gtk-sharp is gtk# GUI toolkit for Mono and 
  gtk+.  Thanks to Erik Hanson. --Michiel
development/io: Added - io is a small, prototype-based programming language. 
  Thanks to Thiago Coutinho. --Michiel
development/mono: Updated for version 1.9.1. Taken over maintenance. 
  Minor script changes, doinst.sh. Thanks to Erik Hanson. --Michiel
games/mednafen: Added - Mednafen is a multi-game-system emulator.
  Thanks to Heinz Wiesinger.  --rworkman
libraries/openjpeg: Added - The OpenJPEG library is an open-source JPEG 2000 
  codec.  Thanks to Heinz Wiesinger. --Michiel
multimedia/smplayer: Added - smplayer is a qt4-based frontend for MPlayer.
  Thanks to Erik Hanson.  --rworkman
network/mod_wsgi: Added - mod_wsgi is a simple to use Apache module which can
  host any Python application which supports the Python WSGI interface.
  Thanks to Adis Nezirovic.  --rworkman
network/rtl-wifi: Added - this provides support to Realtek Wifi cards based 
  on rtl8180 chipsets.  Thanks to Christophe Nguyen.  --rworkman
system/fakeroot: Updated for version 1.9.5.  Thanks to Ferenc Deak. --Michiel
system/fuseiso: Added - FuseISO is a FUSE module to mount ISO filesystem 
  images.  Thanks to Erik Hanson. --Michiel
system/kerneloops: Added - kerneloops is a client to collect kernel oops data.
  Thanks to Robby Workman. --Michiel
system/qemu: Updated .info with the correct homepage and download location. 
  Thanks to Peter Sevens for the initial bug report and Andrew Brouwers for 
  sending the fixed information. --Michiel
system/roxterm: Updated for version 1.12.2.  Thanks to Erik Hanson. --Michiel
+--------------------------+
Sat Jun 21 12:20:44 UTC 2008
desktop/nitrogen: Added - Nitrogen is a light wallpaper browser and 
  setter.  Thanks to Kristaps Esterlins.  --rworkman
desktop/thunar-svn-plugin: Added - thunar-svn-plugin is a svn plugin. 
desktop/xfce4-mount-plugin: Updated for version 0.5.5.
desktop/xfce4-notes-plugin: Updated for version 1.6.2.
desktop/xfce4-places-plugin: Updated for version 1.1.0.
desktop/xfce4-screenshooter-plugin: Updated for version 1.1.0.
desktop/xfce4-taskmanager: Updated for version 0.4.0.
  Thanks to Robby Workman.  --David Somero
development/easygui: Updated for version 0.83.  Thanks to LukenShiro.
development/loki: Added - Loki is a C++ library of designs.
  Thanks to Evgeny Ratnikov.  --rworkman
development/netbeans: bumped BUILD to reflect a newer upstream tarball
  with more locale support.  HBA wishes to thank Alex Lanahan for the
  information on this.   --rworkman
development/pyparsing: Added - pyparsing is a parsing module for python.
  Thanks to Heinz Wiesinger.  --rworkman
development/sqliteman: Added - sqliteman is a simple yet powerful sqlite
  gui database manager.  Thanks to Dhaby Xiloj.  --rworkman
games/tuxpuck: Patch cleanup (it's not partially binary any more).
graphics/unpaper: Added - unpaper is a post-processing tool for scanned 
  sheets of paper which tries to "clean up" the scanned images.  
  Thanks to Luken Shiro.  --rworkman
libraries/hdf5: Updated for version 1.8.1.  --rworkman
libraries/imlib2: Updated for version 1.4.1 and which fixes PNM and XPM 
  Buffer Overflow Vulnerabilities (CVE-2008-2426). 
  Thanks to rworkman for the update. --Michiel
libraries/libevent: Updated for version 1.4.4.
  Thanks to Erik Hanson.  --rworkman
libraries/libglademm: Added - C++ bindings for libglade using gtkmm.
  Thanks to Juan Valencia Escalante.  --rworkman
libraries/libnetfilter_conntrack: Added - libnetfilter_conntrack is a 
  userspace library providing a programming interface (API) to the
  in-kernel connection tracking state table.
  Thanks to Robby Workman.  --David Somero
libraries/libnfnetlink: Added - libnfnetlink is a low-level library 
  for netfilter related kernel/userspace communication.
  Thanks to Robby Workman.  --David Somero
libraries/opal: Updated for version 2.2.11.
  Thanks to Oliver Esser.  --rworkman
libraries/pwlib: Updated for version 1.10.10. 
  Thanks to Oliver Esser.  --rworkman
libraries/pytables: Updated for version 2.0.3. 
  Thanks to Luken Shiro.  --rworkman
misc/xsel: Added - xsel is a program to get/set the contents of the X 
  selection.  Thanks to Thiago Coutinho.  --rworkman
multimedia/MPlayer: Included a patch to fix usage with compiz and other
  compositing environments.  Thanks to Erik Hanson.  --rworkman
multimedia/ekiga: Updated for version 2.0.12.
  Thanks to Oliver Esser.  --rworkman
multimedia/transcode: Miscellaneous script cleanup.  
  Thanks to Heinz Wiesinger.  --rworkman
network/conntrack-tools: Added - conntrack-tools are a set of
  userspace tools that allow system administrators to interact with the
  Connection Tracking System.  Thanks to Robby Workman.  --David Somero
network/frostwire: Minor fixes to the .desktop file and build script.
network/linuxdcpp: Added - linuxdcpp is a Unix/Linux port of the DC++ client.
  Thanks to Niklas Akerstrom.  --rworkman
network/mumble: Added - Mumble is a voice chat application for groups.
  Thanks to "adev."  --rworkman
network/wavemon: Added - Wavemon is a ncurses-based monitor for wireless
  devices. Thanks to adev. --Michiel
office/taskjuggler: Added - TaskJuggler is a KDE project management tool.
  Thanks to Heinz Wiesinger. --Michiel
system/apcupsd: Updated for version 3.14.4.
  Thanks to Robby Workman.  --David Somero
system/gxemul: Updated for version 0.4.6.5 and miscellaneous script cleanup.
  Thanks to Alex Samardzic.  --rworkman
system/powertop: Updated for version 1.10.  Thanks to Kyle Guinn.  --rworkman
system/webmin: Updated for version 1.420.
system/wine: Updated for version 1.0.
  Thanks to Robby Workman. --David Somero
+--------------------------+
Thu Jun 19 00:30:56 UTC 2008
office/openoffice.org: Uncommented the chown line in the build script.
  If you've already used this to build OOo-2.4.1, go ahead and swear at
  me.  Either rebuild with the new (corrected) script, or this should
  fix it too:  chown -R root:root /opt/openoffice.org2.4/
  Thanks to Richard Hoyle for pointing out my oversight.  --rworkman
+--------------------------+
Wed Jun 18 00:24:31 UTC 2008 
audio/ardour: Updated for version 2.4.1.  Thanks to Heinz Wiesinger.
audio/gimmix: Added - gimmix is a gtk2-based mpd client.
  Thanks to Kristaps Esterlins.  --rworkman
development/egenix-mx-base: Added - this is the eGenix mx Base Distribution
   for Python.  Thanks to Heinz Wiesinger.  --rworkman
development/intltool: Updated for version 0.40.0.  
  Thanks to Iskar Enev.  --rworkman
development/numpy: Fixed the shebang line in the build script.
  Thanks to Luken Shiro for pointing it out.  --rworkman
development/psycopg: Added - psycopg is a PostgreSQL database adapter for the
  Python programming language.  Thanks to Heinz Wiesinger.  --rworkman
development/qdevelop: Added - QDevelop is a development environment entirely
  dedicated to Qt4.  Thanks to Jean-Luc Biord.  --rworkman
libraries/ebook-tools: Added - this includes utilities for better ebook
  handling.  Thanks to Heinz Wiesinger.  --rworkman
libraries/libdaemon: Disabled building of static library.  --rworkman
libraries/libmpd: Added - libmpd is a library for connecting to mpd servers.
  Thanks to Kristaps Esterlins.  --rworkman
libraries/libsmi: Added - libsmi is a library to access SMI and MIB modules.
  Thanks to Dusan Stefanovic.  --rworkman
network/avahi: Added - Avahi is an implementation of the DNS Service 
  Discovery and Multicast DNS specifications for Zeroconf Computing.
  Thanks to David Somero.  --rworkman
network/opera: Updated for version 9.50.
network/smb4k: Added - Smb4K is an advanced network neighborhood browser for 
  KDE and a frontend to the programs of the Samba software suite.
  Thanks to Roberto Neri.  --rworkman
network/squid: Updated for version 3.0.STABLE6.
office/openoffice.org: Updated for version 2.4.1.
system/postgresql: Updated for version 8.3.3.  Thanks to Adis Nezirovic.
system/skim: Added - Skim is an input method platform based upon scim-lib and
  optimized for kde environments.  Thanks to Christophe Nguyen.  --rworkman
+--------------------------+
Tue Jun 10 19:07:49 UTC 2008
academic/matplotlib: Updated for version 0.98.0.
  Thanks to Alex Samardzic.  --rworkman
development/Ice: Fixed a minor bug in the build script with an unneeded
  symlink being created.  Thanks to Alex Samardzic.  --rworkman
development/SQLAlchemy: Updated for version 0.4.6.
  Thanks to Andrea Maccis.  --rworkman
development/numpy: Updated for version 1.1.0.
  Thanks to Alex Samardzic.  --rworkman
games/tuxpuck: Fixed a buffer overflow in the game; fixed the man page;
  fixed the build script to properly use SLKCFLAGS. Thanks to Wayne
  Walton for pointing out the man page permissions.
  Thanks to Erik Hanson.  --rworkman
games/zsnes: Several tweaks to the build script to get better SDL support.
  The maintainer wishes to thank Diogo Sousa for pointing out the various
  improvements.  --rworkman
graphics/graphviz: Updated for version 2.18.  --Erik Hanson
multimedia/MPlayer: Miscellaneous fixes and enhancements to the build script.
  Thanks to Heinz Wiesinger for the suggestions and patches.  --David Somero
multimedia/devede: Updated to version 3.8c. Thanks to Roberto Neri for the
  previous update and added options to the script.  --Erik Hanson
network/b43-firmware: Added - this contains the firmware images required by
  many wireless chipsets by Broadcom.  Thanks to Roberto Neri.  --rworkman
network/b43-fwcutter: Added - this is a tool used to extract binary firmware 
  from proprietary drivers for many of the Broadcom wireless cards.
  Thanks to Roberto Neri.  --rworkman
network/b43legacy-firmware: Added - this contains firmware images required by
  legacy wireless chipsets from Broadcom.  Thanks to Roberto Neri.  --rworkman
network/cadaver: Added - Cadaver is a command-line WebDAV client.
  Thanks to Jean-Yves Didier.  --rworkman
network/kismet: Updated for version 2008_05_R1.
  Thanks to Audrius Kazukauskas.  --rworkman
network/libnl: Updated for version 1.1.  Thanks to Roberto Neri.  --rworkman
office/abiword: Updated for version 2.6.3.  --Erik Hanson
office/gnumeric: Updated for version 1.9.0.  Thanks to Alex Lysenka.
system/ccid: Added - ccid provides a PC/SC IFD handler implementation for 
  the USB smart card drivers compliant to the CCID protocol.
  Thanks to Andrew Psaltis.  --rworkman
system/krusader: Updated for version 1.90.0.  --Erik Hanson
system/p7zip: Updated for version 4.58.
  Thanks to Heinz Wiesinger.  --Erik Hanson
system/virtualbox-kernel: Updated for version 1.6.2.
system/virtualbox-ose: Updated for version 1.6.2.
  Thanks to Heinz Wiesinger.  --rworkman
system/wine: Updated for version 1.0_rc4.
  Thanks to Robby Workman.  --David Somero
+--------------------------+
Sat Jun  7 23:42:22 UTC 2008
development/eagle: Added - The EAGLE Layout Editor is an easy to use, 
  yet powerful tool for designing printed circuit boards (PCBs).
  Thanks to Kyle Guinn.  --rworkman
development/Ice: Added - Internet Communications Engine, or Ice, is a Remote 
  Procedure Call (RPC) and object middleware system (similar to CORBA).
  Thanks to Alex Samardzic.  --rworkman
development/mcpp: Fixed the documentation installation in the build script.
libraries/libburn: Added - a library by which preformatted data gets onto 
  optical media.  libburn also offers a facility for reading data blocks 
  from its drives without using the normal block device i/o.
  Thanks to Robby Workman.  --Erik Hanson
libraries/libisofs: Added - a library to create an ISO-9660 filesystem, and 
  supports extensions like RockRidge or Joliet. It is also a full featured
  ISO-9660 editor, allowing you to modify an ISO image or multisession disc,
  including file addition/removal, change of file names and attributes, etc.
  Thanks to Robby Workman.  --Erik Hanson
libraries/libnet: Miscellaneous script cleanup.  
  Thanks to Roberto Neri.  --rworkman
libraries/meanwhile: Added - an open implementation of the Lotus Sametime
  Community Client protocol.  Thanks to Erik Hanson.  --rworkman
libraries/pyqt4: Updated for version 4.4.2.
  Thanks to Alex Samardzic.  --rworkman
multimedia/flash-player-plugin: Minor changes to the script to support adding
  a symlink to Opera's plugin directory.  This should not be necessary if you
  install Opera from here (as we include a small sed line in the build script
  to make it look in the standard /usr/lib/mozilla/plugins directory), but 
  for non-SBo Opera installs, this will probably be appreciated.
  Thanks to Daniel Missal for the report.  --rworkman
multimedia/xfmedia: Added - xfmedia is a xine-based multimedia player for the
  Xfce desktop environment.  Thanks to Antoine NONYME.  --rworkman
network/dnsflood: Added - dnsflood was developed to detect abusive usage
  levels on high traffic nameservers.  Thanks to Menno Duursma.  --rworkman
network/feedparser: Added - parse RSS feeds in Python.
  Thanks to Chess Griffin.  --Erik Hanson
network/heimdal: Updated for version 1.1. Thanks to Menno Duursma. --rworkman
network/kmess: Added - kmess is an msn messenger for for KDE. Thanks 
  to Andrea Maccis. --Michiel
network/nginx: Updated for version 0.7.1.  Thanks to Cherife Li.  --rworkman
system/bochs: Added - bochs is a portable IA32 emulator.  
  Thanks to "Huon"  --rworkman
system/tilda: Updated for version 0.9.6. Thanks to Erik Hanson. --Michiel
system/xfburn: Added - a simple CD/DVD burning tool based on libburnia 
  libraries. It can blank CD-RWs, burn and create iso images, as well as burn
  personal compositions of data to either CD or DVD.
  Thanks to Robby Workman.  --Erik Hanson
system/wine: Updated for version 1.0rc3.
  Thanks to Robby Workman.  --Erik Hanson
+--------------------------+
Mon Jun  2 21:52:19 UTC 2008
audio/moodbar: Added - This plugin provides moodbar functionality for
  Amarok. It attempts to provide a visual representation of your music
  so that you can pinpoint where you can find something "interesting."
  Thanks to Andrew Psaltis.  --Erik Hanson
development/sip: Updated for version 4.7.6.  --Erik Hanson
development/xml-twig: Added - a Perl XML transformation module.
  Thanks to Heinz Wiesinger.  --Erik Hanson
games/blobAndConquer: Updated for version 0.93-2, added a patch, and
  fixed some permissions.  --Erik Hanson
games/freeciv: Updated for version 2.1.4.  --Erik Hanson
libraries/Archive-Zip: Added.
libraries/Compress-Raw-Zlib: Added.
libraries/Compress-Zlib: Added.
libraries/IO-Compress-Base: Added.
libraries/IO-Compress-Zlib: Added.
  These modules provide a Perl interface to allow reading and writing
  of gzip and zip files/buffers. Thanks to David Somero.  --Erik Hanson
libraries/gtkglarea: Added - an OpenGL widget for GTK+ GUI toolkit.
libraries/guile-gtk: Added - GTK bindings for Guile.
  Thanks to Kyle Guinn.  --Erik Hanson
misc/qstat: Added - a command-line utility for collecting real-time stats
  from on-line game servers.  Thanks to David Somero.  --Erik Hanson
multimedia/gpodder: Added - a podcast receiver/catcher written in Python
 using PyGTK for its user interface.  Thanks to Chess Griffin.  --Erik Hanson
network/haproxy: Updated for version 1.3.14.5.  --Erik Hanson
network/kvirc: Added - The K-Visual IRC Client.
  Thanks to Elvio Basello.  --Erik Hanson
network/mod_evasive: Added.
network/mod_limitipconn: Added.
  Apache modules: mod_evasive is an anti-DoS module, mod_limitipconn is
  a connection limit module. Thanks to Menno E. Duursma.  --Erik Hanson
network/mpop: Added - a small and fast POP3 client with mail filtering,
  a very fast POP3 implementation, many authentication methods, good TLS/SSL
  support, IPv6 support, and more. Thanks to Marek Buras.  --Erik Hanson
network/noip: Added - Dynamic Update Cient (DUC) provided by No-IP.com.
  Thanks to Dhaby Xiloj.  --Erik Hanson
network/suhosin: Added - an advanced protection system for PHP installations.
  Thanks to Menno E. Duursma.  --Erik Hanson
network/tsocks: Added - a transparent SOCKS proxying library.
  Thanks to Daniel.  --Erik Hanson
+--------------------------+
Fri May 30 22:49:10 UTC 2008
academic/octave: Updated for version 3.0.1.  Thanks to Kyle Guinn.
academic/qtoctave: Updated for version 0.7.4.  Thanks to 'lanceb' and
  Mauro Giachero for the update.  --rworkman
libraries/libcap: Updated for version 2.09.  Thanks to Menno Duursmaa.
multimedia/GoogleEarth: Fixed some ownership and permissions problems in
  the resulting package. Thanks to Wayne Walton for the report and fix.
multimedia/kino: Fixed some ownership and permission problems in the 
  resulting package.  Thanks to Wayne Walton for the report and fix.
network/ddclient: Fixed a minor bug in the build script (added creation
  of the /var/cache/ddclient directory).
  Thanks to Thiebo Herbst for the report.  --rworkman
system/apcupsd: Fixed an incorrect bit in README-SLACKWARE (location of
  the powerfail file).  Thanks to Christian on the mailing list.  --rworkman
system/virtualbox-kernel: Added - This is the suplementary kernel driver
  for the VirtualBox virtualisation environment.
system/virtualbox-ose: Added - VirtualBox Open Source Edition (OSE) is 
  a general-purpose full virtualizer for x86 hardware.
  Thanks to Heinz Wiesinger and Mauro Giachero.  --Erik Hanson
system/wine: Updated for version 1.0rc2.
  Thanks to Robby Workman. --Erik Hanson
+--------------------------+
Sun May 25 16:37:20 UTC 2008
academic/ng-spice: Added - a mixed-level/mixed-signal circuit simulator.
  Thanks to Kyle Guinn.  --Erik Hanson
academic/xoscope: Added - a digital oscilloscope that uses a sound card
  and/or Radio Shack ProbeScope (Cat. No. 220-0310) a.k.a osziFOX as the
  signal input. Thanks to Kyle Guinn.  --Erik Hanson
audio/audacity: Updated for version 1.3.5.
  Thanks to Chess Griffin.  --Erik Hanson
audio/rosegarden: Updated for version 1.7.0.
  Thanks to Heinz Wiesinger.  --Erik Hanson
desktop/enlightenment: Updated for DR17 0.16.999.043.
  Thanks to Aleksandar Samardzic.  --Erik Hanson
desktop/kooldock: Added - A kool dock for KDE. It attemps to resemble the
  Mac OSX dock. Thanks to Blase Stanek.  --Erik Hanson
development/Xdialog: Added - Xdialog is designed to be a drop in replacement 
  for the "dialog" and "cdialog" programs.  Thanks to slakmagik.  --rworkman
development/acpica: Updated for version 20080514.
  Thanks to Heinz Wiesinger.  --Erik Hanson
development/gmm: Added - a generic C++ template library for sparse, dense
  and skyline matrices. Thanks to Heinz Wiesinger.  --Erik Hanson
development/mcpp: Added - MCPP is a portable C/C++ preprocessor, supporting
  GCC, Visual C++, etc. Aleksandar Samardzic.  --Erik Hanson
development/mod_perl: Updated for version 2.0.4.
  Thanks to Heinz Wiesinger.  --Erik Hanson
development/python-pmw: Updated for version 1.3.2.
  Thanks to Luken Shiro.  --Erik Hanson
development/scite: Updated for version 1.76.
  Thanks to Iskar Enev.  --Erik Hanson
development/splint: Updated for version 3.1.2.
  Thanks to Menno E. Duursma.  --Erik Hanson
development/uncrustify: Updated for version 0.46.
  Thanks to Aleksandar Samardzic.  --Erik Hanson
games/gnubg: Updated for the 20080516 snapshot version. 
  Thanks to Erik Hanson.   --rworkman
libraries/e_dbus: Updated for version 0.5.0.043.
libraries/ecore: Updated for version 0.9.9.043.
libraries/edje: Updated for version 0.9.9.043.
libraries/efreet: Updated for version 0.5.0.043.
libraries/eet: Updated for version 1.0.1.
libraries/embryo: Updated for version 0.9.9.043.
libraries/evas: Updated for version 0.9.9.043.
  Thanks to Aleksandar Samardzic.  --Erik Hanson
libraries/fltk: Updated for version 1.1.9.
  Thanks to Luken Shiro.  --Erik Hanson
libraries/gnet: Updated for version 2.0.8.
  Thanks to Menno E. Duursma.  --Erik Hanson
libraries/goffice: Updated for version 0.6.4.
  Thanks to Alex Lysenka.  --Erik Hanson
libraries/openmotif: Added - the freely available Motif user interface
  component toolkit. Thanks to Vincent Batts.  --Erik Hanson
libraries/pidgin-hotkeys: Added - pidgin-hotkeys is a Pidgin plugin that
  allows you to define global hotkeys for various actions.
  Thanks to Cherife Li.  --rworkman
libraries/raptor: Updated for version 1.4.17.
  Thanks to Heinz Wiesinger.  --Erik hanson
libraries/xlt: Added - widgets, functions, and macros to help while
  programming with the Motif API. Thanks to Vincent Batts.  --Erik Hanson
misc/biosdisk: Added - biosdisk simplifies the process of flashing your
  system  BIOS under Linux on Dell desktops and laptops. 
  Thanks to Michales Michaloudes.  --Erik Hanson
multimedia/GoogleEarth: Updated for version 4.3.7204.836.
  Note that while the package itself seems to be fine, several of us
  have experienced problems with actually running this version of 
  GoogleEarth; apparently it doesn't like some graphics cards and/or
  drivers and/or phases of the moon and causes anything from application
  crashes to X crashes.  Your mileage may vary. 
  Thanks to Michiel van Wessem.  --rworkman
multimedia/TiMidityxx: Added this back into the repository after including
  some patches from Debian to fix up compiles on 12.1.
  Thanks to Richard Hoyle and Kyle Guinn for the update.  --rworkman
network/dnstop: Updated for version 20080502.
  Thanks to Menno E. Duursma.  --Erik Hanson
network/mod_hosts_access: Updated to work with Slackware 12.1.
  Thanks to Menno E. Duursma.  --Erik Hanson
network/transmission: Updated for version 1.20.  Thanks to Iskar Enev.
network/w3m: Included a patch to fix a segfault bug.  
office/xmblackberry: Added - A BlackBerry backup/restore and GPRS modem
  access application. Thanks to Vincent Batts.  --Erik Hanson
system/915resolution: Updated for version 0.5.3.
  Thanks to Roberto Neri.  --Erik Hanson
system/emelfm2: Updated for version 0.4.1.
  Thanks to Chess Griffin.  --Erik Hanson
system/gammu: Updated for version 1.20.  Thanks to Heinz Wiesinger. 
system/lshw: Updated for version B.02.13.  Thanks to Iskar Enev.
system/pcmanfm: Updated for version 0.4.1.1.
  Thanks to Chess Griffin.  --Erik Hanson
system/pcsc-lite: Updated for version 1.4.101.
  Thanks to Luken Shiro.  --Erik Hanson
system/rox-filer: Added - ROX-Filer is a fast and powerful graphical file 
  manager.  Thanks to slakmagik.  --rworkman
system/roxterm: Update for 1.12.0. Thanks to Erik Hanson.  --David Somero 
system/xchm: Added - xchm is a CHM (MS help file) reader.
  Thanks to Michael Gehring.  --rworkman
system/xjobs: Added - xjobs reads job descriptions line by line and
  executes them in parallel.  Thanks to Erik Hanson.  --David Somero
+--------------------------+
Tue May 20 15:18:13 UTC 2008
academic/celestia: Updated for version 1.5.1.
  Thanks to Heinz Wiesinger.  --David Somero
audio/sonata: Updated for version 1.5.1.
  Thanks to Andrew Brouwers.  --David Somero
development/yasm: Added - Yasm is a complete rewrite of the NASM assembler 
  under the "new" BSD License.  Thanks to Heinz Wiesinger.  --rworkman
games/ltris: Updated for version 1.0.12.  Thanks to Bill Kirkpatrick.
games/nethack: Added - nethack is a single player dungeon exploration game.
  Thanks to Wade Nelson.  --David Somero
games/openarena: Updated for version 0.7.6.
  Thanks to Chess Griffin.  --David Somero
libraries/sqlite: Updated for version 3.5.9.
   Thanks to Robby Workman.  --David Somero
office/kmymoney2: Updated for version 0.9.  Thanks to Michiel van Wessem.
system/cfengine: Update for version 2.2.6.
  Thanks to Menno E. Duursma.  --David Somero
+--------------------------+
Thu May 15 20:34:04 UTC 2008
First, I owe a big apology to Michael Gehring, so I'll do it publicly.
  His "mg@" email address tricked me into thinking of Mauro Giachero
  on the tcptrack and wireshark builds, and I credited the maintainer of
  kdbg instead of him on that one.  Thanks in advance for patience and
  understanding, Michael :-)
Second, herrie is actually in Audio rather than Multimedia.
Finally, here's another (small) update:
audio/amrnb: Updated for version 7.0.0.1. Thanks to Heinz Wiesinger.
libraries/libarchive: Updated for version 2.4.17.  
  Thanks to Heinz Wiesinger.  --rworkman
libraries/libpar2: Added - libpar2 allows for the generation, modification, 
  verification of PAR archives.  Thanks to Daniel.  --rworkman
libraries/python-mpd: Added - python-mpd is an MPD client library.
  Thanks to Andrew Brouwers.  --rworkman
network/nginx: Updated for version 0.6.31.  Thanks to Cherife Li.  --rworkman
system/graveman: Fixed the docs copying line in the build script.
  Thanks to Pierce Lopez for the bug report and to Chess Griffin for passing
  it along to us.  --rworkman
system/lapsus: Updated for version 0.0.6.  Thanks to Heinz Wiesinger.
+--------------------------+
Thu May 15 13:37:28 UTC 2008
audio/pulseaudio: Added - pulseaudio is a networked sound server intended
  to be a replacement for esd.  Thanks to Heinz Wiesinger.  --rworkman
development/kdbg: Updated for version 2.1.0. 
  Thanks to Aleksandar B.  Samardzic. --Michiel
development/sip: Updated for version 4.7.5. 
  Thanks to Aleksandar B.  Samardzic. --rworkman
development/splint: Corrected a couple of absolute path usages in doinst.sh.
  Thanks to Michael Gehring for pointing them out.  --rworkman
development/swig: Updated for version 1.3.35.  Thanks to Mauro Giachero.
libraries/QuantLib: Added - QuantLib is a free open-source library for 
  modeling, trading, and risk management in real-life.
  Thanks to Aleksandar Samardzic.  --rworkman
libraries/libatomic_ops: Added - libatomic_ops provides implementations for 
  atomic memory update operations.  Thanks to Heinz Wiesinger.  --rworkman
libraries/libsamplerate: Miscellaneous script cleanup.  --rworkman
libraries/libsndfile: Miscellaneous script cleanup.  --rworkman
libraries/pyqt4: Updated for version 4.4.
  Thanks to Aleksandar Samardzic.  --rworkman
libraries/wvstreams: Added - wvstreams is a networking library needed by
  wvdial.  Thanks to Vincent Batts.  --rworkman
misc/gcolor2: Updated - Added a .desktop file to create a menu entry. 
  Thanks to slakmagik for the update. --Michiel
multimedia/herrie: Updated for version 2.0.2 and included an optional patch
  (written by our maintainer and slated for inclusion in the next version
  of herrie) to enable autoplay functionality. We like to see our contributors
  also being involved with upstream work.  Thanks to Phil Warner. --Michiel
network/darkstat: Added - darkstat is a small packaget/data sniffer which
  features a builtin webserver. Thanks to Jorey Bump. --Michiel
network/newsbeuter: Updated for version 0.9.1. Thanks to slagmagik. --Michiel
network/skype: Fixed a bug I introduced into the build script which resulted
  in a non-functional package.  Thanks to Audrius Kažukauskasfor pointing out
  my PEBKAC. :-)  --rworkman
network/tcptrack: Updated to version 1.3.0.  Thanks to Mauro Giachero.
network/wireshark: Updated for version 1.0.0, which includes fixes for several
  potential security vulnerabilities present.  For more information, see:
  http://www.wireshark.org/security/wnpa-sec-2008-02.html
  Thanks to Mauro Giachero.  --rworkman
network/wvdial: Added - wvdial is a simple command line dialer for ppp 
  connections.  Thanks to Vincent Batts.  --rworkman
system/xtermcontrol: Added - xtermcontrol allows dynamic control of xterm
  windows.  Thanks to Michael Gehring.  --rworkman
+--------------------------+
Wed May 14 18:29:32 UTC 2008
accessibility/jpilot: Added - J-Pilot is a desktop organizer application for 
  PalmOS devices.  Thanks to Alex Lysenka.  --rworkman
audio/faac: Made libmp4v2 an optional dependency to work around conflicts if
  the embedded library is used (don't use it).  Thanks to Heinz Wiesinger for
  pointing out the problem and to Antonio Hern�ndez Blas for fixing the build 
  script.  If there are still problems with this approach, blame me, because
  I implemented it a bit differently than the maintainer suggested. --rworkman
desktop/awesome: Added - awesome is a floating and tiling window manager 
  initially based on a rewrite of dwm.  Thanks to Chess Griffin.  --rworkman
graphics/fontforge: Updated for version 20080429.
  Thanks to Robby Workman. --David Somero
libraries/confuse: Renamed from libconfuse to eliminate confusion about the 
  upstream name and what we were calling it; no pun intended.  ;-)  --rworkman
libraries/gstreamer: Added - gstreamer is a library that allows the construction
  of graphs of media-handling components, ranging from simple Ogg/Vorbis playback
  to complex audio (mixing) and video (non-linear editing) processing.
libraries/libconfuse: Removed; renamed to confuse.  --rworkman
libraries/liboil: Added - liboil is a library of simple functions that are
  optimized for various CPUs. Thanks to Michiel van Wessem  --David Somero
multimedia/gst-plugins-bad: Added - gst-plugins-bad are gstreamer plug-ins that
  aren't up to par compared to the rest.
multimedia/gst-plugins-base: Added - gst-plugins-base are gstreamer plug-ins
  that are well-groomed and well-maintained.
multimedia/gst-plugins-good: Added - gst-plugins-good are gstreamer plug-ins
  that the developers consider to have good quality code.
multimedia/gst-plugins-ugly: Added - gst-plugins-ugly are gstreamer plug-ins
  that have good quality and correct functionality, but distributing them might
  pose problems.  Thanks to Michiel van Wessem for gstreamer. --David Somero
multimedia/Songbird: Added - Songbird is a desktop media player.
 Thanks to Michiel van Wessem. --David Somero
network/skype: Added skype (version 2.0.0.68) to the repository.
  Thanks to Mauro Giachero, our new maintainer for skype.  --rworkman
network/suphp: Updated for version 0.6.3.  This update fixes a privilege 
  escalation security flaw.  See the CVE entry for more details:
  http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-1614
  Thanks to Menno Duursma.  --rworkman
system/fglrx-driver: Added - this builds a standard Slackware package of the
  proprietary driver from ATI.  I don't have the hardware to confirm that 
  this works correctly, but it looks right :-)  
  Thanks to Antonio Hern�ndez Blas.  --rworkman
system/fglrx-module: Added - this builds the kernel module required by the
  proprietary ATI driver.  Same disclaimer and credit as above.  --rworkman
system/htop: Updated for version 0.8.
  Thanks to Michiel van Wessem. --David Somero
system/rkhunter: Added - rkhunter is a security monitoring and analyzing tool.
  Thanks to Michael Johnson. --David Somero
system/wine: Updated for version 1.0rc1.
  Thanks to Robby Workman. --David Somero
system/xbindkeys: Updated for version 1.8.2.
  Thanks to Erik Hanson. --David Somero
+--------------------------+
Mon May 12 20:27:20 UTC 2008
development/kdesvn: Updated for version 0.14.3. Thanks to Michiel. --rworkman
libraries/libopensync: Reverted to version 0.22 because some things that
  depend on it can't use the newer releases yet.  Thanks to Michael Wagner
  for pointing out the incompatibilities and to Heinz Wiesinger for the
  script work.  --rworkman
multimedia/kaffeine: Updated for version 0.8.6; this fixes a severe crash
  bug in kaffeine.  Thanks to Michiel van Wessem.  --rworkman
network/bitlbee: Updated for version 1.2.  Thanks to Michiel.  --rworkman
office/kmymoney2: Updated for version 0.8.9.  Thanks to Michiel.  --rworkman
system/nvidia-driver: Updated for version 169.12, added support for the
  legacy drivers, and miscellaneous bugfixes and cleanup.
system/nvidia-kernel: Updated for version 169.12, added support for the
  legacy drivers, and miscellaneous bugfixes and cleanup.
  Thanks to Heinz Wiesinger for both of these nvidia builds, and he wishes to
  thank the numerous people who reported the issues to him.  --rworkman
system/xorg-server-xephyr: Miscellaneous script cleanup and bugfixes.
  Thanks to Heinz Wiesinger.  --rworkman
+--------------------------+
Mon May 12 00:31:28 UTC 2008
desktop/QtCurve-Gtk2: Updated for version 0.59.2.
desktop/QtCurve-KDE3: Updated for version 0.59.1.  
  Thanks to Michiel van Wessem for both of these.  --rworkman
development/boost: Updated for version 1.35.0. Thanks to 
  Heinz Wiesinger. --Michiel
development/eclipse: Fixed the /usr/bin/eclipse wrapper script to use
  absolute path to /opt/eclipse instead of a relative path from /usr/bin,
  and did a bit of other miscellaneous script cleanup.  Thanks to 
  Michael Gehring for pointing out the path problem.  --rworkman
development/geany: Updated for version 0.14.  Thanks to Michiel.  --rworkman
development/netbeans: Fixed the /usr/bin/netbeans wrapper script to use
  absolute path to /opt/netbeans instead of a relative path from /usr/bin.
  Thanks to Michael Gehring for pointing out the problem.  --rworkman
development/source-highlight: Added - source-highlight is useful for 
  linuxdoc-tools & asciidoc. Thanks to luoyi. --Michiel
development/smake: Added - smake is a highly portable make program with 
  automake features.  Thanks to jpipkin.  --rworkman
games/wesnoth: Updated for version 1.4.1.  
  Thanks to Michiel van Wessem.  --Alan
libraries/argtable: Added - argtable is an ANSI C library for parsing GNU
  style command line options.  Thanks to Rodney Cobb. --David Somero
libraries/barry: Updated for version 0.12.
  Thanks to Vincent Batts.  --Alan
libraries/libwpg: Added back, this one got lost in the transfer to 12.1.
  Thanks to Heinz Wiesinger for the report. --David Somero 
libraries/qt4: Updated for version 4.4.0. 
  Thanks to Aleksandar Samardzic. --Michiel
multimedia/kmplayer: Updated for version 0.10.0c.
  Thanks to Antonio Hernández Blas. --David Somero
network/fcgi: Added - fast cgi is a language independent, scalable, open 
  extension to CGI that provides high perfomance without the limitations 
  of server specific API's.  Thanks to Vincent Batts.  --rworkman
network/ipcalc: Added - ipcalc is a console application that displays
  subnets in an easy and informative format.  Thanks to Vincent Batts. --Alan
network/mldonkey: Updated - miscellaneous script cleanup. 
  Thanks to Antonio Hernández Blas. --Michiel
office/homebank: Updated for version 3.8. Thanks to Erik Hanson. --Michiel.
office/gnumeric: Added - gnumeric is a standalone spreadsheet application.
  Thanks to Alex Lysenka.  --rworkman
system/rxvt-unicode: Updated for version 9.02. Thanks to Dugan Chen. --Michiel
system/star: Added - star is a very fast tar(1) like tape archiver with 
  improved functionality.  Thanks to jpipkin.  --rworkman
+--------------------------+
Tue May  6 20:01:07 UTC 2008
audio/cmus: Added a BSD license and minor cleanups to the build script;
  also moved from the Multimedia category to Audio where it belongs.
audio/faac: Added a BSD license and minor cleanups to the build script.
audio/orpheus: Added 2 patches (one to disable the use of the deprecated 
  libghttp library and the other to fix a bug) from gentoo. 
  Added a BSD license and minor cleanups to the build script.
  Thanks to Antonio Hernández Blas.
audio/scmpc: Added - scmpc is a audioscrobbler client for mpd.
  Thanks to Rodney Cobb.
desktop/alltray: Added a BSD license and minor cleanups to the build script.
desktop/alphacube: Added a BSD license and minor cleanups to the build script.
desktop/blended: Added a BSD license and minor cleanups to the build script.
desktop/cylonminimal: Updated for version 0.2 and added a BSD license and 
  minor cleanups.
desktop/dmenu: Updated for version 3.6 and added a BSD license and minor 
  cleanups to the build script.
desktop/domino: Added a BSD license and minor cleanups to the build script.
desktop/kbfx: Added a BSD license and minor cleanups to the build script.
desktop/linstasquared: Added a BSD license and minor cleanups.
desktop/openbox: Updated for version 3.4.7.2. Thanks to Chess Griffin.
desktop/un-fonts-core: Added - un-fonts is a set of Korean True Type fonts.
  Thanks to Christophe Nguyen.
desktop/wmii: Updated for version 3.6 and added a BSD license and minor 
  cleanups to the build script.
development/eclipse: Updated for version 3.3.2 and added a BSD license and 
  minor cleanups.
development/netbeans: Updated for version 6.1 and added a BSD license and 
  minor cleanups.
games/openttd: Updated for version 0.6.0. Thanks to Chess Griffin.
games/zsnes: Added a BSD license and minor cleanups to the build script.
libraries/DirectFB: Added - DirectFB is a thin library that provides developers
  with hardware graphics acceleration. Thanks to Antonio Hernández Blas.
libraries/gsl: Added - gsl is a numerical library for C and C++ programmers.
  Thanks to Aleksandar Samardzic - this will be useful for kde4  ;-)
libraries/libdaemon: Added - libdaemon is a lightweight C library that eases
  the writing of UNIX daemons. Thanks to Rodney Cobb.
libraries/libixp: Updated for version 0.4 and added a BSD license and minor 
  cleanups to the build script.
multimedia/mpeg2dec: Added a BSD license and minor cleanups.
network/axel: Added - axel is a download accelerator.
  Thanks to Antonio Hernández Blas.
network/bip: Update for version 0.7.2.  Thanks to Chess Griffin.
network/haproxy: Added - haproxy is a very fast and reliable proxy.
  Thanks to Cherife Li.
network/kmldonkey: Added a BSD license and minor cleanups to the build script.
network/nginx: Updated for version 0.6.30.
  Thanks to Chess Griffin.
network/squid: Updated for version 3.0.STABLE5.
network/varnish: Fixed an error in rc.varnishd script.
  Thanks to Cherife Li.
office/oooqs2: Added a BSD license and minor cleanups to the build script.
system/conky: Added a BSD license and minor cleanups to the build script.
system/detachtty: Added - detachtty is a a screen like program.
  Thanks to Paul Wisehart.
system/efont-unicode-bdf: Added - efont-unicode-bdf unicode bitmap fonts.
  Thanks to Antonio Hernández Blas.
system/emelfm2: Update for 0.4.0. Thanks to Chess Griffin.
system/montecarlo: Added - montecarlo is a monospace font.
  Thanks to Antonio Hernández Blas.
system/plan9port: Added a BSD license and minor cleanups to the build script.
system/profont: Added - profont is a small bitmap font great for programming.
  Thanks to Antonio Hernández Blas.
system/terminus-font: Updated to version 4.26 and added a BSD license and 
  minor cleanups.
system/xf86-video-openchrome: Added a BSD license and minor cleanups.
+--------------------------+
Thu May  1 13:36:34 CDT 2008
Slackware 12.1 is released! - congratulations to Pat and the rest of the team
  for what is sure to be the new "best Slackware release ever"  ;-)
  We have made a few minor changes here and there, but for the most part,
  this should be the same old SlackBuilds.org that you've grown to love. :)
  There are three new categories (Accessibility, Audio, and Business) in the
  database now, and two of them are relatively empty (hint, hint). 
The following text documents notable information related to our repository
  for 12.1.  If you find something that was part of our 12.0 repository but 
  is not mentioned here, please let us know on the users mailing list.

1. Things removed because they are now part of Slackware
desktop/icon-naming-utils: Removed - this is now part of Slackware.
desktop/liberation-fonts-ttf: Removed - this is now part of Slackware.
desktop/tango-icon-theme: Removed - this is now part of Slackware.
libraries/dbus-python: Removed - this is now part of Slackware.
libraries/libcdio: Removed - this is now part of Slackware.
libraries/libwnck: Removed - this is now part of Slackware.
libraries/pycairo: Removed - this is now part of Slackware.
libraries/pygobject: Removed - this is now part of Slackware.
libraries/pygtk: Removed - this is now part of Slackware.
libraries/pyrex: Removed - this is now part of Slackware.
network/rt61: Removed - this is now part of Slackware.
system/fuse: Removed - this is now part of Slackware.
system/ntfs-3g: Removed - this is now part of Slackware.
system/xbacklight: Removed - this is now part of Slackware.

2. Things removed because they won't build on Slackware 12.1
desktop/baghira: Removed - this won't compile on 12.1, and the maintainer
  advises that he is unable to find any patches for it.
development/erlang-otp: Removed - this won't compile on 12.1.
misc/zaptel: Removed (for now) - this won't compile on 12.1.
multimedia/TiMidityxx: Removed - this won't compile against the version
  of flac included in 12.1.
network/rtl-wifi: Removed; this won't compile on 12.1, and we think the 
  functionality is duplicated in the rtl* stuff included in Slackware
  now anyway.
system/stardict: Removed - this won't compile on 12.1.

3. All of the things below have dead download links and therefore need to
   be updated by their MAINTAINERs for new versions.  Submissions are now
   being accepted again, so feel free :)
desktop/google-desktop: Removed; the DOWNLOAD link is no longer valid.
desktop/moodin: Removed; the DOWNLOAD link is no longer valid.
development/webpy: Removed; the DOWNLOAD link is no longer valid.
libraries/python-levenshtein: Removed; the DOWNLOAD link is no longer valid.
multimedia/ekiga: Removed; the DOWNLOAD link is no longer valid.
network/skype: Removed; the DOWNLOAD link is no longer valid.

4. Things updated (regardless of reason)
audio/a52dec: Moved from Multimedia category.
audio/xmms2: Updated for version 0.4DrKosmos and moved from multimedia
  category.
desktop/lipstik: Updated for version 2.2.3.
desktop/matchbox-panel: Included a patch to compile on 12.1.
desktop/pekwm: Updated download link.(new link screws with wget) 
desktop/recoll: Updated for version 1.10.1.
desktop/xfce4-battery-plugin: Included a patchset from Gentoo to make this
  compile on 12.1.
development/bashdb: Fixed incorrect man location.
development/cpan2tgz: Changed to install to vendor_perl, Updated to version
  6.2.2. 
development/ftjam: Bugfix - added -fno-strict-aliasing to the compile flags;
  this works around a bug that causes jam0 to segfault during compile.
development/glade3: Added --disable-scrollkeeper to configure options
  to fix compilation.
development/mod_perl: Changed to install in vendor_perl.
development/pysetuptool: Updated for version 0.6c8.
development/rapidsvn: Updated for version 0.9.6.
development/yaml: Changed to install in vendor_perl.
games/brutalchess: Included a patch to compile on gcc-4.2.x.
games/frozen-bubble: Changed to install in vendor_perl.
games/wormux: Updated build to compile on 12.1.
graphics/gphoto2: Updated for version 2.4.1.
graphics/inkscape: Updated for version 0.46.
graphics/picasa: Updated for version 2.7.3736.
libraries/OpenAL: Included a GCC 4.2 related header patch.
libraries/cairomm: Updated for version 1.4.8.
libraries/CEGUI: Updated for version 0.6.0.
libraries/clearsilver: Changed to install in vendor_perl.
libraries/enchant: Updated for version 1.4.1.
libraries/exo-notify: Updated for version 0.3.4 (this must match the version
  of exo included with Slackware's xfce package).
libraries/glibmm: Updated for version 2.14.2.
libraries/gtkmm: Updated for version 2.12.5.
libraries/libarchive: Updated for version 2.4.13a.
libraries/libconfuse: Updated for version 2.6.
libraries/libdvdnav: Updated for version 4.1.2.
libraries/libexif-gtk: Enabled the gtk-2.12.x patch by default.
libraries/libgdiplus: Included a patch to compile on 12.1.
libraries/libgphoto2: Updated for version 2.4.1.
libraries/libnet: Fixed package destination (OUTPUT instead of TMP).
libraries/libpri: Updated for version 1.4.3.
libraries/locale-gettext: Updated to use vendor_perl instead of site_perl.
libraries/perl-cairo: Changed to install in vendor_perl and moved from the
  Development category.
libraries/perl-extutils-depends: Changed to install in vendor_perl and moved 
  from the Development category.
libraries/perl-extutils-pkgconfig: Changed to install in vendor_perl and 
  moved from the Development category.
libraries/perl-glib: Changed to install in vendor_perl and moved from the
  Development category.
libraries/perl-gtk2: Changed to install in vendor_perl and moved from the
  Development category.
libraries/perl-test-number-delta: Changed to install in vendor_perl and moved
  from the Development category.
libraries/rrdtool: Changed to install in vendor_perl.
libraries/SDL_perl: Changed to install in vendor_perl.
libraries/sqlite: Updated for version 3.5.8 and noted new maintainer.
libraries/wxGTK: Added patch to work with >=gtk+-2.11.
libraries/xapian-core: Updated for version 1.0.6.
libraries/xmltv_prereq: Changed to install in vendor_perl.
misc/dwdiff: Fixed incorrect man location.
misc/keychain: Minor bugfixes to the script.
multimedia/audacity: Updated for version 1.3.4.
multimedia/gtkpod: Updated for version 0.99.12.
multimedia/mythtv: Changed to install perl parts in vendor_perl.
multimedia/transcode: Enabled ImageMagick support, disabled NUV
  (nupplevideo) support to allow compilation on 12.1.
multimedia/xmltv: Changed to install in vendor_perl.
network/aMule: Disabled debug mode.
network/dovecot: Updated for version 1.0.13.
network/frostwire: Updated for version 4.13.5.
network/kazehakase: Updated for version 0.5.4.
network/mldonkey: Updated for version 2.9.4.
network/museek-plus: Moved from Multimedia category.
network/ndiswrapper: Updated for version 1.52.
network/opera: Updated for version 9.27.
network/postfix: Updated for version 2.5.1.
network/squid: Updated for version 3.0.STABLE4.
office/abiword: Updated for version 2.6.2.
office/fbreader: Updated download link.
office/openoffice.org-langpack: Updated for version 2.4.0.
system/cdrkit: Fixed typo in icedax symlink.
system/fakeroot: Updated for version 1.9.4.
system/pommed: Updated for version 1.16.
system/synaptics: Included patches from Gentoo to compile on 12.1. 
system/tiger: Fixed incorrect man location.
system/wine: Updated for version 0.9.59.
system/xautolock: Updated for version 2.2.
system/xorg-server-xephyr: Updated for version 1.4.0.90 (this must match 
  the version of xorg-server shipped in Slackware).

5. Things added
desktop/ccsm: Added - ccsm is part of compiz-fusion.
desktop/compiz-bcom: Added - compiz-bcop 
desktop/compiz-fusion-plugins-extra: Added - this is part of compiz-fusion. 
desktop/compiz-fusion-plugins-main: Added - this is part of compiz-fusion.
desktop/compiz-fusion-plugins-unsupported: Added -  part of compiz-fusion.
desktop/compizconfig-backend-gconf: Added - this is part of compiz-fusion.
desktop/compizconfig-backend-kconfig: Added - this is part of compiz-fusion.
desktop/compizconfig-python: Added - this is part of compiz-fusion.
desktop/emerald: Added - this is part of compiz-fusion.
desktop/emerald-themes: Added - this is part of compiz-fusion.
desktop/fusion-icon: Added - fusion-icon is part of compiz-fusion.
desktop/simple-ccsm: Added - simple-ccsm is part of compiz-fusion.
libraries/libcompizconfig: Added - libcompizconfig is part of compiz-fusion.
  Thanks to David Somero for all of the compiz-fusion stuff.  --rworkman
libraries/wv: Added - wv is a Word document conversion library.
  Thanks to Robby Workman. --David Somero
network/lurc: Added - lurc is a GTK-1 IRC client based on original xchat
  and maintained by Timothy McGrath (Hikaru).  
  Thanks to Michael Beuker (mtu).  --rworkman
system/roxterm: Added - roxterm is a terminal emulator.
  Thanks to Erik Hanson.  --David Somero
graphics/kamera: Added - kamera is a kioslave to allow you to browse your
  camera from kde.  Thanks to Michael Wagner. --David Somero
office/Moneydance: Added - Moneydance is a java-based cross-platform banking 
  application that runs on Windows, Linux, MacOSX, and other OS types.
  Thanks to Robby Workman. --David Somero