summaryrefslogtreecommitdiffstats
path: root/ChangeLog.txt
blob: 6b1380c8ecad1e9f844d835df695a9e7cf7c7bda (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
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)
+--------------------------+