summaryrefslogtreecommitdiffstats
path: root/ChangeLog.txt
blob: 5129b49454003e33ba6e49e794e389f685eee7e8 (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
Sun Dec 11 00:02:49 UTC 2011
academic/gchemutils: Added (gnome-chemistry-utils)
academic/genpak: Various packaging fixes
audio/fluidsynth: Updated for version 1.1.5.
audio/pianobar: Updated for version 2011.11.11.
audio/rosegarden: Updated for version 0.9.17.
desktop/wally: Updated for version 2.4.3 (+new maintainer)
desktop/wmfire: Updated for version 1.2.4.
desktop/wmii: Added (window manager improved 2)
desktop/wminfo: Updated for version 2.4.0.
desktop/xfce4-volumed: Updated for version 0.1.13.
desktop/yawp: Updated for version 0.4.1.
development/eclipse: Updated for version 3.7.1.
development/geany-plugins: Updated for version 0.21.1.
development/highlight: Added (a universal syntax highlighter)
development/orc: Updated for version 0.4.16.
development/valgrind: Updated for version 3.7.0.
development/wxHexEditor: Fixed make command (+new maintainer)
games/hedgewars: Updated for version 0.9.17.
games/ltris: Updated for version 1.0.18.
games/xye: Updated for version 0.12.0.
libraries/SDL_gfx: Updated for version 2.0.23.
libraries/keybinder: Added (keyboard shortcut library)
libraries/libbonobo: Updated for version 2.32.1.
libraries/libbonoboui: Updated for version 2.24.5.
libraries/libdvdnav: Updated homepage and download link.
libraries/libgnome: Updated for version 2.32.1.
libraries/libgnomeui: Updated for version 2.24.5.
libraries/libiec61883: Updated download link.
libraries/libixp: Added (standalone client/server 9P library)
libraries/libopenraw: Updated for version 0.0.9.
libraries/libssh2: Added (SSH2 library)
libraries/libtorrent-rasterbar: Updated for version 0.15.9.
libraries/yaz: Updated for version 4.2.22.
misc/bodr: Added (Blue Obelisk Data Repository)
misc/chemical-mime-data: Added (various chemical MIME types)
misc/gramps: Updated for version 3.3.1.
misc/mosquitto: Updated for version 0.14.2.
misc/nfoview: Updated for version 1.9.5.
multimedia/bombono-dvd: Updated for version 1.2.0.
multimedia/clamz: Updated for version 0.5.
multimedia/flash-player-plugin: Updated for version 11.1.102.55.
network/NetworkManager-openconnect: Updated for version 0.8.6.0.
network/NetworkManager-openvpn: Updated for version 0.8.6.0.
network/NetworkManager-pptp: Updated for version 0.8.6.0.
network/NetworkManager-vpnc: Updated for version 0.8.6.0.
network/NetworkManager: Updated for version 0.8.6.0.
network/bitlbee: Updated for version 3.0.4.
network/chromium: Fixed the version numbering in the Slackbuild.
network/chrony: Updated for version 1.26.
network/ekiga: Updated for version 3.3.2.
network/network-manager-applet: Updated for version 0.8.6.0.
network/openconnect: Updated for version 3.14.
network/opera: Updated for version 11.60.
network/phpmyadmin: Updated for version 3.4.8.
network/privoxy: Updated for version 3.0.18.
network/qbittorrent: Updated for version 2.9.2.
network/weechat: Updated for version 0.3.6 (+new maintainer)
network/wireshark: Updated for version 1.6.4.
network/youtube-dl: Updated for version 2011.11.23.
office/gummi: Updated for version 0.6.1.
office/moneydance: Updated for version 2011_b803.
office/myrulib: Updated for version 0.28.11.
office/vym: Updated for version 2.0.3.
office/wammu: Updated for version 0.36.
python/distribute: Updated for version 0.6.24.
python/gnome-python: Updated for version 2.28.1.
system/autocutsel: Added (sync X clipboard with the cutbuffer)
system/cdemu-tray: Removed (no longer in active development)
system/gammu: Updated for version 1.30.0.
system/gnome-vfs: Updated for version 2.24.4.
system/htop: Updated for version 1.0.
system/kvm-kmod: Updated for version 3.1.
system/ncdu: Updated for version 1.8.
system/roxterm: Updated for version 2.3.1.
system/ts: Updated for version 0.7.1.
system/usbmuxd: Clarify README wrt user creation
system/xen: Updated for version 4.1.2 and misc build fixes
+--------------------------+
Sat Nov 26 15:43:34 UTC 2011
academic/scilab: Added (numerical computing package)
development/ola: Fix DOWNLOAD link
+--------------------------+
Sat Nov 26 15:10:40 UTC 2011
academic/ghemical: Updated for version 3.0.0.
academic/gtypist: Updated for version 2.9.
academic/libghemical: Updated for version 3.0.0.
academic/primer3: Build bump, new symlink and misc. cleanup.
academic/pyfits: Added (a Python extension for working with FITS files)
audio/celt: Updated for version 0.11.1.
audio/kradio: Add patch for ffmpeg 0.8.
audio/match-vamp-plugin: Added (MATCH Vamp Plugin)
audio/ocp: Updated for version 0.1.21.
audio/pulseaudio: Add json-c as a dep, remove old patch.
audio/qmidiarp: Added (an arpeggiator, sequencer and MIDI LFO)
audio/qmidinet: Added (a MIDI network gateway application)
audio/rumor: Added (Really Unintelligent Music transcriptOR)
audio/sooperlooper: Added (live audio looping sampler)
audio/xmms-mp4: Added (Plugin to support .mp4/.m4a/.aac files in XMMS)
desktop/bmpanel2: Added (NETWM-compatible panel for X11)
desktop/cwp: Updated for version 1.5.6.
desktop/ffmpegthumbnailer: Updated for version 2.0.7, new maintainer.
desktop/peksystray: Added (small system tray)
desktop/searchmonkey: Added (powerful graphical search tool)
desktop/wminfo: Updated for version 2.3.0.
desktop/xfce4-genmon-plugin: Included patch from xfce bz #7449
desktop/xfce4-weather-plugin: Fix "Invalid License Key" errors
development/Cython: Updated for version 0.15.1 (+new maintainer)
development/bpython: Updated for version 0.10.1.
development/hte: Added (editor/viewer/analyzer for executables)
development/lua: Updated with newest patches from upstream.
development/ocaml: Updated for version 3.12.1.
development/ola: Added (The Open Lighting Architecture)
development/ola: Fix PKGTYPE.
development/ruff: Added (Runtime function formatter)
development/tcc: Added some fixes.
development/xemacs: Added (XEmacs editor)
games/vbam: Added icon-theme and desktop file updating to doinst.sh
graphics/fotowall: New maintainer.
graphics/qcomicbook: Updated for version 0.8.2.
graphics/tkpng: Added (PNG photo image support for Tcl/Tk)
libraries/ETL: Updated for version 0.04.14.
libraries/GConf: Create the gio module cache during postinstall
libraries/GeoIP-Python: Updated for version 1.2.7.
libraries/adodb: Updated for version 5.14.
libraries/afflib: Updated for version 3.6.12.
libraries/cdk: Fixed download link.
libraries/daq: Updated for version 0.6.2.
libraries/ilbc: Updated maintainer information.
libraries/libass: Updated for version 0.9.13 (+new maintainer)
libraries/libdvdcss: Updated for version 1.2.11.
libraries/libgee: Updated for version 0.6.2.1 (+new maintainer)
libraries/libgexiv2: Added (GObject wrapper around Exiv2 library)
libraries/libircclient: Added (client-server IRC protocol library)
libraries/libisoburn: Updated for version 1.1.6 (+new maintainer)
libraries/libmikmod: New maintainer.
libraries/libnet: Updated for version 1.1.5.
libraries/liboglappth: Updated for version 1.0.0.
libraries/libquicktime: Updated for version 1.2.3.
libraries/opal: Updated for version 3.10.3.
libraries/openjpeg: Added patch from upstream.
libraries/ptlib: Updated for version 2.10.3
libraries/tolua++: New download mirror, new maintainer.
libraries/wxPython: Note optional dependency on GConf
libraries/yaz: Updated for version 4.2.19.
misc/discount: Updated for version 2.1.2.
misc/dwdiff: Updated for version 2.0.1.
misc/krename: Updated for version 4.0.7.
multimedia/flash-player-plugin: Fix wrong libdir on slackware64
multimedia/gaupol: Updated for version 0.19.1.
multimedia/gnupod: Fixed to use vendor_perl instead of site_perl
multimedia/vlc: Added (VLC media player)
network/broadcom-sta: Updated for version 5.100.82.112.
network/chromium: Updated for version 15.0.874.120.
network/filezilla: Updated for version 3.5.2.
network/fqterm: Updated for version 0.9.6.10.
network/framework: Updated for version 4.0.0.
network/hydra: Updated for version 7.1 (+new maintainer)
network/knemo: Updated for version 0.7.2.
network/loic: Build bump, removed source build option.
network/mew: Updated for version 6.4.
network/miredo: Added (teredo IPv6 tunneling)
network/msmtp: Updated for version 1.4.25.
network/mumble: Updated for version 1.2.3.
network/nbd: Updated for version 2.9.24.
network/nginx: Updated for version 1.0.9.
network/phpmyadmin: Updated for version 3.4.7.1.
network/sipp: Added (SIP test tool)
network/snort: Updated for version 2.9.1.2.
network/transmission: Updated for version 2.42.
network/udpcast: Updated for version 20110710.
network/uudeview: Added (The Nice and Friendly Decoder)
network/uwsgi: Updated for version 0.9.9.2.
network/wireshark: Updated for version 1.6.3.
network/xl2tpd: Fixed download link.
network/znc: Updated for version 0.202.
office/adobe-reader: Updated for version 9.4.6.
office/coolreader: Added (e-book reader)
office/gummi: Updated for version 0.6.0.
office/kmymoney: Updated for version 4.6.1.
office/libreoffice-langpack: Updated for version 3.4.4.
office/libreoffice: Updated for version 3.4.4.
office/myrulib: Added (e-book library manager)
office/openoffice.org: Changed default install to en_US :)
perl/perl-Sort-Naturally: Added (sort lexically, but numeral parts numerically)
perl/perl-event: Fixed to use vendor_perl instead of site_perl
perl/perl-libintl: Fixed to use vendor_perl instead of site_perl
python/cx_Freeze: Added (python script freezer)
python/google-api-python-client: Added (Google APIs Client for Python)
python/hgsubversion: Updated for version 1.3.
python/mock: Added (a Mocking and Testing Library in Python)
python/pyasn1: Added (implements ASN.1 types and codecsin Python)
python/python-xrandr: Added (python bindings for X RandR)
python/pywebkitgtk: Fix wrong libdir on slackware64
system/aimage: Updated for version 3.2.5.
system/bindfs: Added (FUSE filesystem for mounting directories elsewhere)
system/dconf: Create the gio module cache during postinstall
system/foremost: New maintainer + script cleanup.
system/goaccess: Added (httpd log analyzer)
system/ibam: Added (Intelligent BAttery Monitor)
system/qemu-legacy: Fixed SDL header inclusion.
system/rodent: Added (Rodent Filemanager)
system/sakura: Updated homepage and download link.
system/sleuthkit: Updated for version 3.2.3.
system/testdisk: Updated for version 6.13.
system/unison: Updated for version 2.40.63.
system/zerofree: Added (fills free blocks in an ext2/3/4 filesystem with zeroes)
+--------------------------+
Sat Nov  5 00:06:26 UTC 2011
academic/R: Updated for version 2.14.0.
academic/ess: Updated for version 5.14.
academic/genpak: Several fixes + adding html.
academic/scipy: Updated for version 0.9.0.
academic/sympy: Updated for version 0.7.1.
academic/xephem: Updated for version 3.7.5.
audio/clementine: Updated for version 0.7.1.
audio/cmus: Updated for version 2.4.2.
audio/hydrogen: Fixed problem with scons installing images.
audio/mixxx: Updated for version 1.9.0.
audio/pd: Fix PKGTYPE and BUILD.
audio/pd: Updated for version 0.43-0.
audio/pulseaudio: Updated for version 1.1.
audio/wineasio: Added (an ASIO to JACK driver for WINE)
desktop/anki: Minor change to the README.
desktop/cairo-dock: Fix makepkg line.
desktop/catfish: Added (A versatile file searching tool)
desktop/xfce4-quicklauncher-plugin: Fixed desktop file
desktop/xfce4-smartbookmark-plugin: Fixed desktop file
desktop/zenity: Updated for version 2.32.1 (+new maintainer)
development/Sphinx: Updated for version 1.1.
development/acpica: Updated for version 20110922.
development/arduino: Updated for version 0022 (+new maintainer)
development/cppcheck: Updated for version 1.51.
development/django: Updated for version 1.3.1.
development/geany: Updated for version 0.21.
development/groovy: Added (The Groovy programming language)
development/gsoap: Updated for version 2.8.3.
development/magit: Updated for version 1.0.0.
development/numpy: Updated for version 1.6.1.
development/smalltalk: Added (GNU Smalltalk)
development/squirrel-sql: Updated for version 3.2.1.
games/dreamchess-music: New maintainer.
games/dreamchess: New maintainer.
games/egoboo: New maintainer
games/freeciv: Updated for version 2.3.0.
games/ioquake3: Updated for revision 2187.
games/knights: Added (simple chess board for KDE 4)
games/pentagram: Added (an Ultima 8 engine)
games/xu4: Added (Ultima IV remake)
games/xye: Updated for version 0.11.2, new maintainer.
libraries/c-ares: Updated for version 1.7.5, new maintainer.
libraries/irrlicht: Updated for svn_3843 and new maintainer.
libraries/json-c: Added (JSON library in C)
libraries/lame: Updated for version 3.99.
libraries/libburn: Updated for version 1.1.6.
libraries/libisofs: Updated for version 1.1.6.
libraries/libmemcached: Updated for version 1.0.2.
libraries/libsigsegv: Added (handle page faults in user mode)
libraries/libssh: Updated for version 0.5.2, New maintainer.
libraries/matplotlib: Updated for version 1.1.0.
libraries/physfs: Updated for version 2.0.2.
libraries/yaz: Updated for version 4.2.17.
misc/j7z: Added (JAVA GUI frontend for p7zip)
misc/tamsyn-font: Added (A monospace bitmap font designed for programmers)
multimedia/makemkv: Updated for version 1.6.16.
multimedia/mkvtoolnix: Updated for version 5.0.1.
network/Quamachi: (Hamachi GUI)
network/RSSOwl: Fixed 32bit SRC_ARCH.
network/claws-mail-extra-plugins: Fixup some conflict markers
network/exim: Updated for version 4.77.
network/hiawatha: Updated for version 7.7.
network/nginx: Updated for version 1.0.8.
network/phpmyadmin: Updated for version 3.4.7.
network/qbittorrent: Updated for version 2.9.1.
network/sslstrip: Added (HTTPS ssl stripping)
network/thttpd: Added (the tiny/turbo/throttling HTTP server)
network/tor: Updated for version 0.2.2.34.
network/zabbix_agentd: Updated for version 1.8.8.
network/zabbix_proxy: Updated for version 1.8.8.
network/zabbix_server: Updated for version 1.8.8.
office/calcurse: Updated for version 2.9.2.
office/texlive: Updated with new patches + enabled xindy.
python/PyAudio: Added (PortAudio Python Bindings)
python/pyflakes: Updated for version 0.5.0 (+new category)
python/pygtksourceview: New maintainer.
python/python2-chardet: New maintainer.
system/apache-tomcat: Updated for version 7.0.22.
system/burp: Added (backup and restore program)
system/commons-daemon: Updated for version 1.0.7.
system/dar: Updated for version 2.4.2.
system/gparted: Updated for version 0.10.0.
system/nvidia-driver: Updated for version 285.05.09.
system/nvidia-kernel: Updated for version 285.05.09.
system/pbzip2: Updated for version 1.1.6.
system/rox-filer: Updated for version 2.11.
system/tp_smapi: Updated for version 0.41.
system/virtualbox-addons: Updated for version 4.1.4.
system/virtualbox-kernel-addons: Updated for version 4.1.4.
system/virtualbox-kernel: Updated for version 4.1.4.
system/virtualbox: Updated for version 4.1.4.
+--------------------------+
Sat Oct 22 12:23:02 UTC 2011
academic/EMBOSS: Updated with newest patches.
academic/QtiPlot: Added (Data Analysis and Visualisation)
academic/antiprism: Added (set of polyhedra programs)
academic/glpk: Updated for version 4.47.
academic/treeview: Added (Program to display phylogenetic trees)
audio/listener: Updated for version 2.0.1.
audio/mp3wrap: Added (wrap multiple mp3 files into one)
audio/pianobar: Updated for version 2011.09.22.
audio/vmpk: Updated for version 0.4.0 (+moved from multimedia)
desktop/QtCurve-Gtk2: Updated for version 1.8.11.
desktop/QtCurve-KDE4: Updated for version 1.8.9.
desktop/anki: Added (friendly, intelligent flashcards)
desktop/faenza-icon-theme: Updated for version 1.1.
desktop/wminfo: Updated for version 2.20.
development/4th: Added (The friendly Forth compiler/interpreter)
development/amd-app-sdk: Added (AMD Accelerated Parallel Processing SDK)
development/avrdude: Updated for version 5.11.1.
development/ipython: Updated for version 0.11.
development/mcrl2: Added (micro Common Representation Language 2)
development/mit-scheme: Added (MIT/GNU Scheme)
development/monodevelop-database: Updated for version 2.8.
development/monodevelop-debugger-gdb: Updated for version 2.8.
development/monodevelop-debugger-mdb: Removed.
development/monodevelop-python: Updated for version 2.8.
development/monodevelop: Updated for version 2.8.
development/opencvs: Added (a FREE implementation of the Concurrent Versions System)
development/psycopg2: Updated for version 2.4.2.
development/scons: Updated for version 2.1.0.
development/tiled-qt: Updated for version 0.7.1.
games/KoboDeluxe: Added (Simple space shooting game)
games/alienarena: Updated for version 7.52.
games/hedgewars: Added (a free turn based strategy game)
games/ho1: Added (Manager tool for http://hattrick.org game.)
graphics/exif: Fixed version in exif.info
graphics/feh: Updated for version 2.0.
graphics/fritzing: Updated for version 0.6.3b.
graphics/iccprofiles: Added (ICC Profiles for color management workflows)
graphics/separate+: Added (CMYK support for GIMP)
libraries/Botan: Updated for version 1.10.1.
libraries/FreeImage: Updated for version 3.15.0 (+new maintainer)
libraries/libdc1394: Updated for version 2.1.3.
libraries/libebml: Updated for version 1.2.2.
libraries/libmatroska: Updated for version 1.3.0.
libraries/libva: Fix VERSION in .info file
libraries/muParser: Added (A math parser library)
libraries/opencv: Removed old patch.
libraries/qt-assistant-compat: Added (Qt Assistant compatibility)
misc/gcp: Added (file copy tool)
misc/unegg: Added (egg archive extractor)
multimedia/SimpleSysexxer: Added (a MIDI device memory backup tool)
multimedia/google-musicmanager: Added (Music uploader for Google Music)
multimedia/media-player-info: Updated for version 15.
network/claws-mail-extra-plugins: Make plugins easier to define.
network/etherape: Updated for version 0.9.12.
network/icecat: Updated for version 7.0.1.
network/ipv6calc: Updated for version 0.92.0.
network/jboss-as: Added (JBoss Application Server)
network/mumble: Cleanup of script.
network/nateon: Added (instant messenger for the nateon service)
network/opera: Updated for version 11.52.
network/periscope: Updated for version 0.2.4.
network/phpmyadmin: Updated for version 3.4.6.
network/pidgin-nateon: Removed. This no-longer works.
network/pyneighborhood: Added (A windows share browser)
network/shorewall6: Updated for version 4.4.24.1.
network/shorewall: Updated for version 4.4.24.1.
network/smb4k: New homepage/download links.
network/sqlmap: Updated for version 0.9.
network/sqlninja: Updated for version 0.2.5.
network/tor: Updated for version 0.2.2.33.
network/vidalia: Updated for version 0.2.15.
network/xtables-addons: Updated for version 1.39.
office/elyxer: Updated for version 1.2.3.
office/gbgoffice: Added (Bgoffice dictionary frontend)
office/moneydance: Updated for version 2011_b791.
perl/perl-BerkeleyDB: Updated for version 0.49.
perl/perl-Cache-FastMmap: Updated for version 1.39.
perl/perl-Config-IniFiles: Updated for version 2.68.
perl/perl-Convert-UUlib: Updated for version 1.4.
perl/perl-Crypt-OpenSSL-RSA: Updated for version 0.28.
perl/perl-NetAddr-IP: Updated for version 4.048.
python/Mako: Updated for version 0.5.0 (+new category)
python/MarkupSafe: Updated for version 0.15 (+new category)
system/apache-activemq: Added (Apache ActiveMQ)
system/clamav: Updated for version 0.97.3.
system/mjpg-streamer: Added (lightweight video streamer)
system/mjpg-streamer: Fix case of tmp dir.
system/mksh: Upstream review; minor tweaks, updated TaC-mksh.txt added
system/openscap: Added (open source SCAP integration)
system/tiger: Added (Report system security vulnerabilities)
system/upower: Updated for version 0.9.14.
system/virt-manager: Updated for version 0.9.0 (+new maintainer)
system/virtinst: Updated for version 0.600.0 (+new maintainer)
system/vlock: Updated for version 2.2.3.
+--------------------------+
Wed Oct 12 02:21:31 UTC 2011
academic/bibletime: Updated for version 2.8.2.
academic/gcalctool: Added (a graphical UNIX calculator)
academic/genpak: Fix to place libs in the correct directory.
academic/octave: Updated for version 3.4.2.
academic/stellarium: Updated for version 0.11.0.
audio/Pd-extended: various cleanups and enhancements
audio/qmmp: Updated for version 0.5.2.
desktop/AlsaMixer.app: Added (dockapp mixer utility)
desktop/compiz-boxmenu: Fix grammar in README.
desktop/faenza-icon-theme: Updated for version 1.0.
desktop/gtk1-industrial-engine: Added (GTK1 engine and theme)
desktop/gtk1-theme-switch: Added (Theme chooser for GTK1)
desktop/wally: Updated for version 2.4.2.
desktop/wminfo: Updated for version 2.10.
development/Sphinx: Updated for version 1.0.8.
development/alloy: Add desktop and icon files.
development/gedit-plugins: Added (GNOME Text Editor Plugins)
development/gedit: Added (GNOME Text Editor)
development/gtkdialog: Updated for version 0.8.0.
development/netbeans: Updated for version 7.0.1.
development/newlisp: Added (Lisp-like scripting language)
development/orc: Updated for version 0.4.15.
games/xmoto: Updated for version 0.5.8.
games/xye: Added (a puzzle game like sokoban or boulderdash)
graphics/dia: Updated for version 0.97.1 (+new maintainer)
graphics/pngcrush: Updated for version 1.7.17.
libraries/libchewing: Updated for version 0.3.3.
libraries/libmemcached: Updated for version 0.53.
libraries/libmirage: Updated for version 1.4.0.
libraries/libmnl: Added (user-space library for Netlink developers)
libraries/libnetfilter_log: Misc. tweaks - no BUILD changes
libraries/libvirt: Updated for version 0.9.4.
libraries/libvmime-zarafa: Updated for version 0.9.1_p20110328.
libraries/opencv: Updated for version 2.3.1a.
libraries/tamu_anova: Added (Contains both single and two factor ANOVA)
misc/yara: Added (A malware identification and classification tool)
multimedia/flash-player-plugin: Updated for version 11.0.1.152.
multimedia/makemkv: Updated for version 1.6.15.
multimedia/minidlna: Added (mini DLNA server)
multimedia/mkvtoolnix: Updated for version 4.9.1.
multimedia/w_scan: Added (DVB and ATSC channel scanner)
network/arm: Updated for version 1.4.4.1.
network/cacti: Updated for version 0.8.7h.
network/dovecot-pigeonhole: Updated for version 0.2.4.
network/dropbox: Updated for version 1.1.45.
network/icecat: Updated for version 6.0.2.
network/ljpms: Added (LiveJournal backup and maintenance tool)
network/loic: Fix building with recent monodevelop.
network/ntop: Updated for version 4.1.0.
network/offlineimap: Updated for version 6.3.4.
network/openl2tp: Added (Layer Two Tunneling Protocol Version 2)
network/privoxy: Updated for version 3.0.17, new maintainer.
network/qbittorrent: Updated for version 2.8.5.
network/varnish: Added (a state of the art web application accelerator)
network/wireshark: Updated for version 1.6.2.
network/zarafa-webaccess-ajax: Updated for version 7.0.1.
network/zarafa: Updated for version 7.0.1.
office/grisbi: Updated for version 0.8.8.
office/tellico: Updated for version 2.3.4.
system/apcupsd: Updated for version 3.14.9.
system/aqemu: Updated for version 0.8.2.
system/cdemu-client: Updated for version 1.4.0.
system/cdemu-daemon: Updated for version 1.4.0.
system/gcdemu: Added (gtk applet for controlling CDEmu daemon)
system/hardinfo: Added (GTK+2 system information and benchmark tool)
system/image-analyzer: Updated for version 1.4.0.
system/ksh-openbsd: Renamed from "ksh" and updated to 20110909
system/lomoco: Added (Logitech Mouse Control for Linux)
system/postgresql: Updated for version 9.1.1.
system/truecrypt: Updated for version 7.1.
system/vhba-module: Updated for version 20110915.
system/wdfs: Added (webdav filesystem for fuse)
+--------------------------+
Thu Sep 29 22:06:59 UTC 2011
academic/EMBOSS: Added patch with bug-fixes.
academic/PhyML: Updated for version 20110526.
academic/clustalo: Added (protein sequence alignment program)
audio/hydrogen: Fixed doinst.sh installation.
audio/podget: Updated for version 0.6.2.
desktop/bashrun2: Updated for version 0.2.2.
desktop/cwp: Updated for version 1.5.5.
desktop/icewm: Updated for version 1.3.7.
desktop/oxygen-gtk: Updated for version 1.1.2.
desktop/wmname: Added (print/set the window manager name)
development/alloy: Added (lightweight modelling language)
development/apache-maven: Fixed wrong permission
development/avr-binutils: Updated for version 2.21.1.
development/avrdude: Fixed md5sum.
development/gauche: Added (R5RS Scheme implementation)
development/kdiff3: Updated for version 0.9.96.
development/kiwi: Updated for version 1.9.29.
development/nose: Updated for version 1.1.2.
development/spin: Added (model checker)
development/zope.interface: Updated for version 3.7.0.
games/digger: Added (Digger remastered!)
games/gnubg: Updated for version 20110906.
games/lightyears: Updated for version 1.4.
graphics/blender: Fix symlinks to icons in build script
haskell/haskell-HTTP: Updated for version 4000.1.2.
haskell/haskell-MonadCatchIO-mtl: Updated for version 0.3.0.4.
haskell/haskell-dataenc: Updated for version 0.14.0.2.
haskell/haskell-fgl: Updated for version 5.4.2.4.
haskell/haskell-hashed-storage: Updated for version 0.5.8.
haskell/haskell-haskeline: Updated for version 0.6.4.3.
haskell/haskell-network: Updated for version 2.3.0.5.
haskell/haskell-syb: Updated for version 0.3.3.
haskell/haskell-text: Updated for version 0.11.1.5.
haskell/haskell-utf8-string: Updated for version 0.3.7.
haskell/haskell-xhtml: Updated for version 3000.2.0.4.
libraries/Jinja2: Updated for version 2.6.
libraries/SQLObject: Updated for version 1.1.3.
libraries/decorator: Updated for version 3.3.2.
libraries/eeze: Updated for version 1.0.2.
libraries/libmemcached: Updated for version 0.52.
libraries/libotf: Updated for version 0.9.12.
libraries/librelp: Added (a reliable logging library)
libraries/opal: Updated for version 3.6.8 (+new maintainer)
libraries/simplegeneric: Updated for version 0.8.
libraries/yaz: Updated for version 4.2.13.
libraries/zita-resampler: Added (library for resampling audio)
libraries/zope.event: Updated for version 3.5.1.
libraries/zope.i18nmessageid: Updated for version 3.6.1.
libraries/zope.location: Updated for version 3.9.1.
misc/dos2unix: Added (DOS/Mac to Unix and v.v. file conversion)
network/ekiga: Updated for version 3.2.7 (+new maintainer)
network/memcached: Updated for version 1.4.7.
network/phpmyadmin: Updated for version 3.4.5.
network/quassel: Updated for version 0.7.3.
network/shorewall6: Updated for version 4.4.23.3.
network/shorewall: Updated for version 4.4.23.3.
network/vnstat: Updated for version 1.11.
network/w3af: Updated for version 1.0.
office/calcurse: Updated for version 2.9.1.
office/texstudio: Added (LaTeX editor)
python/pycxx: Added (Write Python Extensions in C++)
python/pygoogle: Removed (no longer functional)
python/pysvn: Added (Python SVN extension)
python/python-twisted: Updated for version 11.0.0.
python/python3: Updated for version 3.2.2.
python/subvertpy: Updated for version 0.8.5.
system/clamav: Updated for version 0.97.2 (+new maintainer)
system/numlockx: Fixed homepage / download link.
+--------------------------+
Wed Sep 21 22:54:36 UTC 2011
audio/rosegarden: Updated for version 11.06.
desktop/compiz-boxmenu: Added (fork of compiz-deskmenu)
development/avrdude: Updated for version 5.11.
development/cudatoolkit: Added (parallel computing architecture)
development/mono-debugger: Updated for version 2.10.
development/monodevelop-database: Updated for version 2.6.
development/monodevelop-debugger-gdb: Updated for version 2.6.
development/monodevelop-python: Updated for version 2.6.
development/monodevelop: Updated for version 2.6.
development/wxHexEditor: Updated for version 0.11.
graphics/FreeCAD: Updated for version 0.11.3729.
graphics/gnome-themes-extras: Added (gnome metathemes and icons)
graphics/lilypond: Updated for version 2.14.2.
graphics/mftrace: Updated for version 1.2.17.
graphics/potrace: Updated for version 1.10.
haskell/haskell-base64-bytestring: Added (base64 encoding/decoding)
haskell/haskell-citeproc-hs: Added (implementation of CSL)
haskell/haskell-dlist: Added (differences lists for Haskell)
haskell/haskell-json: Added (JSON implementation for Haskell)
haskell/haskell-pandoc-types: Added (type definitions for Pandoc)
haskell/haskell-tagsoup: Added (HTML/XML parser for Haskell)
haskell/haskell-texmath: Updated for version 0.5.0.1.
libraries/nltk: Updated for version 2.0.1rc1.
misc/g15daemon: Patch to fix Gn keys and suspend fixes.
multimedia/flash-player-plugin: Updated for version 11_rc1.
multimedia/guvcview: Updated for version 1.5.0.
multimedia/makemkv: Added (DVD/Blu-ray ripper and transcoder)
network/claws-mail-extra-plugins: Fixed MD5SUM
network/dillo: Updated for version 2.2.1.
network/ebtables: Added (Ethernet frame filtering on a Linux bridge)
network/ferm: Added (For Easy Rule Making)
network/loic: Added (open source network attack application)
network/phpmyadmin: Updated for version 3.4.4.
network/vidalia: Updated for version 0.2.14.
office/pandoc: Updated for version 1.8.2.1.
perl/perl-File-Slurp: Build clean up, removed ref. to old perl.
perl/perl-xml-sax: Fix doinst.sh path and clean up build.
system/avermedia-a867: Added (AVerMedia A867 DVB-T kernel module)
system/freedup: Added (Duplicate file finder and linker)
system/gpsd: Downgraded to version 2.95 due to API breakage.
system/t1utils: Updated for version 1.37.
+--------------------------+
Tue Sep  6 04:04:19 UTC 2011
academic/gtypist: Updated for version 2.8.5.
academic/mathomatic: Updated for version 15.6.4.
academic/mendeleydesktop: Updated for version 1.0.1.
academic/sage: Updated for version 4.7.1.
desktop/scrotwm: Updated for version 0.9.34.
development/Pivy: Updated for version hg_20101207.
development/bigloo: Added (Bigloo Scheme implementation)
development/tig: Updated for version 0.18.
development/valgrind: Apply upstream patches to fix a bug.
games/bsnes: Updated for version 0.082.
games/ltris: Updated for version 1.0.17.
games/openttd: Updated for version 1.1.2.
games/playonlinux: Updated for version 4.0.9.
games/snes9x: Updated for version 1.53.
graphics/OpenCASCADE: Updated for version 6.5.1.
graphics/feh: Updated for version 1.15.1.
libraries/Botan: Updated for version 1.8.13.
libraries/Net-SSLeay: Updated for version 1.36.
libraries/argparse: Updated for version 1.2.1.
libraries/fltk2: Updated for version 2.0.x_alpha_r8800.
libraries/foolscap: Updated for version 0.6.1.
libraries/imlib2: Updated for version 1.4.5.
libraries/libmicrohttpd: Updated for version 0.9.13.
libraries/libmodplug: Updated for version 0.8.8.4.
libraries/newt: Updated for version 0.52.13.
libraries/ptlib: Updated for version 2.6.7.
libraries/zbase32: Updated for version 1.1.3.
libraries/zfec: Updated for version 1.4.22.
multimedia/lircaile: Updated for version 0.3.0.
multimedia/tovid: Updated for version 0.34.
network/aMule: Control building some optimal features.
network/amap: Updated for version 5.4.
network/deluge: Updated for version 1.3.3.
network/filezilla: Updated for version 3.5.1.
network/frostwire: Updated for version 5.1.4.
network/mod_perl: Updated for version 2.0.5.
network/openvswitch: Updated for version 1.2.1.
network/tor: Updated for version 0.2.2.32.
office/kmymoney: Updated for version 4.6.0.
office/openoffice.org: Added (yes, re-added)
office/sigil: Updated for version 0.4.2.
office/task: Updated for version 1.9.4 and moved from misc.
office/xpad: Updated for version 4.0.
python/Pyro: Updated for version 3.14.
python/pyOpenSSL: Updated for version 0.12.
python/pyPdf: Updated for version 1.13.
python/pycryptopp: Updated for version 0.5.29.
python/pyutil: Updated for version 1.8.4.
system/kvm-kmod: Updated for version 3.0b.
system/laptop-mode-tools: Updated for version 1.59.
system/mariadb: Updated for version 5.2.8.
system/mksh: Updated for version R40b.
system/sakura: Updated for version 2.4.2.
system/slack-utils: Updated for version 0.6.2.
+--------------------------+
Mon Sep  5 01:02:24 UTC 2011
academic/EMBASSY: Added (EMBOSS associated software)
academic/EMBOSS: Added (European Molecular Biology OSS)
academic/PhyML: Added (Phylogeny software)
academic/amplicon: Added (Design PCR primers)
academic/arka: Added (A GUI for genpak)
academic/celestia: Updated for version 1.6.1.
academic/clustalw: Added (Multiple Sequence Alignment)
academic/clustalx: Added (Multiple Sequence Alignment GUI)
academic/genpak: Added (Utilities to manipulate DNA sequences)
academic/gp2fasta: Added (Convert gp files to fasta)
academic/isoelectric-point: Added (Isoelectric point calculator)
academic/lalnview: Added (Visualize local alignments)
academic/muscle: Added (A multiple sequence alignments program)
academic/perlprimer: Added (Design primers for PCR and sequencing)
academic/plasmidomics: Added (Plasmid Drawing Program)
academic/primer3: Added (Design PCR primers)
academic/seaview: Added (sequence alignment and phylogeny GUI)
academic/sequence-analysis: Added (Biologic sequences analysis)
academic/spidey: Added (mRNA-to-genomic alignment)
audio/gnomad2: Updated for version 2.9.6.
audio/jack-audio-connection-kit: Updated for version 0.121.2.
desktop/xcm: Added (colour management tool)
development/nexus: Updated download location.
development/tiled-qt: Added (Tiled map editor)
development/viewvc: Updated for version 1.1.11.
development/vile: Updated for version 9.8e.
development/xvile: Updated for version 9.8e.
games/freeciv: Updated for version 2.2.7.
games/warmux: Updated for version 11.04.1.
graphics/LDraw_data: Updated for version 201101.
graphics/brlcad: Updated for version 7.20.2.
graphics/oyranos: Added (Colour Management System)
graphics/qcomicbook: Updated for version 0.8.1.
libraries/PDFlib-Lite: Added (A library to generate PDF files)
libraries/gl2ps: Added (OpenGL to PostScript printing library)
libraries/libXcm: Added (implementation of the net-color spec)
libraries/libalkimia: Added (KDE finance library)
libraries/libssh: Updated for version 0.5.1.
multimedia/flash-player-plugin: Updated for version 11_b2.
multimedia/minitube: Updated for version 1.5.
multimedia/miro: Updated for version 4.0.3.
multimedia/parole: Added (GStreamer based media player)
network/GeoIP: Updated for version 1.4.8.
network/cclive: Updated for version 0.7.5.
network/claws-mail-extra-plugins: Updated for version 3.7.10.
network/claws-mail: Updated for version 3.7.10.
network/ddclient: Updated for version 3.8.1.
network/ipset: Added (administration tool for IP sets)
network/leafnode: Updated for version 2.0.0.alpha20110807a.
network/nagios: Updated for version 3.3.1.
network/opera: Updated for version 11.51.
network/quvi: Updated for version 0.2.19.
network/rt3xxx: Updated e-mail maintainer + cleanup script.
network/transmission: Updated for version 2.33.
network/uwsgi: Updated for version 0.9.8.3.
network/zabbix_agentd: Updated for version 1.8.6.
network/zabbix_proxy: Updated for version 1.8.6.
network/zabbix_server: Updated for version 1.8.6.
office/libreoffice-langpack: Updated for version 3.4.3.
office/libreoffice: Updated for version 3.4.3.
office/nts: Updated for version 82.
office/texlive: Included some patches from branch2011
python/paramiko: Updated for version 1.7.7.1.
system/freefont: Updated for version 20100919 (+ new maintainer)
system/herculesstudio: Updated for version 1.3.0.
system/nvidia-driver: Updated for version 280.13.
system/nvidia-kernel: Updated for version 280.13.
system/oss: Updated for version 4.2.2005.
system/p7zip: Updated for version 9.20.1.
system/unalz: Updated e-mail mainainer + cleanup script.
system/unhide: Added (utility for discovering hidden processes)
+--------------------------+
Mon Aug 29 00:53:28 UTC 2011
academic/GMT: Updated for version 4.5.7.
academic/R: Updated for version 2.13.1.
academic/gelemental: Added (A periodic table viewer)
academic/gpredict: Updated for version 1.3.
academic/mathomatic: Updated for version 15.6.3 (+new maintainer)
academic/pianobooster: Added (educational music software)
audio/bristol: Updated for version 0.60.8 (+new maintainer)
audio/fantasia: Added (Java-based GUI frontend for LinuxSampler)
audio/fluidsynth-dssi: Added (DSSI plugin wrapper for FluidSynth)
audio/ghostess: Added (graphical DSSI host)
audio/horgand: Added (organ sounds softsynth)
audio/invada_studio_plugins_lv2: Added (Audio plugins for LV2)
audio/jack-rack: Added (LADSPA effects host)
audio/jack-tools: Added (tools for jack)
audio/millenium-plugins: Added (LADSPA audio effects plugins)
audio/pavucontrol: Fix minor typo
audio/pulseaudio: Fix minor typo
audio/qmidiroute: Added (MIDI router and filter utility)
audio/sfc: Added (midi router)
audio/vcf_plugins: Added (LADSPA plugins)
audio/volumeicon: Updated for version 0.4.3.
audio/xsynth-dssi: Added (software synthesizer)
audio/zita-rev1: Added (reverb audio effect)
desktop/wmSun: Updated for version 1.10.
desktop/wminfo: Updated for version 2.00.
development/love: Added (Lua 2D game development framework)
development/premake: Added (build configuration tool)
games/xskat: Updated e-mail maintainer + misc. cleanups.
graphics/aeskulap: Added (medical image viewer)
graphics/goocanvas: Updated for version 0.15.
graphics/raw-thumbnailer: Updated for version 0.2.1.
libraries/ETL: Added (Extended Template Library)
libraries/alsa-plugins: Mark this APPROVED
libraries/yajl: Updated download location.
misc/xlog: Updated for version 2.0.5.
multimedia/xjadeo: Added (software video player)
network/ModemManager: Updated for version 0.5.
network/axel: Added (Download Accelerator)
network/choqok: Updated for version 1.1.
network/cmdiag: Added (cable modem diagnostics tool)
network/mobile-broadband-provider-info: Updated for version 20110511
network/modsecurity-apache: Added (a web application firewall)
network/openvswitch: Added (multilayer virtual switch)
office/notmuch: Added (fast mail indexer for maildir)
office/pdfshuffler: Added (python pdf manipulator)
python/pyfeed: Added (module to manipulate syndications feeds)
python/xe: Added (XML Elements python module)
system/gphotofs: Added (FUSE filesystem for cameras)
system/isomd5sum: Added (MD5 checksums within an ISO9660 image)
system/kegs: Added (Kent's Emulated GS)
system/qemu-kvm: Updated for version 0.15.0.
+--------------------------+
Thu Aug 11 23:33:00 UTC 2011
academic/coq: Added (The Coq Proof Assistant)
academic/ess: Added (Emacs Speaks Statistics)
academic/qgis: Updated for version 1.7.0.
academic/sage: Added (python based mathematics software)
academic/smath-studio: Added (computer algebra system)
audio/lv2dynparam1: Added (dynamic parameter extension for LV2)
audio/mpd: Updated for version 0.16.3.
audio/mpdscribble: Updated for version 0.22.
audio/nnls-chroma: Added (vamp plugin library)
audio/qm-vamp-plugins: Added (audio feature extraction plugins)
audio/qmpdclient: Added (Qt4 mpd client)
audio/schismtracker: Updated for version 20110101.
audio/seq24: Updated for version 0.9.2 + moved (multimedia->audio)
audio/sonic-visualiser: Added (audio file visualiser)
audio/swami: Added (Sampled Waveforms And Musical Instruments)
audio/tap_plugins: Added (audio plugins for LADSPA)
audio/whysynth: Added (A DSSI Softsynth Plugin)
audio/zynjacku: Added (LV2 synth host, includes lv2rack)
business/ledger: Added (a command-line accounting program)
desktop/dmenu: Revert to the dmenu_path script from 4.1.1
development/camlp5: Updated for version 6.02.3 (+new maintainer)
development/cream: Added (modern configuration of VIM)
development/generatorrunner: Updated for version 0.6.11.
development/mono-basic: Added (Visual Basic.NET support for Mono)
development/nexus: Added (Maven repository manager)
development/pyside-tools: Updated for version 0.2.12.
development/scite: Updated for version 2.27.
development/shiboken: Updated for version 1.0.5.
development/zile: Updated for version 2.3.24.
games/bsnes: Updated for version 0.080.
games/darkplaces: Updated for version 20110628.
games/puzzles: Bumped build for new tarball from upstream
games/scid: Updated for version 4.3.
games/vbam: Updated for version r1001.
games/warzone2100: Updated for version 2.3.8.
graphics/PerlMagick: Added (Perl frontend to Image Magick)
graphics/autopano-sift-C: Changed maintainer
graphics/darktable: Updated for version 0.9.
graphics/enblend-enfuse: Changed maintainer
graphics/hugin: Updated for version 2011.0.0 (+new maintainer)
graphics/leocad_pieces: Updated for version 4806.
graphics/qrencode: Added (QR code library and application)
libraries/Jinja2: Fixed typo in build script
libraries/OpenAL: Updated for version 1.13.
libraries/Smarty: (PHP template engine)
libraries/apiextractor: Updated for version 0.10.5.
libraries/exiftool: Updated for version 8.60.
libraries/fcgi: Added (Fast CGI library)
libraries/gdal: Updated for version 1.8.1.
libraries/geshi: Added (Generic Syntax Highlighter)
libraries/hamlib: Updated for version 1.2.14.
libraries/libdmapsharing: Updated for version 2.1.9.
libraries/libinstpatch: Added (digital sample processing library)
libraries/libpano13: Updated for version 2.9.18 (+new maintainer)
libraries/libupnp: Added (Portable SDK for UPnP Devices)
libraries/log4net: Minor build fixes.
libraries/opencv: Updated for version 2.3.0.
libraries/totem-pl-parser: Updated for version 2.32.5.
libraries/yaz: Updated for version 4.2.6.
misc/klibc: Updated for version 1.5.23.
misc/lxappearance: Updated for version 0.5.1.
misc/owfs: Added (1-Wire File System)
multimedia/devede: Updated for version 3.17.0.
multimedia/gecko-mediaplayer: Included some patches for Apple Trailers
multimedia/gnome-mplayer: Included some patches for Apple Trailers
multimedia/gst-plugins-bad: Updated for version 0.10.21.
multimedia/gst-plugins-ugly: Updated for version 0.10.18.
multimedia/kaffeine: Updated for version 1.2.2.
network/RSSOwl: Updated for version 2.1.
network/gtmess: Added (Console based MSN-client)
network/icecat: Updated for version 5.0.
network/identicurse: Added (status.net microblogging client)
network/keepalived: Updated for version 1.2.2.
network/nginx: Updated for version 1.0.5.
network/phpmyadmin: Updated for version 3.4.3.2.
network/pidgin-sipe: Patched for pidgin >= 2.8.0
network/quassel: Updated for version 0.7.2.
network/shorewall6: Updated for version 4.4.22.1.
network/shorewall: Updated for version 4.4.22.1.
network/spamassassin: Updated for version 3.3.2.
network/sshfs-fuse: Moved from System (and bumped to 2.3)
network/surfraw: Updated for version 2.2.8.
network/teamviewer: Updated for version 6.0.9258.
network/wireshark: Updated for version 1.6.1.
office/chmsee: Added (an HTML Help viewer for Unix/Linux)
office/libreoffice-langpack: Updated for version 3.4.2.
office/libreoffice: Updated for version 3.4.2.
office/mu: Added (fast mail indexer and search tool)
office/mupdf: Fix man pages location.
office/texlive: Updated for version 20110705.
python/SimpleParse: Added (A Parser Generator for Python)
python/distribute: Updated for version 0.6.19.
python/geopy: Added (A Geocoding Toolbox for Python)
python/gerbmerge: Added (A Gerber-file merging program)
python/html2text: Added (Python HTML-to-text converter)
python/pip: Updated for version 1.0.2.
python/pypoppler: Reverted pypoppler-0.12.1-76_75.diff
python/pyserial: Updated for version 2.5.
python/pyside: Updated for version qt4.7+1.0.5.
python/virtualenv: Moved from Libraries (and bumped to 1.6.4)
system/cdw: Updated for version 0.7.0.
system/cdwrite: Added (CD/DVD reading/writing/encoding shell)
system/gparted: Updated for version 0.9.0.
system/jenkins: Added (automated job monitor)
system/microemulator: Added (J2ME emulator)
system/nanum-coding-fonts-ttf: Added (Korean fixed width TrueType Fonts)
system/nanum-fonts-ttf: Added (Korean TrueType Fonts)
system/os-prober: Updated for version 1.42.
system/parallel: Updated for version 20110722.
system/st: Added (a simple terminal implementation for X)
system/tmux: Updated for version 1.5.
system/xen: Updated for version 4.1.1.
system/xjobs: Updated for version 20110724.
system/zeroinstall-injector: Updated for version 1.2.
+--------------------------+
Fri Jul 22 03:53:33 UTC 2011
Greetings!  Thanks to the generous donations of the Slackware community,
  all of the services that were previously running on cardinal.lizella.net
  have been moved to http://harrier.slackbuilds.org - have a look, and in
  particular, check out the 'contributors' page.  Thanks again; enjoy!
academic/tuxmath: Updated for version 2.0.3.
audio/SuperCollider: Updated for version 3.4.3.
audio/audacity: Updated for version 1.3.13.
audio/grip2: Added (replaces multimedia/grip)
audio/mp3splt-gtk: Updated for version 0.7.
audio/mp3splt: Updated for version 2.4.
audio/paprefs: Added (PulseAudio Preferences)
audio/pavucontrol: Added (Pulse Audio Volume Controller)
audio/pianobar: Updated for version 2011.07.09.
audio/puddletag: Updated for version 0.10.6.
audio/pulseaudio: Added (Pulse Audio Sound Server)
audio/tapiir: Added (software multitap delay w/ realtime audio I/O)
business/gnucash: Updated for version 2.4.5.
desktop/QtCurve-Gtk2: Updated for version 1.8.9.
desktop/QtCurve-KDE4: Updated for version 1.8.8.
desktop/avant-window-navigator: Added (Awn is a dock-like bar)
desktop/italc: Added (didactical tool for teachers)
desktop/metacity: Updated for version 2.34.0.
desktop/wbar: Updated for version 2.2.2.
desktop/wmudmount: Added (Filesystem mounter)
development/Sphinx: Updated for version 1.0.7.
development/cvsps: Added (cvs patchset generator)
development/dejagnu: Updated for version 1.5.
development/monodevelop: Updated for version 2.4.2.
development/numexpr: Updated for version 1.4.2.
development/sbcl: Updated for version 1.0.50.
development/setuptools-git: Updated for version 0.4.2 + name change
games/gbrainy: Updated for version 1.65.
games/puzzles: Added (puzzle games)
graphics/comix: Update info.
graphics/exact-image: Updated for version 0.8.6.
graphics/pngcrush: Added (optimizer for PNG)
graphics/whyteboard: Updated for version 0.41.1.
libraries/SQLObject: Updated for version 1.0.1.
libraries/alsa-plugins: Added (ALSA Plugins)
libraries/fox-toolkit: Fixed download link
libraries/gconfmm: Added (C++ bindings for GConf)
libraries/lcms2: Updated for version 2.2.
libraries/libasyncns: Added (asynchronous name query library)
libraries/libdesktop-agnostic: Added (desktop framework)
libraries/libdmapsharing: Updated info.
libraries/libmemcached: Updated for version 0.49.
libraries/libmp3splt: Updated for version 0.7.
libraries/libsunpinyin: Added (Chinese input method library)
libraries/libxml++: Updated for version 2.34.1.
libraries/log4net: Updated info.
libraries/nini: Updated info.
libraries/ois: Added (Oriented Input System)
libraries/rxtx: Updated for version 2.2pre2.
libraries/t4k_common: Updated for version 0.1.1.
libraries/xulrunner: Updated for version 1.9.2.18.
misc/ibus-fbterm: Added (input method for fbterm)
misc/ibus-hangul: Added (korean input engine for ibus)
misc/ibus-sunpinyin: Added (ibus wrapper for sunpinyin)
misc/ssss: Added (Shamir's Secret Sharing Scheme)
misc/sunpinyin: Removed (replaced by libraries/libsunpinyin)
multimedia/ccxstream: Added (Streaming media server for XBMC)
multimedia/cinelerra: Updated for version cv_2.1.5.
multimedia/farsight2: Updated for version 0.0.27.
multimedia/gecko-mediaplayer: Updated for version 1.0.4.
multimedia/grip: Removed (replaced by audio/grip2)
multimedia/miro: Updated for version 4.0.1.1.
multimedia/realplayer: Added (RealPlayer for Linux)
multimedia/smplayer: Removed (replaced by umplayer)
multimedia/umplayer: Added (Universal Media Player)
network/bitlbee: Updated for version 3.0.3.
network/cclive: Updated for version 0.7.3.1.
network/knemo: Updated for version 0.7.1.
network/ldapvi: Added (interactive LDAP client for Unix terminals)
network/memcached: Updated for version 1.4.6 + new maintainer.
network/mew: Updated for version 6.3.51.
network/offlineimap: Updated for version 6.3.3.
network/onioncat: Added (transparent IP layer on tor)
network/pidgin-extprefs: Added (additional preferences plugin)
network/policyd2: Updated for version 2.0.11.
network/shorewall6: Updated for version 4.4.21.
network/shorewall: Updated for version 4.4.21.
network/thrift: Added (Apache Thrift Framework)
office/apvlv: Added (a PDF viewer which uses Vim keybindigs)
office/freemind: Updated for version 0.9.0.
office/kbibtex: Added (A BibTeX editor for KDE)
perl/libpurple-kwallet-plugin: Added (pidgin kwallet plugin)
perl/perl-BerkeleyDB: Updated for version 0.48.
perl/perl-MailTools: Updated for version 2.08.
perl/perl-net-dbus: Miscellaneous cleanup to build script
perl/perl-test-warn: Updated for version 0.23.
perl/perl-www-mechanize: Updated for version 1.68.
python/hgsubversion: Added (Mercurial extension for SVN)
python/pytables: Updated for version 2.2.1.
python/python3: Updated for version 3.2.1.
system/cdfs: Fix depmod call in doinst + cleanup.
system/crashplan: Added (on and off-site backup)
system/gnu-fdisk: Updated for version 1.2.5.
system/mksh: Added (MirBSD Korn Shell)
system/ov51x-jpeg: Added (kernel module for ov51x webcams)
system/pbzip2: Updated for version 1.1.5.
system/rxvt-unicode: Updated for version 9.12.
system/squashfs-tools: Added (SquashFS userspace tools)
system/xen: Added (the Xen virtualization hypervisor)
+--------------------------+
Fri Jul 15 01:06:47 UTC 2011
academic/R: Added (statistical computing language and environment)
academic/avogadro: Updated for version 1.0.3.
academic/genius: Updated for version 1.0.12.
academic/gwyddion: Updated for version 2.25.
accessibility/xsel: Added (X selection tool)
audio/aeolus: Added (pipe organ emulator)
audio/ario: Updated for version 1.5.
audio/calf: Added (audio plugin pack for LADSPA, DSSI, LV2 and JACK)
audio/clthreads: Added (Threads library for aeolus)
audio/clxclient: Added (X library for aeolus)
audio/cmt: Added patch to avoid double-free aborts.
audio/dssi-vst: Added (VST wrapper plugin)
audio/ecasound: Added (multitrack audio processing)
audio/guitarix: Added (rock guitar amplifier for linux)
audio/jack-keyboard: Added (virtual MIDI keyboard)
audio/jack_capture: Added (jack-based audio recorder)
audio/jack_capture: Fix permissions of .desktop and icons.
audio/jack_delay: Added (measure the latency of your sound card)
audio/kid3: Updated for version 1.6.
audio/kradio: Updated info.
audio/llcon: Updated for version 3.1.2 and moved from multimedia.
audio/mpc123: Removed (required dep is unavailable)
audio/pd: Changed maintainer
audio/quodlibet: Updated for version 2.3.
audio/rakarrack: Updated for version 0.6.1.
audio/rubberband: Updated for versio 1.6.0.
audio/stops: Added (Sound definitions for aeolus)
audio/swh-plugins-lv2: Added (GPL audio plugins for LV2)
audio/vamp-plugin-sdk: Updated to fix plugin path on x86_64.
audio/vamp-plugin-sdk: Use a profile script to set plugin path.
audio/volumeicon: Updated for version 0.4.1.
audio/waon: Added (Wave-to-Notes transcriber)
audio/wavbreaker: Added (wave file splitter)
desktop/bashrun2: Updated for version 0.2.1.
desktop/cairo-dock-plugins: Updated for version 2.3.0~2.
desktop/cairo-dock: Updated for version 2.3.0~2.
desktop/crystal: Updated for version 2.1.0.
desktop/cwp: Updated for version 1.5.4.
desktop/dmenu: Updated for version 4.3.1.
desktop/faenza-icon-theme: Added (icon theme)
desktop/i3: Updated for version 3.e_bf3
desktop/maitreya: Updated for version 6.0.3.
desktop/murrine: Updated for version 0.98.1.1.
desktop/obmenu: Included *-help files.
desktop/oxygen-gtk: Updated for version 1.1.0.
desktop/parcellite: Updated for version 1.0.2rc2.
desktop/pclock: Updated website info.
desktop/recoll: Updated for version 1.15.8.
desktop/scrotwm: Updated for version 0.9.32.
desktop/smooth-tasks: Updated for version wip_2010-11-06.
desktop/subtle: Added (ruby based tiling WM)
desktop/wminfo: Updated website info.
desktop/wmmixer: Updated website info and fixed manpages.
desktop/wmmixer: Updated website info and fixed manpages.
desktop/wmsm.app: Updated website info.
desktop/xfce4-xkb-plugin: Fixed display of Bosnia/Herzegovina flag
development/cgit: Added (web frontend for git repositories)
development/darcs: Updated for version 2.5.2.
development/dissy: Added (graphical objdump disassembler)
development/fpc: Updated for version 2.4.4.
development/freetds: Added (Tabular Data Stream protocol)
development/kdevelop-pg-qt: Added (KDevelop Parser Generator)
development/kdevelop-php-docs: Added (kdevelop php.net docs)
development/kdevelop-php: Added (kdevelop php plugin)
development/lazarus: Updated for version 0.9.30.
development/mono-addins: Updated for version 0.6.1.
development/qt-creator: Updated for version 2.2.0.
development/tea: Renamed from teagtk + updated for version 30.0.0
development/xdebug: Updated for version 2.1.1.
games/abuse: Added (dark 2D side-scrolling platform game)
games/fceux: Updated for version 2.1.5.
games/gargoyle: Added (interactive fiction interpreter)
games/mame: Updated for version 0.143.
games/pushover: Added (puzzle game)
games/pushover: Added dependency information to README.
games/qmc2: Updated for version 0.2.b20.
games/zaz: Added (puzzle game)
graphics/GPS: Added (GIMP Paint Studio)
graphics/blender: Updated for version 2.58.
graphics/gbdfed: Added (bitmap font editor)
graphics/gthumb: Updated for version 2.13.2.
graphics/leocad: Updated for version 0.75.2.
graphics/leocad_pieces: Updated for version 4351.
graphics/mirage: Updated for version 0.9.5.2.
graphics/pinta: Updated for version 1.0.
graphics/rawstudio: Added (read and manipulate RAW images)
graphics/ufraw: Updated for version 0.18.
libraries/GeoIP-Python: Updated for version 1.2.5.
libraries/cfitsio: Updated for version 3.28.
libraries/clalsadrv: Added (Alsa library for Aeolus)
libraries/equinox: Updated for version 1.50.
libraries/gnonlin: Updated for version 0.10.17.
libraries/gtk-sharp: Updated for version 2.12.10.
libraries/gtkglextmm: Added (C++ wrapper for GtkGLExt)
libraries/jbig2dec: Added (a JBIG2 decoder)
libraries/libbsd: Updated for version 0.3.0.
libraries/libmediainfo: Updated for version 0.7.45.
libraries/libnice: Updated for version 0.1.0.
libraries/libsigc++-legacy12: Added (C++ typesafe callback system)
libraries/libtorrent: Updated for version 0.12.9.
libraries/libzen: Updated for version 0.4.20.
libraries/msn-pecan: Updated for version 0.1.2.
libraries/pylibpcap: Added (python libcap library)
libraries/wxPython: Updated for version 2.8.12.0.
libraries/yajl: Updated for version 2.0.1.
misc/ascii: Updated for version 3.11.
misc/gnu-unifont: Updated info and minor tweaks.
misc/linux_logo: Added (Linux Logo Banners)
misc/wkhtmltopdf: Added (convert html to pdf using QtWebkit)
multimedia/a2jmidid: Added (ALSA-to-Jack midi daemon)
multimedia/cowbell: Added dependency to README.
multimedia/exaile: Updated for version 0.3.2.1.
multimedia/flash-player-plugin: Updated for version 11b1.
multimedia/gnome-mplayer: Updated for version 1.0.4.
multimedia/kdenlive: Updated for version 0.8.
multimedia/mediainfo-gui: Updated for version 0.7.45.
multimedia/mediainfo: Updated for version 0.7.45.
multimedia/mimms: Added (mms stream downloader)
multimedia/seq24: Fix "SlackBuild/Slackbuild" spelling.
multimedia/vmpk: Added (Virtual Midi Piano Keyboard)
network/ApacheDirectoryStudio: Added (eclipse based LDAP browser)
network/C-IP2Location: Added (Geo IP library)
network/amavisd-new: Updated for version 2.6.6.
network/bip: Added (irc proxy server with SSL support)
network/chromium: Updated for version 11.0.696.60.
network/dnstop: Updated for version 20110127.
network/dovecot-pigeonhole: Updated for version 0.2.3.
network/etherape: Updated for version 0.9.10.
network/filezilla: Updated for version 3.5.0.
network/ipv6calc: Added (utility to convert IPv6 addresses)
network/linuxdcpp: Updated for version 1.1.0.
network/mangler: Updated for version 1.2.2.
network/mrtg: Updated for version 2.17.2.
network/nginx: Updated for version 1.0.4.
network/opera: Fix the package type reported by the build
network/opera: Updated for version 11.50.
network/phpmyadmin: Updated for version 3.4.3.1.
network/pidgin-nateon: Updated maintainer email.
network/qbittorrent: Updated for version 2.7.2.
network/rtorrent: Updated for version 0.8.9.
network/sieve-connect: Updated for version 0.81.
network/socat: Updated for version 1.7.1.3.
network/tor: Updated rc.tor to remove hardcoded values, other fixes.
network/torsocks: Added (socks friendly usage with tor)
network/transmission: Updated for version 2.31.
network/tucan: Updated for version 0.3.10.
network/vidalia: Updated for version 0.2.12.
office/akonadi-googledata: Updated for version 1.2.0.
office/beaver: Updated for version 0.4.1.
office/calcurse: Updated for version 2.9.0.
office/elyxer: Updated for version 1.2.2.
office/epdfview: Updated for version 0.1.8.
office/etm: Added (event and task manager for console and GUI)
office/libreoffice-langpack: Updated for version 3.4.0.
office/libreoffice: Updated for version 3.4.0.
office/mairix: Added (fast mail indexer and search tool)
office/mupdf: Added (lightweight PDF viewer and toolkit)
office/nts: Added (fast note taking and organizing tool)
office/pdf2djvu: Updated for version 0.7.7.
office/qamus: Added (desktop dictionary)
office/tnote: Added (fast note taking tool)
perl/perl-Net-Daemon: Updated for version 0.48.
perl/perl-Test-Deep: Added (Extremely flexible deep comparison)
perl/perl-Text-CSV_XS: Added (perl module)
perl/perl-http-server-simple: Updated for version 0.44.
python/Pyro: Added (PYthon Remote Objects)
python/dnspython: Updated for version 1.9.4.
python/dpkt: Added (python TCP/IP packet library)
python/dulwich: Added (implementation of Git formats and protocols)
python/gst-python: Updated for version 0.10.21.
python/hg-git: Added (Mercurial to Git extension)
python/lxml: Updated for version 2.3 and moved from libraries.
python/python-cheetah: Added (Python-Powered Template Engine)
python/python-distutils-extra: Updated for version 2.27.
python/python-musicbrainz2: Updated for version 0.7.3.
python/subvertpy: Updated for version 0.8.0.
system/FreeFileSync: Added (graphical backup tool)
system/apache-tomcat: Updated for version 7.0.16.
system/autojump: Updated for version 15.
system/backintime: Updated for version 1.0.8.
system/driconf: Added (DRI Configuration Applet)
system/dump: Fix "SlackBuild/Slackbuild" spelling.
system/fdupes: Updated for version 1.50_PR2.
system/file-roller: Updated for version 2.32.2.
system/grub2: Updated for version 1.99.
system/incron: Added (inotify cron system)
system/innotop: Added (MySQL / InnoDB monitor application)
system/inxi: Added (full featured system information script)
system/ksh: Updated for new patches.
system/maatkit: Added (CLI database helper tools)
system/mbr: Updated info and minor tweaks.
system/mytop: Added. (a top clone for MySQL)
system/nvidia-driver: Updated for version 275.09.07.
system/nvidia-kernel: Updated for version 275.09.07.
system/opensc: Updated for version 0.12.1.
system/parallel: Updated for version 20110622.
system/pbzip2: Updated for version 1.1.4.
system/pcsc-lite: Updated for version 1.7.2.
system/pcsc-perl: Updated for version 1.4.12.
system/python-ranger: Removed (renamed to system/ranger)
system/ranger: Added (curses file manager that uses vi/vim bindings)
system/rdup: Updated for version 1.1.11.
system/roxterm: Updated for version 1.22.1.
system/rxvt-unicode: Updated for version 9.11.
system/slack-utils: Added. (utilities and Ruby library, for Slackware)
system/stress: Added (stress test utility)
system/tmux: Updated for version 1.4.
system/ttf-ubuntu-font-family: Updated for version 0.71.2.
system/unrar: Updated for version 4.0.7.
system/vhba-module: Updated for version 20110416.
system/vice: Changed maintainer
system/wine: Updated for version 1.2.3.
Mon Jun 20 04:18:29 UTC 2011
academic/octave: Updated for version 3.4.0.
accessibility/espeak: Updated for version 1.45.04.
accessibility/wgetpaste: Updated for version 2.18.
audio/a52dec: Updated maintainer information.
audio/aften: Updated maintainer information.
audio/fluid-soundfont: Added (Fluid General MIDI SoundFont)
audio/volti: Added (gtk+ alsa volume control applet)
desktop/rootactions_servicemenu: Updated for version 2.7.1.
development/Pygments: Updated for version 1.4.
development/acpica: Updated for version 20110527.
development/autogen: Updated for version 5.11.9.
development/avr-gcc: Updated for version 4.5.3.
development/bpython: Updated for version 0.9.7.1.
development/gaphor: Updated for version 0.17.0.
development/gsoap: Updated for version 2.8.2.
development/open-cobol: Added (open-source COBOL compiler)
development/pcc-libs: Added (C Library for the Portable C Compiler)
development/pcc: Added (Portable C Compiler)
development/pychecker: Updated for version 0.8.19.
games/bsnes: Updated for version 0.079.
games/hatari: Updated for version 1.4.0.
games/warsow: Updated for version 0.62.
games/wesnoth: Updated for version 1.8.6.
graphics/dcraw: Updated for version 9.08.
haskell-haskell-regex-compat: Updated for version 0.95.1.
haskell/ghc: Updated for version 7.0.3.
haskell/haskell-MonadCatchIO-mtl: Updated for version 0.3.0.2.
haskell/haskell-QuickCheck: Updated for version 2.4.1.1.
haskell/haskell-dataenc: Updated for version 0.14.
haskell/haskell-hashed-storage: Updated for version 0.5.7.
haskell/haskell-haskeline: Updated for version 0.6.4.0.
haskell/haskell-network: Updated for version 2.3.0.3.
haskell/haskell-parsec: Updated for version 3.1.1.
haskell/haskell-regex-posix: Updated for version 0.95.1.
haskell/haskell-syb: Updated for version 0.3.2.
haskell/haskell-test-framework-quickcheck2: Updated for version 0.2.10.
haskell/haskell-test-framework: Updated for version 0.4.0.
haskell/haskell-text: Updated for version 0.11.0.8.
haskell/haskell-zip-archive: Updated for version 0.1.1.7.
haskell/haskell-zlib: Updated for version 0.5.3.1.
libraries/AMD: Updated for version 2.2.2.
libraries/BTF: Updated for version 1.1.2.
libraries/CAMD: Updated for version 2.2.2.
libraries/CCOLAMD: Updated for version 2.7.3.
libraries/CHOLMOD: Updated for version 1.7.3.
libraries/COLAMD: Updated for version 2.7.3.
libraries/CXSparse: Updated for version 2.2.5.
libraries/FormEncode: Updated for version 1.2.4.
libraries/GConf: Updated for version 2.32.4.
libraries/KLU: Updated for version 1.1.2.
libraries/LDL: Updated for version 2.0.3.
libraries/SPQR: Updated for version 1.2.2.
libraries/UMFPACK: Updated for version 5.5.1.
libraries/ZConfig: Updated for version 2.9.0.
libraries/ZODB3: Updated for version 3.10.3.
libraries/barry: Updated for version 0.17.1.
libraries/blas: Updated for version 20110419.
libraries/decorator: Updated for version 3.3.1.
libraries/e_dbus: Updated for version 1.0.1.
libraries/ecore: Updated for version 1.0.1.
libraries/edje: Updated for version 1.0.1.
libraries/eet: Updated for version 1.4.1.
libraries/eeze: Updated for version 1.0.1.
libraries/efreet: Updated for version 1.0.1.
libraries/eina: Updated for version 1.0.1.
libraries/evas: Updated for version 1.0.1.
libraries/ftgl: Updated maintainer information.
libraries/glibmm: Updated for version 2.28.2.
libraries/hdf5: Updated for version 1.8.7.
libraries/libdca: Updated maintainer information.
libraries/libedit: Updated for version 20110227_3.0.
libraries/simplejson: Moved to python.
libraries/simplejson: Updated for version 2.1.6.
libraries/virtualenv: Updated for version 1.6.1.
misc/cups-windows: Updated maintainer email
multimedia/GoogleEarth: Updated for version 6.0.3.2197.
multimedia/flash-player-plugin: Updated for version 10.3_r181.
multimedia/mplayer-codecs: Fixed download links
network/NetworkManager: Noted startup info in README
network/NetworkManager-openvpn: Noted gnome-keyring dep in README
network/arm: Updated for version 1.4.2.3.
network/efax-gtk: Updated for version 3.2.8.
network/leafnode: Included upstream patch for texpire
network/psi: Updated for version 0.14.
network/quvi: Updated for version 0.2.16.
network/rtorrent: Updated for version 0.8.8.
network/shorewall6: Updated for version 4.4.19.4.
network/shorewall: Updated for version 4.4.19.4.
network/skype: Updated for version 2.2.0.35.
network/surfraw: Fixed gzipx2 of man pages
system/dosemu: Updated maintainer information.
system/nvidia-driver: Updated for version 270.41.19.
system/nvidia-kernel: Updated for version 270.41.19.
system/virtualbox-addons: Updated for version 4.0.8.
system/virtualbox-kernel-addons: Updated for version 4.0.8.
system/virtualbox-kernel: Updated for version 4.0.8.
system/virtualbox: Updated for version 4.0.8.
+--------------------------+
Mon Jun 13 05:36:15 UTC 2011
academic/RBio: Moved to libraries.
academic/extrema: Updated for version 4.4.5.
academic/gerbv: Updated for version 2.5.0.
academic/glpk: Updated for version 4.45.
academic/grass: Updated for version 6.4.1.
academic/maxima: Updated for version 5.24.0.
academic/metis: Updated for version 4.0.3.
accessibility/xdotool: Updated for version 2.20101012.3049.
audio/HamsiManager: Updated for version 0.9.70 (+ new category)
audio/aacgain: Adapted to upstream tarball change.
audio/easytag: Minor tweaks and info updated.
audio/gtkpod: Updated for version 0.99.16.
audio/hydrogen: Updated for version 0.9.5.
audio/mp3gain: Updated for version 1.5.2.r2.
audio/mp3splt: Updated for version 2.3a.
audio/pianobar: Updated for version 2011.04.27.
audio/portmidi: Added symlink for compatibility with older software.
audio/puddletag: Updated for version 0.10.3.
audio/pyalsaaudio: Added (Python Bindings for ALSA)
audio/python-audiotools: Updated for version 2.17.
audio/qmmp: Updated for version 0.5.0.
audio/qsynth: Updated for version 0.3.6
audio/vamp-plugin-sdk: Updated for version 2.2.1.
audio/volwheel: Updated for version 0.2.8.
business/skrooge: Updated for version 0.8.1.
desktop/ccsm: Added (CompizConfig Settings Manager)
desktop/emerald-themes: Added (Extra themes for the Emerald Decorator)
desktop/emerald: Added (Emerald Window Decorator)
desktop/fusion-icon: Added (A system tray tool for Compiz Fusion)
desktop/synergy: Removed. Succeeded by synergy-plus.
development/avr-binutils: Updated for version 2.21.
development/bacon: Updated for version 1.0_build_22.
development/erlang-otp: Updated for version 14B02.
development/glade3: Updated for version 3.8.0.
development/mtd-utils: Updated for version 1.4.4.
development/netbeans: Updated for version 7.0.
development/orc: Updated for version 0.4.14.
development/pyenchant: Updated for version 1.6.5.
development/sbcl: Fixed SBCL_HOME setting on login
development/xmlstarlet: Updated for version 1.1.0.
development/zope.interface: Updated for version 3.6.3.
games/ioquake3: Updated for version r1959.
games/liquidwar6: Updated for 0.0.9beta.
games/ltris: Updated for version 1.0.16.
games/playonlinux: Updated for version 3.8.12.
games/trackballs: Updated for version 1.1.4.
games/uqm: Fixed typo in info file and minor tweaks.
games/xcowsay: Updated for version 1.3.
games/xmoto: Updated for version 0.5.7.
graphics/SweetHome3D: Updated for version 3.2.
graphics/brlcad: Updated for version 7.18.4.
graphics/dblatex: Added (A DocBook to LaTeX Publisher)
graphics/graphviz: Updated for version 2.28.0
graphics/luminance-hdr: Updated for version 2.0.2.
graphics/simple-scan: Updated for version 2.32.0.2.
libraries/CSparse: Updated for version 2.2.5.
libraries/RBio: Updated for version 2.0.1 and moved to libraries.
libraries/UFconfig: Updated for version 3.6.1.
libraries/afflib: Updated for version 3.6.11.
libraries/compiz-bcop: Added (A BCOP code generator for Compiz Fusion)
libraries/compiz-plugins-extra: Added (Extra plugins for Compiz Fusion)
libraries/compiz-plugins-main: Added (Main supported plugins for Compiz Fusion)
libraries/compiz-plugins-unsupported: Added (Unsupported plugins for Compiz Fusion)
libraries/compizconfig-backend-kconfig4: (kconfig backend for Compiz Fusion)
libraries/compizconfig-python: Added (Python bindings for compiz config)
libraries/cryptopp: Updated for version 5.6.1.
libraries/gdal: Updated for version 1.8.0.
libraries/gsl: Updated for version 1.15.
libraries/lapack: Fixed download link
libraries/lapack: Updated for version 3.3.1.
libraries/libass: Updated for version 0.9.12.
libraries/libcompizconfig: Added (A configuration library for Compiz Fusion)
libraries/libgadu: Updated for version 1.10.1.
libraries/libgcal: Updated for version 0.9.6.
libraries/liblinebreak: Updated for version 2.1.
libraries/libmaa: Updated for version 1.2.0.
libraries/libmatroska: Updated for version 1.1.0.
libraries/libmodplug: Updated for version 0.8.8.3.
libraries/libmp3splt: Updated for version 0.6.1a
libraries/libssh: Updated for version 0.5.0.
libraries/libtorrent: Updated for version 0.12.8.
libraries/tinyxml: Updated for version 2.6.2.
libraries/tre: Updated for version 0.8.0.
libraries/xapian-core: Updated for version 1.2.5.
libraries/zope.configuration: Updated for version 3.7.4.
libraries/zope.schema: Updated for version 3.8.0.
libraries/zope.security: Updated for version 3.8.2.
misc/KeePass: Updated for version 2.15.
misc/ardesia: Updated for version 0.8.
misc/conkyforecast: Updated for version 2.20.
misc/discount: Added (Markdown text to html)
misc/fribid: Updated for version 0.3.0.
misc/gramps: Updated for version 3.2.6.
misc/heyu: Updated for version 2.9.3.
misc/protobuf: Updated for version 2.4.1.
misc/viking: Updated for version 1.1.
multimedia/flash-player-plugin: Updated for version 10.3_r181.
multimedia/media-player-info: Updated for version 14.
multimedia/mlt: Updated for version 0.7.2.
multimedia/nted: Updated for version 1.10.18.
network/GeoIP: Updated for version 1.4.7.
network/arora: Removed (abandoned by maintainer)
network/frostwire: Updated for version 4.21.7.
network/hiawatha: Updated for version 7.4.1.
network/kbluetooth: Removed (abandoned by maintainer)
network/mumble: Added (Low-latency voice chat)
network/nbd: Updated for version 2.9.21a.
network/phpmyadmin: Updated for version 3.4.1.
network/psi: Misc tweaks plus updated maintainer email
network/sic: Added (simple irc client)
network/uget: Updated for version 1.6.4_1.
network/w3m: Updated for version 0.5.3.
office/grisbi: Updated for version 0.8.5.
office/org-mode: Updated for version 7.5.
office/rednotebook: Updated for version 1.1.6.
office/sigil: Updated for version 0.3.4.
office/verbiste: Updated for version 0.1.33.
office/xmind: Added (brainstorming and mind mapping tool)
perl/perl-MIME-tools: Updated for version 1.34.
perl/perl-MIME-tools: Updated for version 5.502.
perl/perl-NetAddr-IP: Updated for version 4.044.
perl/perl-Test-Pod: Updated for version 1.45.
system/cabextract: Updated for version 1.4.
system/dar: Updated for version 2.3.11.
system/di: Updated for version 4.27.
system/fbterm: Updated for version 1.7.
system/gpsd: Updated for version 2.96.
system/krusader: Changed maintainer
system/ksh: Updated for version openbsd49.
system/luckybackup: Updated for version 0.4.5.
system/lzip: Updated for version 1.12.
system/mariadb: Updated for version 5.2.5.
system/qemu-kvm: Build only x86 and x86_64 stuff by default
system/rar: Updated for version 4.0.1b1.
system/sleuthkit: Updated for version 3.2.1.
system/terminus-font: Updated for version 4.35.
system/testdisk: Updated for version 6.12.
system/upower: Updated for version 0.9.10.
system/usbmon: Updated for version 6.
system/webcore-fonts: Removed the two files in conf.avail.
system/winetricks: Updated for version 20110429.
+--------------------------+
Thu May 19 13:34:07 UTC 2011
audio/qmmp: Changed maintainer
audio/qtractor: Included optional deps in README
development/jsctags: Added (ctags-compatible code indexer)
games/kildclient: Added (MUD/MU* Client)
graphics/feh: Updated for verson 1.14.
libraries/giblib: Changed maintainer + various tweaks
libraries/libebml: Updated for version 1.2.0.
libraries/libpst: Added (MS Outlook PST file library and utilities)
libraries/libtbb: Updated for version 3.0_20110315oss.
libraries/libxml++: Noted mm-common in the README
misc/chm2pdf: Patched to fix problem with file name with spaces.
multimedia/gtk-recordmydesktop: Changed maintainer
multimedia/minitube: Updated for version 1.4.2 (+new maintainer)
multimedia/vobcopy: Fixed dep info in README
network/DenyHosts: Added (script to help thwart SSH server attacks)
network/gajim: Changed maintainer
network/kfilebox: Updated for version 0.4.7.
network/opera: Updated for version 11.11.
network/skype4pidgin: Added (skype plugin for pidgin)
network/uget: Changed maintainer
network/x11vnc: Updated for version 0.9.12.
office/lyx: Changed maintainer
system/bleachbit: Updated for version 0.8.7.
+--------------------------+
Tue May 17 14:57:28 UTC 2011
academic/gwyddion: Updated for version 2.24.
academic/wxMaxima: Updated for version 11.04.0.
audio/gogglesmm: Updated for version 0.12.1.
audio/id3v2: Fixed homepage in .info file
audio/mpd: Updated for version 0.16.2.
desktop/QtCurve-Gtk2: Updated for version 1.8.8.
desktop/QtCurve-KDE4: Updated for version 1.8.7.
desktop/cwp: Updated for version 1.5.2.
desktop/gnome-colors: Misc tweaks ; email change
desktop/hsetroot: Updated email and copyrights
desktop/oxygen-gtk: Added (gtk port of KDE's oxygen widget theme)
desktop/pclock: Fixed homepage and download link
desktop/tint2: Updated email address
desktop/trayer: Updated email address and misc tweakage
desktop/wmfs: Added (dynamic tiling window manager)
desktop/wminfo: Fixed download link in .info file
desktop/wmmixer: Fixed download link and homepage
desktop/wmnet: Fixed homepage and download link
desktop/wmsm.app: Fixed homepage and download link
desktop/xfce4-xkb-plugin: Fixed a GTK-related crash
desktop/xplanet: Updated for version 1.2.2.
development/CImg: Fixed VERSION in .info file
development/mono: Updated for version 2.10.2.
development/orc: Updated for version 0.4.13.
development/wxHexEditor: Updated for version 0.10.
games/gens-gs: Added (sega genesis/cd/32x emulator)
games/pcsxr: Fixed download link
games/scribble: Added (CLI crossword game)
graphics/darktable: Updated for version 0.8.
graphics/digikam: Updated for version 1.9.0.
graphics/exact-image: Updated for version 0.8.5.
graphics/exif: Updated for version 0.6.20.
graphics/flpsed: Added (WYSIWYG PostScript annotator)
graphics/kipi-plugins: Updated for version 1.9.0.
libraries/LibRaw: Added (library for decoding raw digital photos)
libraries/OpenSceneGraph: Changed maintainer
libraries/avr-libc: Updated for version 1.7.1.
libraries/cfitsio: Added (FITS file I/O library for C)
libraries/exiftool: Updated for version 8.50.
libraries/flickcurl: Added (C library for the Flickr API)
libraries/imlib2: Updated for version 1.4.4.
libraries/lcms2: Added (little cms engine v2)
libraries/libeXosip2: Updated for version 3.5.0 + new maintainer.
libraries/libgdiplus: Updated for version 2.10.
libraries/libosip2: Updated for version 3.5.0 + new maintainer
libraries/wxGTK: Noted conflict with wxPython.
misc/conkyforecast: Updated for version 2.15.
misc/klibc: Updated for version 1.5.21.
multimedia/bombono-dvd: Updated for version 1.0.2.
multimedia/guvcview: Updated for version 1.4.5.
multimedia/imagination: Updated for version 3.0.
multimedia/k9copy: Updated for version 2.3.7.
multimedia/mkvtoolnix: Updated for version 4.7.0.
multimedia/mozplugger: Updated for version 1.14.3.
network/ctorrent: Fixed typo -- s/iif/if/
network/cyrus-imapd: Updated for version 2.4.8.
network/exim-html: Removed (hopefully temporarily)
network/exim: Updated for version 4.76.
network/filezilla: Updated for version 3.4.0.
network/gmapcatcher: Updated for version 0.7.5.0.
network/iftop: Updated for version 0.17.
network/kismet: Updated for version 2011_03_R2.
network/kvirc: Updated for version 4.0.4.
network/lighttpd: Updated for version 1.4.28.
network/linphone: Updated for version 3.4.3.
network/midori: Updated for version 0.3.3.
network/nicotine+: Updated for version 1.2.16.
network/node: Updated for version 0.4.7.
network/postfix: Updated for version 2.8.3.
network/rekonq: Updated for version 0.7.0.
network/skype: Updated for version 2.2.0.25.
network/smb4k: Updated for version 0.10.10.
network/vde2: Changed maintainer
network/wireshark: Updated for version 1.4.6.
office/evince: Added various patches to fix things.
office/kmymoney: Updated for version 4.5.3.
office/lyx: Updated for version 2.0.0.
office/tellico: Updated for version 2.3.3.
office/texmaker: Updated for version 3.0.2.
perl/perl-test-number-delta: Changed maintainer
python/distribute: Moved from Development category
python/pep8: Moved from Development category
python/pip: Moved from Development category
python/pychm: Changed maintainer
ruby/gem2tgz: Moved from Development and updated for version 1.2.
system/apache-cassandra: Fixed a bug in profile script creation
system/gkrellm-volume: Updated email address
system/grub2: Fixed dep info in README
system/hdapsd: Updated for version 20090401.
system/iotop: Updated for version 0.4.3.
system/parallel: Updated for version 20110422.
system/pgadmin3: Updated for version 1.12.3.
system/qemu-kvm: Updated for version 0.14.0.
system/qemu: Updated for version 0.14.1.
system/rar: Updated for version 4.0.0.
system/sakura: Updated for version 2.4.0.
system/terminus-font: Updated for version 4.34.
system/tp_smapi: Added (SMAPI BIOS access for ThinkPad Laptops)
system/virtualbox: Noted jdk as dependency.
system/zeroinstall-injector: Updated for version 0.54.
+--------------------------+
Tue May  3 15:39:37 UTC 2011
audio/clam: ARCH fixes and cleanup.
audio/clam_annotator: ARCH fixes and cleanup.
audio/clam_voice2midi: ARCH fixes and cleanup.
audio/mppenc: ARCH fixes and cleanup.
audio/tuxguitar: ARCH fixes and cleanup.
desktop/xfce4-screenshooter: Fixed VERSION in .info file
development/mysql-workbench-gpl: Patched for new gtkmm.
development/scite: ARCH fixes and cleanup.
games/UrbanTerror: ARCH fixes and cleanup.
games/nexuiz: ARCH fixes and cleanup.
games/typhoon_2001: ARCH fixes and cleanup.
graphics/k3d: Patched for new gtkmm
libraries/atlas: ARCH fixes and cleanup.
libraries/live555: ARCH fixes and cleanup.
libraries/swfdec: ARCH fixes and cleanup.
network/ctorrent: ARCH fixes and cleanup.
network/etherape: ARCH fixes and cleanup.
network/google-chrome: Removed, a version of this exists in extra/.
network/leechcraft: ARCH fixes and cleanup.
network/wireshark: Updated info file with correct download link.
python/pybluez: ARCH fixes and cleanup.
system/bootchart: ARCH fixes and cleanup.
system/gdm: Fixed up outdated README references
system/john: ARCH fixes and cleanup.
system/tilda: ARCH fixes and cleanup.
system/trrntzip: ARCH fixes and cleanup.
+--------------------------+
Wed Apr 27 17:42:43 UTC 2011
Well, it's that time again, and as expected, I'm at a loss for words.
  I suppose I'll start by thanking all of the usual suspects: the entire
  admin team here at SlackBuilds.org for the (as always) outstanding work;
  Pat and the Slackware team for such an elite, er, 1337 distribution, and
  all of our contributors and users for supporting us over the years.
In addition to the usual cleanup and fixes that accompany a new release, we
  have (thanks in part to git) done some purging of dead and unmaintained
  stuff from the repo, so hopefully none of that will be missed.  The only
  other notable change since 13.1 is the addition of haskell, perl, python,
  and ruby categories, so browsing the category listing should be a bit less
  harsh on the eyes now.
Finally, if you are a build script maintainer or potential submitter, we'd
  like to make the following public service announcement:  be sure to check
  the repo before submitting updates and new things, and if you are doing
  an update, make sure your local copy is identical to what's in the repo
  before you begin making changes - we tend to get a bit short-tempered
  when we have to redo previous fixes in a new submission.
Enjoy!  --rworkman