summaryrefslogtreecommitdiffstats
path: root/ChangeLog.txt
blob: 5523722b8bdb9c362b2fecb48bd278272257dfbe (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
Sun Jul 14 22:09:17 UTC 2013
academic/ImageJ: Updated for version 1.47v.
academic/squizz: Added (A sequence/alignment format checker and converter)
audio/jokosher: sed s,distribute,pysetuptools, *.info
audio/mktoc: sed s,distribute,pysetuptools, *.info
audio/mpd: Fixed optional dep information in README
audio/opus: Updated for version 1.0.3.
desktop/screenfetch: Updated for version 3.0.5.
desktop/sync-engine: sed s,distribute,pysetuptools, *.info
desktop/synce-kpm: sed s,distribute,pysetuptools, *.info
desktop/xmms-skins-ater: Added (Ater skins for XMMS)
development/MySQL-python: sed s,distribute,pysetuptools, *.info
development/SQLAlchemy: sed s,distribute,pysetuptools, *.info
development/Sphinx: sed s,distribute,pysetuptools, *.info
development/blassic: New homepage.
development/glade: Renamed script with correct extension.
development/google-go-lang: Updated for version 1.1.1.
development/nickle: Moved from System category
development/ninja: sed s,distribute,pysetuptools, *.info
development/nose: sed s,distribute,pysetuptools, *.info
development/setuptools-git: sed s,distribute,pysetuptools, *.info
development/trac: sed s,distribute,pysetuptools, *.info
development/viewvc: Updated for version 1.1.20.
development/zope.interface: sed s,distribute,pysetuptools, *.info
development/zope.testing: sed s,distribute,pysetuptools, *.info
games/cgoban: Added (Complete Goban Mark 1)
games/hnefatafl: Added (Norse board game)
games/m64py: Added (mupen64plus GUI)
graphics/gallery3: Removed (renamed to graphics/gallery)
graphics/gallery: Updated for version 3.0.9.
graphics/mcomix: sed s,distribute,pysetuptools, *.info
graphics/qrencode: Updated for version 3.4.2.
libraries/FormEncode: sed s,distribute,pysetuptools, *.info
libraries/GeoIP-Python: Updated for version 1.2.8.
libraries/SDL_gfx: Added catchall to SLKCFLAGS block
libraries/SDL_gfx: Deleted an obsolete configure argument
libraries/ZConfig: sed s,distribute,pysetuptools, *.info
libraries/cfitsio: Updated for version 3.35.
libraries/dbh: Added (disk based hashtables library)
libraries/decorator: sed s,distribute,pysetuptools, *.info
libraries/genshi: sed s,distribute,pysetuptools, *.info
libraries/libewf: Updated for version 20130416.
libraries/log4shib: Updated for version 1.0.8.
libraries/opensaml: Updated for version 2.5.3.
libraries/simplegeneric: sed s,distribute,pysetuptools, *.info
libraries/tubo: Added (remote process execution library)
libraries/vte3: Updated for version 0.34.7.
libraries/xml-security-c: Updated for version 1.7.2.
libraries/xmltooling: Updated for version 1.5.3.
libraries/zc.lockfile: sed s,distribute,pysetuptools, *.info
libraries/zope.event: sed s,distribute,pysetuptools, *.info
libraries/zope.hookable: sed s,distribute,pysetuptools, *.info
libraries/zope.i18nmessageid: sed s,distribute,pysetuptools, *.info
misc/gcp: sed s,distribute,pysetuptools, *.info
misc/protobuf: sed s,distribute,pysetuptools, *.info
misc/readesm: Added (shows content of digital tachograph files)
multimedia/get_iplayer: Updated for version 2.83.
network/fail2ban: New download link.
network/httrack: Updated for version 3.47.21.
network/identicurse: sed s,distribute,pysetuptools, *.info
network/netperf: Moved from System category.
network/niceshaper: Added (dynamic traffic shaper)
network/ocsync: Updated for version 0.80.0.
network/owncloud-client: Updated for version 1.3.0.
network/phpmyadmin: Updated for version 4.0.4.1.
network/shibboleth-sp: Updated for version 2.5.2.
network/spideroak: Removed (build script obsolete and misleading)
office/ProjectLibre: Updated for version 1.5.6.
office/calibre: Updated for version 0.9.38.
office/libreoffice-helppack: Updated for version 4.0.4.
office/libreoffice-langpack: Updated for version 4.0.4.
office/libreoffice: Updated for version 4.0.4.
office/mu: Updated for version 0.9.9.5.
office/notmuch: Updated for version 0.15.2.
office/tellico: Updated for version 2.3.8.
office/texlive: Change the order of the commands in doinst.sh
perl/perl-BerkeleyDB: Fix perms on some docs
perl/perl-xml-namespacesupport: Removed (dupe package)
python/MarkupSafe: sed s,distribute,pysetuptools, *.info
python/boto: sed s,distribute,pysetuptools, *.info
python/cssselect: sed s,distribute,pysetuptools, *.info
python/cssutils: sed s,distribute,pysetuptools, *.info
python/distribute: Removed (merged with upstream setuptools)
python/feedparser: sed s,distribute,pysetuptools, *.info
python/lockfile: sed s,distribute,pysetuptools, *.info
python/mechanize: sed s,distribute,pysetuptools, *.info
python/netifaces: sed s,distribute,pysetuptools, *.info
python/pep8: sed s,distribute,pysetuptools, *.info
python/pip: sed s,distribute,pysetuptools, *.info
python/psutil: Updated for version 1.0.1.
python/pyinotify: sed s,distribute,pysetuptools, README
python/pyquery: sed s,distribute,pysetuptools, *.info
python/pysetuptools: Updated for version 0.8.
python/pystatsd: sed s,distribute,pysetuptools, *.info
python/python-Levenshtein: sed s,distribute,pysetuptools, *.info
python/python-daemon: sed s,distribute,pysetuptools, *.info
python/python-dateutil: sed s,distribute,pysetuptools, *.info
python/python-distutils-extra: sed s,distribute,pysetuptools, *.info
python/python-magic: sed s,distribute,pysetuptools, *.info
python/python-morbid: sed s,distribute,pysetuptools, *.info
python/python-oauth2: sed s,distribute,pysetuptools, *.info
python/python-stomper: sed s,distribute,pysetuptools, *.info
python/python-transaction: sed s,distribute,pysetuptools, *.info
python/pyudev: sed s,distribute,pysetuptools, *.info
python/rope: sed s,distribute,pysetuptools, README
python/tweepy: sed s,distribute,pysetuptools, *.info
python/virtualenv: New maintainer (no other changes)
python/virtualenv: sed s,distribute,pysetuptools, README
system/fs-uae: sed s,distribute,pysetuptools, *.info
system/hntool: sed s,distribute,pysetuptools, *.info
system/multicorn: sed s,distribute,pysetuptools, *.info
system/nvidia-driver: Updated for version 319.32.
system/nvidia-kernel: Updated for version 319.32.
system/nvidia-legacy173-driver: Added.
system/nvidia-legacy173-kernel: Added.
system/nvidia-legacy304-driver: Added.
system/nvidia-legacy304-kernel: Added.
system/nvidia-legacy96-driver: Added.
system/nvidia-legacy96-kernel: Added.
system/rodent: Updated for version 5.1.0.
system/sakura: Trivial - added "updated" comment to script
system/sleuthkit: Updated for version 4.1.0.
system/tabbed: Updated for version 0.5.
+--------------------------+
Sun Jul  7 12:24:16 UTC 2013
academic/clustalo: Updated for version 1.2.0.
academic/glpk: Updated for version 4.48.
academic/ij-plugins-LOCI: Updated for version 4.4.8.
academic/jalview: Added (A Sequence Alignment Editor and Viewer)
academic/mapnik: Removed reference to optional cairomm dependency.
academic/qucs: Updated for version 0.0.17.
academic/seaview: Updated for version 4.4.2.
audio/lmms: Use an improved version of 02-stutter_audio.patch
desktop/j4-dmenu-desktop: Added (dmenu menu generator)
development/ecl: Added (Embeddable Common-Lisp)
development/gambit: Added (a Scheme compiler and interpreter)
development/glade: Added (GTK+ User Interface Builder)
development/nexus: Fix VERSION string to not make a broken package
development/nexus: Rearrange and OCDize some build lines
development/nexus: Trivial doinst.sh fix (whitespace removal)
development/nexus: Update comments in slack-desc
development/nexus: Updated for version 2.5.0_04.
libraries/libcec: Updated for version 2.1.3.
libraries/libdbi-drivers: Updated for version 0.9.0.
libraries/mysql-connector-c++: Added (MySQL Connector in C++)
network/jetty: Added (web server)
network/ocsync: Added (file synchronizer)
network/owncloud-client: Added (ownCloud sync client)
network/surf: Added (minimalist web browser)
network/vblade: Added (virtual EtherDrive (R) blade)
office/task: Updated for version 2.2.0.
python/Unidecode: Added (Python port of the Text::Unidecode Perl module)
python/feedgenerator: Fixed dep info
python/pelican: Added (static site generator, written in Python)
python/winpdb: Updated for version 1.4.8.
system/ansible: Added (a ssh based config management framework)
system/sakura: Updated for version 3.1.0 (and new maintainer)
system/worker: Updated for version 3.0.0.
+--------------------------+
Tue Jul  2 21:09:49 UTC 2013
academic/ImageJ: Updated for version 1.47.
academic/aline: Added (Tk graphical interface for Perl)
academic/mafft: Updated for version 7.047.
academic/mkDSSP: Added (A program that calculates DSSP entries from PDB entries)
accessibility/unclutter: Updated for version 1.09.
audio/lmms: Updated for version 0.4.15.
audio/qtractor: Updated for version 0.5.9.
audio/sunvox: Updated for version 1.7.3c.
audio/yoshimi: Added (software synthesiser)
desktop/gtkman: Added (A simple GTK+2 manual page viewer)
desktop/murrine-themes: Updated for version 0.98.5.
desktop/slack-wallpapers: Updated for version 0.212.
development/KKEdit: Added (a simple text editor)
development/luajit: Added (just-in-time compiler for Lua)
development/pudb: Added (A full-screen, console-based Python debugger)
games/eduke32: Updated for version 20130620_3893.
games/f1spirit: Added (F-1 Spirit Remake)
games/firestorm-opensim: Updated for version 4.4.2.34167.
games/firestorm: Updated for version 4.4.2.34167.
games/hexalate: Added (color matching game)
games/oblige: Updated for version 4.28b
games/odamex: Updated for version 0.6.3.
graphics/Pixie: Added (3D renderer)
graphics/g3dviewer: Added (3-D model viewer)
graphics/inkscape: Build fix on -current (harmless on 14.0)
graphics/teighafileconverter: Updated for version 3.09.0.
graphics/teighaviewer: Updated for version 3.09.0.
graphics/yed: Updated for version 3.11.
libraries/libdbi: Updated for version 0.9.0.
libraries/libnetfilter_log: Changed header with license.
libraries/mxml: Fix download link.
libraries/vsqlite++: Added (SQLite Wrapper Library)
libraries/zend-opcache: Added (PHP opcode caching and optimization)
misc/BISP: Added (The Nexus Personal BankID client)
misc/xbanish: Added (banish the mouse cursor when typing)
multimedia/harmonySEQ: Added (a MIDI sequencer for Linux)
network/bitcoin: Updated for version 0.8.3.
network/dovecot-pigeonhole: Updated for version 0.3.5.
network/filezilla: Updated for version 3.7.1.1.
network/ip2location-c: Updated for version 6.0.1.
network/ipv6calc: Updated for version 0.94.1.
network/luakit: Added (micro-browser framework)
network/miredo: Updated for version 1.2.6.
network/node: Updated for version 0.10.12.
network/qupzilla: Updated for version 1.4.3.
network/yate: Added (Yet Another Telephony Engine)
network/zabbix_agentd: Updated for version 2.0.6.
network/zabbix_proxy: Updated for version 2.0.6.
network/zabbix_server: Updated for version 2.0.6.
office/pdfpc: Added (a GTK based presentation viewer application)
perl/perl-Bit-Vector: Fix download link & md5sum.
python/python-requests: Added (Requests: HTTP for Humans)
system/clamtk: Updated for version 4.45.
system/flexbackup: Added (a flexible backup tool)
system/fs-uae: Updated for version 2.2.3.
system/iotop: Updated for version 0.6.
system/pigz: Updated for version 2.3, new maintainer.
system/redis: Updated for version 2.6.14.
+--------------------------+
Sat Jun 29 19:29:45 UTC 2013
audio/caps: Updated for version 0.9.7.
audio/ecasound: Updated for version 2.9.0.
audio/jack-tools: Updated for version 20130616.
audio/sooperlooper: Updated for version 1.7.0.
audio/tap_plugins: Updated for version 0.7.2.
audio/waon: Updated for version 0.10.
desktop/xfce4-xkb-plugin: Updated for version 0.5.6.
development/psycopg2: Updated for version 2.5.1.
development/tcc: Updated for version 0.9.26.
games/PyLotRO: Build bump.
games/connectagram: Added (word unscrambling game)
games/doomseeker: Updated for version 0.10b.
games/firestorm-opensim: Added (an alternative Second Life client)
games/firestorm: Updated for version 4.4.1.34164.
games/pentagram: Updated for version 20130617_svn.
games/sauerbraten: Updated for version 2013_02_03.
games/tanglet: Added (single player word finding game)
games/xonotic: Updated for version 0.7.0.
games/xu4: Updated for version 20130612_svn.
games/zdbsp: Updated for version 1.18.1.
graphics/mirage: Fixes in SlackBuild.
libraries/girara: Updated for version 0.1.6.
libraries/jbig2dec: New maintainer + remove static lib.
libraries/libnetfilter_acct: Updated for version 1.0.2.
libraries/libnetfilter_conntrack: Updated for version 1.0.3.
libraries/liboglappth: Fix for x86_64
libraries/libsecret: Added (library for accessing Secret Service API)
misc/asterixInspector: Updated for version 0.9.3.
misc/cwiid: Updated for version 0.6.00+svn201.
misc/zyGrib: Updated for version 6.1.4.
network/QuiteRSS: Added (RSS/Atom feed reader)
network/fail2ban: Updated for version 0.8.10.
network/hipchat: Fixed download links and tarball extraction
network/metasploit: Fixed typo.
network/razor-agents: Update license text.
network/uget: Updated for version 1.10.3.
office/mupdf: Upated for version 1.2 + new maintainer.
office/texstudio: Updated for version 2.6.0.
office/zathura-djvu: Updated fir version 0.2.3.
office/zathura-pdf-mupdf: Updated for version 0.2.4.
office/zathura-ps: Updated for version 0.2.2.
office/zathura: Updated for version 0.2.3.
python/Pyro4: Updated for version 4.20.
python/python-urllib3: Updated for version 1.6.
system/gdm: Fix crypt() usage with glibc-2.17+
system/seahorse: Updated for version 3.8.1.
+--------------------------+
Sun Jun 23 00:45:58 UTC 2013
academic/mapnik: Updated for version 2.2.0.
audio/alsa-tools: Updated for version 1.0.27.
audio/bristol: Updated for version 0.60.11.
audio/jackmeter: Added (console peak meter for jack)
audio/soundconverter: Updated for version 2.1.0.
audio/transcribe: Updated for version 8.31.1.
desktop/lxlauncher: Fixed dep info (add menu-cache)
desktop/menulibre: Added (Menu editor with quicklist support)
desktop/thunar-archive-plugin: Updated for version 0.3.1.
desktop/thunar-media-tags-plugin: Updated for version 0.2.1.
desktop/xfce4-dict: Updated for version 0.7.0.
desktop/xfce4-mailwatch-plugin: Added (Xfce plugin for checking mails)
desktop/xfce4-xkb-plugin: Updated for version 0.5.5.
development/amd-app-sdk: Updated for version 2.8.
development/anjuta: Updated for version 3.8.4.
development/jdk: Updated for version 7u25.
development/npm2tgz: Added (node.js module to Slackware package)
development/rakudo: Updated for version 2013.05.
games/alephone: Updated for version 20120514.
games/atari++: Updated for version 1.72.
games/dunelegacy: Updated for version 0.96.3.
games/garden: Added (2D vertical shoot-em-up game)
games/gzdoom: Updated for version 1.8.00.
games/marathon-data: Updated for version 20120514.
games/marathon-infinity-data: Updated for version 20120514.
games/marathon2-data: Updated for version 20120514.
games/qtsixa: Added (Sixaxis Joystick Manager)
games/rocksndiamonds: Added (boulder dash-like arcade games)
games/tintin: Added (console MUD client)
games/xroar: Updated for version 0.29.5.
graphics/SweetHome3D: Updated for version 4.1.
graphics/exact-image: Updated for version 0.8.8.
haskell/haskell-hxt-charproperties: Added (XML Character properties)
haskell/haskell-hxt-regex-xmlschema: Added (XML Schema reg.exp.)
haskell/haskell-hxt-unicode: Added (Unicode encoding and decoding)
haskell/haskell-hxt: Added (Haskell XML Toolbox)
libraries/ORBit2: Fix build on -current (harmless on 14.0)
libraries/c-ares: Updated for version 1.10.0.
libraries/gnome-media: Miscellaneous cleanup
libraries/libbsd: Updated for version 0.5.2.
libraries/libnfs: Updated for version 1.6.0.
libraries/libnova: Fixed homepage link
libraries/vte3: Updated for version 0.34.6.
misc/dcc: Added (Distributed Checksum Clearinghouses)
misc/nixnote: Added (Open Source Client for Evernote)
network/etherape: Updated for version 0.9.13.
network/frostwire: Updated for version 5.6.0.
network/metasploit: Updated for version 4.6.0.
network/opensmtpd: Updated for version 5.3.3p1.
network/remmina: BUILD bump, added some patches.
network/shorewall-core: Updated for version 4.5.17.1.
network/shorewall6: Updated for version 4.5.17.1.
network/shorewall: Updated for version 4.5.17.1.
network/transmission-remote-gtk: Updated for version 1.1.1.
network/yturl: Updated for version 20130618.
office/ganttproject: Updated for version 2.6.1_r1499.
perl/perl-CPANPLUS-Dist-Slackware: Updated for version 1.013.
perl/perl-CSS-Squish: Added (Compact CSS files into one big file)
perl/perl-DBD-SQLite: Updated for version 1.39.
perl/perl-Text-Password-Pronounceable: Added (pronouncable passw.)
perl/perl-Text-Quoted: Added (Extract structure of quoted message)
perl/perl-data-dump: Updated for version 1.22.
python/PyGreSQL: Added (Python PostgreSQL Interfaces)
system/burp: Updated for version 1.3.32.
system/cronie: Updated for version 1.4.9.
system/ksh-openbsd: Updated for version 20130611.
system/mongodb: Updated for version 2.4.4.
system/numactl: Added (NUMA process control)
system/reptyr: Updated for version 0.5_20130618.
system/terminator: Updated for version 0.97.
system/trackfs: Updated for version 0.1.0.
system/unp: Added (unpack almost everything with one command)
system/v86d: Added (x86 Emulation Daemon)
+--------------------------+
Sun Jun 16 02:08:06 UTC 2013
accessibility/espeak: Updated for version 1.47.11.
accessibility/wgetpaste: Updated for version 2.22.
audio/invada_studio_plugins_lv2: Updated homepage info.
audio/millennium-plugins: Updated download location.
games/defendguin: Updated for version 0.0.12.
games/fizmo: Updated for version 0.7.7.
games/fortune-dune: Updated homepage info.
games/maelstrom: Updated homepage info.
games/mame: Updated for version 0.149.
games/playonlinux: Updated for version 4.2.1.
games/qmc2: Updated for version 0.39.
games/typhoon_2001: Updated homepage, fix ARCH setting.
games/ucr: Updated download link.
misc/dos2unix: Updated for version 6.0.3.
multimedia/flash-player-plugin: Updated for version 11.2.202.291.
network/radvd: Create piddir and chown before start()
network/radvd: Do not create /var/run/radvd during packaging
office/texlive: Fixup duplicate manpages in wrong places
perl/perl-Data-Dump: Removed (dupe of perl/perl-data-dump)
perl/perl-Test-Trap: Fixed dep info
system/isomd5sum: Updated for version 1.0.10.
+--------------------------+
Sun Jun  9 17:04:13 UTC 2013
academic/clustalo: Updated for version 1.1.1.
academic/grass: Fixed build with recent ffmpeg + other tweaks.
academic/mafft: Updated for version 7.037.
academic/ncbi-blast-plus: Updated for version 2.2.28.
academic/qgis: Updated for version 1.8.0 + new maintainer
academic/seaview: Updated for version 4.4.1.
audio/qmmp: Updated for version 0.7.1.
desktop/spectrwm: Updated for version 2.3.0.
development/codeblocks: Updated for version 12.11.
development/gob2: Updated for version 2.0.19.
development/newlisp: Updated for version 10.5.0.
games/scummvm: Updated for version 1.6.0.
games/stone_soup: Updated for version 0.12.1.
games/yamagi-quake2: Fix VERSION in .info
graphics/gallery3: Updated for version 3.0.8.
libraries/gdal: Updated for version 1.9.2.
libraries/libgda: Updated for version 5.1.2.
libraries/libmygpo-qt: Updated for version 1.0.7.
multimedia/gpodder: Updated for version 3.5.1.
multimedia/spotify: Updated for version 0.9.0.133.gd18ed58.259.
multimedia/xbmc: Updated for version 12.2.
network/ClusterSSH: Updated for version 4.02_01.
network/allmydata-tahoe: Updated for version 1.10.0.
network/dwb: Updated for version 2013.03.30.
network/phpmyadmin: Updated for version 4.0.2.
network/qbittorrent: Updated for version 3.0.9.
network/qupzilla: Updated for version 1.4.2.
office/calibre: Updated for version 0.9.34.
perl/perl-BerkeleyDB: Updated for version 0.52.
perl/perl-CPANPLUS-Dist-Slackware: Updated for version 1.011.
perl/perl-Exception-Class: Updated for version 1.36.
perl/perl-IP-Country: Updated for version 2.28.
perl/perl-NetAddr-IP: Updated for version 4.069.
python/cssutils: Updated for version 0.9.10.
python/lxml: Remove distribute dependency.
python/lxml: Updated for version 3.2.1.
python/psutil: Updated for version 0.7.1.
system/plan9port: Updated for version 20130308.
system/tiger: Updated with a few bug fixing patches.
system/xboxdrv-linux: Updated for version 0.8.5.
+--------------------------+
Wed Jun  5 08:19:26 UTC 2013
audio/fIcy: Added (icecast/shoutcast stream grabber suite)
audio/jvmetro: Added (Jack Visual Metronome)
audio/soundkonverter: Added (frontend to various audio converters)
desktop/cheser-icon-theme: Added (Tango-style icons for Xfce)
development/crosstool-ng: Added (Toolchain Generator)
games/openttd: Fixed md5sums in .info file
graphics/pngquant: Added (PNG conversion tool)
libraries/glfw: Added (OpenGL framework)
libraries/gnome-python2-gconf: Added (GConf bindings for Python2)
libraries/libburn: Updated for version 1.3.0.
libraries/libg3d: Added (3-d environment importing library)
libraries/libisoburn: Updated for version 1.3.0.
libraries/libisofs: Updated for version 1.3.0.
misc/dmg2img: Added (disk image file conversion tool)
multimedia/smtube: Updated for version 1.7.
network/filezilla: Updated for version 3.7.0.2.
network/midori: Updated for version 0.5.2.
network/nginx: Updated for version 1.4.1.
office/gcal: Added (Gnu terminal calendar application)
office/text2pdf: Added (Converts text files to PDF)
python/lockfile: Added (API for locking files)
python/python-daemon: Added (create pythonic daemon processes)
python/stem: Added (Python controller library for Tor)
system/ack: Added (grep for coders)
system/apcupsd: Added "missingok" to the logrotate script
system/dtrx: Added (Intelligent archive extraction)
system/epson-inkjet-printer-escpr: Added (generic printer driver)
system/systrace: Added (interactive policy gen. for system calls)
+--------------------------+
Tue Jun  4 05:14:53 UTC 2013
academic/R: Updated for version 3.0.1.
academic/copasi: Updated for version 55.
academic/mendeleydesktop: Updated for version 1.8.4.
academic/scilab: Updated for version 5.4.1.
academic/smath-studio: Updated for version 0.96.4868.
audio/guitarix: Updated for version 0.27.1.
audio/lsmi: Added (map device input to ALSA MIDI sequencer events)
audio/xmp: Updated for version 4.0.6.
desktop/cwp: Updated for version 1.7.3.
desktop/e16: Updated for version 1.0.13.
desktop/ede: Added (Equinox Desktop Environment)
desktop/enlightenment: Updated for version 0.17.3.
desktop/rodent-icon-theme: Added (Rodent vector icon theme)
development/Cython: Updated for version 0.19.1.
development/anjuta: Updated for version 3.8.1.
development/bas: Added (classic basic interpreter)
development/eagle: Updated for version 6.4.0.
development/eclipse: Updated for version 4.2.2.
development/gambas3: Updated for version 3.4.1.
development/git-cola: Updated for version 1.8.2.
development/nqp: Updated for version 2013.05.
development/parrot: Updated for version 5.4.0.
development/vile: Updated for version 9.8j.
development/xvile: Updated for version 9.8j.
games/bsnes: Removed (use games/higan instead)
games/desmume: Updated for version 0.9.9.
games/fortune_doctor_who: Added (quotes from Doctor Who)
games/gzdoom: Updated for version 1.7.01.
games/higan: Added (Nintendo multi-system emulator)
games/openttd: Updated for version 1.3.1.
games/pcsxr: Fixed download link
games/wesnoth: Fix segfault using upstream patch
games/xonotic: Updated for version 0.6.0.
games/yamagi-quake2: Updated for version 5.11.
graphics/darktable: Updated for version 1.2.
graphics/fyre: Added (A tool for producing computational artwork)
graphics/gpaint: Added (GNU Paint: a small-scale GTK2 painting program)
graphics/graphviz: Updated for version 2.30.1.
graphics/jhead: Updated for version 2.97.
graphics/luminance-hdr: Updated for version 2.3.1.
graphics/meshlab: Added (process and edit 3D triangular meshes)
graphics/teighafileconverter: Updated for version 3.08.2.
graphics/teighaviewer: Updated for version 3.08.2.
haskell/haskell-platform: Removed (build failure)
libraries/c++-gtk-utils: Updated for version 2.0.16.
libraries/dietlibc: Updated for version 0.33.
libraries/e_dbus: Updated for version 1.7.7.
libraries/ecore: Updated for version 1.7.7.
libraries/edelib: Added (C++ library for EDE)
libraries/edje: Updated for version 1.7.7.
libraries/eet: Updated for version 1.7.7.
libraries/efreet: Updated for version 1.7.7.
libraries/eina: Updated for version 1.7.7.
libraries/eio: Updated for version 1.7.7.
libraries/embryo: Updated for version 1.7.7.
libraries/evas: Updated for version 1.7.7.
libraries/flickcurl: Updated for version 1.24.
libraries/hdf5: Updated for version 1.8.10_patch1.
libraries/io_lib: Updated for version 1.13.0.
libraries/libskk: Added (Japanese kana-to-kanji conversion library)
libraries/libxmp: Added (The Extended Module Player library)
libraries/log4shib: Updated for version 1.0.6.
libraries/miniupnpc: Updated for version 1.8.
libraries/opencv: Updated for version 2.4.5.
libraries/quazip: Added (Qt/C++ wrapper for ZIP/UNZIP package)
libraries/reportlab: Updated for version 2.7.
misc/foxtrotgps: Updated for version 1.1.1.
misc/gramps: Updated for version 3.4.3.
misc/ibus-skk: Added (SKK engine for IBus)
multimedia/flash-player-plugin: Updated for version 11.2.202.285.
multimedia/gtkpod: Patched to work with Anjuta 3.8.x.
multimedia/hexter: Updated for version 1.0.0.
multimedia/makemkv: Updated for version 1.8.3.
multimedia/smplayer: Updated for version 0.8.5.
network/claws-mail: Note that libchamplain is not on SBo
network/claws-mail: Removed html2ps note
network/fail2ban: Updated for version 0.8.9.
network/hipchat: Added (private group messaging)
network/jabberd2: Added (XMPP server)
network/kismet: Updated for version 2013_03_R1b.
network/memcached: Updated for version 1.4.15.
network/msmtp: Updated for version 1.4.31.
network/mumble: Updated for version 1.2.4.
network/murmur: Updated for version 1.2.4.
network/newsbeuter: Updated for version 2.6.
network/p0f: Updated for version 3.06b.
network/radvd: Updated for version 1.9.3.
network/skype: Updated for version 4.2.0.11.
network/smb4k: Updated for version 1.0.7.
network/synergy: Updated for version 1.4.12.
network/udns: Added (DNS resolver library)
network/users-agent: Added (Jabber User Directory)
network/uwsgi: Updated for version 1.9.6.
network/weechat: Updated for version 0.4.1.
office/ProjectLibre: Updated for version 1.5.5.
office/adobe-reader: Updated for version 9.5.5.
office/elyxer: Updated for version 1.2.5.
office/pdftk: Updated for version 2.00.
office/texmaker: Updated for version 4.0.2.
perl/libwww-perl: Updated for version 6.05.
perl/perl-Authen-PAM: Added (Perl interface to PAM library)
perl/perl-Class-ReturnValue: Added (a return-value object)
perl/perl-Config-IniFiles: Updated for version 2.82.
perl/perl-Devel-StackTrace: Updated for version 1.30.
perl/perl-Font-AFM: Added (interface to Adobe Font Metrics files)
perl/perl-Image-Info: Updated for version 1.35.
perl/perl-Locale-Maketext-Lexicon: Added (Use other catalog formats in Maketext)
perl/perl-Module-Versions-Report: Added (report versions of in-memory perl modules)
perl/perl-NetAddr-IP: Updated for version 4.068.
perl/perl-Regext-IPv6: Added (Regular expression for IPv6 addresses)
perl/perl-SNMP-Info: Updated for version 3.01.
perl/perl-Test-LongString: Added (tests strings for equality)
perl/perl-Test-Pod: Updated for version 1.48.
perl/perl-Tree-Simple: Added (a simple tree object)
perl/perl-html-parser: Updated for version 3.70.
perl/perl-net-http: Updated for version 6.06.
python/Pygments: Updated for version 1.6.
python/cssselect: Updated for version 0.8.
python/numexpr: Updated for version 2.1.
python/pep8: Updated for version 1.4.5.
python/pip: Updated for version 1.3.1.
python/pyflakes: Updated for version 0.7.2.
python/pyinotify: Updated for version 0.9.4.
python/python-pmw: Updated for version 1.3.3a.
python/python3: Updated for version 3.3.2.
python/virtualenv: Updated for version 1.9.1.
system/adobe-source-sans-pro-font: Updated for version 1.050.
system/apcupsd: Add --with-dev="" to configure flags
system/apcupsd: Fix lockdir definition and usage
system/freeswitch: Added (Open source telephony platform)
system/fsviewer: Updated download andhomepage links.
system/gparted: Updated for version 0.16.0.
system/gpsd: Updated for version 3.9.
system/heirloom-doctools: Added (classic implementation of the troff tools)
system/i8kutils: Added (utilities for Dell Inspiron and Latitude laptops)
system/kvm-kmod: Updated for version 3.9.
system/makeself: Updated for version 2.2.0.
system/mksh: Updated for version R46.
system/mongodb: Updated for version 2.4.3.
system/nvidia-driver: Updated for version 319.17.
system/nvidia-kernel: Updated for version 319.17.
system/pcsc-perl: Updated for version 1.4.13.
system/redis: Updated for version 2.6.12.
system/rodent: Updated for version 5.0.3.
system/rodent: Updated for version 5.0.5.
system/rsyslog: Updated for version 7.2.6.
system/unshield: Added (extractor for Microsoft InstallShield cabinet files)
system/vifm: Updated for version 0.7.5.
system/virt-viewer: Updated for version 0.5.5.
system/xen: Updated for version 4.2.2 (and 3.2.45 kernel)
system/zpaq: Added (journaling, incremental, deduplicating archiver)
+--------------------------+
Mon May 13 01:30:07 UTC 2013
development/gnustep-base: Added (GNUstep Base Library)
development/gnustep-make: Added (GNUstep build/setup/packaging tool)
games/residualvm: Added (LucasArts' 3D game engine interpreter)
graphics/librecad: Updated for version 1.0.3.
graphics/openscad: Added (CAD software for solid 3D objects)
libraries/CGAL: Added (Computational Geometry Algorithms Library)
libraries/OpenCSG: Added (CSG rendering library)
libraries/harfbuzz: Updated for version 0.9.16.
libraries/live555: Fixed version string in .info file
libraries/vte3: Updated for version 0.34.4.
misc/cflow: Added (Flow graph generator for C projects)
network/ajaxplorer-sync: Added (desktop sync client for AjaXplorer)
network/claws-mail-extra-plugins: Removed (included in claws-mail)
network/claws-mail: Updated for version 3.9.1.
network/fail2ban: Updated for version 0.8.8.
network/filezilla: Updated for version 3.7.0.1.
network/phpmyadmin: Updated for version 4.0.0.
network/postgrey: Added (Postfix Greylisting Policy Server)
network/transmission: Updated for version 2.77.
office/texlive: include TL perl modules in package
python/python-authres: Added (RFC 5451 Auth Results Headers generation and parsing)
system/iotop: Updated for version 0.5.
system/smem: Updated for version 1.3.
+--------------------------+
Sun Apr 28 15:57:51 UTC 2013
academic/R: Updated for version 3.0.0.
academic/aris: Fix html docs.
academic/pgrouting: Added (geospatial routing for PostGIS)
academic/udig: Updated for version 1.4.0.
academic/ugene: Updated for version 1.11.5.
accessibility/eflite: Added (speech server)
accessibility/flite: Updated for version 1.4.
audio/qmidiarp: Updated for version 0.5.1.
audio/sunvox: Updated for version 1.7.3.
audio/vmpk: Updated for version 0.5.1.
desktop/enlightenment: Updated for version 0.17.2.1.
desktop/ratpoison: Updated for version 1.4.6.
desktop/spectrwm: Updated for version 2.2.0.
desktop/wminfo: Updated for version 4.1.1.
desktop/xfce4-places-plugin: Updated for version 1.5.0.
desktop/xfce4-smartbookmark-plugin: Updated for version 0.4.5.
development/CVSTools: Updated for version 21.1.
development/apache-jmeter: Updated for version 2.9.
development/gambas3: Updated for version 3.4.0.
development/gsoap: Updated for version 2.8.12.
development/jdk: Updated for version 7u21.
development/kicad-doc: Updated for version bzr_20130328.
development/kicad-library: Updated for version bzr_20130317.
development/kicad: Updated for version bzr_20130325.
development/mysql-workbench-gpl: Updated for version 5.2.47.
development/nqp: Added (Not Quite Perl)
development/parrot: Updated for version 5.0.0.
development/rakudo: Added (Perl 6 compiler for the Parrot VM)
games/darkplaces: Updated for version 20130304.
games/generator_cbiere: Updated for version 0.35r4.
games/openttd: Updated for version 1.3.0.
games/redeclipse: Updated for version 1.4.
games/robotfindskitten: Manually install necessary .nki file.
games/supertuxkart: Updated for version 0.8.
games/warsow: Updated for version 1.02.
games/yabause: Updated for version 0.9.12.
graphics/enblend-enfuse: Updated for version 4.1.1.
graphics/entangle: Added (Digital camera control GUI)
graphics/fritzing: Updated for version 0.7.12b.
graphics/gallery3: Updated for version 3.0.6.
graphics/hugin: Updated for version 2012.0.0.
graphics/povray: Updated for version 3.7.0.RC7.
graphics/ufraw: Updated for version 0.19.1.
graphics/yed: Updated for version 3.10.2.
libraries/cfitsio: Updated for version 3.34.
libraries/cracklib: Updated for version 2.8.22.
libraries/e_dbus: Updated for version 1.7.6.
libraries/ecore: Updated for version 1.7.6.
libraries/edje: Updated for version 1.7.6.
libraries/eet: Updated for version 1.7.6.
libraries/efreet: Updated for version 1.7.6.
libraries/eigen3: Updated for version 3.1.2.
libraries/eina: Updated for version 1.7.6.
libraries/eio: Updated for version 1.7.6.1.
libraries/embryo: Updated for version 1.7.6.
libraries/evas: Updated for version 1.7.6.
libraries/exiftool: Updated for version 9.27.
libraries/gtkextra: Updated for version 3.0.4.
libraries/harfbuzz: Update for version 0.9.15.
libraries/harfbuzz: Updated for version 0.9.13.
libraries/libnfs: Updated for version 1.5.0.
libraries/libpeas: Updated for version 1.6.2.
libraries/libsidplay2: Added some debian patches.
libraries/lua-zlib: Added (streaming interface to zlib for Lua)
libraries/luadbi: Added (database interface library for Lua)
libraries/luaevent: Added (binding of libevent to Lua)
libraries/luaexpat: Added (XML Expat parsing for Lua)
libraries/luasec: Added (A Lua binding for OpenSSL library)
libraries/luasocket: Added (Network support for the Lua language)
libraries/opencv: Updated for version 2.4.4a.
libraries/php-mssql: Updated for version 5.4.13.
libraries/php-pdo_dblib: Updated for version 5.4.13.
libraries/tbb: Updated for version 4.1u3.
libraries/vigra: Added (Vision with Generic Algorithms library)
libraries/wxGTK: included libgnomeprint support
libraries/xine-plugin: Updated for version 1.0.2.
misc/uni2ascii: Updated for version 4.18.
multimedia/flash-player-plugin: Updated for version 11.2.202.280.
multimedia/google-earth: Updated for version 7.1.1.1580, fixed perm
multimedia/gpodder: Updated for version 3.5.0.
multimedia/mlt: Updated for version 0.8.8.
multimedia/smtube: Updated for version 1.6.
multimedia/xbmc: Updated for version 12.1.
network/ClusterSSH: Fix perl path.
network/bitcoin: Updated for version 0.8.1.
network/dropbox: Updated for version 2.0.5.
network/hylafax+: Added (enterprise-class fax system)
network/mangler: Updated for version 1.2.5.
network/mosh: Updated for version 1.2.4.
network/nagios: Updated for version 3.5.0.
network/nethogs: Updated for version 0.8.0.
network/node: Updated for version 0.10.2.
network/openresolv: Updated for version 3.5.4.
network/openvswitch: Updated for version 1.9.0.
network/privoxy: Updated for version 3.0.21.
network/prosody: Added (Lua XMPP Server)
network/quagga: Updated for version 0.99.22.
network/sieve-connect: Updated for version 0.85.
network/vidalia: Updated for version 0.2.21.
office/bookbinder: (Create a bindable book from a PDF file)
office/pandoc: Updated for version 1.11.1.
office/remind: Updated for version 03.01.13.
office/trelby: Added (A screenwriting program)
perl/perl-Convert-ASN1: Added (ASN.1 Encodeperl/Decode library)
perl/perl-Crypt-Blowfish: Added (Perl Blowfish encryption module)
perl/perl-Crypt-Blowfish_PP: Added (Blowfish encrypt implementation)
perl/perl-Crypt-CAST5: Added (CAST5 block cipher)
perl/perl-Crypt-CBC: Added (Cipher Block Chaining Mode cipher)
perl/perl-Crypt-DES: Added (DES encryption module)
perl/perl-Crypt-IDEA: Added (IDEA block cipher)
perl/perl-Crypt-Rijndael: Added (Rijndael encryption module)
perl/perl-Data-UUID: Added (extension for generating UUIDs)
perl/perl-HTTP-Proxy: Updated for version 0.300.
perl/perl-Image-Info: Updated for version 1.34.
perl/perl-LWP-Protocol-https: Added (LWP::UserAgent module)
perl/perl-MIME-tools: Updated for version 5.504.
perl/perl-Mail-DKIM: Updated for version 0.40.
perl/perl-Mail-DomainKeys: Added (perl implementation of DomainKeys)
perl/perl-Mail-SPF-Query: Added (query Sender Policy Framework)
perl/perl-Mozilla-CA: Added (Mozilla CA cert bundle in PEM format)
perl/perl-Net-CIDR-Lite: Added (merging IPv4 and IPv6 CIDR addrs)
perl/perl-Net-Jabber: Added (Jabber Perl Library)
perl/perl-Net-LDAP: Added (Lightweight Directory Access Protocol)
perl/perl-Net-XMPP: Added (XMPP Perl Library)
perl/perl-Sys-Hostname-Long: Added (Try every to get full hostname)
perl/perl-TimeDate: Updated for version 2.30.
perl/perl-XML-Filter-BufferText: Added (all characters in 1 event)
perl/perl-XML-NamespaceSupport: Added (generic namespace class)
perl/perl-XML-SAX-Writer: Added (SAX2 writer)
perl/perl-XML-Stream: Added (Creates an XML Stream connection)
python/distribute: Updated for version 0.6.36.
python/python-netaddr: Added (Network address manipulation)
python/python3: Updated for version 3.3.1.
python/six: Updated for version 1.3.0.
python/virtualenvwrapper: Updated for version 3.7.
system/adobe-source-sans-pro-font: Updated for version 1.040.
system/ccd2iso: Fixed download location.
system/ccrypt: Updated for version 1.10.
system/convmv: Updated for version 1.15.
system/fs-uae: Updated for version 2.2.1.
system/gcdemu: Updated for version 2.0.0.
system/grub2: Fixed permission issue.
system/herculesstudio: Updated for version 1.4.0.
system/innoextract: Updated for version 1.4.
system/kc: Updated for version 2.3.0.
system/kvm-kmod: Clean up leftover verbiage wrt qemu-kvm
system/kvm-kmod: Don't install udev rules
system/lbench: Updated for version 2.0.
system/multicorn: Added (PostgreSQL Foreign Data Wrappers)
system/nss-pam-ldapd: Updated for version 0.8.12.
system/qemu: Clean up some left over verbiage wrt qemu-kvm
system/sbotools: Updated for version 1.6.
system/smbldap-tools: Updated for version 0.9.10.
system/ssdeep: Updated for version 2.9.
system/usbredir: Updated for version 0.6.
system/virtualbox-extension-pack: Updated for version 4.2.10.
system/wine: Updated for version 1.5.25.
+--------------------------+
Mon Apr 15 22:47:04 UTC 2013
system/rar2fs: Fixed dep info (s,libunrar,unrar,)
system/kvm-kmod: Removed spurrious dependency on qemu
+--------------------------+
Mon Apr 15 22:21:59 UTC 2013
academic/octave: Updated for version 3.6.4.
audio/mp3splt-gtk: Updated for version 0.8.2.
audio/mp3splt: Updated for version 2.5.2.
audio/rubberband: Updated for version 1.8.1.
desktop/qlandkartegt: Updated for version 1.7.0.
desktop/wminfo: Updated for version 4.1.0.
desktop/xvkbd: Updated for version 3.4.
development/acpica: Updated for version 20130214.
development/jdk: Updated for version 7u17.
development/scratch: Added (programming educational tool)
development/squeak-vm: Added (Smalltalk compatible VM)
development/vala: Updated for version 0.20.0.
development/viewvc: Updated for version 1.1.18.
games/0ad-data: Updated for version 0.0.13.
games/0ad: Updated for version 0.0.13.
games/freeciv: Updated for version 2.3.4.
games/gnubg: Updated for version 0.90.0_20130318.
games/opensonic: Added (game based on Sonic the Hedgehog)
games/pokerth: Updated for version 1.0.1.
games/wesnoth: Updated for version 1.10.6.
graphics/LDraw_data: Updated for version 201203.
graphics/VariCAD: Updated for version 2013_2.01.
graphics/leocad: Updated for version 0.79.3.
graphics/leocad_pieces: Updated for version 7114.
libraries/irrlicht: Updated for version 1.8.
libraries/libaal: Fix maintainer email address
libraries/libmirage: Updated for version 2.0.0.
libraries/libmp3splt: Updated for version 0.8.2.
libraries/libunrar: Removed (use system/unrar instead)
libraries/libvirt: Updated for version 1.0.3.
libraries/libvmime: Updated for version 0.9.1.
multimedia/dvdauthor: Updated for version 0.7.1.
multimedia/google-earth: Updated for version 7.0.3.8542.
multimedia/guvcview: Updated for version 1.7.0.
multimedia/miro: Updated for version 6.0.
multimedia/smplayer: Updated for version 0.8.4.
network/irssi_otr: Fix build (use static libotr)
network/liferea: Updated for version 1.8.12.
network/midori: Updated for version 0.5.0.
network/opensmtpd: Added (Open SMTPd)
network/opera: Updated for version 12.15.
network/qupzilla: Updated for version 1.4.1.
network/sphinx: Fix build error on 32-bits.
office/calibre: Updated for version 0.9.24.
office/libreoffice-helppack: Added (LibreOffice Built-in Help Pack)
office/libreoffice-helppack: Updated for version 4.0.2.
office/libreoffice-langpack: Updated for version 4.0.1.
office/libreoffice-langpack: Updated for version 4.0.2.
office/libreoffice: Updated for version 4.0.1.
office/libreoffice: Updated for version 4.0.2.
python/dulwich: Updated for version 0.8.7.
python/hg-git: Updated for version 0.4.0.
python/lxml: Updated for version 3.1.1.
python/pymongo: Added (Python Driver/Tools for mongodb)
system/cdemu-client: Updated for version 2.0.0.
system/cdemu-daemon: Updated for version 2.0.0.
system/fsarchiver: Updated for version 0.6.17.
system/gparted: Updated for version 0.15.0.
system/image-analyzer: Updated for version 2.0.0.
system/mksh: Updated for version R44.
system/postgresql: Updated for version 9.2.4.
system/qemu-kvm: Removed (merged with system/qemu)
system/qemu: Updated for version 1.4.0.
system/reiser4progs: Correct information in README and slack-desc
system/rxvt-unicode: Updated for version 9.18.
system/slim: Updated for version 1.3.5.
system/udisks-glue: Added (associate events to user-defined actions)
system/unrar: Updated for version 4.2.4.
system/virtualbox-addons: Updated for version 4.2.10.
system/virtualbox-kernel-addons: Updated for version 4.2.10.
system/virtualbox-kernel: Updated for version 4.2.10.
system/virtualbox: Updated for version 4.2.10.
+--------------------------+
Fri Mar 22 11:23:26 UTC 2013
academic/ImageJ: Updated for version 1.46.
academic/PhyML: Updated for version 20130219.
academic/R: Updated for version 2.15.3.
academic/aris: Added (sequential proof program)
academic/ij-plugins-LOCI: Added (Plugins for ImageJ)
academic/ij-plugins-UCSD: Added (Plugins for ImageJ)
academic/primer3: Updated for version 2.3.5.
academic/ucsc-blat: Added (The BLAST-Like Alignment Tool)
audio/id3tool: Added (utility for manipulation ID3 tags)
audio/libbs2b: Added (improve headphone listening of stereo audio)
audio/mac: Homepage is dead, DL link updated.
audio/mktoc: Updated for version 1.3.
audio/muse: Fixed doinst.sh for real this time
audio/vamp-plugin-sdk: Updated for version 2.4.
desktop/crystal: Updated for version 2.1.1.
desktop/e16: Fixed version string in .info file
desktop/slack-wallpapers: Updated for version 0.168.
desktop/xdgmenumaker: Added (generates application menus)
development/astyle: Added (Artistic Style code beautifier)
development/bakefile: Updated for version 0.2.9.
development/geany-plugins: Updated for version 1.23.
development/geany: Updated for version 1.23.
development/ht: Updated for version 2.0.21.
development/kdiff3: Updated for version 0.9.97.
games/gemrb: Added (Infinity engine open-source implementation)
games/gnugo: Added (free version of the game of Go)
games/mfe: Updated for version 0.1.7.
games/singularity: Added (Alternative client for SecondLife)
graphics/fbida: Updated for version 2.09.
libraries/SDL_gfx: Updated for version 2.0.24.
libraries/compface: Added (48x48x1 image (de)compression)
libraries/libaacs: Updated for version 0.6.0.
libraries/libcec: Updated for version 2.1.1.
libraries/libewf: Updated for version 20130303.
libraries/libotr: Updated for version 4.0.0.
libraries/muParser: Updated for version 2.2.3.
libraries/yaz: Updated for version 4.2.51.
misc/portecle: Added (Simple interface to a keystore)
misc/toilet: Added (program for creating banners)
multimedia/TeamSpeak3: Added (Voice Communication)
multimedia/flash-player-plugin: Updated for version 11.2.202.275.
multimedia/gaupol: Updated for version 0.19.2.
multimedia/gtkpod: Patched to fix showing tracks on 64 bit.
multimedia/radiotray: Fixed dep information
network/ClusterSSH: Added (run multiple ssh clients in paralell)
network/RSSOwl: Updated for version 2.1.6.
network/asterisk: Updated for version 1.8.20.1.
network/bitlbee: Updated for version 3.2.
network/deluge: Fixed dep information
network/dwb: Updated for version 2012.12.03.
network/httrack: Added (offline web browser)
network/mitter: Fixed download link
network/pidgin-otr: Updated for version 4.0.0.
network/smb4k: Updated for version 1.0.6.
network/vacuum-im: Updated for version 1.2.2.
network/wireshark: Updated for version 1.8.6.
office/ProjectLibre: Updated for version 1.5.4.
office/briss: Added (The BRIght Snippet Sire)
office/calcurse: Updated for version 3.1.4.
office/evince: Updated for version 3.4.0.
office/gocr: Updated for version 0.50.
office/texmaker: Updated for version 4.0.
perl/perl-Algorithm-Diff: Added (diff between two files / lists)
perl/perl-Class-Data-Inheritable: Added (Inheritable class data)
perl/perl-Data-Dump: Added (Pretty printing of data structures)
perl/perl-Devel-StackTrace: Added (represent a stack trace)
perl/perl-Exception-Class: Added (declare real exception classes)
perl/perl-HTTP-Proxy: Updated for version 0.27.
perl/perl-Module-Manifest: Added (Parse distribution MANIFEST file)
perl/perl-Readonly: Added (create non-modifiable variable)
perl/perl-Test-Differences: Added (Test string differences)
perl/perl-Test-DistManifest: Added (validates a package MANIFEST)
perl/perl-Test-Trap: Added (Trap exit codes, exceptions, etc)
perl/perl-Text-Diff: Added (Perform diffs on files and record sets)
python/RBTools: Added (utility scripts for use with Review Board)
python/euca2ools: Added (Amazon & OpenStack Command Line Tools)
python/feedparser: Moved from network fixed homepage.
python/simplejson: Updated for version 3.1.0.
system/audit: Updated for version 2.2.2.
system/clamtk: Updated for version 4.44.
system/dar: Updated for version 2.4.10.
system/ksh-openbsd: Updated for version 20130311.
system/lzip: Updated for version 1.14.
system/makeself: Added (Make self-extractable archives on Unix)
system/netperf: Added (benchmarking for various types of networking)
system/nickle: Added (programming language)
system/rxvt-unicode: Updated for version 9.17.
system/sleuthkit: Updated for version 4.0.2.
system/udftools: Added (udf userspace utilites)
+--------------------------+
Mon Mar  4 22:30:59 UTC 2013
academic/gpredict: New maintainer
audio/muse: Kill badness in doinst.sh
audio/volwheel: Set MAINTAINER to "nobody" (abandoned)
desktop/obmenu: Set MAINTAINER to "nobody" (abandoned)
desktop/openbox-themes: Set MAINTAINER to "nobody" (abandoned)
desktop/stalonetray: Set MAINTAINER to "nobody" (abandoned)
desktop/xmobar: Updated for version 0.16.
desktop/xmonad: Updated for version 0.11.
development/alex: Updated for version 3.0.4.
development/darcs: Updated for version 2.8.4.
development/gforth: Added (GNU Forth interpreter)
development/happy: Updated for version 1.18.10.
development/nose: Updated for version 1.2.1.
development/setuptools-git: Updated for version 1.0b1.
development/zope.interface: Updated for version 4.0.4.
development/zope.testing: Updated for version 4.1.2.
games/darkplaces: Updated for version 20130301.
games/gtkballs: Set MAINTAINER to "nobody" (abandoned)
games/lightyears: New maintainer
games/tuxkart: New maintainer
games/warzone2100: Updated for version 3.1.0.
graphics/gallery3: Added (web-based photo album organizer)
graphics/shutter: Set MAINTAINER to "nobody" (abandoned)
graphics/ufraw: Updated for version 0.19.
haskell/ghc: Updated for version 7.6.2.
haskell/haskell-Diff: Updated for version 0.3.0.
haskell/haskell-GLURaw: Updated for version 1.3.0.0.
haskell/haskell-GLUT: Updated for version 2.3.1.0.
haskell/haskell-HTTP: Updated for version 4000.2.8.
haskell/haskell-HUnit: Updated for version 1.2.5.1.
haskell/haskell-MonadCatchIO-mtl: Updated for version 0.3.0.5.
haskell/haskell-OpenGL: Updated for version 2.6.0.1.
haskell/haskell-OpenGLRaw: Updated for version 1.3.0.0.
haskell/haskell-QuickCheck: Updated for version 2.5.1.1.
haskell/haskell-X11: Updated for version 1.6.0.2.
haskell/haskell-ansi-terminal: Updated for version 0.6.
haskell/haskell-ansi-wl-pprint: Updated for version 0.6.6.
haskell/haskell-base64-bytestring: Updated for version 1.0.0.1.
haskell/haskell-blaze-html: Updated for version 0.5.1.3.
haskell/haskell-blaze-markup: Updated for version 0.5.1.4.
haskell/haskell-bmp: Updated for version 1.2.3.4.
haskell/haskell-cgi: Updated for version 3001.1.8.3.
haskell/haskell-citeproc-hs: Updated for version 0.3.7.
haskell/haskell-data-default: Added (types with a default value)
haskell/haskell-dataenc: Updated for version 0.14.0.5.
haskell/haskell-digest: Updated for version 0.0.1.2.
haskell/haskell-editline: Updated for version 0.2.1.1.
haskell/haskell-extensible-exceptions: Added (Extensible exceptions)
haskell/haskell-ghc-paths: Updated for version 0.1.0.9.
haskell/haskell-gloss: Updated for version 1.7.8.2.
haskell/haskell-hashed-storage: Updated for version 0.5.10.
haskell/haskell-haskeline: Updated for version 0.7.0.3.
haskell/haskell-highlighting-kate: Updated for version 0.5.3.7.
haskell/haskell-hinotify: Updated for version 0.3.5.
haskell/haskell-json: Updated for version 0.7.
haskell/haskell-mmap: Updated for version 0.5.8.
haskell/haskell-mtl: Updated for version 2.1.2.
haskell/haskell-network: Updated for version 2.4.1.2.
haskell/haskell-pandoc-types: Updated for version 1.10.
haskell/haskell-primitive: Updated for version 0.5.0.1.
haskell/haskell-regex-pcre-builtin: Updated for ver 0.94.4.5.8.31.
haskell/haskell-stm: Updated for version 2.4.2.
haskell/haskell-syb: Updated for version 0.3.7.
haskell/haskell-tagsoup: Updated for version 0.12.8.
haskell/haskell-tar: Updated for version 0.4.0.1.
haskell/haskell-temporary: Updated for version 1.1.2.4.
haskell/haskell-terminfo: Updated for version 0.3.2.5.
haskell/haskell-test-framework-hunit: Updated for version 0.3.0.
haskell/haskell-test-framework-quickcheck2: Updated for ver 0.3.0.1.
haskell/haskell-test-framework: Updated for version 0.8.
haskell/haskell-texmath: Updated for version 0.6.1.3.
haskell/haskell-text: Updated for version 0.11.2.3.
haskell/haskell-vector: Updated for version 0.10.0.1.
haskell/haskell-zip-archive: Updated for version 0.1.3.3.
haskell/haskell-zlib: Updated for version 0.5.4.0.
haskell/hscolour: Updated for version 1.20.3.
haskell/xmonad-contrib: Updated for version 0.11.
libraries/FormEncode: Updated for version 1.2.6.
libraries/GLee: New maintainer
libraries/SQLObject: Updated for version 1.3.2.
libraries/ZConfig: Updated for version 3.0.2.
libraries/decorator: Updated for version 3.4.0.
libraries/freealut: fixed download link
libraries/geos: Updated for version 3.3.8.
libraries/libpqxx: fix typo in find line
libraries/libssh2: Updated for version 1.4.3.
libraries/opencv: Updated for version 2.4.4.
libraries/quesoglc: New maintainer
libraries/xawplus: Fix to makefile patch (fixed include directories)
libraries/zc.lockfile: Updated for version 1.1.0.
libraries/zdaemon: Updated for version 4.0.0a1.
libraries/zope.component: Updated for version 4.0.2.
libraries/zope.configuration: Updated for version 4.0.2.
libraries/zope.event: Updated for version 4.0.2.
libraries/zope.hookable: Updated for version 4.0.1.
libraries/zope.i18nmessageid: Updated for version 4.0.2.
libraries/zope.location: Updated for version 4.0.1.
libraries/zope.proxy: Updated for version 4.1.1.
libraries/zope.schema: Updated for version 4.2.2.
libraries/zope.security: Updated for version 4.0.0a4.
misc/gprename: Set MAINTAINER to "nobody" (abandoned)
multimedia/flash-player-plugin: Updated for version 11.2.202.273.
multimedia/realplayer: Set MAINTAINER to "nobody" (abandoned)
network/framework: Removed (obsolete - use metasploit)
network/gtorrentviewer: Set MAINTAINER to "nobody" (abandoned)
network/imageshack-uploader: Set MAINTAINER to "nobody" (abandoned)
network/rssh: Updated for version 2.3.4.
network/shibboleth-sp: Added (Shibboleth Service Provider)
network/zabbix_agentd: Updated for version 1.8.16.
network/zabbix_proxy: Updated for version 1.8.16.
network/zabbix_server: Updated for version 1.8.16.
office/adobe-reader: Updated for version 9.5.4.
perl/perl-File-HomeDir: Updated for version 1.00.
perl/perl-Sort-Naturally: Updated for version 1.03.
python/lxml: Updated for version 3.1.0.
python/subvertpy: Updated for version 0.9.0.
system/artwiz-aleczapka: Reworked (split cursor font out)
system/artwiz-cursor: Added (futuristic mouse cursor for X11)
system/bochs: fix wrong --enable-sb16 parameter
system/postgis: Updated for version 2.0.3.
system/xen: kill obsolete udev rules
+--------------------------+
Mon Feb 25 04:55:27 UTC 2013
academic/gwyddion: Updated for version 2.31.
academic/osm2pgsql: Added (convert OpenStreetMap data to PostGIS)
accessibility/ruvim: Added (Russian language pack for Vim)
audio/alsa-tools: Fixed udev rules (s,BUS,SUBSYSTEMS,g)
audio/lmms: Pass proper libdir to cmake
desktop/transset-df: Removed (obsolete)
desktop/trayer-srg: Added (GTK2-based systray for UNIX desktop)
development/eclipse: Updated for version 4.2.1.
development/kforth: Added (A Forth programming language and environment)
development/monodevelop-database: Updated for version 3.0.6.
development/monodevelop-debugger-gdb: Updated for version 3.0.6.
development/monodevelop: Updated for version 3.0.6.
development/netbeans: Updated for version 7.3.
development/qt-creator: Updated for version 2.6.2.
development/scite: Updated for version 3.24.
graphics/evolus-pencil: Tweak permissions setting
graphics/gthumb: Remove obsolete configure flags
graphics/inkscape: Updated for version 0.48.4.
graphics/zbar: Added (bar code reader)
libraries/jbig2dec: Fixed download link
libraries/libmicrohttpd: Updated for version 0.9.25.
libraries/libnova: Added (Celestial Mechanics, Astrometry, and Astrodynamics Library)
libraries/libpqxx: Added (C++ client API for PostgreSQL)
libraries/ltm: Added (LibTomMath library)
libraries/php-pdo_dblib: Added (php pdo_dblib extension)
libraries/podofo: Updated for version 0.9.2.
libraries/tbb: Updated for version 4.1u2.
misc/rsnapshot: Fixed version refs in README
misc/zyGrib: Updated for version 6.1.2.
multimedia/dirac: Pedantic fix to comment in dirac.SlackBuild
multimedia/makemkv: Updated for version 1.8.0.
network/bitcoin: Updated for version 0.8.0.
network/dovecot: Noted dovenull user/group requirements
network/etherpad-lite: Don't clobber system configs/logs on upgrade
network/etherpad-lite: Updated for version 1.2.7.
network/knemo: Updated for version 0.7.6.
network/postfix: Use full path and add status() to init script
network/skype: Updated for version 4.1.0.20.
office/convertlit: Added (converts .lit files to .epub)
office/texlive: Clarified README wrt building
office/wyrd: Don't clobber config file on package upgrades
office/wyrd: Updated for version 1.4.6.
python/pyquery: Updated for version 1.2.4.
system/bacula-client: Updated for version 5.2.13.
system/bacula: Updated for version 5.2.13.
system/cups-bjnp: Added (CUPS backend using the BJNP protocol)
system/man-pages-ru: Added (Russian man pages)
system/ms-sys: Added (writes Microsoft compatible boot records)
system/unetbootin: Updated for version 583.
system/wacomtablet: Added (KDE Wacom Tablet)
+--------------------------+
Sat Feb 23 04:30:38 UTC 2013
academic/jugglinglab: Added (create/animate juggling patterns)
audio/SuperCollider: Updated for version 3.6.2.
audio/alsamodularsynth: Added (realtime modular synthesizer)
audio/sunvox: Added (Modular synthesizer, sampler, and sequencer/tracker)
desktop/cairo-dock-plugins: Updated for version 3.1.2.
desktop/cairo-dock: Updated for version 3.1.2.
desktop/faenza-icon-theme: Correct MD5SUM in .info file
desktop/slock: Updated for version 1.1.
desktop/thunar-media-tags-plugin: Fixed taglib linkage
development/JSONObject: Removed UTF-8 BOM.
development/THE: Included a symlink: $bindir/nthe <-- $bindir/the
development/anjuta: Fixed dep information (+itstool)
development/jdk: Updated for version 7u15.
dot.gitignore: Ignore .swp files
games/playonlinux: Fixed dep info (imagick-->php-imagick)
graphics/draftsight: Updated for version 1.2.265.
graphics/screencloud: Added (Easy to use screenshot tool)
graphics/teighafileconverter: Updated for version 3.8.1.
graphics/teighaviewer: Updated for version 3.8.1.
libraries/bullet: Added (physics library)
libraries/libvdpau: Updated for version 0.6.
libraries/libxkbcommon: Added (library to handle keyboard descriptions)
libraries/opensaml: Added (FOSS Implementation of OASIS SAML)
multimedia/devede: Updated for version 3.23.0.
multimedia/gpodder3: Removed (replaced by gpodder)
multimedia/gpodder: Updated for version 3.4.0.
multimedia/xbmc: Updated for version 12.0.
network/metasploit: Added (The Metasploit Framework)
network/ndiswrapper-kernel: Updated for version 1.58.
network/ndiswrapper-utils: Updated for version 1.58.
network/opera: Updated for version 12.14.
network/phpmyadmin: Updated for version 3.5.7.
network/teamviewer: Fixup log/config dir symlinks
network/teamviewer: Remove dangling symlink first
network/teamviewer: Trivial rearrangement inside script
network/teamviewer: Updated for version 8.0.17147.
network/xombrero: Added (keyboard-centric web browser; formerly xxxterm)
office/adobe-reader: Updated for version 9.5.3.
office/epdfview: Use a working download link
office/sigil: Updated for version 0.6.2.
office/tellico: Updated for version 2.3.7.
perl/perl-Geo-IP: Added (GeoIP Perl API)
perl/perl-HTTP-Proxy: Updated for version 0.26.
python/pyparsing: Updated for version 1.5.6.
ruby/facter: Updated for version 1.6.17.
system/bleachbit: Updated for version 0.9.5.
system/gradm: Added (Grsecurity Administration Utility)
system/nvidia-driver: Updated for version 310.32.
system/nvidia-kernel: Updated for version 310.32.
system/phpsysinfo: Updated for version 3.1.1.
system/qtgzmanager: Added (TGZ/TXZ package management)
system/qtgzmanager: Updated for version 1.0.1.
system/regionset: Removed APPROVED from .info file
system/swun: Added (SoftWare Update Notifier)
system/tracker: Added (semantic data storage search engine)
system/usbview: Updated for version 2.0.
system/yakuake: Updated for version 2.9.9.
+--------------------------+
Thu Feb 14 06:30:40 UTC 2013
academic/wxmacmolplt: Updated for version 7.4.4.
audio/audacity: Updated for version 2.0.3.
audio/cwstation: Added (A morse code trainer)
audio/faust: Added (Functional Audio Stream)
audio/fmit: Added (Free Music Instrument Tuner)
audio/nas: Minor fixes, added rc.* file.
audio/shell-fm: Updated for version git20130207.
audio/wavbreaker: Updated for version 0.11.
desktop/evilwm: Added (minimalist window manager for X)
desktop/rootactions_servicemenu: Updated for version 2.7.3.
desktop/yawp: Updated for version 0.4.3.
development/4th: Updated for version 3.62.0.
development/gtest: Added (Google C++ Testing Framework)
development/leveldb: Updated for version 1.9.0.
development/mutagen: Updated for version 1.21.
development/ne: Updated for version 2.5.
development/snappy: Added (A fast compressor/decompressor)
development/tiled-qt: Updated for version 0.9.0.
development/trac: Updated for version 1.0.1.
games/alienarena: Updated for version 7.65.
games/mame: Updated for version 0.148.
games/naev: Added (2d space trading game)
games/nestopia: Updated for version 1.44.
games/playonlinux: Updated for version 4.1.9.
games/qmc2: Updated for version 0.38.
games/robotfindskitten: Updated for version 2.7182818.701.
games/tt: Added (Tetris for Terminals)
games/vbam: Updated for version r1159.
games/yamagi-quake2: Fix for missing stuff/yq2.cfg in docs.
graphics/graphviz: Updated for version 2.30.0.
graphics/mypaint: Note scons dependency in .info file
graphics/photo: Updated for version 0.9.1.
graphics/yed: Updated for version 3.10.1.
libraries/gtksourceview3: Updated for version 3.7.2.
libraries/harfbuzz: Updated for version 0.9.12.
libraries/libee: Added (Event Expression Library inspired by CEE)
libraries/libestr: Added (some essentials for string handling)
libraries/lksctp-tools: Updated for version 1.0.13.
misc/dvtm: Updated for version 0.8.
multimedia/flash-player-plugin: Updated for version 11.2.202.270.
multimedia/youtube-viewer: Added (browse YouTube videos from a terminal)
network/arpwatch: Fixed slack-desc formatting
network/eiskaltdcpp: Added (QT4 File Sharing)
network/hydra: Updated for version 7.4.2.
network/midori: Updated for version 0.4.8.
network/mod_auth_kerb: Added (Kerberos Module for Apache)
network/mod_dnssd: Added (dns-sd/zeroconf/avahi module for httpd)
network/mpop: Updated for version 1.0.27.
network/ngircd: Updated for version 20.1.
network/node: Updated for version 0.8.17.
network/openvswitch: Updated for version 1.4.5.
network/pyNeighborhood: Updated for version bzr20130124.
network/razor-agents: Added (collaborative spam detection)
network/skype4pidgin: Updated for version r654.
network/synergy: Added (Control sharing over the network)
network/teamviewer: New maintainer.
network/uwsgi: Updated for version 1.4.4.
network/xtables-addons: Updated for version 1.47.
network/yturl: Added (get direct URLs to YouTube videos)
office/JabRef: Added (Reference Manager)
office/ProjectLibre: Updated for version 1.5.3.
office/flowkeeper: Added (Java-based timer for Pomodoro Technique(R))
office/myrulib: Updated for version 0.29.12.
perl/perl-SNMP-Info: Added (SNMP::Info)
python/Markdown: Added (Python implementation of Markdown)
python/Pyro4: Updated for version 4.17.
python/blinker: Added (Python module for object-to-object and broadcast signaling)
python/feedgenerator: Added (Atom/RSS feed generator Python module)
python/pattern: Added (a web mining module for Python)
python/pep8: Updated for version 1.4.1.
python/python-urllib3: Added (HTTP library)
python/python3: More path fixes; use system expat and libffi
python/sippy: Added (Sippy B2BUA)
python/webassets: Added (Media asset management for Python)
system/adobe-source-code-pro-font: Updated for version 1.017.
system/bindfs: Updated for version 1.11.
system/blake2: Updated for version 20130131.
system/cassandra-gui: Added (Cassandra GUI Project)
system/dar: Updated for version 2.4.9.
system/dateutils: Updated for version 0.2.4.
system/dfc: Updated for version 3.0.1.
system/efibootmgr: Added (Tool to manipulate the EFI/UEFI Boot Manager)
system/fsviewer: Added (NextStep-like file browser)
system/grub2: Added update-grub script.
system/innoextract: Added (Unpacker for Inno Setup installers)
system/openct: Minor fixes and updated download link.
system/opensc: Updated for version 0.13.0.
system/paxctl: Added (PaX control program)
system/pcsc-lite: Updated for version 1.8.8.
system/percona-xtrabackup: Fixed CFLAGS and innobackupex script.
system/redis: Updated for version 2.6.9.
system/regionset: Updated for version 0.2.
system/sbotools: Added (ports-like interface to slackbuilds.org)
system/sudosh2: Added (tool for server auditing and shell reporting)
system/vifm: Updated for version 0.7.4b.
system/xen: Added (the Xen virtualization hypervisor)
+--------------------------+
Wed Feb  6 04:41:47 UTC 2013
audio/mp3splt-gtk: Updated for version 0.8.1.
audio/mp3splt: Updated for version 2.5.1.
desktop/razorqt: Updated for version 0.5.2.
development/jdk: Updated for version 7u13.
libraries/libisofs: Removed unneeded libburn dep from .info
libraries/libmp3splt: Updated for version 0.8.1a.
multimedia/flash-player-plugin: Fixed minor typo
multimedia/mediatomb: Support use of libjs from js185 package
network/dansguardian: Updated for version 2.12.0.3.
network/phpmyadmin: Updated for version 3.5.6.
network/weechat: Updated for version 0.4.0.
network/znc: Updated for version 1.0.
office/pdftk: Updated for version 1.45.
office/wink: Fixed download link
perl/perl-MailTools: Updated for version 2.12.
perl/perl-Net-NetMask: Added (parse/manipulate ipv4 netblocks)
perl/perl-Net-Server: Updated for version 2.007.
perl/perl-data-dump: Added (pretty printing of data structures)
ruby/rubygem-gettext: Removed (no longer needed)
ruby/rubygem-highline: Removed (no longer needed)
ruby/rubygem-locale: Removed (no longer needed)
ruby/rubygem-lockfile: Removed (no longer needed)
ruby/rubygem-mime-types: Removed (no longer needed)
ruby/rubygem-ncursesw: Removed (no longer needed)
ruby/rubygem-net-ssh: Removed (no longer needed)
ruby/rubygem-rmail: Removed (no longer needed)
ruby/rubygem-sup: Removed (it's obsolete, development stopped)
ruby/rubygem-trollop: Removed (no longer needed)
ruby/rubygem-xapian-full: Removed (no longer needed)
system/clamav: Another fix for the logrotate script.
system/kc: Updated for version 2.2.1.
system/phpsysinfo: Added (displays system information)
system/xfburn: Noted libburn dependency
+--------------------------+
Sun Jan 20 14:08:30 UTC 2013
academic/antiprism: Updated for version 0.22.
academic/bowtie: Added (short read aligner of DNA sequences).
academic/bwa: Added (Burrows-Wheeler Aligner).
academic/cap3: Added (DNA sequence assembly program).
academic/geomview: Added (3D geometrical package).
academic/mafft: Added (multiple sequence alignment program).
academic/mrbayes: Added (Bayesian Inference of Phylogeny).
academic/ncbi-blast-plus: Added (BLAST+ CLI applications).
academic/ncbi-blast: Added (Basic Local Alignment Search Tool).
academic/t_coffee: Added (multiple sequence alignment program).
academic/tilem2: Added (TI-calculator emulator for linux).
academic/ugene: Added (unified bioinformatics toolkit).
audio/clementine: Updated for version 1.1.1.
desktop/e16: Added (window manager for X)
development/jdk: Updated for version 7u11.
games/bsnes: Fixed up some perms in usr/share/bsnes/*.
graphics/GraphicsMagick: Updated for version 1.3.17.
graphics/SweetHome3D: Updated for version 3.7 (+new maintainer)
graphics/photivo: Added (photo processor).
libraries/opal: Updated for version 3.10.9.
libraries/ptlib: Updated for version 2.10.9.
misc/recode: Changed download link.
multimedia/flash-player-plugin: Updated for version 11.2.202.261.
network/cacti-spine: Added (poller for Cacti).
network/chromium: Updated for version 24.0.1312.52.
network/ekiga: Updated for version 4.0.0.
network/lighttpd2: Updated for version 20121206_01abf70.
network/nginx: Updated for version 1.2.6.
network/offlineimap: Updated for version 6.5.4, changed homepage.
+--------------------------+
Thu Jan 10 00:02:38 UTC 2013
academic/pianobooster: License added.
academic/qrupdate: Updated for version 1.1.2.
academic/suitesparse: Updated for version 4.0.2.
accessibility/unclutter: License added.
accessibility/xsel: License added.
audio/cmt: License added.
audio/eawpats: License added.
audio/fantasia: License added.
audio/fluid-soundfont: License added.
audio/fluidsynth-dssi: License added.
audio/ghostess: License added.
audio/grip2: License added.
audio/jack-keyboard: License added.
audio/jack-rack: License added.
audio/jack-tools: License added.
audio/jack_delay: License added.
audio/lv2dynparam1: License added.
audio/match-vamp-plugin: License added.
audio/millennium-plugins: License added.
audio/mp3gain: License added.
audio/nnls-chroma: License added.
audio/qm-vamp-plugins: License added.
audio/qmidiroute: License added.
audio/rakarrack: License added.
audio/sfc: License added.
audio/sonic-visualiser: License added.
audio/swh-plugins-lv2: License added.
audio/tap_plugins: License added.
audio/tapiir: License added.
audio/transcribe: License added.
audio/vcf_plugins: License added.
audio/vocoder-ladspa: License added.
audio/waon: License added.
audio/wineasio: License added.
audio/xmms-mp4: License added.
audio/xsynth-dssi: License added.
audio/zita-rev1: License added.
audio/zynjacku: License added.
desktop/kde-gtk-config: Added (GTK2 and GTK3 Configurator for KDE).
desktop/oxygen-gtk3: Added (GTK3 oxygen theme).
desktop/wmclock: License added.
desktop/wmmon: License added.
development/JSONObject: Added (JSON C++ library).
development/google-go-lang: Updated for version 1.0.3.
development/omake: Added (the OMake build system).
games/adom: Updated for version 1.2.0_pre5 (supports also x86_64).
games/alephone: License added.
games/an: License added.
games/brickout: License added.
games/circuslinux: License added.
games/clonekeen: License added.
games/colem: License added.
games/darkplaces: Updated for version 20121222.
games/defendguin: License added.
games/dolphin-emu: Added (Gamecube emulator).
games/doom_shareware_data: License added.
games/doomseeker: License added.
games/ds-models: License added.
games/dunelegacy: License added.
games/eduke32: License added.
games/eduke32_hires_pack: License added.
games/eduke32_shareware_data: License added.
games/fceux: Updated for version 2.2.0.
games/fortune-dune: License added.
games/fortune_firefly: License added.
games/freedoom: License added.
games/generator_cbiere: License added.
games/glbsp: License added.
games/gtklife: License added.
games/gzdoom: License added.
games/hatari_tos_roms: License added.
games/heretic_shareware_data: License added.
games/hexen_demo_data: License added.
games/icebreaker: License added.
games/jfsw: License added.
games/jfsw_demo_data: License added.
games/jfsw_hires_pack: License added.
games/jzintv: License added.
games/koules: License added.
games/liquidwar6: License added.
games/madbomber: License added.
games/maelstrom: License added.
games/marathon-data: License added.
games/marathon-infinity-data: License added.
games/marathon2-data: License added.
games/nestopia: Updated for version 1.4.3.
games/nevernoid: License added.
games/o2em: License added.
games/oblige: License added.
games/odamex: License added.
games/pentagram: License added.
games/skulltag: License added.
games/snes9x: License added.
games/steem: License added.
games/trackballs: License added.
games/transfusion: License added.
games/typhoon_2001: License added.
games/ucr: License added.
games/uqm: License added.
games/uqm_3domusic: License added.
games/uqm_voice: License added.
games/vectoroids: License added.
games/xcowsay: License added.
games/xu4: License added.
games/yamagi-quake2: Updated for version 5.10.
games/z26: License added.
games/zdbsp: License added.
games/zennode: License added.
graphics/mypaint: Added (graphic painting application).
libraries/cfitsio: Updated for version 3.31.
libraries/gdl: Updated for version 3.7.3.
libraries/girara: License added.
libraries/gtksourceview3: Updated for version 3.7.1.
libraries/harfbuzz: Updated for version 0.9.10.
libraries/libmrss: Added (C RSS library).
libraries/libmygpo-qt: Added (C++/Qt gpodder client library).
libraries/libnxml: Fixed libdir in the pkgconfig file.
libraries/libsmf: License added.
libraries/libunwind: Added (determine the call-chain).
libraries/mygpoclient: Updated for version 1.6.
libraries/php-memcache: Added (Memcached bindings for PHP).
libraries/php-ssh2: Added (SSH2 bindings for PHP).
libraries/qwt: Updated for version 6.0.2, changed maintainer.
libraries/soil: Added (C OpenGL texture library).
libraries/xmltooling: Added (OpenSAML XML processing library).
misclibraries/libslack: Added (General programmers' utilities).
multimedia/cinelerra: Fixed DOWNLOAD and MD5SUM in the .info file.
multimedia/flowblade: Added (non-linear video editor).
multimedia/gpodder3: Added (branch 3.x of gpodder).
multimedia/gtkpod: Updated for version 2.1.3.
multimedia/lsdvd: License added.
network/bmon: License added.
network/cyrus-imapd: Updated for version 2.4.17.
network/efax-gtk: Updated for version 3.2.11.
network/etherpad-lite: Updated for version 1.2.3.
network/feedparser: Updated for version 5.1.3.
network/irssi_otr: License added.
network/oidentd: Added (identd daemon).
network/pure-ftpd: Added (FTP server).
network/rhapsody: License added.
network/sockstress: Added (tcp socket stress).
network/unicornscan: Added (flexible and efficient network probing).
office/calibre: Updated for version 0.9.13.
office/qpdfview: Updated for version 0.3.7.
office/texstudio: Updated for version 2.5.2, added license.
office/zathura-ps: License added.
python/pyliblo: License added.
python/python-blake2: Added (blake2 python module).
system/gphotofs: License added.
system/isomd5sum: License added.
system/kegs: License added.
system/ksh-openbsd: Updated for version 20120910.
system/lzop: Added (LZO archiver).
system/macutils: License added.
system/mksh: Updated for version R41.
system/netatop: Updated for version 0.2.
system/pipemeter: License added.
system/smem: Updated for version 1.2.
system/trackfs: License added.
system/usbmon: License added.
system/xf86-video-unichrome: Added (driver for various VIA gpus).
+--------------------------+
Tue Jan  1 21:37:11 UTC 2013
academic/ent: License added.
academic/mapnik: Added (map-rendering toolkit)
audio/horgand: License and capability support added.
audio/rhythmbox: Removed libiconv from the optional dependencies.
development/gambas3: Removed libiconv from the optional deps.
development/qt-creator: Updated for version 2.6.1.
games/golly: Added (Game of Life simulator)
games/pokerth: Updated for version 1.0.
games/stone_soup: Fixed in game docs.
games/tome: Misc build cleanups.
games/torcs: Updated for version 1.3.4.
games/vbam: Updated for version r1138, only builds gvbam now.
libraries/geos: Updated for version 3.3.6.
libraries/libicns: Updated for version 0.8.1.
libraries/libiconv: Removed (conflicts with glibc).
misc/cwiid: License added.
misc/heyu: Updated for version 2.10.
multimedia/mtpfs: Updated for version 1.1.
multimedia/spotify: Added (digital music service)
multimedia/vlc: Removed libiconv from REQUIRES.
network/cacti: Updated for version 0.8.8a_p1.
network/gtk-gnutella: Updated for version 0.98.4.
network/netsurf: Added (NetSurf web browser)
network/openresolv: Added (management framework for resolv.conf)
perl/perl-Convert-UU: Added (perl module)
perl/perl-Inline: Added (perl module)
perl/perl-Test-Number-Delta: Added (perl module)
system/adobe-source-code-pro-font: Fixed README.
system/dar: Updated for version 2.4.8.
system/fs-uae: Added (Amiga Emulator)
system/proj: Updated for version 4.8.0.
system/st: Updated for version 0.3.
system/wqy-microhei-font-ttf: Fixed .conf file.
+--------------------------+
Sun Dec 30 03:49:53 UTC 2012
academic/TauDEM: Added (Terrain Analysis Using DEM)
accessibility/wgetpaste: Updated for version 2.20, added license.
audio/SuperCollider: Updated for version 3.5.7.
audio/bristol: Updated for version 0.60.10.
audio/grip2: Fixed homepage.
audio/mididings: Updated for version 20120419, added license.
audio/sooperlooper: Updated for version 1.6.18.
desktop/gntp-send: Added (send to growl using GNTP protocol).
desktop/kanyremote: Updated for version 6.1.
desktop/kwalletcli: Added (kwallet from the commandline)
desktop/lxpanel: Updated for version 20121126_06ad472.
development/gecode: Added (Generic Constraint Developm. Environm.).
development/mono: Updated for version 2.11.4.
development/qjson: Updated for version 0.8.1.
games/chocolate-doom: Fixed md5sum, added license.
games/redeclipse: Added (Fast-paced futuristic FPS).
games/tome: Updated for version v2.3.11_ah.
games/ufoai: Added (opengl tactical strategy game).
graphics/gliv: Updated for version 1.9.7.
graphics/photo: Updated for version 0.8.2.
graphics/unpaper: Switched to Flameeyes' fork, version 0.4.2.
libraries/c++-gtk-utils: Updated for version 2.0.13.
libraries/configobj: Updated for version 4.7.2.
libraries/fltk13: Updated for version 1.3.2.
libraries/glm: Updated for version 0.9.4.1 moved from development.
libraries/gnome-vfsmm: Added (C++ wrapper for gnomevfs2 library).
libraries/hdf5: Updated for version 1.8.10.
libraries/libcec: Updated for version 2.0.4.
libraries/libgnomemm: Added (C++ wrappers for libgnome).
libraries/libgnomeuimm: Added (C++ wrappers for libgnomeui).
libraries/libgsasl: Updated for version 1.8.0.
libraries/libquvi-scripts: Added (Lua scripts for libquvi).
libraries/libquvi: Added (media-parsing library).
libraries/libticalcs2: Added (TI-calculator communications library).
libraries/libwebsocketpp: (C++/Boost ASIO implementation of RFC6455)
libraries/lockdev: Added (device-locking library).
libraries/reportlab: Updated for version 2.6
libraries/xawplus: Added (more modern clone of Xaw library)
libraries/xml-security-c: Added (Apache XML security C++ library).
misc/itstool: Updated for version 1.2.0.
misc/mosquitto: Updated for version 1.1.
misc/sdcv: Added (console dictionary application).
multimedia/anyremote: Updated for version 6.2.
multimedia/guvcview: Added pulseaudio switch, cleanups.
multimedia/mtvcgui: Added (Mencoder TV Capture GUI).
network/authbind: Updated for version 2.1.1.
network/cclive: Updated for version 0.7.11, cleanups.
network/efax-gtk: Updated for version 3.2.10.
network/mozilla-firefox-esr: Added (firefox web browser ESR).
network/nagios: Updated for version 3.4.3, cleanups.
network/newsbeuter: Added a patch for the newer json-c.
network/pyzor: Added patch for better compatibility with python 2.7.
network/quvi: Updated for version 0.4.2.
network/smb4k: Updated for version 1.0.5.
network/transmission: Updated for version 2.75.
network/uget: Updated for version 1.10.2.
office/libreoffice-langpack: Updated for version 3.6.4.
office/libreoffice: Updated for version 3.6.4.
perl/perl-PerlIO-Layers: Added (query layers of perl's filehandles).
perl/perl-Sub-Exporter-Progressive: Added (Perl module)
perl/perl-http-date: Updated for version 6.02.
perl/perl-http-message: Updated for version 6.06.
perl/perl-net-dns: Updated for version 0.72.
perl/perl-net-http: Updated for version 6.05.
perl/perl-net-ip: Updated for version 1.26.
python/pycassa: Added (client library for Apache Cassandra).
python/pytables: Updated for version 2.4.0.
python/python-dateutil: Updated for version 2.1, added license.
python/python-pmw: Updated for version 1.3.3.
python/pyudev: Added (pure Python libudev binding).
python/six: Added (Python 2 and 3 compatibility utilities).
system/adobe-source-code-pro-font: Updated for version 1.013.
system/blake2: Added (Cryptographic Hash Function).
system/irqbalance: Updated for version 1.0.5
system/opensc: Added manpages to the build.
system/pcsc-lite: Updated for version 1.8.7.
system/pcsc-tools: Updated for version 1.4.21.
system/postgis: Added GUI component to build.
system/qingy: Added (Framebuffer getty replacement)
system/qingy_0.3_themepack: Added (Themes for the qingy)
system/rxvt-unicode: Updated for version 9.16, cleanups.
system/wqy-microhei-font-ttf: Added (Wen Quan Yi Micro Hei CJK Font)
system/xf86-video-qxl: Updated for version 0.1.0.
system/zerofree: Updated for version 1.0.3, added license.
+--------------------------+
Tue Dec 25 02:10:23 UTC 2012
academic/octave: Added a license and clarified some comments.
audio/python-audiotools: Updated for version 2.19, misc cleanups.
desktop/faenza-icon-theme: Updated for version 1.3, cleanups
development/anjuta: Updated for version 3.6.2.
games/gargoyle: Fixed deps info.
games/micropolis: Forced -j1 also for make install.
graphics/dcraw: Updated for version 9.17.
libraries/gdl: Updated for version 3.6.2.
libraries/gtkmm-utils: Added (gtkmm additions).
libraries/json-c: Added back a missing header.
libraries/lablgtk: Forced -j1 (parallel building is broken).
libraries/libkate: Updated for version 0.4.1.
libraries/libmemcached: Updated for version 1.0.15.
libraries/log4shib: Added (log4j-like logging library).
multimedia/gtkpod: Added patches for the newer gdl and anjuta.
network/bitcoin: Updated for version 0.7.2, cleanups.
network/licq: Updated for version 1.7.0.
ruby/rubygem-pkg-config: Added (ruby pkg-config implementation).
system/fsarchiver: Updated for version 0.6.15.
+--------------------------+
Sun Dec 23 14:23:46 UTC 2012
academic/artha: Updated for version 1.0.3.
academic/avogadro: Updated for version 1.1.0.
academic/convertall: Fixed maintainer email.
academic/gchemutils: Updated for version 0.12.13.
academic/gresistor: Added (resistor color code calculator).
academic/gwyddion: Updated for version 2.30, added license.
academic/ktikz: Added (LaTeX tikz editor)
academic/mathomatic: Updated for version 16.0.5.
academic/maxima: Updated for version 5.28.0.
academic/root: Added (data analysis framework).
academic/seaview: Updated for version 4.4.0.
academic/spatialite-tools: Added (SpatiaLite CLI utils).
academic/tilem: Noted incompat. with libticables2, modified license.
academic/udig: Added (desktop GIS).
academic/wxMaxima: Updated for version 12.09.0, cleanups.
accessibility/espeak: Updated for version 1.46.02.
audio/TiMidity++: Updated for version 2.14.0.
audio/abcde: Updated for version 2.5.4.
audio/asunder: Updated for version 2.2.
audio/caps: Updated for version 0.4.5, added license.
audio/eawpats: Modified README for the updated TiMidity++.
audio/fluid-soundfont: Modified for the updated TiMidity++.
audio/freepats: Modified README for the updated TiMidity++.
audio/guitarix: Updated for version 0.24.3
audio/opus: Updated for version 1.0.2.
audio/pianobar: Updated for version 2012.12.01.
audio/podget: Updated for version 0.6.8.
audio/puddletag: Updated for version 1.0.1.
audio/soundconverter: Added (audio file converter for gnome).
audio/speex: Fix for multilib and changed maintainer.
audio/vocoder-ladspa: Added (LADSPA vocoder plugin).
audio/vocoder: Added (standalone JACK vocoder effect).
desktop/cellwriter: Updated for version 1.3.5.
desktop/compiz-boxmenu: Updated for version 1.1.2.
desktop/cwp: Updated for version 1.6.9.
desktop/enlightenment: Updated for version 0.17.0.
desktop/i3status: Updated for version 2.6, added yajl to REQUIRES.
desktop/josm: Added (OpenStreetMap editor).
desktop/kbdd: Added (kbd library for per-window keyboard layout)
desktop/kfaenza-icon-theme: Added (KDE icon theme).
desktop/protozoa-cursor-themes: Added (animated cursor themes).
desktop/qlandkartegt: Updated for version 1.6.0, added license.
desktop/quadkonsole4: Added (4 terminals in one)
desktop/recoll: Updated for version 1.18.1.
desktop/screenfetch: Added (screenshot info tool).
desktop/spectrwm: Updated for version 2.1.1.
desktop/xwarppointer: Added (programatically move mouse cursor).
desktop/xxkb: Added (simple X keyboard layout switcher)
desktop/zenity: Updated for version 3.6.0.
development/Cython: Updated for version 0.17.3.
development/ahven: Added (unit test library).
development/anjuta: Added (gnome IDE).
development/apache-jmeter: Added (Java-based testing tool).
development/apache-maven: Updated for version 3.0.4.
development/autogen: Updated for version 5.16.2.
development/avr-gcc: Updated for version 4.7.1.
development/cc65: Updated for version 2.13.3, added license.
development/dkms: Added (Helper script for creating kernel modules)
development/global: Added (source code tagging system).
development/inform: Added (interactive fiction compiler)
development/judy: Updated for version 1.0.5.
development/jython: Added (python for the java platform).
development/lazarus: Updated for version 1.0.2.
development/leveldb: Added (Google key-vale database)
development/luarocks: Added (lua modules management tool).
development/monodevelop-database: Updated for version 3.0.5.
development/monodevelop-debugger-gdb: Updated for version 3.0.5.
development/monodevelop: Updated for version 3.0.5.
development/mysql-pinba: Added (PHP Statistics Server - DB part).
development/ninja-ide: Added (python coding IDE).
development/opencl-headers: Updated for version 1.1.
development/php-pinba: Added (Pinba Statistics Server - PHP part).
development/pyclewn: Added (vim as a debugger frontend).
development/scite: Updated for version 3.23.
development/spyder: Updated for version 2.1.11.
development/swi-prolog: Updated for version 6.2.4.
development/tkdnd: Updated for version 2.6.
development/uemacs: Added (editor based on MicroEMACS).
development/xxdiff: Added (graphical diff).
games/PyLotRO: Added (Python launcher of Lord of the Rings Online).
games/alienarena: Updated for version 7.60.1.
games/angband: Updated for version v3.4.1.
games/atari++: Updated for version 1.60, added license.
games/barrage: Added (action game).
games/bsnes: Updated build, new maintainer.
games/cgmadness: Added (Marble Madness-like game).
games/cowsay: Fixed MD5SUM.
games/dgen: Added (emulator for Sega Genesis/Mega Drive).
games/dungeon: Added (text adventure game)
games/firestorm: Updated for version 4.3.1.31155, added notes.
games/fizmo: Added (Z-Code interpreter for story files)
games/foobillard: Added (OpenGL billard).
games/frotz: Added (Z-machine interpreter)
games/hatari: Updated for version 1.6.2.
games/jin: Added (Graphical Client for Chess Servers).
games/megaglest: Updated for version 3.7.1.
games/playonlinux: Updated fot version 4.1.8.
games/pokerth: Updated for version 0.9.5.
games/quake_shareware_data: Renamed from darkplaces_shareware_data
games/rott: Updated for version 1.1.2, cleanups.
games/stone_soup: Updated for version 0.11.0.
games/tome: Updated for version v2.3.10_ah, added a startup script.
games/xroar: Updated for version 0.28.1, cleanups.
games/xu4: Updated for version 20121220_svn.
games/yamagi-quake2: Updated for version 5.00.
games/zoom: Added (play interactive fiction games)
games/zork: Added (interactive fiction games in z-code format)
games/zsnes: Changed maintainer.
games/ztools: Added (tools for Infocom and other Z-Code story files)
graphics/frescobaldi: Updated for version 2.0.8.
graphics/kim4: Fixed homepage and mantainer email.
graphics/lilypond: Updated for version 2.16.1, added license.
graphics/luxblend25: Added (luxrender's blender interface).
graphics/luxrender: Added (rendering engine).
graphics/makehuman: Added (3D humanoid models generator).
graphics/mcomix: Added (comic book viewer).
graphics/mftrace: Updated for version 1.2.18, added license.
graphics/optipng: Updated for version 0.7.4.
graphics/pngcrush: Updated for version 1.7.35, added license.
ham/qrq: Added (Morse telegraphy trainer).
libraries/cdk: Updated for version 5.0_20120323.
libraries/e_dbus: Updated for version 1.7.4.
libraries/ecore: Updated for version 1.7.4.
libraries/edje: Updated for version 1.7.4.
libraries/eet: Updated for version 1.7.4.
libraries/efreet: Updated for version 1.7.4.
libraries/eina: Updated for version 1.7.4.
libraries/eio: Updated for version 1.7.4.
libraries/embryo: Updated for version 1.7.4.
libraries/evas: Updated for version 1.7.4.
libraries/gmime26: Added (MIME parsing library)
libraries/harfbuzz: Added (OpenType text shaping engine)
libraries/jemalloc: Added (A memory allocator)
libraries/json-c: Updated for version 0.10.
libraries/libdc1394: Updated for version 2.2.0.
libraries/libfm: Apply patches from upstream.
libraries/libgaiagraphics: Added (raster library).
libraries/libgda: Added (gnome db library).
libraries/libgee: Updated for version 0.6.7.
libraries/libhoard: Added (A memory allocator)
libraries/libkqueue: Added (userspace impl. of kqueue).
libraries/libmemcached: Updated for version 1.0.11.
libraries/libnetfilter_conntrack: Added libmnl to REQUIRES.
libraries/libnetfilter_queue: Updated for version 1.0.2.
libraries/libotf: Updated for version 0.9.13.
libraries/librasterlite: Updated for version 1.1e.
libraries/libspatialite: Updated for version 4.0.0.
libraries/libticables2: Added (TI-calculator cable library).
libraries/libticonv: Added (TI-calculator conversion library).
libraries/libtifiles2: Added (TI-calculator file format library).
libraries/libtxc_dxtn: Added (S3TC for Mesa)
libraries/libunicap: Updated for version 0.9.12.
libraries/libwebp: Updated for version 0.2.0.
libraries/mathgl: Added (scientific data visualization library).
libraries/menu-cache: Updated for version 0.4.1.
libraries/opencv: Added -DNABLE_PRECOMPILED_HEADERS=OFF.
libraries/php-imagick: Renamed from imagick, script cleanup.
libraries/php-mssql: Added (php MS SQL extension).
libraries/postgresql-jdbc: Added (postgresql JDBC driver).
libraries/readosm: Added (Open Street Map parser library).
libraries/vte3: Added (terminal emulator widget).
misc/fcitx-configtool: Updated for version 0.4.5.1.
misc/fcitx: Updated for version 4.2.6.1.
misc/gramps: Updated for version 3.4.2.
misc/kcm-fcitx: Added ((KDE config module for Fcitx)
misc/mosquitto: Updated for version 1.0.5.
misc/owfs: Updated for version 2.8p20.
misc/par2cmdline-tbb: Fixed aclocal/automake and package name.
misc/xapian-omega: Updated for version 1.2.12.
multimedia/JSampler: Added (Java GUI for LinuxSampler).
multimedia/bombono-dvd: Added missing patch file.
multimedia/cuetools: Include the cuetag script in extras.
multimedia/flash-player-plugin: Updated for version 11.2.202.258.
multimedia/gnash: Added a switch to disable the konqueror plugin.
multimedia/gtkpod: Added (iPod Manager).
multimedia/mimms: Updated for version 3.2.1.
multimedia/miro: Updated for version 5.0.4.
multimedia/smplayer: Updated for version 0.8.3, added skins.
multimedia/smtube: Updated for version 1.5.
multimedia/vitunes-mplayer: Added (mplayer frontend w. vi bindings).
network/dillo: Fixed maintainer email.
network/dwb: Added (webkit browser).
network/etherpad-lite: Added (real-time collaborative editor).
network/filezilla: Updated for version 3.6.0.2.
network/frostwire: Updated for version 5.3.9.
network/heimdal: Noted the optional dependency libcap-ng, cleanups.
network/icecat: Updated for version 17.0.1.
network/iodine: Updated for version 0.6.0_rc1.
network/movgrab: Added (network movie grabber).
network/nfdump: Added (netflow processing tools).
network/openfire: Added (XMPP server).
network/opera: Updated for version 12.12.
network/psi: Updated for version 0.15.
network/secpanel: Added (SSH GUI for Unix).
network/shorewall-core: Updated for version 4.5.10.
network/shorewall6: Updated for version 4.5.10.
network/shorewall: Updated for version 4.5.10.
network/sieve-connect: Updated for version 0.84.
network/sshblock: Added (an SSH dictionary-attack blocker).
network/udpcast: Updated for version 20120424.
network/vacuum-im: Added (Qt jabber client).
network/weechat: Updated for version 0.3.9.2.
network/zabbix_agentd: Updated for version 1.8.15, cleanups.
network/zabbix_proxy: Updated for version 1.8.15, cleanups.
network/zabbix_server: Updated for version 1.8.15, cleanups.
office/ProjectLibre: Updated for version 1.5.2.
office/calibre: Updated for version 0.9.11.
office/hevea: Updated for version 2.00.
office/pdfshuffler: Updated for version 0.6.0.
office/treesheets: Added (Free Form Data Organization).
office/xournal: Updated for version 0.4.7.
perl/perl-CPANPLUS-Dist-Slackware: Updated for version 1.010.
perl/perl-Config-IniFiles: Updated for version 2.78.
perl/perl-IO-HTML: Added (html handling with encoding support).
perl/perl-Image-Info: Updated for version 1.33.
perl/perl-MIME-tools: Updated for version 5.503.
perl/perl-MailTools: Updated for version 2.11.
perl/perl-MusicBrainz-DiscID: Added (MusicBrainz DiscID interface).
perl/perl-Net-CIDR: Updated for version 0.17.
perl/perl-Net-Server: Updated for version 2.006.
perl/perl-NetAddr-IP: Updated for version 4.066.
perl/perl-Test-Deep: Updated for version 0.110.
perl/perl-YAML-Syck: Renamed yaml to perl-yaml in REQUIRES.
perl/perl-yaml: Updated Moved and renamed from development/yaml.
python/boto: Updated for version 2.6.0.
python/egenix-mx-base: Update for ver 3.2.5. Moved from development
python/hgsubversion: Updated for version 1.5.
python/lxml: Updated for version 3.0.2.
python/pycrypto: Updated for version 2.6.
python/pydot: Updated for version 1.0.28.
python/pyparsing: Updated for version 1.5.6.
python/python-magic: Updated for version 0.4.3.
python/pytz: Updated for version 2012h.
python/rope: Updated for version 0.9.4.
python/virtualenvwrapper: Added (virtualenv extensions).
ruby/facter: Updated for version 1.6.14.
system/ZoneMinder: Removed.
system/adobe-source-code-pro-font: Only install OTF fonts.
system/adobe-source-sans-pro-font: Only install OTF fonts.
system/atop: Updated for version 2.0.2.
system/bochs: Added (cross platform x86 emulator).
system/clamav: Fix docs folders permissions.
system/culmus: Added (Hebrew scalable fonts)
system/dateutils: Added (cli tools to work with dates and times)
system/gparted: Updated for version 0.14.1
system/hwinfo: Updated for version 20.0.
system/innotop: Updated for version 1.9.0.
system/jdiskreport: Fixed bug in wrapper script.
system/man-pages-extras-fr: Added (French system documentation)
system/man-pages-fr: Added (French system documentation)
system/mariadb: Updated for version 5.5.28a.
system/mongodb: Updated for version 2.2.2.
system/netatop: Added (kernel module)
system/oss: Updated for version 4.2.2007.
system/pcmanfm: Apply patches from upstream.
system/percona-toolkit: Updated for version 2.1.7.
system/percona-xtrabackup: Added (Online backup for MySQL / InnoDB)
system/postgis: Updated for version 2.0.2, new homepage
system/reptyr: Added (change terminal of a running process).
system/sdl-jstest: Added (SDL joystick test utility).
system/swatch: Added (Simple Log Watcher).
system/terminator: Don't include icon-theme.cache files.
system/unetbootin: Updated for version 581.
system/virtualbox-extension-pack: Added (addons for vbox)
+--------------------------+
Wed Dec 12 02:47:28 UTC 2012
academic/R: Updated for version 2.15.2
academic/convertall: Added (unit conversion tool).
academic/kile: Updated for version 2.1.3
academic/scilab: Updated for version 5.4.0, cleanups.
academic/xephem: Fixed wrong version in .info file
audio/aeolus: Fix download link format in .info-file.
audio/gvolwheel: Updated for version 1.0
audio/ocp: Fixed MD5SUM
audio/xmms-wma: Added (support for WMA V1/V2 in XMMS)
desktop/i3: Fixed link for KDM.
desktop/lxmed: Added. (LXDE Menu Editor)
desktop/uwm: Fixed bug in menu
desktop/wmbackground: Added (wmaker backgrounds changer).
desktop/wminfo: Updated for version 4.0.0.
desktop/wmphoto+: Updated for version 1.1.1, cleanups.
desktop/xmms-status-plugin: Added (provides a status docklet)
development/Cython: Updated for version 0.17.1
development/arduino: Updated for version 1.0.2
development/argouml: Fixed typo in homepage URL
development/avr-binutils: Updated for version 2.23.1
development/gambas3: Updated for version 3.3.4, cleanups.
development/google-appengine-gosdk: Mark as unmaintained.
development/google-appengine-pysdk: Mark as unmaintained.
development/netbeans: Updated for version 7.2.1
development/pd-psql: Added (postgresql addon for pd).
development/squirrel-sql: Updated for version 3.4.0
development/trac: Updated for version 1.0, cleanups.
development/valgrind: Updated for version 3.8.1
games/Domination: Updated for version 1.1.1.2.
games/UrbanTerror: Mark as unmaintained.
games/d1x-rebirth: Updated for version 0.57.3.
games/d2x-rebirth: Updated for version 0.57.3.
games/darkplaces: Added a option to honor $SLKFLAGS
games/freedroidrpg: Updated for version 0.15.1.
games/meandmyshadow: Updated for version 0.4.
games/moon-buggy: Added. (Simple character graphics game)
games/njam: Added (The most addictive free pacman-like game)
games/wesnoth: Updated for version 1.10.5
games/xonotic: Default to xonotic-glx over xonotix-sdl
games/xye: Updated for version 0.12.1
graphics/baires: Added (Batch image resizer)
graphics/kim4: Added (KDE4 image manipulation).
graphics/kphotoalbum: Updated for version 4.3.
graphics/kuickshow: Added (image viewer for kde)
graphics/osgEarth: Added (Terrain rendering toolkit).
graphics/qrencode: Updated for version 3.4.1
graphics/tgif-QPL: Updated for version 4.2.5
graphics/xbmbrowser: Added (xbm and xpm browser)
graphics/yagf: Updated for version 0.9.2.
ham/hamlib: Updated for version 1.2.15 and moved from libraries
ham/xlog: Moved from libraries
libraries/DirectFB: Added (library for Linux framebuffer devices)
libraries/enca: Updated for version 1.14.
libraries/gdl: Added (GNOME Docking Library)
libraries/genshi: Changed REQUIRES to distribute
libraries/gtksourceview3: Added (GTK+ framework code editing)
libraries/libaacs: Updated for version 0.5.0.
libraries/libbluray: Updated for version 0.2.3.
libraries/libevent: Updated for version 2.0.21
libraries/libnetfilter_acct: Updated for version 1.0.1.
libraries/libnetfilter_conntrack: Updated for version 1.0.2.
libraries/libnfnetlink: Updated for version 1.0.1.
libraries/libpst: Updated for version 0.6.55
libraries/librelp: Updated for version 1.0.1
libraries/libvdpau: Updated for version 0.5.
libraries/libx86emu: Updated for version 1.3
libraries/lksctp-tools: Added (linux kernel SCTP tools).
libraries/miniupnpc: Updated for version 1.7.
libraries/ocaml-findlib: Add ocaml to REQUIRES.
libraries/opencv: Updated for version 2.4.3
libraries/tinyxml: Remove jdk as a required dependency
libraries/xapian-core: Updated for version 1.2.12
libraries/xine-plugin: Added (Embedded stream playback plugin)
libraries/yajl: New maintainer and fixed download
misc/asterixInspector: Added (viever for EUROCONTROL ASTERIX files)
misc/solunar: Added (utility displaying sun- and moon-related data)
multimedia/ProjectX: Added. (DVB demux tool)
multimedia/backlite: Added (DVD backup utility).
multimedia/flash-player-plugin: Don't include /usr/lib directory on x86_64.
multimedia/gmidimonitor: Added (shows MIDI events)
multimedia/jlscp: Added (Java Linux Sampler Control Protocol).
multimedia/k9copy: Added (a Linux DVD shrink).
multimedia/w_scan: Updated for version 20121111
multimedia/xvid4conf: Fixed homepage and download link.
network/LOIC: Renamed from loic and updated for version 1.0.7.42.
network/bitcoin: Added. (P2P electronic cash system)
network/dillo: Updated for version 3.0.2.
network/gophernicus: Added (gopher server).
network/hexchat: Added (XChat fork)
network/ip2location-c: Renamed from C-IP2Location.
network/ipv6calc: Updated for version 0.93.1.
network/mumble: Use the bundled celt versions.
network/murmur: Fixed CFLAGS and REQUIRES.
network/node: Updated for version 0.8.14
network/opera: Updated for version 12.11.
network/teamviewer: Updated for version 7.0.9377
network/wuala: Updated for version 0.3_4
network/xinetd: Updated for version 2.3.15.
office/ProjectLibre: Updated for version 1.5.1
office/focuswriter: Updated for version 1.4.0
office/gummi: Updated for version 0.6.5.
office/lcal: Updated SlackBuild script license
office/myrulib: Updated for version 0.29.11.
office/notmuch: Updated for version 0.14.
office/pcal: Updated for version 4.11.0
office/qpdfview: Added (Document Viewer).
office/scribus: Updated for version 1.4.1
office/task: Updated for version 2.1.2
office/texmaker: Updated for version 3.5.2.
office/texstudio: Updated for version 2.5.1
office/vym: Updated for version 2.2.4
office/xpad: Updated for version 4.1
perl/perl-File-Tail: Added (read continously updated files)
perl/perl-Statistics-Descriptive: Updated for version 3.0604
python/MarkupSafe: Changed REQUIRES to distribute
python/Pyro4: Updated for version 4.16
python/cssselect: Added (CSS3 selectors parser).
python/dnspython: Updated for version 1.10.0
python/dulwich: Updated for version 0.8.5
python/hg-git: Updated for version 0.3.4.
python/pep8: Updated for version 1.3.3
python/pip: Updated for version 1.2.1
python/python-distutils-extra: Updated for version 2.37.
python/python-distutils-extra: Updated formatting of slack-desc
python/python-poppler-qt4: Added (Python bindings to poppler-qt4)
python/python-sh: Added (subprocess interface for Python)
system/burp: Updated for version 1.3.18.
system/davfs2: Updated for version 1.4.7
system/diit: Added (steganography tool).
system/dump: Updated for version 0.4b44
system/haveged: Added (A simple entropy daemon)
system/iotop: Updated for version 0.4.4
system/kcm_touchpad: Fix appear again as a tab in 'Input Devices'
system/keylaunch: Added (bind commands to a hot key)
system/krusader: Updated for version 2.4.0_beta3
system/lbrate: Added (extract CP/M LBR archives)
system/lilyterm: Added (terminal emulator for X).
system/linux-libertine-fonts: Added (Linux Libertine fonts)
system/linuxconsoletools: Updated for version 1.4.4.
system/mucommander: Updated for version 0.9.0
system/multitail: Updated for version 5.2.10
system/nilfs-utils: Updated for version 2.1.4
system/nomarch: Added (extract '.arc' archives)
system/nvidia-driver: Don't create unneeded $libdir/vdpau/
system/nvidia-driver: Updated for version 310.19.
system/nvidia-kernel: Updated for version 310.19.
system/openstego: Added (steganography tool).
system/plan9port: Added (Plan 9 from User Space).
system/postgresql: Updated for version 9.2.1.
system/prelink: Updated for version 20111012
system/redis: Updated for version 2.6.5
system/rsyslog: Updated for version 5.8.13
system/virt-viewer: Updated for version 0.5.4.
system/wavemon: Added (Wavemon 802.11 monitor)
system/wine: Updated for version 1.5.13.
system/wmconfig: Updated for version 1.3.6
+--------------------------+
Sat Nov 24 20:52:44 UTC 2012
audio/cmus: Updated for version 2.5.0.
desktop/gnome-themes-standard: Added (themes for the gnome desktop).
desktop/gtk-engines-unico: Added (theme engine for GTK+3).
desktop/rss-guard: Updated for version 1.1.2.
desktop/spectrwm: Updated for version 2.1.0.
development/avr8-gnu-toolchain: Added (AVR 8-bit GNU Toolchain).
development/quilt: Updated for version 0.60 (+new maintainer)
games/openttd: Updated for version 1.2.3.
games/tong: Added (action game combining tetris and pong).
libraries/libass: Updated for version 0.10.1.
libraries/libbsd: Updated for version 0.4.2.
libraries/libetpan: Updated for version 1.1.
libraries/libfm: Updated for version 1.1.0.
libraries/libgee: Updated for version 0.6.6.1.
libraries/tbb: Updated for version 4.1u1.
multimedia/dvdstyler: Updated for version 2.3.4.
multimedia/smplayer: Updated for version 0.8.1.
multimedia/smtube: Added (small youtube browser)
multimedia/totem: Added (GNOME Movie Player).
network/claws-mail-extra-plugins: Updated for version 3.9.0.
network/claws-mail: Updated for version 3.9.0.
network/opera: Updated for version 12.10.
network/sieve-connect: Updated for version 0.83.
network/ssmtp: Added (simple MTA that forwards to a smarthost).
network/youtube-dl: Updated for version 2012.10.09.
python/pypy: Added (implementation of Python written in Python)
python/python3: Updated for version 3.3.0.
system/adobe-source-code-pro-font: Added (adobe monospace font).
system/adobe-source-sans-pro-font: Added (adobe-source sans font).
system/atop: Updated for version 2.0_1.
system/freefont: Updated for version 20120503.
system/kc: Updated for version 2.1.6.
system/ksh-openbsd: Added (OpenBSD's pdksh ported to Linux)
system/pcmanfm: Updated for version 1.1.0.
system/pmount: Updated for version 0.9.23.
system/qtfm: Updated for version 5.5.
system/rxvt-unicode: Added "--enable-256-color" to configure
+--------------------------+
Sun Nov 18 11:36:25 UTC 2012
audio/mp3splt-gtk: Added --docdir configure parameter.
audio/qmmp: Updated for version 0.6.3.
desktop/enlightenment: Updated for version 0.17.0_alpha2.
development/casperjs: Fix download link.
development/gedit: Adjust gconf schema installation.
development/phantomjs: Fix gold related build errors.
libraries/e_dbus: Updated for version 1.7.1.
libraries/ecore: Updated for version 1.7.1.
libraries/edje: Updated for version 1.7.1.
libraries/eet: Updated for version 1.7.1.
libraries/efreet: Updated for version 1.7.1.
libraries/eina: Updated for version 1.7.1.
libraries/eio: Added. (Enlightenment DR17 I/O Library)
libraries/embryo: Updated for version 1.7.1.
libraries/evas: Updated for version 1.7.1.
libraries/liblrdf: Fix download link.
libraries/libmp3splt: Added --docdir configure parameter.
libraries/slv2: Fix dependency information.
libraries/stfl: Fixed install directory for python.
misc/dos2unix: Updated for version 6.0.2.
multimedia/gst-plugins-bad: Note optional dependencies in README.
multimedia/gst-plugins-ugly: Note optional dependencies in README.
network/knemo: Updated for version 0.7.5.
network/qupzilla: Updated for version 1.3.5.
perl/perl-Authen-SASL: Updated for version 2.16.
python/distribute: Updated for version 0.6.30.
+--------------------------+
Sun Nov  4 15:41:50 UTC 2012
academic/maxima: Updated for version 5.27.0.
academic/smath-studio: Updated for version 0.95.4594.
audio/alsa-tools: Updated for version 1.0.26.1.
audio/cd-discid: Updated for version 1.3.1.
audio/gmpc-plugins: Fixed homepage.
audio/gmpc: Fixed homepage.
audio/lv2dynparam1: Fixed download link.
audio/lxmusic: Noted the xmms2 dependency in REQUIRES.
audio/mac: Fixed download link.
audio/zynjacku: Fixed download link.
business/gnucash: Changed optional dep. from webkit to webkitgtk.
desktop/enlightenment: Updated for version 0.16.999.76819.
desktop/gtk-kde4: Updated for version 0.9.5, mark as unmaintained.
desktop/razorqt: Updated for version 0.5.1.
desktop/root-tail: Fixed download link.
desktop/vwm: Fixed download link and forced -j1.
desktop/x-tile: Updated for version 2.5.
development/apache-maven: Fixed download.
development/blassic: Fixed download link.
development/django: Fixed download link.
development/dpkg: Updated for version 1.16.8.
development/gprolog: Fixed download link.
development/jdk: Updated for version 7u9
development/premake: Added lua to REQUIRES.
development/tkcvs: Fixed download link.
development/trac: Fixed download link.
development/xtruss: Updated for version r9490.
games/abuse: Fixed download link.
games/fortune_firefly: Fixed download link.
graphics/gimp-registry-plugins: Updated Smart Sep. Sharpen filter.
graphics/picasa: Removed (no linux support anymore).
graphics/teighafileconverter: Updated for version 3.7.0.
graphics/teighaviewer: Updated for version 3.7.0.
libraries/alsa-plugins: Updated for version 1.0.26.
libraries/argparse: Removed.
libraries/dietlibc: Fixed download link.
libraries/e_dbus: Updated for version 1.7.0.
libraries/ecore: Updated for version 1.7.0.
libraries/edje: Updated for version 1.7.0.
libraries/eet: Updated for version 1.7.0.
libraries/eeze: Removed at request of maintainer.
libraries/efreet: Updated for version 1.7.0.
libraries/eina: Updated for version 1.7.0.
libraries/embryo: Updated for version 1.7.0.
libraries/evas: Updated for version 1.7.0.
libraries/fltk2: Fixed download link.
libraries/gssdp: Updated for version 0.12.2.1.
libraries/libdockapp: Fixed download link.
libraries/libedit: Fixed download link.
libraries/libmikmod: Updated for version 3.2.0.
libraries/libpseudo: Fixed download link.
libraries/libstatgrab: Added (system statistics library).
libraries/libva: Fixed download link and homepage.
libraries/libviper: Fixed download link.
libraries/ocaml-camomile: Added a patch to install a missing lib.
libraries/qt3: Fixed build (removed invalid hunk from patch)
libraries/vdpau-video: Fixed download link and md5sum.
libraries/xalan: Fixed download link.
libraries/yajl: Updated for version 2.0.4.
misc/rsibreak: Fixed download link.
multimedia/exaile: Don't note webkit as optional dependency.
multimedia/mediatomb: Fix building with libmp4v2.
multimedia/rosa-media-player: Fixed download link.
multimedia/wxcam: Added xvidcore to REQUIRES.
network/C-IP2Location: New upstream tarball for the same version.
network/clamav-unofficial-sigs: Fixed download link.
network/claws-mail-extra-plugins: Small README change.
network/exim: Updated for version 4.80.1.
network/flvstreamer: Fixed download link.
network/hamachi: Fixed download links.
network/httping: Updated for version 1.5.4.
network/maildrop: Fixed download link.
network/modsecurity-apache: Updated for version 2.6.8.
network/mysecureshell: Updated for version 1.25.
network/nikto: Fixed download link.
network/ntop: Fix dependency list in .info file
network/pdnsd: Fixed download link and homepage.
network/quassel: Don't note webkit as optional dependency.
network/sparkleshare: Fixed download link and md5sum.
network/ttdnsd: Fixed download link.
network/ucspi-ssl: Fixed download link.
network/xl2tpd: Fixed download link.
office/hevea: Fixed download link.
office/texlive: Add a note re obtaining svn checkout
python/pystatsd: Fixed dep info.
python/python-oauth2: Added distribute to REQUIRES.
python/python-openid: Fixed download link.
python/pyutil: Fixed dep info.
python/tweepy: Added distribute to REQUIRES.
ruby/rubygems-update: Fixed .info file.
system/acpitool: Updated for version 0.5.1, cleanups.
system/apache-cassandra: Fixed download link.
system/apache-tomcat: Fix default java options.
system/bulk_extractor: Updated for version 1.3.
system/clamav: Fixed logging location of freshclam in rc.clamav.
system/dstat: Updated for version 0.7.2.
system/gparted: Updated for version 0.14.0.
system/ipheth-pair: Removed (sources no more available).
system/ksplice: Fixed download link.
system/microcode_ctl: Fixed download link.
system/pigz: Updated for version 2.2.5.
+--------------------------+
Thu Oct 18 21:37:57 UTC 2012
desktop/bashrun2: Fixed typo
desktop/xfce4-sensors-plugin: Fixed VERSION in .info file
multimedia/flash-player-plugin: Updated for version 11.2.202.243.
office/texlive: Fixed banner text in configure
+--------------------------+
Sun Oct  7 22:27:34 UTC 2012
Revert "system/xen: Added (updated to version 4.2.0 from 13.37 repo)"
+--------------------------+
Sun Oct  7 14:21:03 UTC 2012
Files on server need to be mode 644.
audio/abcde: Mark as unmaintained.
audio/cd-discid: Mark as unmaintained.
business/gnucash: Updated for version 2.4.11.
business/skrooge: Updated to version 1.3.3
desktop/pekwm: Mark as unmaintained.
desktop/subtle: Fix consolekit xinitrc, cleanups.
development/apache-ant: Updated for version 1.8.4
development/gprolog: Mark as unmaintained.
development/jdk: Fixed homepage link.
development/polyml: Mark as unmaintained.
games/fortune-dharma: Updated for version 1.2
graphics/goocanvas: Change maintainer.
graphics/pinta: Fixed REQUIRES + Updated for version 1.4.
libraries/frei0r: Cleanup of redundant docs.
libraries/gmtk: Minor fix to the README.
libraries/imagick: New maintainer.
libraries/libofx: Fix building with gcc 4.7.
libraries/newt: Updated for version 0.52.14 and fixed some CFLAGS.
libraries/xerces: Updated for version 2.11.0
multimedia/gst-plugins-farsight: Remove requirement of openjpeg.
multimedia/mlt: Autodetect which swig bindings to build.
multimedia/mythplugins: Updated for version 0.26.0
multimedia/mythtv: Updated for version 0.26.0
multimedia/openshot: Updated for version 1.4.3, cleanups.
network/centerim: Removed.
network/strongswan: Mark as unmaintained.
office/grisbi: Fix typo in slack-desc and README.
office/mupdf: Fix building against openjpeg.
python/pygoocanvas: Change maintainer.
ruby/rubygems-update: Updated for version 1.8.24
system/avermedia-a867: Removed leftover patches.
system/bacula-client: Fixed dep info.
system/mksh: Fixed REQUIRES
system/rar: Updated for version 4.2.0.
system/spacefm: Noted optional dep udevil in README.
system/udevil: Updated for version 0.3.3.
system/xen: Added (updated to version 4.2.0 from 13.37 repo)
+--------------------------+
Tue Oct  2 18:25:39 UTC 2012
We're running a bit later than usual on getting ready for the new release 
  this time, but we think you'll agree that it was worth the wait for us
  to get all (or at least) most of the kinks worked out.  One of the most
  user-visible changes is the new REQUIRES variable in the .info files.
  For a description, see this git commit in our templates repo:
    http://slackbuilds.org/cgit/templates/commit/?h=14.0&id=fb892cce15779cbbfb
  Also note that the various template files can be viewed and/or downloaded
  via http here: http://slackbuilds.org/templates/
I'd like to take this time to welcome our newest admin, Matteo Bernardini
  (ponce) to the team and thank him for the huge amount of testing and
  updating of various scripts that he did.  On that note, I should thank
  David Somero (XGizzmo) for once again doing the automated build testing
  (and providing error logs) for this release, and of course all of his
  fixes and updates along the way.  Then there's Heinz Wiesinger (pprkut) for
  the usual fixes and updates, but he's also done a lot of work behind the
  scenes with database updates and our custom admin tools.  I'd be remiss if
  I didn't point out the never-ending job of server maintenance and upkeep 
  done by the SBo co-founder, Erik Hanson (erik), and that's on top of the
  usual fixes and updates all over the SBo tree.  Michiel van Wessem (BP{k})
  and Niels Horn (niels_horn) get the same kudos for helping out with all
  of the testing and fixing in the tree, and as much as I hate to talk nicely
  about rob0 (/dev/rob0), he actually deserves some kind words for his work
  on keeping our mail and dns working properly.
All of our users and maintainers deserve proper thanks for our existence, but
  Binh Nguyen and Willy Sudiarto Raharjo really stepped up and helped out with 
  lots of testing and fixing and updating needed to get the 14.0 repo ready.
  I'm sure I've left someone out, but please understand that my bad memory is
  in no way a reflection on your contributions.  Thanks to everyone for your
  contributions, regardless of how small or large they may have been. 
See the git log <http://slackbuilds.org/cgit/slackbuilds/log/?h=14.0> for
  detail changes since 13.37.  Now go forth and Slack!  
  --rworkman (on behalf of the entire SBo team)
+--------------------------+