summaryrefslogtreecommitdiff
path: root/doc/CHANGES-2010
blob: 60320a9d3a2251afdbd3c3155b4caf19fc038e4d (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
$NetBSD: CHANGES-2010,v 1.1175 2010/03/11 20:56:33 rillig Exp $

Changes to the packages collection and infrastructure in 2010:

	Updated textproc/mdoclint to 1.4 [wiz 2010-01-01]
	Updated net/ntop to 3.3.10nb1 [tron 2010-01-01]
	Updated net/libtorrent to 0.12.6 [snj 2010-01-01]
	Updated net/rtorrent to 0.8.6 [snj 2010-01-01]
	Updated misc/py-anita to 1.9 [gson 2010-01-02]
	Updated net/rsync to 3.0.7 [tron 2010-01-02]
	Updated www/ikiwiki to 3.20100102.3 [schmonz 2010-01-03]
	Updated www/trac to 0.11.6 [gdt 2010-01-03]
	Removed www/firefox-bin-nightly [joerg 2010-01-04]
	Removed mail/thunderbird-bin-nightly [joerg 2010-01-04]
	Updated audio/ampache to 3.5.3 [abs 2010-01-04]
	Updated shells/osh to 20091218 [wiz 2010-01-05]
	Updated net/tor to 0.2.1.21 [wiz 2010-01-05]
	Updated graphics/kdegraphics4 to 4.3.4nb2 [wiz 2010-01-05]
	Updated audio/lame to 3.98.2nb1 [tron 2010-01-05]
	Updated multimedia/ffmpeg to 20090611nb5 [tron 2010-01-05]
	Updated converters/kcc to 2.3 [obache 2010-01-06]
	Updated games/blokus to 1.1 [obache 2010-01-06]
	Updated cad/eagle to 4.16r2 [obache 2010-01-06]
	Updated www/ja-trac to 0.11.5pl1nb1 [obache 2010-01-06]
	Removed print/ghostscript-esp [joerg 2010-01-06]
	Updated mail/getmail to 4.16.0 [schmonz 2010-01-07]
	Updated emulators/fmsx to 3.5.1 [obache 2010-01-07]
	Updated fonts/mftrace to 1.2.15 [obache 2010-01-07]
	Updated x11/xsnow to 1.42nb4 [is 2010-01-07]
	Updated games/xpilot to 4.5.4nb3 [is 2010-01-07]
	Updated net/p5-eBay-API to 0.25nb2 [sno 2010-01-08]
	Updated devel/scmgit-base to 1.6.4nb1 [wiz 2010-01-09]
	Updated archivers/lha to 114.9nb4 [dholland 2010-01-09]
	Updated lang/ruby18-base to 1.8.7.174nb3 [taca 2010-01-10]
	Updated wm/openbox to 3.4.10 [snj 2010-01-10]
	Updated devel/imake to 1.0.2nb3 [tron 2010-01-10]
	Updated sysutils/py-notify to 0.1.1nb3 [obache 2010-01-11]
	Updated net/libfetch to 2.27 [joerg 2010-01-11]
	Updated pkgtools/createbuildlink to 3.16 [wiz 2010-01-13]
	Updated www/typo3 to 4.3.1 [taca 2010-01-14]
	Updated lang/ruby18-base to 1.8.7.174nb4 [taca 2010-01-14]
	Updated emulators/qemu to 0.11.1nb1 [bouyer 2010-01-14]
	Updated security/openssl to 0.9.8l [taca 2010-01-15]
	Updated devel/scmgit-base to 1.6.6 [wiz 2010-01-15]
	Updated devel/scmgit-docs to 1.6.6 [wiz 2010-01-15]
	Updated devel/scmgit to 1.6.6 [wiz 2010-01-15]
	Updated math/mpfr to 2.4.2.3 [asau 2010-01-15]
	mk/bsd.pkg.mk: freeze ended for pkgsrc-2009Q4 branch [agc 2010-01-15]
	Updated mail/dovecot to 1.2.9 [ghen 2010-01-15]
	Updated x11/compositeproto to 0.4.1 [tnn 2010-01-15]
	Updated x11/fontcacheproto to 0.1.3 [tnn 2010-01-15]
	Updated x11/kbproto to 1.0.4 [tnn 2010-01-15]
	Updated x11/randrproto to 1.3.1 [tnn 2010-01-15]
	Updated x11/xproxymanagementprotocol to 1.0.3 [tnn 2010-01-15]
	Updated x11/xproto to 7.0.16 [tnn 2010-01-15]
	Updated x11/xf86miscproto to 0.9.3 [tnn 2010-01-15]
	Updated x11/xf86vidmodeproto to 2.3 [tnn 2010-01-15]
	Updated x11/xf86vidmodeproto to 2.3 [tnn 2010-01-15]
	Updated x11/libXxf86vm to 1.1.0 [tnn 2010-01-15]
	Updated x11/libXxf86dga to 1.1.1 [tnn 2010-01-15]
	Updated x11/libXxf86misc to 1.0.2 [tnn 2010-01-15]
	Updated x11/libxkbfile to 1.0.6 [tnn 2010-01-15]
	Updated x11/libXvMC to 1.0.5 [tnn 2010-01-15]
	Updated x11/libXv to 1.0.5 [tnn 2010-01-15]
	Updated x11/libXres to 1.0.4 [tnn 2010-01-15]
	Updated x11/libXrender to 0.9.5 [tnn 2010-01-15]
	Updated x11/libXpm to 3.5.8 [tnn 2010-01-15]
	Updated x11/libXmu to 1.0.5 [tnn 2010-01-15]
	Updated x11/libXft to 2.1.14 [tnn 2010-01-15]
	Updated x11/libXfont to 1.4.1 [tnn 2010-01-15]
	Updated x11/libXdmcp to 1.0.3 [tnn 2010-01-15]
	Updated x11/libXdamage to 1.1.2 [tnn 2010-01-15]
	Updated x11/libXcomposite to 0.4.1 [tnn 2010-01-15]
	Updated x11/libXaw to 1.0.7 [tnn 2010-01-15]
	Updated x11/libX11 to 1.3.2 [tnn 2010-01-15]
	Updated devel/xorg-util-macros to 1.4.1 [tnn 2010-01-15]
	Updated lang/openjdk7 to 1.7.0.78.20100102 [tnn 2010-01-15]
	Updated www/openjdk7-icedtea-plugin to 1.11.0.20100111 [tnn 2010-01-15]
	Updated net/filezilla to 3.3.1 [zafer 2010-01-15]
	Added print/tex-tetex version 3.0.16392 [minskim 2010-01-15]
	Updated devel/sdcc to 2.8.0nb2 [jakllsch 2010-01-15]
	Added cross/dfu-programmer version 0.5.2 [jakllsch 2010-01-15]
	Updated devel/mercurial to 1.4.2 [wiz 2010-01-15]
	Updated sysutils/cdrtools to 2.01.01alpha70 [wiz 2010-01-15]
	Updated games/rftg to 0.6.0 [wiz 2010-01-15]
	Updated security/pam_ssh_agent_auth to 0.9.2 [agc 2010-01-15]
	Updated math/nickle to 2.69 [tnn 2010-01-15]
	Updated mail/sendmail to 8.14.4 [jnemeth 2010-01-16]
	Updated mail/libmilter to 8.14.4 [jnemeth 2010-01-16]
	Updated devel/libthai to 0.1.13 [obache 2010-01-16]
	Updated fonts/vlgothic-ttf to 20091214 [obache 2010-01-16]
	Updated print/kpathsea to 5.0.0nb3 [minskim 2010-01-16]
	Updated print/web2c to 2009 [minskim 2010-01-16]
	Updated print/luatex to 0.40.6 [minskim 2010-01-16]
	Updated print/xetex to 0.9995.2 [minskim 2010-01-16]
	Updated textproc/makeindexk to 2.15nb2 [minskim 2010-01-16]
	Updated graphics/dvipng to 1.12 [minskim 2010-01-16]
	Updated fonts/gsftopkk to 1.19.2nb1 [minskim 2010-01-16]
	Updated fonts/ps2pkm to 1.5nb1 [minskim 2010-01-16]
	Updated print/dviljk to 2.6.5nb2 [minskim 2010-01-16]
	Updated print/texlive-tetex to 2009 [minskim 2010-01-16]
	Updated print/tex-dvips to 2009.16376 [minskim 2010-01-16]
	Updated print/ja-ptex-bin to 3.1.9nb5 [minskim 2010-01-16]
	Updated print/dvipsk to 5.98 [minskim 2010-01-16]
	Added print/tex-pkfix version 1.5 [minskim 2010-01-16]
	Added print/tex-pkfix-doc version 1.5 [minskim 2010-01-16]
	Updated print/dvipdfmx to 20090708 [minskim 2010-01-16]
	Added print/tex-xdvi version 22.84.16 [minskim 2010-01-16]
	Updated print/xdvik to 22.84.16 [minskim 2010-01-16]
	Updated print/teTeX to 3.0nb8 [minskim 2010-01-16]
	Updated fonts/tex-times to 2009.15878 [minskim 2010-01-16]
	Removed print/tex-bin-tetex successor print/tex-tetex [minskim 2010-01-16]
	Added print/tex-texlive-scripts version 2009.16483 [minskim 2010-01-16]
	Removed print/tex-bin-xdvi successor print/tex-xdvi [minskim 2010-01-16]
	Removed print/tex-memhangul-ucs successor print/tex-kotex [minskim 2010-01-16]
	Removed print/tex-dhucs successor print/tex-kotex [minskim 2010-01-16]
	Removed fonts/tex-unttf successor fonts/tex-kotex-base [minskim 2010-01-16]
	Removed print/tex-bin-texlive successor print/tex-texlive-scripts [minskim 2010-01-16]
	Added print/tex-dvips-doc version 2009.16376 [minskim 2010-01-16]
	Removed print/tex-bin-dvipsk [minskim 2010-01-16]
	Removed print/tex-bin-dvipsk-doc [minskim 2010-01-16]
	Added graphics/tex-dvipng-doc version 1.12 [minskim 2010-01-16]
	Updated x11/lesstif to 0.95.2 [adam 2010-01-16]
	Added www/py-django-registration version 0.8a1 [abs 2010-01-16]
	Updated x11/xf86-video-vmware to 10.16.9 [obache 2010-01-16]
	Added time/wmzcalock version 0.1 [sborrill 2010-01-16]
	Added devel/p5-ExtUtils-XSpp version 0.05 [sno 2010-01-16]
	Added devel/p5-CPAN-Checksums version 2.04 [sno 2010-01-16]
	Added devel/p5-CPAN-Inject version 0.11 [sno 2010-01-16]
	Added devel/p5-Module-Util version 1.07 [sno 2010-01-16]
	Added devel/p5-Parse-ErrorString-Perl version 0.13 [sno 2010-01-16]
	Updated devel/nss to 3.12.4.5.6 [tnn 2010-01-16]
	Updated www/epiphany to 2.28.2 [tnn 2010-01-16]
	Updated www/epiphany-extensions to 2.28.1 [tnn 2010-01-16]
	Added devel/p5-Path-Class-File-Stat version 0.02 [sno 2010-01-16]
	Added devel/p5-SVN-Class version 0.15 [sno 2010-01-16]
	Added x11/p5-Alien-wxWidgets version 0.48 [sno 2010-01-16]
	Added x11/p5-Wx version 0.95 [sno 2010-01-16]
	Added x11/p5-Wx-Perl-ProcessStream version 0.24 [sno 2010-01-16]
	Added devel/p5-Debug-Client version 0.11 [sno 2010-01-16]
	Updated databases/p5-DBD-SQLite to 1.29 [sno 2010-01-16]
	Updated devel/p5-ExtUtils-MakeMaker to 6.56 [sno 2010-01-16]
	Updated devel/p5-ExtUtils-Manifest to 1.58 [sno 2010-01-16]
	Updated devel/p5-ExtUtils-ParseXS to 2.22 [sno 2010-01-16]
	Updated devel/p5-Path-Class to 0.18 [sno 2010-01-16]
	Updated www/p5-URI to 1.52 [sno 2010-01-16]
	Updated sysutils/pstree to 2.33 [sno 2010-01-16]
	Updated net/p5-RPC-XML to 0.72 [sno 2010-01-16]
	Added devel/p5-Wx-Perl-DataWalker version 0.02 [sno 2010-01-16]
	Added devel/p5-Module-Install-PadrePlugin version 0.01 [sno 2010-01-16]
	Added devel/p5-Parse-ExuberantCTags version 1.01 [sno 2010-01-16]
	Added devel/p5-Perl-APIReference version 0.03 [sno 2010-01-16]
	Added devel/p5-pip version 1.16 [sno 2010-01-16]
	Added www/p5-LWP-Online version 1.07 [sno 2010-01-16]
	Added devel/p5-Acme-PlayCode version 0.11 [sno 2010-01-16]
	Added textproc/p5-Pod-Abstract version 0.20 [sno 2010-01-16]
	Added textproc/p5-Template-Tiny version 0.09 [sno 2010-01-16]
	Added textproc/p5-Text-FindIndent version 0.07 [sno 2010-01-16]
	Added textproc/p5-Syntax-Highlight-Engine-Kate version 0.06 [sno 2010-01-16]
	Updated devel/libffi to 3.0.9 [asau 2010-01-16]
	Updated www/p5-HTTP-Request-AsCGI to 1.2 [sno 2010-01-16]
	Updated devel/p5-PPI to 1.208 [sno 2010-01-16]
	Updated games/rftg to 0.6.1 [wiz 2010-01-16]
	Updated devel/p5-Devel-NYTProf to 3.01 [sno 2010-01-16]
	Updated databases/p5-ORLite to 1.31 [sno 2010-01-16]
	Updated sysutils/cdrtools to 2.01.01alpha72 [wiz 2010-01-16]
	Updated devel/p5-Class-MOP to 0.97 [sno 2010-01-16]
	Updated audio/ocp to 0.1.18 [wiz 2010-01-16]
	Updated shells/bash to 4.1 [wiz 2010-01-16]
	Updated devel/readline to 6.1 [wiz 2010-01-16]
	Updated games/puzzles to 8839 [wiz 2010-01-16]
	Updated devel/p5-Moose-Policy to 0.04 [sno 2010-01-16]
	Updated devel/p5-MooseX-AttributeHelpers to 0.23 [sno 2010-01-16]
	Updated devel/p5-MooseX-Getopt to 0.26 [sno 2010-01-16]
	Updated textproc/liblinebreak to 2.0 [wiz 2010-01-16]
	Updated devel/p5-MooseX-MethodAttributes to 0.19 [sno 2010-01-16]
	Updated devel/p5-MooseX-Params-Validate to 0.13 [sno 2010-01-16]
	Updated devel/p5-MooseX-Role-Parameterized to 0.15 [sno 2010-01-16]
	Updated devel/p5-MooseX-Role-WithOverloading to 0.05 [sno 2010-01-16]
	Updated devel/p5-MooseX-Singleton to 0.22 [sno 2010-01-16]
	Updated devel/p5-MooseX-Types to 0.21 [sno 2010-01-16]
	Updated devel/p5-MooseX-Types-Common to 0.001001 [sno 2010-01-16]
	Updated devel/libidn to 1.16 [wiz 2010-01-16]
	Updated devel/p5-namespace-clean to 0.12 [sno 2010-01-16]
	Updated www/p5-App-Nopaste to 0.18 [sno 2010-01-16]
	Updated www/p5-Catalyst-Runtime to 5.80018 [sno 2010-01-16]
	Updated www/p5-CatalystX-LeakChecker to 0.05 [sno 2010-01-16]
	Updated www/p5-Catalyst-Plugin-Static-Simple to 0.28 [sno 2010-01-16]
	Updated www/p5-Catalyst-Devel to 1.26 [sno 2010-01-16]
	Added editors/p5-PPIx-EditorTools version 0.09 [sno 2010-01-16]
	Added editors/p5-Padre version 0.54 [sno 2010-01-16]
	Added editors/p5-Padre-Plugin-XS version 0.01 [sno 2010-01-16]
	Added editors/p5-Padre-Plugin-Vi version 0.22 [sno 2010-01-16]
	Added editors/p5-Padre-Plugin-PerlTidy version 0.09 [sno 2010-01-16]
	Added editors/p5-Padre-Plugin-PerlCritic version 0.06 [sno 2010-01-16]
	Added editors/p5-Padre-Plugin-Nopaste version 0.2.1 [sno 2010-01-16]
	Added editors/p5-Padre-Plugin-Kate version 0.02 [sno 2010-01-16]
	Added editors/p5-Acme-Padre-PlayCode version 0.12 [sno 2010-01-16]
	Updated emulators/sdlmame to 0.136 [wiz 2010-01-16]
	Added editors/p5-Padre-Plugin-Autoformat version 1.1.2 [sno 2010-01-16]
	Added editors/p5-Padre-Plugin-Catalyst version 0.07 [sno 2010-01-16]
	Added editors/p5-Padre-Plugin-DataWalker version 0.02 [sno 2010-01-16]
	Added editors/p5-Padre-Plugin-Debugger version 0.3 [sno 2010-01-16]
	Added editors/p5-Padre-Plugin-Ecliptic version 0.19 [sno 2010-01-16]
	Added editors/p5-Padre-Plugin-Encrypt version 0.06 [sno 2010-01-16]
	Added editors/p5-Padre-Plugin-Git version 0.01 [sno 2010-01-16]
	Added editors/p5-Padre-Plugin-HG version 0.14 [sno 2010-01-16]
	Added editors/p5-Padre-Plugin-SVN version 0.04 [sno 2010-01-16]
	Added editors/p5-Padre-Plugin-SpellCheck version 1.1.2 [sno 2010-01-16]
	Updated www/p5-Catalyst-Manual to 5.8003 [sno 2010-01-16]
	Updated devel/p5-B-Utils to 0.11 [sno 2010-01-16]
	Updated security/p5-Crypt-Rijndael to 1.08 [sno 2010-01-16]
	Added devel/p5-Log-Any version 0.10 [sno 2010-01-16]
	Updated www/p5-HTML-Mason to 1.44 [sno 2010-01-16]
	Updated www/p5-FCGI to 0.68 [sno 2010-01-16]
	Removed editors/p5-Padre-Plugin-PlayCode [sno 2010-01-16]
	Added editors/p5-Acme-Padre-PlayCode version 0.13 [sno 2010-01-16]
	Updated textproc/p5-Pod-Simple to 3.13 [sno 2010-01-16]
	Updated textproc/p5-podlators to 2.3.0 [sno 2010-01-16]
	Updated textproc/p5-PPI-HTML to 1.08 [sno 2010-01-16]
	Updated textproc/p5-Regexp-Common to 2010010201 [sno 2010-01-17]
	Updated textproc/p5-YAML to 0.71 [sno 2010-01-17]
	Updated textproc/p5-Text-CSV_XS to 0.70 [sno 2010-01-17]
	Updated textproc/p5-Text-CSV to 1.16 [sno 2010-01-17]
	Updated textproc/p5-Text-FindIndent to 0.08 [sno 2010-01-17]
	Updated www/p5-HTTP-Body to 1.06 [sno 2010-01-17]
	Updated pkgtools/pkglint to 4.92 [jnemeth 2010-01-17]
	Updated x11/p5-Alien-wxWidgets to 0.50 [sno 2010-01-17]
	Updated x11/p5-Wx to 0.96 [sno 2010-01-17]
	Updated devel/p5-Sub-Uplevel to 0.2200 [sno 2010-01-17]
	Updated devel/p5-SVN-Simple to 0.28 [sno 2010-01-17]
	Updated devel/p5-Test-Aggregate to 0.36.3 [sno 2010-01-17]
	Updated devel/p5-Test-NoWarnings to 1.01 [sno 2010-01-17]
	Added comms/tn3270 version 0.20100116 [dholland 2010-01-17]
	Updated databases/tokyocabinet to 1.4.41 [obache 2010-01-17]
	Updated databases/tokyotyrant to 1.1.39 [obache 2010-01-17]
	Updated databases/java-tokyocabinet to 1.22nb2 [obache 2010-01-17]
	Updated databases/lua-tokyocabinet to 1.8nb2 [obache 2010-01-17]
	Updated databases/p5-tokyocabinet to 1.32nb2 [obache 2010-01-17]
	Updated databases/ruby-tokyocabinet to 1.29nb2 [obache 2010-01-17]
	Updated databases/p5-tokyotyrant to 1.16 [obache 2010-01-17]
	Updated databases/ruby-tokyotyrant to 1.13 [obache 2010-01-17]
	Updated textproc/tokyodystopia to 0.9.13nb2 [obache 2010-01-17]
	Updated graphics/hugin to 2009.4.0 [adam 2010-01-17]
	Updated devel/p5-Mouse to 0.47 [seb 2010-01-17]
	Updated devel/p5-MouseX-Types to 0.04 [seb 2010-01-17]
	Updated net/netatalk to 2.0.5 [markd 2010-01-17]
	Updated graphics/jpeg to 8 [wiz 2010-01-17]
	Updated textproc/p5-YAML to 0.71nb1 [seb 2010-01-17]
	Updated devel/rt3 to 3.8.7 [spz 2010-01-17]
	Updated devel/p5-Module-Install to 0.91nb2 [sno 2010-01-17]
	Removed comms/tn3270 [dholland 2010-01-17]
	Updated devel/p5-Module-Build to 0.36010 [sno 2010-01-17]
	Added comms/tn3270 version 0.20100116 [spz 2010-01-17]
	Updated misc/git to 4.9.5 [christos 2010-01-17]
	Updated pkgtools/revbump to 2.0 [wiz 2010-01-18]
	Updated databases/sqlite3 to 3.6.22 [adam 2010-01-18]
	Updated databases/sqlite3-tcl to 3.6.22 [adam 2010-01-18]
	Updated misc/proj to 4.7.0 [adam 2010-01-18]
	Updated geography/gdal-lib to 1.6.3 [adam 2010-01-18]
	Updated devel/libmtp to 1.0.1 [wiz 2010-01-18]
	Updated devel/monotone to 0.46 [jmmv 2010-01-18]
	Updated devel/monotone-server to 0.46 [jmmv 2010-01-18]
	Updated editors/emacs-snapshot to 23.1.91.20100111 [minskim 2010-01-18]
	Updated print/tex-hyphen-base to 2009.14587 [minskim 2010-01-18]
	Updated multimedia/mediatomb to 0.11.0nb8 [tron 2010-01-18]
	Updated parallel/openmpi to 1.4.1 [asau 2010-01-19]
	Updated devel/p5-Class-MOP to 0.98 [seb 2010-01-19]
	Updated devel/p5-Moose to 0.94 [seb 2010-01-19]
	Updated net/bind96 to 9.6.1pl3 [taca 2010-01-20]
	Updated cross/avrdude to 5.8nb1 [jakllsch 2010-01-20]
	Updated graphics/clutter to 1.0.10 [obache 2010-01-20]
	Updated devel/fossil to 20100112141013 [wiz 2010-01-20]
	Updated multimedia/farsight2 to 0.0.17 [wiz 2010-01-20]
	Updated devel/boehm-gc to 7.1nb3 [wiz 2010-01-20]
	Updated time/py-pytz to 2009u [wiz 2010-01-20]
	Updated time/py-icalendar to 2.1 [wiz 2010-01-20]
	Updated print/py-cups to 1.9.47 [wiz 2010-01-20]
	Updated textproc/rasqal to 0.9.17 [wiz 2010-01-20]
	Updated devel/pcre to 8.01 [wiz 2010-01-20]
	Updated textproc/gtk-doc to 1.13 [wiz 2010-01-20]
	Updated inputmethod/uim to 1.5.7 [obache 2010-01-20]
	Updated inputmethod/uim-elisp to 1.5.7 [obache 2010-01-20]
	Removed inputmethod/uim-qt4-immodule [obache 2010-01-20]
	Updated security/libtasn1 to 2.4 [wiz 2010-01-20]
	Updated devel/doxygen to 1.6.2 [wiz 2010-01-20]
	Updated graphics/hicolor-icon-theme to 0.12 [wiz 2010-01-20]
	Updated net/gssdp to 0.7.1 [wiz 2010-01-20]
	Updated net/gupnp to 0.13.2 [wiz 2010-01-20]
	Updated net/gupnp-igd to 0.1.6 [wiz 2010-01-20]
	Updated devel/libev to 3.9 [wiz 2010-01-20]
	Updated x11/pixman to 0.16.4 [wiz 2010-01-20]
	Updated graphics/gif2png to 2.5.2 [wiz 2010-01-20]
	Updated textproc/py-html2text to 2.37 [wiz 2010-01-20]
	Updated time/p5-DateTime-Event-ICal to 0.10 [wiz 2010-01-20]
	Updated time/p5-DateTime-TimeZone to 1.08 [wiz 2010-01-20]
	Updated graphics/p5-Image-Info to 1.30 [wiz 2010-01-20]
	Updated security/p5-Digest-HMAC to 1.02 [wiz 2010-01-20]
	Updated net/p5-Net-DNS to 0.66 [wiz 2010-01-20]
	Updated security/stunnel to 4.29 [wiz 2010-01-20]
	Updated www/p5-WWW-Curl to 4.11 [wiz 2010-01-20]
	Updated converters/p5-JSON to 2.17 [wiz 2010-01-20]
	Updated devel/p5-IMDB-Film to 0.43 [wiz 2010-01-20]
	Updated mail/p5-MailTools to 2.05 [wiz 2010-01-20]
	Updated devel/p5-Error to 0.17016 [wiz 2010-01-20]
	Updated security/p5-Digest-SHA to 5.48 [wiz 2010-01-20]
	Updated devel/p5-Any-Moose to 0.11 [wiz 2010-01-20]
	Updated databases/p5-BerkeleyDB to 0.41 [wiz 2010-01-20]
	Updated textproc/p5-XML-Atom to 0.37 [wiz 2010-01-20]
	Updated devel/p5-Test-Exception to 0.29 [wiz 2010-01-20]
	Updated databases/p5-DBD-postgresql to 2.16.0 [wiz 2010-01-20]
	Updated devel/p5-Compress-Raw-Bzip2 to 2.024 [wiz 2010-01-20]
	Updated devel/p5-Compress-Raw-Zlib to 2.024 [wiz 2010-01-20]
	Updated devel/p5-IO-Compress to 2.024 [wiz 2010-01-20]
	Updated devel/p5-Date-Manip to 6.05 [wiz 2010-01-20]
	Updated math/p5-Spreadsheet-WriteExcel to 2.35 [wiz 2010-01-20]
	Updated devel/p5-version to 0.7900 [wiz 2010-01-20]
	Updated devel/p5-Module-CoreList to 2.24 [wiz 2010-01-20]
	Updated net/Transmission to 1.80 [tnn 2010-01-21]
	Updated net/tor to 0.2.1.22 [wiz 2010-01-21]
	Added misc/kseg version 0.403 [drochner 2010-01-21]
	Updated math/genius to 1.0.9 [drochner 2010-01-21]
	Updated net/etherape to 0.9.9 [drochner 2010-01-21]
	Updated multimedia/gxine to 0.5.905 [drochner 2010-01-21]
	Updated misc/gnome-utils to 2.28.3 [drochner 2010-01-21]
	Updated multimedia/gnome-media to 2.28.5 [drochner 2010-01-21]
	Updated databases/gramps3 to 3.1.3 [drochner 2010-01-21]
	Updated editors/gedit to 2.28.3 [drochner 2010-01-21]
	Updated x11/gtk2-engines to 2.18.5 [drochner 2010-01-21]
	Updated x11/gtksourceview2 to 2.8.2 [drochner 2010-01-21]
	Updated x11/gtk2 to 2.18.6 [drochner 2010-01-21]
	Updated devel/glib2 to 2.22.4 [drochner 2010-01-21]
	Added graphics/jbigkit version 2.0 [obache 2010-01-21]
	Updated databases/postgresql83-client to 8.3.9nb2 [adam 2010-01-21]
	Updated databases/postgresql83-server to 8.3.9nb2 [adam 2010-01-21]
	Added databases/postgresql-postgis version 1.4.1 [adam 2010-01-21]
	Updated net/bind95 to 9.5.2-P2 [spz 2010-01-21]
	Updated net/bind9 to 9.4.3-P5 [spz 2010-01-21]
	Updated graphics/lensfun to 0.2.4nb1 [wiz 2010-01-21]
	Updated security/openssl to 0.9.8lnb1 [taca 2010-01-22]
	Updated graphics/GraphicsMagick to 1.3.8 [obache 2010-01-22]
	Updated net/libfetch to 2.28 [joerg 2010-01-22]
	Updated net/fetch to 1.7 [joerg 2010-01-22]
	Updated net/py-GeoIP to 1.2.4 [obache 2010-01-22]
	Updated textproc/gtk-doc to 1.13nb1 [wiz 2010-01-22]
	Updated time/ruby-tzinfo to 0.3.16 [taca 2010-01-22]
	Updated misc/esniper to 2.22.0 [heinz 2010-01-22]
	Updated devel/exctags to 5.8 [tonio 2010-01-22]
	Updated math/fricas to 1.0.9 [asau 2010-01-23]
	Updated mail/dbmail to 2.2.14 [obache 2010-01-23]
	Updated print/acroread8 to 8.1.7nb2 [obache 2010-01-23]
	Updated textproc/gnome-subtitles to 0.9.1 [obache 2010-01-23]
	Added lang/scala version 2.7.7 [yyamano 2010-01-23]
	Updated editors/p5-Padre to 0.55 [sno 2010-01-23]
	Updated devel/p5-Module-Build to 0.36030 [sno 2010-01-23]
	Updated devel/p5-Test-Script to 1.07 [sno 2010-01-23]
	Updated www/nginx to 0.8.32 [joerg 2010-01-23]
	Updated devel/fossil to 20100121205359 [wiz 2010-01-24]
	Updated pkgtools/pkgin to 0.3.3 [imil 2010-01-24]
	Updated pkgtools/pkgin to 0.3.3.1 [imil 2010-01-24]
	Updated x11/xfce4-exo to 0.3.101nb1 [gls 2010-01-24]
	Added www/p5-Mojo version 0.999.914 [seb 2010-01-24]
	Updated archivers/libzip to 0.9.1 [wiz 2010-01-24]
	Updated devel/p5-OLE-Storage_Lite to 0.19 [seb 2010-01-24]
	Updated math/p5-Spreadsheet-ParseExcel to 0.5700 [seb 2010-01-24]
	Updated archivers/pigz to 2.1.6 [zafer 2010-01-25]
	Updated converters/p5-Unicode-Map8 to 0.13 [sno 2010-01-25]
	Updated devel/p5-ExtUtils-XSpp to 0.07 [sno 2010-01-25]
	Updated devel/p5-File-Find-Rule to 0.32 [sno 2010-01-25]
	Updated devel/p5-File-HomeDir to 0.89 [sno 2010-01-25]
	Updated devel/p5-File-ShareDir to 1.01 [sno 2010-01-25]
	Updated devel/p5-namespace-clean to 0.13 [sno 2010-01-25]
	Updated devel/p5-Parse-Method-Signatures to 1.003013 [sno 2010-01-25]
	Updated devel/p5-Parse-RecDescent to 1.96.3 [sno 2010-01-25]
	Updated devel/p5-Path-Dispatcher to 0.14 [sno 2010-01-25]
	Updated devel/p5-Perl-MinimumVersion to 1.24 [sno 2010-01-25]
	Updated devel/p5-Proc-PID-File to 1.27 [sno 2010-01-25]
	Updated devel/p5-Scope-Upper to 0.10 [sno 2010-01-25]
	Updated databases/pgadmin3 to 1.10.1 [adam 2010-01-25]
	Updated devel/p5-Test-MinimumVersion to 0.013 [sno 2010-01-25]
	Updated time/p5-Time-Piece to 1.16 [sno 2010-01-25]
	Updated textproc/p5-Template-Tiny to 0.10 [sno 2010-01-25]
	Updated www/seamonkey to 2.0.2 [tnn 2010-01-25]
	Updated mail/thunderbird to 3.0.1 [tnn 2010-01-25]
	Updated textproc/redland to 1.0.10 [markd 2010-01-25]
	Updated math/p5-Spreadsheet-Read to 0.38 [seb 2010-01-25]
	Updated math/p5-Spreadsheet-WriteExcel to 2.36 [seb 2010-01-25]
	Updated devel/p5-Capture-Tiny to 0.07 [seb 2010-01-25]
	Updated devel/p5-Module-CoreList to 2.25 [seb 2010-01-25]
	Updated devel/p5-Getopt-Long-Descriptive to 0.083 [seb 2010-01-25]
	Updated time/p5-DateTime-TimeZone to 1.10 [seb 2010-01-25]
	Updated time/p5-DateTime to 0.5300 [seb 2010-01-25]
	Updated devel/p5-Data-OptList to 0.105 [seb 2010-01-26]
	Added devel/googletest version 1.4.0 [reed 2010-01-26]
	Added devel/lcov version 1.7 [reed 2010-01-26]
	Updated www/ja-trac to 0.11.6pl1 [obache 2010-01-26]
	Updated cross/avrdude to 5.8nb2 [jakllsch 2010-01-26]
	Updated www/ikiwiki to 3.20100122 [schmonz 2010-01-26]
	Updated sysutils/hal to 0.5.11nb27 [macallan 2010-01-26]
	Updated geography/gdal-lib to 1.6.3nb2 [adam 2010-01-26]
	Updated geography/mapserver to 5.6.1 [adam 2010-01-26]
	Added devel/p5-Class-Throwable version 0.11 [sno 2010-01-26]
	Updated www/p5-Catalyst-Plugin-Authentication to 0.100160 [sno 2010-01-26]
	Added www/p5-Catalyst-Plugin-Authorization-ACL version 0.15 [sno 2010-01-26]
	Updated databases/p5-DBIx-Class to 0.08115 [sno 2010-01-26]
	Updated databases/phpmyadmin to 2.11.10 [tron 2010-01-26]
	Updated time/p5-DateTime-Format-SQLite to 0.11 [sno 2010-01-26]
	Updated databases/p5-DBIx-Class-Fixtures to 1.001009 [sno 2010-01-26]
	Updated lang/python26 to 2.6.4nb4 [tron 2010-01-26]
	Updated devel/p5-Variable-Magic to 0.40 [sno 2010-01-26]
	Updated databases/p5-DBIx-DBSchema to 0.38 [sno 2010-01-26]
	Updated www/typolight27-translations to 20100126 [taca 2010-01-26]
	Added textproc/p5-Regexp-Copy version 0.06 [sno 2010-01-26]
	Added devel/p5-Hash-Flatten version 1.16 [sno 2010-01-26]
	Updated www/fengoffice to 1.6.2 [taca 2010-01-26]
	Added www/p5-HTML-FormFu version 0.06001 [sno 2010-01-26]
	Added www/p5-Catalyst-Controller-HTML-FormFu version 0.06001 [sno 2010-01-26]
	Updated devel/p5-ExtUtils-ParseXS to 2.22.01 [sno 2010-01-26]
	Updated devel/p5-Class-Accessor-Named to 0.009 [sno 2010-01-26]
	Updated devel/p5-Class-Inner to 0.200.001 [sno 2010-01-26]
	Updated devel/nspr to 4.8.2.6 [tron 2010-01-26]
	Updated devel/xulrunner to 1.9.1.7 [tron 2010-01-26]
	Updated www/firefox to 3.5.7 [tron 2010-01-26]
	Updated devel/p5-Class-Std to 0.0.11 [sno 2010-01-26]
	Added sysutils/iat version 0.1.7 [wiz 2010-01-26]
	Added www/p5-Task-Catalyst-Tutorial version 0.06 [sno 2010-01-27]
	Updated lang/python25 to 2.5.4nb5 [wiz 2010-01-27]
	Added devel/p5-String-Escape version 2002.001 [sno 2010-01-27]
	Added www/p5-Catalyst-Authentication-Credential-HTTP version 1.011 [sno 2010-01-27]
	Added www/p5-Catalyst-Authentication-Credential-HTTP-Proxy version 0.06 [sno 2010-01-27]
	Updated graphics/comix to 4.0.4nb3 [wiz 2010-01-27]
	Added security/p5-Authen-Htpasswd version 0.16.1 [sno 2010-01-27]
	Added www/p5-Catalyst-Authentication-Store-Htpasswd version 1.003 [sno 2010-01-27]
	Updated devel/kdesdk4 to 4.3.5 [markd 2010-01-27]
	Updated games/kdegames4 to 4.3.5 [markd 2010-01-27]
	Updated games/kdetoys4 to 4.3.5 [markd 2010-01-27]
	Updated graphics/kdegraphics4 to 4.3.5 [markd 2010-01-27]
	Updated graphics/oxygen-icons to 4.3.5 [markd 2010-01-27]
	Updated meta-pkgs/kde4 to 4.3.5 [markd 2010-01-27]
	Updated misc/kdeaccessibility4 to 4.3.5 [markd 2010-01-27]
	Updated misc/kdeadmin4 to 4.3.5 [markd 2010-01-27]
	Updated misc/kdeartwork4 to 4.3.5 [markd 2010-01-27]
	Updated misc/kdeedu4 to 4.3.5 [markd 2010-01-27]
	Updated misc/kdepim-runtime4 to 4.3.5 [markd 2010-01-27]
	Updated misc/kdepim4 to 4.3.5 [markd 2010-01-27]
	Updated misc/kdepimlibs4 to 4.3.5 [markd 2010-01-27]
	Updated misc/kdeplasma-addons4 to 4.3.5 [markd 2010-01-27]
	Updated misc/kdeutils4 to 4.3.5 [markd 2010-01-27]
	Updated multimedia/kdemultimedia4 to 4.3.5 [markd 2010-01-27]
	Updated net/kdenetwork4 to 4.3.5 [markd 2010-01-27]
	Updated www/kdewebdev4 to 4.3.5 [markd 2010-01-27]
	Updated x11/kde4-l10n-de to 4.3.5 [markd 2010-01-27]
	Updated x11/kde4-l10n-en_GB to 4.3.5 [markd 2010-01-27]
	Updated x11/kde4-l10n-nl to 4.3.5 [markd 2010-01-27]
	Updated x11/kdebase-runtime4 to 4.3.5 [markd 2010-01-27]
	Updated x11/kdebase-workspace4 to 4.3.5 [markd 2010-01-27]
	Updated x11/kdebase4 to 4.3.5 [markd 2010-01-27]
	Updated x11/kdebindings4-python to 4.3.5 [markd 2010-01-27]
	Updated x11/kdelibs-experimental4 to 4.3.5 [markd 2010-01-27]
	Updated x11/kdelibs4 to 4.3.5 [markd 2010-01-27]
	Added www/p5-Catalyst-Model-File version 0.08 [sno 2010-01-27]
	Updated graphics/exiv2 to 0.19 [adam 2010-01-27]
	Updated net/tnftpd to 20091122 [lukem 2010-01-28]
	Removed print/tex-hugelatex [wiz 2010-01-28]
	Updated print/tex-jadetex to 3.13nb7 [wiz 2010-01-28]
	Updated lang/parrot to 1.9.0 [he 2010-01-28]
	Updated x11/xdm to 1.1.9 [tnn 2010-01-28]
	Updated x11/libXt to 1.0.7 [tnn 2010-01-28]
	Updated www/apache-tomcat6 to 6.0.24 [spz 2010-01-28]
	Updated print/teTeX3-bin to 3.0nb38 [minskim 2010-01-28]
	Updated print/teTeX3-bin to 3.0nb39 [minskim 2010-01-28]
	Added print/tex-placeins-plain version 2.0 [minskim 2010-01-28]
	Updated print/tex-tetex to 3.0.16770 [minskim 2010-01-28]
	Updated devel/sgb to 20070328nb1 [minskim 2010-01-29]
	Updated print/tex-misc to 2009.15878 [minskim 2010-01-29]
	Updated fonts/tex-cm to 2009.15878 [minskim 2010-01-29]
	Updated print/tex-plain to 3.141592653 [minskim 2010-01-29]
	Added print/tex-tex version 3.1415926 [minskim 2010-01-29]
	Added print/tex-kpathsea version 2009.16044 [minskim 2010-01-29]
	Updated print/tex-babel to 3.8lnb1 [minskim 2010-01-29]
	Updated fonts/tex-latex-fonts to 2009 [minskim 2010-01-29]
	Updated fonts/tex-amsfonts to 3.0 [minskim 2010-01-29]
	Updated fonts/tex-manfnt to 2009 [minskim 2010-01-29]
	Updated fonts/tex-mflogo to 2009 [minskim 2010-01-29]
	Updated fonts/tex-stmaryrd to 2009 [minskim 2010-01-29]
	Updated fonts/tex-tipa to 1.3nb1 [minskim 2010-01-29]
	Updated print/tex-pdftex-def to 0.04m [minskim 2010-01-29]
	Updated print/tex-graphics to 1.0onb1 [minskim 2010-01-29]
	Updated print/tex-tools to 2009 [minskim 2010-01-29]
	Updated print/tex-amsmath to 2.13nb1 [minskim 2010-01-29]
	Updated print/tex-preprint to 2009 [minskim 2010-01-29]
	Updated security/p5-Crypt-Rijndael to 1.09 [sno 2010-01-29]
	Updated security/p5-Crypt-OpenSSL-RSA to 0.26 [sno 2010-01-29]
	Updated time/p5-DateTime-Format-Natural to 0.83 [sno 2010-01-29]
	Updated net/wireshark to 1.2.6 [tron 2010-01-29]
	Updated net/dnsmasq to 2.52 [roy 2010-01-29]
	Updated textproc/p5-String-RewritePrefix to 0.005 [sno 2010-01-29]
	Updated converters/p5-MIME-Base64 to 3.09 [sno 2010-01-29]
	Updated devel/p5-Module-Install to 0.92 [sno 2010-01-29]
	Updated devel/p5-IPC-System-Simple to 1.20 [sno 2010-01-29]
	Updated devel/p5-IPC-Cmd to 0.54 [sno 2010-01-29]
	Updated devel/p5-Test-Pod to 1.41 [sno 2010-01-29]
	Updated devel/p5-Test-Harness to 3.20 [sno 2010-01-29]
	Updated x11/qt4-libs to 4.6.1 [adam 2010-01-29]
	Updated x11/qt4-tools to 4.6.1 [adam 2010-01-29]
	Updated x11/qt4-docs to 4.6.1 [adam 2010-01-29]
	Updated x11/qt4-mysql to 4.6.1 [adam 2010-01-29]
	Updated x11/qt4-pgsql to 4.6.1 [adam 2010-01-29]
	Updated x11/qt4-qdbus to 4.6.1 [adam 2010-01-29]
	Updated x11/qt4-sqlite3 to 4.6.1 [adam 2010-01-29]
	Updated x11/qt4-tiff to 4.6.1 [adam 2010-01-29]
	Updated print/teTeX3-texmf to 3.0nb22 [minskim 2010-01-29]
	Updated print/teTeX3-bin to 3.0nb40 [minskim 2010-01-29]
	Removed print/tex-bin-tex successor print/tex-tex [minskim 2010-01-29]
	Updated fonts/tex-bin-metafont to 2008.12778nb2 [minskim 2010-01-30]
	Updated print/teTeX3-bin to 3.0nb41 [minskim 2010-01-30]
	Updated print/tex-bin-latex to 2008.12778nb4 [minskim 2010-01-30]
	Updated print/tex-pdftex to 1.40.9.12898nb2 [minskim 2010-01-30]
	Removed print/tex-bin-kpathsea successor print/tex-kpathsea [minskim 2010-01-30]
	Updated print/tex-pdftex to 1.40.10 [minskim 2010-01-30]
	Updated graphics/rabbit to 0.6.4 [obache 2010-01-30]
	Updated x11/qt4-libs to 4.6.1nb1 [wiz 2010-01-30]
	Updated net/bittorrent to 4.4.0nb3 [tron 2010-01-30]
	Updated graphics/libgii to 1.0.2 [tnn 2010-01-30]
	Updated graphics/libggi to 2.2.2 [tnn 2010-01-30]
	Updated graphics/libggimisc to 2.2.2 [tnn 2010-01-30]
	Updated graphics/libggigcp to 1.0.2 [tnn 2010-01-30]
	Updated graphics/libggiwmh to 0.3.2 [tnn 2010-01-30]
	Updated print/tex-latexconfig to 2009 [minskim 2010-01-30]
	Updated print/tex-bin-latex to 2008.12778nb5 [minskim 2010-01-30]
	Updated textproc/tex-xmltex to 1.9nb6 [minskim 2010-01-30]
	Updated time/ruby-tzinfo to 0.3.16nb1 [taca 2010-01-30]
	Added net/irrtoolset5 version 5.0.0pre311 [spz 2010-01-30]
	Removed print/tex-bin-xmltex successor print/tex-xmltex [minskim 2010-01-30]
	Updated x11/ggiterm to 0.7.1 [tnn 2010-01-30]
	Updated lang/mzscheme to 4.2.4 [asau 2010-01-31]
	Updated net/dhcpcd to 5.1.5 [roy 2010-01-31]
	Updated archivers/libzip to 0.9.2 [wiz 2010-01-31]
	Added print/cups-drivers-Magicolor5440DL version 1.2.1 [jym 2010-02-01]
	Updated pkgtools/pkg_rolling-replace to 0.19 [sno 2010-02-01]
	Updated pkgtools/pkg_rolling-replace to 0.19nb1 [sno 2010-02-01]
	Added filesystems/fuse-bindfs version 1.8.4 [jmmv 2010-02-01]
	Updated audio/pulseaudio to 0.9.21 [jmcneill 2010-02-01]
	Updated print/tex-latex to 2009 [minskim 2010-02-01]
	Updated pkgtools/pkg_rolling-replace to 0.20 [sno 2010-02-01]
	Updated wm/obconf to 2.0.3nb3 [snj 2010-02-01]
	Updated devel/ruby-gettext to 2.1.0nb1 [taca 2010-02-02]
	Updated lang/parrot to 2.0.0 [he 2010-02-02]
	Updated www/p5-Catalyst-Runtime to 5.80019 [sno 2010-02-02]
	Updated www/p5-Catalyst-Model-Adaptor to 0.06 [sno 2010-02-02]
	Updated www/p5-Catalyst-Plugin-AutoRestart to 0.93 [sno 2010-02-02]
	Updated net/py-IP to 0.70 [obache 2010-02-02]
	Updated www/p5-Catalyst-Action-REST to 0.81 [sno 2010-02-02]
	Updated www/p5-Catalyst-Plugin-Static-Simple to 0.29 [sno 2010-02-02]
	Updated www/p5-Rose-HTML-Objects to 0.606.1 [sno 2010-02-02]
	Updated www/p5-Rose-HTMLx-Form-Related to 0.19 [sno 2010-02-02]
	Updated net/Transmission to 1.83 [tnn 2010-02-02]
	Updated time/p5-Rose-DateTime to 0.533 [sno 2010-02-02]
	Updated time/p5-Time-Piece to 1.17 [sno 2010-02-02]
	Updated comms/gscmxx to 0.4.1nb6 [sno 2010-02-02]
	Added devel/p5-File-Touch version 0.08 [seb 2010-02-02]
	Updated www/squid31 to 3.1.0.15 [tron 2010-02-02]
	Updated x11/qt4-libs to 4.6.1nb2 [adam 2010-02-02]
	Updated x11/qt4-tools to 4.6.1nb1 [adam 2010-02-02]
	Added x11/qt4-mng version 4.6.1 [adam 2010-02-02]
	Updated graphics/babl to 0.1.2 [adam 2010-02-02]
	Updated time/p5-DateTimeX-Easy to 0.088 [sno 2010-02-02]
	Updated time/p5-DateTime-Format-ISO8601 to 0.0700 [sno 2010-02-02]
	Updated archivers/gzip to 1.3.12nb3 [taca 2010-02-02]
	Updated www/squid27 to 2.7.7nb2 [taca 2010-02-02]
	Updated www/squid30 to 3.0.23 [taca 2010-02-02]
	Updated www/p5-Catalyst-Action-RenderView to 0.14 [sno 2010-02-02]
	Updated devel/p5-UNIVERSAL-can to 1.16 [sno 2010-02-02]
	Added net/istgt version 20100125 [sborrill 2010-02-02]
	Added devel/cppcheck version 1.40 [reed 2010-02-02]
	Updated devel/p5-Config-IniFiles to 2.56 [sno 2010-02-02]
	Updated devel/p5-CPAN-Checksums to 2.05 [sno 2010-02-02]
	Updated devel/p5-CPAN-DistnameInfo to 0.09 [sno 2010-02-02]
	Updated devel/p5-Data-Compare to 1.21.02 [sno 2010-02-02]
	Updated devel/p5-ExtUtils-ParseXS to 2.22.02 [sno 2010-02-02]
	Updated devel/p5-Rose-Object to 0.856 [sno 2010-02-02]
	Updated devel/p5-String-Escape to 2010.002 [sno 2010-02-02]
	Updated devel/p5-Test-Harness to 3.21 [sno 2010-02-02]
	Updated databases/p5-DBIx-Class-Schema-Loader to 0.05000 [sno 2010-02-02]
	Updated textproc/p5-Lingua-EN-Inflect to 1.89.1 [sno 2010-02-02]
	Updated textproc/p5-Text-Markdown to 1.0.30 [sno 2010-02-02]
	Updated devel/p5-Try-Tiny to 0.04 [sno 2010-02-02]
	Updated devel/p5-Module-Starter to 1.540 [sno 2010-02-02]
	Updated security/p5-Net-OpenSSH to 0.44 [sno 2010-02-02]
	Updated security/p5-Net-SSLeay to 1.36 [sno 2010-02-02]
	Updated databases/p5-DBM-Deep to 1.0015 [seb 2010-02-02]
	Updated databases/p5-DBD-postgresql to 2.16.1 [sno 2010-02-02]
	Updated databases/p5-ORLite to 1.40 [sno 2010-02-02]
	Added print/tex-url version 3.2 [minskim 2010-02-02]
	Added print/tex-url-doc version 3.2 [minskim 2010-02-02]
	Updated databases/p5-ORLite-Migrate to 1.06 [sno 2010-02-02]
	Updated databases/p5-Rose-DB to 0.758 [sno 2010-02-03]
	Updated databases/p5-Rose-DB-Object to 0.786 [sno 2010-02-03]
	Updated databases/p5-Rose-DBx-Garden to 0.16 [sno 2010-02-03]
	Updated databases/p5-Rose-DBx-TestDB to 0.05 [sno 2010-02-03]
	Updated net/p5-Net-Twitter to 3.11003 [sno 2010-02-03]
	Updated devel/p5-Test-Fixture-DBIC-Schema to 0.03 [sno 2010-02-03]
	Updated security/cvm to 0.96 [schmonz 2010-02-03]
	Updated devel/cppcheck to 1.40nb1 [wiz 2010-02-03]
	Updated devel/mercurial to 1.4.3 [wiz 2010-02-03]
	Updated mail/gmime24 to 2.4.15 [wiz 2010-02-03]
	Updated misc/mnemosyne to 1.2.2 [wiz 2010-02-03]
	Updated games/gbrainy to 1.30 [wiz 2010-02-03]
	Updated devel/p5-version to 0.8000 [sno 2010-02-03]
	Added games/marathon-trilogy version 1.0 [wiz 2010-02-03]
	Updated editors/p5-Padre to 0.56 [sno 2010-02-03]
	Updated devel/p5-Wx-Perl-DataWalker to 0.02nb1 [sno 2010-02-03]
	Updated net/pear-Net_Sieve to 1.1.7 [obache 2010-02-03]
	Added fonts/umefont-ttf version 0.412 [wiz 2010-02-03]
	Updated devel/py-ZopeInterface to 3.5.3 [obache 2010-02-03]
	Added devel/swt version 3.5.1.3555 [jmcneill 2010-02-03]
	Updated x11/qt4-libs to 4.6.1nb3 [wiz 2010-02-03]
	Updated editors/Sigil to 0.1.8 [wiz 2010-02-03]
	Updated sysutils/cdrtools to 2.01.01alpha74 [wiz 2010-02-03]
	Updated emulators/sdlmess to 0.136 [wiz 2010-02-03]
	Updated misc/JBidwatcher to 2.1pre5 [wiz 2010-02-03]
	Updated misc/dialog to 1.1.20100119 [wiz 2010-02-03]
	Updated devel/p5-Class-C3 to 0.22 [seb 2010-02-03]
	Updated www/p5-Alien-GvaScript to 1.21 [seb 2010-02-03]
	Updated devel/scmgit-base to 1.6.6.1 [minskim 2010-02-03]
	Updated devel/scmgit-docs to 1.6.6.1 [minskim 2010-02-03]
	Updated devel/scmgit to 1.6.6.1 [minskim 2010-02-03]
	Added math/wxMaxima version 0.8.4nb1 [wiz 2010-02-03]
	Added geography/p5-Geo-ShapeFile version 2.52 [wiz 2010-02-04]
	Added devel/p5-InlineX-C2XS version 0.15 [wiz 2010-02-04]
	Updated net/yaz to 4.0.1 [wiz 2010-02-04]
	Updated mail/p5-Mail-IMAPClient to 3.23 [wiz 2010-02-04]
	Updated graphics/gegl to 0.1.0nb3 [adma 2010-02-04]
	Updated devel/p5-Moose to 0.95 [wiz 2010-02-04]
	Updated net/pure-ftpd to 1.0.27 [obache 2010-02-04]
	Updated net/nsd to 3.2.4 [joerg 2010-02-04]
	Updated devel/swig to 1.3.36 [taca 2010-02-04]
	Updated sysutils/puppet to 0.24.9 [taca 2010-02-04]
	Updated chat/ircd-hybrid to 7.2.3nb3 [adrianp 2010-02-04]
	Added devel/p5-AnnoCPAN-Perldoc version 0.10 [seb 2010-02-04]
	Added textproc/p5-Search-Indexer version 0.76 [seb 2010-02-04]
	Updated www/p5-Pod-POM-Web to 1.13 [seb 2010-02-05]
	Updated graphics/GraphicsMagick to 1.3.9 [obache 2010-02-05]
	Updated mail/gmime to 2.2.25 [wiz 2010-02-05]
	Updated emulators/snes9x-gtk to 1.52.79 [wiz 2010-02-05]
	Updated misc/pciids to 20091229 [wiz 2010-02-05]
	Updated textproc/raptor to 1.4.21 [wiz 2010-02-05]
	Updated misc/open2300 to 1.10 [martin 2010-02-05]
	Updated misc/open2300 to 1.10 [martin 2010-02-05]
	Added print/tex-ifluatex version 1.2 [minskim 2010-02-05]
	Added print/tex-ifluatex-doc version 1.2 [minskim 2010-02-05]
	Added print/tex-texlive-common-doc version 2009 [minskim 2010-02-05]
	Added print/tex-texlive-en-doc version 2009 [minskim 2010-02-05]
	Added print/tex-apalike version 2009 [minskim 2010-02-05]
	Added print/tex-apalike-doc version 2009 [minskim 2010-02-05]
	Updated mail/squirrelmail to 1.4.20rc2nb3 [wiz 2010-02-05]
	Updated print/tex-bibtex to 0.99cnb1 [minskim 2010-02-05]
	Removed print/dvipdfm successor print/dvipdfmx [minskim 2010-02-05]
	Removed print/tex-bin-dvipdfm [minskim 2010-02-05]
	Added print/tex-dvipdfm version 0.13.2d [minskim 2010-02-05]
	Updated mail/mimedefang to 2.67 [markd 2010-02-05]
	Updated emulators/dynamips to 0.2.8rc2 [markd 2010-02-05]
	Added emulators/dynagen version 0.11.0 [markd 2010-02-05]
	Added print/tex-dvipdfmx version 2009 [minskim 2010-02-06]
	Updated print/dvipdfmx to 20090708nb1 [minskim 2010-02-06]
	Updated mail/mew to 6.3 [taca 2010-02-06]
	Updated math/pari to 2.3.5 [sno 2010-02-06]
	Updated math/p5-Math-Pari to 2.010806.03 [sno 2010-02-06]
	Updated x11/xf86-video-vesa to 2.3.0 [tnn 2010-02-06]
	Updated www/typolight27-translations to 20100131 [taca 2010-02-06]
	Updated www/typolight28-translations to 20100205 [taca 2010-02-06]
	Updated databases/pear-DB to 1.7.13 [taca 2010-02-06]
	Updated graphics/pear-Image_Canvas to 0.3.2 [taca 2010-02-06]
	Updated graphics/pear-Image_Color to 1.0.3 [taca 2010-02-06]
	Updated graphics/pear-Image_Graph to 0.7.2 [taca 2010-02-06]
	Updated mail/pear-Auth_SASL to 1.0.3 [taca 2010-02-06]
	Updated mail/pear-Mail_Mime to 1.6.0 [taca 2010-02-06]
	Updated math/pear-Numbers_Roman to 1.0.2 [taca 2010-02-06]
	Updated math/pear-Numbers_Words to 0.16.1 [taca 2010-02-06]
	Updated net/pear-Net_DIME to 1.0.1 [taca 2010-02-06]
	Updated net/pear-Net_SMTP to 1.4.1 [taca 2010-02-06]
	Updated net/pear-Net_Socket to 1.0.9 [taca 2010-02-06]
	Updated net/pear-Net_URL to 1.0.15 [taca 2010-02-06]
	Updated net/pear-SOAP to 0.12.0 [taca 2010-02-06]
	Updated sysutils/pear-Log to 1.12.0 [taca 2010-02-06]
	Updated textproc/pear-Console_Table to 1.1.3 [taca 2010-02-06]
	Updated www/pear-HTML_Common to 1.2.5 [taca 2010-02-06]
	Updated www/pear-HTTP to 1.4.1 [taca 2010-02-06]
	Updated www/pear-HTTP_Request to 1.4.4 [taca 2010-02-06]
	Added mail/pear-Mail_mimeDecode version 1.5.1 [taca 2010-02-06]
	Updated lang/smlnj to 110.72 [asau 2010-02-07]
	Added www/p5-HTML-Selector-XPath version 0.03 [seb 2010-02-07]
	Added textproc/p5-XML-XPathEngine version 0.12 [seb 2010-02-07]
	Updated converters/skf to 1.97.0 [obache 2010-02-07]
	Updated x11/kdebindings4-python to 4.3.5nb1 [wiz 2010-02-07]
	Updated geography/viking to 0.9.91 [gdt 2010-02-07]
	Updated devel/libidn to 1.17 [wiz 2010-02-07]
	Updated archivers/p5-Archive-Tar to 1.56 [wiz 2010-02-07]
	Updated www/p5-CGI to 3.49 [wiz 2010-02-07]
	Updated devel/p5-Date-Manip to 6.07 [wiz 2010-02-07]
	Updated devel/p5-Module-Install to 0.93 [wiz 2010-02-07]
	Updated devel/p5-Mouse to 0.49 [wiz 2010-02-07]
	Updated databases/shared-mime-info to 0.71 [wiz 2010-02-07]
	Updated devel/liboil to 0.3.17 [wiz 2010-02-07]
	Updated devel/guile-www to 2.25 [wiz 2010-02-07]
	Added www/p5-HTML-TreeBuilder-XPath version 0.11 [seb 2010-02-07]
	Updated converters/fondu to 060102 [zafer 2010-02-07]
	Updated graphics/qiv to 2.2.3 [snj 2010-02-07]
	Updated cross/avrdude to 5.10 [jakllsch 2010-02-08]
	Updated print/tex-enctex to 2009 [minskim 2010-02-08]
	Updated print/tex-hyph-utf8 to 2009 [minskim 2010-02-08]
	Added fonts/tex-mfware version 2009 [minskim 2010-02-08]
	Updated fonts/tex-metafont to 2009 [minskim 2010-02-08]
	Updated print/teTeX3-bin to 3.0nb42 [minskim 2010-02-08]
	Added print/tex-collection-basic version 2009 [minskim 2010-02-08]
	Removed fonts/tex-bin-metafont successor fonts/tex-metafont [minskim 2010-02-08]
	Updated fonts/tex-glyphlist to 2.0nb1 [minskim 2010-02-08]
	Updated x11/qt4-libs to 4.6.1nb4 [wiz 2010-02-08]
	Updated math/py-mpmath to 0.14 [obache 2010-02-08]
	Updated www/nginx to 0.8.33 [joerg 2010-02-08]
	Added www/spawn-fcgi version 1.6.3 [joerg 2010-02-08]
	Updated www/lighttpd to 1.4.26 [joerg 2010-02-08]
	Updated www/typolight27-translations to 20100131nb1 [taca 2010-02-08]
	Updated www/typolight28-translations to 20100207 [taca 2010-02-08]
	Added print/tex-collection-documentation-base-doc version 2009 [minskim 2010-02-08]
	Updated fonts/tex-amsfonts-doc to 3.0 [minskim 2010-02-08]
	Added www/p5-HTML-TreeBuilder-LibXML version 0.11 [seb 2010-02-08]
	Added audio/p5-Audio-Scan version 0.58 [wiz 2010-02-08]
	Added www/p5-Web-Scraper version 0.32 [seb 2010-02-08]
	Updated devel/p5-Moose to 0.96 [seb 2010-02-08]
	Added fonts/tex-cm-doc version 2009.15878 [minskim 2010-02-09]
	Updated www/apache to 1.3.42 [dholland 2010-02-09]
	Updated audio/p5-Audio-Scan to 0.59 [obache 2010-02-09]
	Updated math/R to 2.10.1 [adam 2010-02-09]
	Added print/tex-dvipdfm-doc version 0.13.2d [minskim 2010-02-09]
	Added print/tex-dvipdfmx-doc version 2009.16044 [minskim 2010-02-09]
	Updated print/tex-enctex-doc to 2009 [minskim 2010-02-09]
	Added mail/p5-Mail-Alias version 1.12 [seb 2010-02-09]
	Added www/py-uwsgi version 0.9.4.1 [joerg 2010-02-09]
	Updated www/ap-ssl to 2.8.31nb2 [dholland 2010-02-10]
	Updated audio/py-karaoke to 0.7.2 [wiz 2010-02-10]
	Updated audio/p5-Audio-Wav to 0.08 [obache 2010-02-10]
	Updated net/p5-Net-Amazon to 0.59 [obache 2010-02-10]
	Updated wm/echinus to 0.4.0 [wiz 2010-02-10]
	Updated games/wormux to 0.9.0 [adam 2010-02-10]
	Updated graphics/p5-Image-ExifTool to 8.10 [gdt 2010-02-10]
	Removed sysutils/fdgw [joerg 2010-02-10]
	Removed sysutils/xraidadmin [joerg 2010-02-10]
	Removed net/isc-dhclient [joerg 2010-02-10]
	Removed net/isc-dhcp [joerg 2010-02-10]
	Removed net/isc-dhcpd [joerg 2010-02-10]
	Removed net/isc-dhcrelay [joerg 2010-02-10]
	Removed graphics/3DKit [joerg 2010-02-10]
	Removed graphics/GLXKit [joerg 2010-02-10]
	Removed graphics/GeometryKit [joerg 2010-02-10]
	Removed graphics/GlutKit [joerg 2010-02-10]
	Removed graphics/RenderKit [joerg 2010-02-10]
	Removed graphics/SDLKit [joerg 2010-02-10]
	Removed audio/csound4 [joerg 2010-02-10]
	Removed audio/csound4-manual [joerg 2010-02-10]
	Removed comms/plptools [joerg 2010-02-10]
	Removed databases/php-pdo_odbc [joerg 2010-02-10]
	Removed emulators/vmware [joerg 2010-02-10]
	Removed emulators/vmware-module [joerg 2010-02-10]
	Removed emulators/vmware-module3 [joerg 2010-02-10]
	Removed emulators/vmware3 [joerg 2010-02-10]
	Removed lang/gcc-ssp [joerg 2010-02-10]
	Removed net/boinc3-seti [joerg 2010-02-10]
	Removed databases/py-psycopg [joerg 2010-02-10]
	Removed mail/columba [joerg 2010-02-10]
	Removed net/bind9 [joerg 2010-02-10]
	Removed net/flan [joerg 2010-02-10]
	Removed x11/swing [joerg 2010-02-10]
	Removed parallel/GridSim [joerg 2010-02-10]
	Removed devel/jgrasp [joerg 2010-02-10]
	Removed editors/jave [joerg 2010-02-10]
	Removed lang/jbuilder-jit [joerg 2010-02-10]
	Removed lang/jdk [joerg 2010-02-10]
	Removed lang/jdk-openjit [joerg 2010-02-10]
	Removed lang/sun-jdk14 [joerg 2010-02-10]
	Removed lang/sun-jdk15 [joerg 2010-02-10]
	Removed lang/sun-jre14 [joerg 2010-02-10]
	Removed lang/sun-jre15 [joerg 2010-02-10]
	Removed textproc/php4-xslt [joerg 2010-02-10]
	Removed textproc/php4-domxml [joerg 2010-02-10]
	Removed www/apc-gui [joerg 2010-02-10]
	Removed www/php4-apc [joerg 2010-02-10]
	Removed www/php-FastTemplate [joerg 2010-02-10]
	Removed databases/php-filepro [joerg 2010-02-10]
	Removed net/php-yp [joerg 2010-02-10]
	Removed www/php4 [joerg 2010-02-10]
	Removed x11/tk83 [joerg 2010-02-10]
	Removed lang/tcl83 [joerg 2010-02-10]
	Removed meta-pkgs/php4-extensions [joerg 2010-02-10]
	Updated lang/swi-prolog-lite to 5.9.7 [asau 2010-02-10]
	Updated pkgtools/x11-links to 0.46 [wiz 2010-02-10]
	Updated devel/scmgit-base to 1.6.6.2 [minskim 2010-02-11]
	Updated devel/scmgit-docs to 1.6.6.2 [minskim 2010-02-11]
	Updated devel/scmgit to 1.6.6.2 [minskim 2010-02-11]
	Updated print/tex-etex-doc to 2.1.16381 [minskim 2010-02-11]
	Updated print/tex-hyph-utf8-doc to 2009 [minskim 2010-02-11]
	Updated graphics/GraphicsMagick to 1.3.10 [obache 2010-02-11]
	Added mail/cyrus-imapd23 version 2.3.16 [obache 2010-02-11]
	Added net/pear-Net_LDAP2 version 2.0.7 [obache 2010-02-11]
	Added textproc/py-creole version 0.2.5 [joerg 2010-02-11]
	Added databases/py-cx_Oracle version 5.0.2 [joerg 2010-02-11]
	Updated devel/py-dulwich to 0.4.1 [joerg 2010-02-11]
	Updated mail/gmime to 2.2.25nb1 [wiz 2010-02-11]
	Updated print/tex-ifluatex-doc to 1.2.16936 [minskim 2010-02-11]
	Updated lang/yap to 5.1.3 [asau 2010-02-11]
	Updated print/tex-luatex to 0.2nb1 [minskim 2010-02-11]
	Added print/tex-anonchap version 1.1a [minskim 2010-02-12]
	Updated math/octave to 3.2.4 [asau 2010-02-12]
	Updated fonts/tex-metafont to 2009nb1 [minskim 2010-02-12]
	Added textproc/py-jsonlib version 1.6.1 [wiz 2010-02-12]
	Updated print/scribus to 1.3.3.14 [adam 2010-02-12]
	Updated devel/boost-jam to 1.42.0 [adam 2010-02-12]
	Updated devel/boost-headers to 1.42.0 [adam 2010-02-12]
	Updated devel/boost-libs to 1.42.0 [adam 2010-02-12]
	Updated devel/boost-docs to 1.42.0 [adam 2010-02-12]
	Updated devel/boost-build to 1.42.0 [adam 2010-02-12]
	Updated devel/boost-python to 1.42.0 [adam 2010-02-12]
	Updated meta-pkgs/boost to 1.42.0 [adam 2010-02-12]
	Added devel/p5-Log-Any-Adapter version 0.03 [sno 2010-02-12]
	Added devel/p5-Log-Any-Adapter-Dispatch version 0.05 [sno 2010-02-12]
	Added devel/p5-Log-Any-Adapter-Log4perl version 0.04 [sno 2010-02-12]
	Added wm/musca version 0.9.24 [asau 2010-02-12]
	Updated security/p5-Crypt-RIPEMD160 to 0.04nb4 [sno 2010-02-12]
	Updated security/p5-Crypt-DSA to 1.16nb1 [sno 2010-02-12]
	Updated security/p5-Crypt-OpenPGP to 1.04 [sno 2010-02-12]
	Added databases/p5-DBIx-Class-EncodedColumn version 0.00006 [sno 2010-02-12]
	Updated devel/hg-git to 0.2.1 [joerg 2010-02-12]
	Added www/p5-Task-CatInABox version 0.03 [sno 2010-02-12]
	Updated editors/p5-Padre-Plugin-Catalyst to 0.08 [sno 2010-02-12]
	Updated misc/kdeartwork4 to 4.3.5nb1 [wiz 2010-02-12]
	Updated security/netpgp to 20100212 [agc 2010-02-12]
	Updated www/ikiwiki to 3.20100212 [schmonz 2010-02-13]
	Updated devel/aegis to 4.24.2 [obache 2010-02-13]
	Updated devel/gmp to 5.0.1 [asau 2010-02-13]
	Updated devel/gmp to 5.0.1 [asau 2010-02-13]
	Updated x11/xf86-input-vmmouse to 12.6.6 [obache 2010-02-13]
	Renamed devel/electricfence to devel/electric-fence [reed 2010-02-13]
	Updated mail/dbmail to 2.2.15 [obache 2010-02-14]
	Updated pkgtools/gnome-packagekit to 0.4.0nb2 [obache 2010-02-14]
	Updated mail/fetchmail to 6.3.14 [wiz 2010-02-14]
	Updated x11/gtk2 to 2.18.7 [wiz 2010-02-14]
	Updated net/clive to 2.2.9 [wiz 2010-02-14]
	Updated security/f-prot-antivirus6-ms-bin to 6.0.1nb1 [taca 2010-02-14]
	Updated www/typolight28-translations to 20100210 [taca 2010-02-14]
	Updated databases/ruby-odbc to 0.9998 [taca 2010-02-14]
	Updated chat/ruby-net-irc to 0.0.9 [taca 2010-02-14]
	Updated databases/ruby-activeldap to 1.2.1 [taca 2010-02-14]
	Updated www/squid27 to 2.7.7nb3 [taca 2010-02-14]
	Updated www/squid30 to 3.0.24 [taca 2010-02-14]
	Updated www/dillo to 2.2 [snj 2010-02-14]
	Updated cross/h8300-hms-gcc to 3.1nb4 [dholland 2010-02-14]
	Updated cross/h8300-hms-gcc to 3.1nb5 [dholland 2010-02-14]
	Updated inputmethod/skkserv to 3.9.4nb6 [dholland 2010-02-14]
	Added print/tex-kpathsea-doc version 2009.16044 [minskim 2010-02-14]
	Updated print/tex-luatex-doc to 0.2 [minskim 2010-02-14]
	Updated textproc/tex-makeindex-doc to 2.12nb1 [minskim 2010-02-14]
	Added net/xymonclient version 4.3.0b2 [spz 2010-02-14]
	Added net/xymon version 4.3.0b2 [spz 2010-02-14]
	Updated print/tex-luatex to 0.2nb2 [minskim 2010-02-14]
	Updated fonts/tex-mflogo-doc to 2009 [minskim 2010-02-14]
	Updated print/tex-pdftex-doc to 1.40.10 [minskim 2010-02-15]
	Added print/tex-tetex-doc version 3.0 [minskim 2010-02-15]
	Added print/tex-collection-basic-doc version 2009 [minskim 2010-02-15]
	Updated converters/skf to 1.97.0a [obache 2010-02-15]
	Updated graphics/oxygen-icons to 4.3.5nb1 [wiz 2010-02-15]
	Removed shells/bash3 successor shells/bash [wiz 2010-02-15]
	Removed inputmethod/sj3-lib [obache 2010-02-15]
	Removed inputmethod/sj3-server-bin [obache 2010-02-15]
	Removed inputmethod/sj3-dict [obache 2010-02-15]
	Added inputmethod/sj3-client version 2.0.2.23p1 [obache 2010-02-15]
	Updated inputmethod/sj3-server to 2.0.2.23p1 [obache 2010-02-15]
	Added inputmethod/sj3 version 2.0.2.23p1 [obache 2010-02-15]
	Updated time/p5-Time-HiRes to 1.9720 [sno 2010-02-15]
	Updated inputmethod/kinput2 to 3.1 [obache 2010-02-15]
	Updated devel/p5-ExtUtils-ParseXS to 2.22.03 [sno 2010-02-15]
	Updated devel/p5-ExtUtils-XSpp to 0.09 [sno 2010-02-15]
	Updated devel/p5-CPAN-Reporter to 1.1710 [sno 2010-02-15]
	Updated devel/p5-Data-Compare to 1.22 [sno 2010-02-15]
	Moved graphics/digikam to graphics/digikam-kde3 [wiz 2010-02-15]
	Moved graphics/digikam-doc to graphics/digikam-doc [wiz 2010-02-15]
	Updated graphics/digikam to 1.1.0 [wiz 2010-02-15]
	Updated devel/p5-Data-Dumper-Concise to 1.200 [sno 2010-02-15]
	Updated devel/p5-Data-Page to 2.02 [sno 2010-02-15]
	Updated devel/p5-Data-Pageset to 1.06 [sno 2010-02-15]
	Moved graphics/kipi-plugins to graphics/kipi-plugins-kde3 [wiz 2010-02-15]
	Moved graphics/kipi-plugins-calendar to graphics/kipi-plugins-calendar-kde3 [wiz 2010-02-15]
	Updated graphics/kipi-plugins to 1.1.0 [wiz 2010-02-15]
	Updated devel/p5-Data-Peek to 0.30 [sno 2010-02-15]
	Moved misc/tellico to misc/tellico-kde3 [wiz 2010-02-15]
	Updated misc/tellico to 2.1.1nb3 [wiz 2010-02-15]
	Updated devel/p5-Data-Section to 0.100.270 [sno 2010-02-15]
	Updated misc/tellico to 2.2 [wiz 2010-02-15]
	Updated devel/p5-Data-Visitor to 0.27 [sno 2010-02-15]
	Updated devel/p5-Devel-Dumpvar to 1.06 [sno 2010-02-15]
	Updated devel/p5-Devel-PartialDump to 0.13 [sno 2010-02-15]
	Updated devel/p5-Devel-StackTrace-WithLexicals to 0.05 [sno 2010-02-15]
	Moved net/kmldonkey to net/kmldonkey-kde3 [wiz 2010-02-15]
	Updated net/kmldonkey to 2.0.2.4.3.3 [wiz 2010-02-15]
	Updated devel/p5-Getopt-Long-Descriptive to 0.084 [sno 2010-02-15]
	Added audio/taglib-extras version 1.0.1 [wiz 2010-02-15]
	Updated devel/p5-Inline to 0.46 [sno 2010-02-15]
	Updated devel/p5-IPC-Cmd to 0.56 [sno 2010-02-15]
	Added audio/liblastfm version 0.3.0nb2 [wiz 2010-02-15]
	Added devel/qtscriptgenerator version 0.1.0nb3 [wiz 2010-02-15]
	Updated devel/p5-Log-Log4perl to 1.27 [sno 2010-02-15]
	Updated devel/p5-Log-Any to 0.11 [sno 2010-02-15]
	Updated devel/p5-Log-Any-Adapter-Dispatch to 0.06 [sno 2010-02-15]
	Updated devel/p5-Log-Any-Adapter-Log4perl to 0.05 [sno 2010-02-15]
	Updated devel/p5-Log-Dispatch-Config to 1.03 [sno 2010-02-15]
	Updated devel/p5-Term-ANSIColor to 3.00 [sno 2010-02-15]
	Added devel/libnjb version 2.2.6 [wiz 2010-02-15]
	Updated x11/p5-Wx to 0.97.01 [sno 2010-02-15]
	Added databases/mysql51-embedded version 5.1.43 [wiz 2010-02-15]
	Added audio/moodbar version 0.1.2 [wiz 2010-02-15]
	Updated devel/p5-Rose-Object to 0.858 [sno 2010-02-15]
	Updated print/tex-dvips to 2009.16770 [minskim 2010-02-15]
	Updated print/tex-dvips-doc to 2009.16770 [minskim 2010-02-15]
	Added print/tex-latex-bin version 2009 [minskim 2010-02-15]
	Updated devel/p5-Data-OptList to 0.106 [seb 2010-02-16]
	Updated devel/ruby-gettext-activerecord to 2.1.0nb1 [taca 2010-02-16]
	Updated databases/ruby-activeldap to 1.2.1nb1 [taca 2010-02-16]
	Updated cad/mcalc to 1.6 [dmcmahill 2010-02-16]
	Updated devel/p5-PPI to 1.210 [sno 2010-02-16]
	Added audio/libifp version 1.0.0.2 [wiz 2010-02-16]
	Added devel/p5-Log-Report version 0.26 [sno 2010-02-16]
	Moved audio/amarok to audio/amarok-kde3 [wiz 2010-02-16]
	Updated audio/amarok to 2.2.2nb3 [wiz 2010-02-16]
	Updated devel/p5-Hash-Case to 1.010 [sno 2010-02-16]
	Updated devel/p5-Hash-Merge to 0.12 [sno 2010-02-16]
	Updated devel/libidn to 1.18 [wiz 2010-02-16]
	Updated devel/p5-Mixin-Linewise to 0.003 [sno 2010-02-16]
	Updated devel/p5-Moose to 0.98 [sno 2010-02-16]
	Updated devel/bzr to 2.0.3 [wiz 2010-02-16]
	Updated security/caff to 1.1.3 [wiz 2010-02-16]
	Updated devel/p5-MooseX-ClassAttribute to 0.13 [sno 2010-02-16]
	Updated devel/p5-MooseX-Types-Structured to 0.20 [sno 2010-02-16]
	Updated devel/p5-MooseX-Method-Signatures to 0.30 [sno 2010-02-16]
	Updated devel/p5-MooseX-Declare to 0.33 [sno 2010-02-16]
	Updated devel/p5-MooseX-Role-Parameterized to 0.17 [sno 2010-02-16]
	Updated devel/p5-MooseX-Traits to 0.08 [sno 2010-02-16]
	Updated devel/p5-MooseX-Traits-Pluggable to 0.09 [sno 2010-02-16]
	Updated www/curl to 7.20.0 [wiz 2010-02-16]
	Updated devel/p5-Object-InsideOut to 3.58 [sno 2010-02-16]
	Updated x11/qt4-libs to 4.6.2 [adam 2010-02-16]
	Updated x11/qt4-tools to 4.6.2 [adam 2010-02-16]
	Updated x11/qt4-docs to 4.6.2 [adam 2010-02-16]
	Updated x11/qt4-mng to 4.6.2 [adam 2010-02-16]
	Updated x11/qt4-mysql to 4.6.2 [adam 2010-02-16]
	Updated x11/qt4-pgsql to 4.6.2 [adam 2010-02-16]
	Updated x11/qt4-qdbus to 4.6.2 [adam 2010-02-16]
	Updated x11/qt4-sqlite3 to 4.6.2 [adam 2010-02-16]
	Updated x11/qt4-tiff to 4.6.2 [adam 2010-02-16]
	Updated databases/p5-SQL-Abstract to 1.61 [sno 2010-02-16]
	Updated sysutils/dbus-glib to 0.84 [wiz 2010-02-16]
	Updated devel/libgsf to 1.14.17 [wiz 2010-02-16]
	Updated databases/p5-DBIx-Class to 0.08119 [sno 2010-02-16]
	Updated wm/openbox to 3.4.11 [wiz 2010-02-16]
	Added fonts/proggy-fonts version 1 [wiz 2010-02-16]
	Updated databases/p5-DBIx-Class-Schema-Loader to 0.05002 [sno 2010-02-16]
	Updated mail/p5-MailTools to 2.06 [wiz 2010-02-16]
	Updated www/pear-HTML_Select to 1.3.0 [taca 2010-02-16]
	Updated devel/p5-Mouse to 0.50 [wiz 2010-02-16]
	Updated security/polkit-qt to 0.9.3 [wiz 2010-02-16]
	Updated time/py-pytz to 2010b [wiz 2010-02-16]
	Updated textproc/rasqal to 0.9.19 [wiz 2010-02-16]
	Updated mail/t-prot to 2.15 [wiz 2010-02-16]
	Updated textproc/xapian to 1.0.18 [wiz 2010-02-16]
	Updated textproc/xapian-omega to 1.0.18 [wiz 2010-02-16]
	Updated net/gupnp-av to 0.5.4 [wiz 2010-02-16]
	Updated net/gupnp-tools to 0.8 [wiz 2010-02-16]
	Updated editors/Sigil to 0.1.9 [wiz 2010-02-16]
	Updated audio/alsa-lib to 1.0.22 [wiz 2010-02-16]
	Added net/samba33 version 3.3.10 [taca 2010-02-16]
	Updated net/pear-Net_LDAP2 to 2.0.8 [taca 2010-02-16]
	Added textproc/po-mode version 2.01 [taca 2010-02-16]
	Updated x11/wxGTK24 to 2.4.2nb16 [taca 2010-02-16]
	Updated x11/wxGTK26 to 2.6.3nb6 [taca 2010-02-16]
	Updated x11/wxGTK28 to 2.8.10nb5 [taca 2010-02-16]
	Updated lang/mono to 2.6.1 [kefren 2010-02-16]
	Updated graphics/libgdiplus to 2.6 [kefren 2010-02-16]
	Updated devel/mono-tools to 2.6.1 [kefren 2010-02-16]
	Updated lang/mono-basic to 2.6 [kefren 2010-02-16]
	Updated www/mono-xsp to 2.6 [kefren 2010-02-16]
	Updated www/ap-mono to 2.6 [kefren 2010-02-16]
	Updated devel/monodevelop to 2.2.1 [kefren 2010-02-16]
	Updated audio/alsa-plugins-oss to 1.0.22 [wiz 2010-02-16]
	Updated audio/alsa-utils to 1.0.22 [wiz 2010-02-16]
	Updated audio/alsa-plugins-pulse to 1.0.22 [wiz 2010-02-16]
	Updated devel/libgsf-gnome to 1.14.17 [wiz 2010-02-17]
	Updated devel/p5-Acme-PlayCode to 0.12 [sno 2010-02-17]
	Updated sysutils/p5-SSH-Batch to 0.023 [sno 2010-02-17]
	Updated devel/p5-MooseX-MethodAttributes to 0.20 [sno 2010-02-17]
	Updated devel/p5-MooseX-SimpleConfig to 0.05 [sno 2010-02-17]
	Updated devel/p5-Parse-RecDescent to 1.96.4 [sno 2010-02-17]
	Updated devel/p5-Config-Any to 0.19 [sno 2010-02-17]
	Updated devel/p5-common-sense to 3.00 [sno 2010-02-17]
	Updated converters/p5-JSON-XS to 2.270 [sno 2010-02-17]
	Updated www/typolight28 to 2.8.0 [taca 2010-02-17]
	Removed www/typolight26-translations [taca 2010-02-17]
	Removed www/typolight26-example [taca 2010-02-17]
	Removed www/typolight26 [taca 2010-02-17]
	Updated devel/xulrunner to 1.9.1.8 [tnn 2010-02-17]
	Updated www/firefox to 3.5.8 [tnn 2010-02-17]
	Updated devel/nspr to 4.8.3.8 [tnn 2010-02-17]
	Updated www/seamonkey to 2.0.3 [tnn 2010-02-17]
	Updated print/gutenprint-lib to 5.2.5 [gdt 2010-02-18]
	Updated net/samba33 to 3.3.10nb1 [taca 2010-02-18]
	Added sysutils/p5-Mac-AppleScript version 0.04 [seb 2010-02-18]
	Added sysutils/p5-Mac-AppleScript-Glue version 0.03 [seb 2010-02-18]
	Updated lang/parrot to 2.1.0 [he 2010-02-18]
	Updated security/openssh to 5.3.1 [martti 2010-02-18]
	Updated editors/vim-share to 7.2.367 [martti 2010-02-18]
	Updated devel/p5-IO-CaptureOutput to 1.11.02 [sno 2010-02-18]
	Updated devel/p5-autodie to 2.08 [sno 2010-02-18]
	Updated devel/p5-Params-Validate to 0.95 [sno 2010-02-18]
	Updated devel/p5-ExtUtils-CBuilder to 0.27.01 [sno 2010-02-18]
	Updated time/p5-Time-Piece to 1.19 [sno 2010-02-18]
	Updated www/p5-FCGI to 0.69 [sno 2010-02-18]
	Added print/mupdf version 0.0.937 [wiz 2010-02-18]
	Updated wm/scrotwm to 0.9.22 [obache 2010-02-18]
	Updated pkgtools/x11-links to 0.47 [obache 2010-02-18]
	Updated databases/mysql5-client to 5.0.90 [taca 2010-02-18]
	Updated databases/mysql5-server to 5.0.90 [taca 2010-02-18]
	Updated www/typolight28-translations to 20100218 [taca 2010-02-18]
	Updated www/typolight28-translations to 20100218nb1 [taca 2010-02-18]
	Updated net/Transmission to 1.90 [tnn 2010-02-18]
	Updated x11/pixman to 0.16.6 [drochner 2010-02-18]
	Updated graphics/freetype2 to 2.3.12 [drochner 2010-02-18]
	Added math/gnumeric110 version 1.10.0 [drochner 2010-02-18]
	Added misc/goffice0.8 version 0.8.0 [drochner 2010-02-18]
	Updated x11/gnome-screensaver to 2.28.3 [drochner 2010-02-18]
	Updated multimedia/gst-plugins0.10-good to 0.10.18 [drochner 2010-02-18]
	Updated multimedia/gst-plugins0.10-base to 0.10.26 [drochner 2010-02-18]
	Updated multimedia/gstreamer0.10 to 0.10.26 [drochner 2010-02-18]
	Updated lang/mono to 2.6.1nb1 [ghen 2010-02-18]
	Updated math/pari to 2.3.5nb2 [schmonz 2010-02-19]
	Added math/prng version 3.0.2 [wiz 2010-02-19]
	Updated lang/wsbasic to 1.2.7 [ghen 2010-02-19]
	Updated devel/libdaemon to 0.14nb1 [he 2010-02-19]
	Updated x11/wxGTK28 to 2.8.10nb6 [sno 2010-02-19]
	Updated math/pari to 2.3.5nb3 [schmonz 2010-02-19]
	Updated print/teTeX3-bin to 3.0nb43 [minskim 2010-02-19]
	Updated print/tex-IEEEtran to 1.7anb3 [minskim 2010-02-19]
	Updated print/tex-carlisle to 2008.7340nb1 [minskim 2010-02-19]
	Updated print/tex-colortbl to 0.1nb1 [minskim 2010-02-19]
	Updated print/tex-exam to 2.3nb1 [minskim 2010-02-19]
	Updated print/tex-natbib to 8.3nb1 [minskim 2010-02-19]
	Updated print/tex-fancyhdr to 3.1nb1 [minskim 2010-02-19]
	Updated print/tex-hyperref to 6.78rnb1 [minskim 2010-02-19]
	Updated print/tex-ltxmisc to 2008.12680nb2 [minskim 2010-02-19]
	Updated print/tex-oberdiek to 2008.12705nb1 [minskim 2010-02-19]
	Updated print/tex-rotating to 2.16anb1 [minskim 2010-02-19]
	Removed print/tex-bin-latex successor print/tex-latex-bin [minskim 2010-02-19]
	Updated editors/emacs-snapshot to 23.1.92.20100217 [minskim 2010-02-19]
	Updated databases/openldap to 2.4.21 [ghen 2010-02-19]
	Updated databases/openldap-client to 2.4.21 [ghen 2010-02-19]
	Updated databases/openldap-cloak to 2.4.21 [ghen 2010-02-19]
	Updated databases/openldap-doc to 2.4.21 [ghen 2010-02-19]
	Updated databases/openldap-nops to 2.4.21 [ghen 2010-02-19]
	Updated databases/openldap-server to 2.4.21 [ghen 2010-02-19]
	Updated databases/openldap-smbk5pwd to 2.4.21 [ghen 2010-02-19]
	Added print/tex-german version 2.5e [tron 2010-02-19]
	Updated meta-pkgs/netbsd-www to 1.5 [tron 2010-02-19]
	Updated print/tex-latex-bin to 2009nb1 [minskim 2010-02-20]
	Updated archivers/bsdtar to 2.8.0 [joerg 2010-02-20]
	Updated archivers/libarchive to 2.8.0 [joerg 2010-02-20]
	Updated net/sipcalc to 1.1.5 [seb 2010-02-20]
	Updated inputmethod/canna-canuum to 3.6pl4nb3 [obache 2010-02-20]
	Added net/p5-Test-DNS version 0.07 [seb 2010-02-20]
	Added devel/p5-Test-SharedFork version 0.11 [seb 2010-02-20]
	Added net/p5-Test-TCP version 0.16 [seb 2010-02-20]
	Updated pkgtools/x11-links to 0.47nb1 [bouyer 2010-02-20]
	Updated graphics/geeqie to 1.0 [gdt 2010-02-20]
	Added devel/easygit version 1.6.5.3 [plunky 2010-02-21]
	Updated graphics/cairo to 1.8.10 [wiz 2010-02-21]
	Updated databases/mysql51-embedded to 5.1.44 [wiz 2010-02-21]
	Updated sysutils/cdrtools to 2.01.01alpha76 [wiz 2010-02-21]
	Updated multimedia/py-gstreamer0.10 to 0.10.18 [wiz 2010-02-21]
	Updated archivers/par2 to 0.4nb1 [wiz 2010-02-21]
	Updated www/typolight28-translations to 20100221 [taca 2010-02-21]
	Added print/tex-german-doc version 2.5e [minskim 2010-02-21]
	Removed sysutils/adjustkernel [wiz 2010-02-21]
	Updated sysutils/grub to 0.97nb9 [wiz 2010-02-21]
	Added print/tex-latex-doc version 2009 [minskim 2010-02-22]
	Removed devel/mk-files [wiz 2010-02-22]
	Updated misc/git to 4.9.5nb1 [obache 2010-02-22]
	Updated graphics/GraphicsMagick to 1.3.11 [obache 2010-02-22]
	Updated security/p5-Data-SimplePassword to 0.05 [sno 2010-02-22]
	Updated textproc/p5-Text-RecordParser to 1.4.0 [sno 2010-02-22]
	Updated textproc/p5-Template-Tiny to 0.11 [sno 2010-02-22]
	Updated textproc/p5-podlators to 2.3.1 [sno 2010-02-22]
	Updated textproc/p5-String-BufferStack to 1.15 [sno 2010-02-22]
	Updated textproc/p5-Template-Declare to 0.43 [sno 2010-02-22]
	Updated sysutils/p5-Sys-Filesystem to 1.27 [sno 2010-02-22]
	Updated textproc/p5-Convert-BER to 1.3200 [sno 2010-02-22]
	Updated textproc/p5-Data-FormValidator to 4.65 [sno 2010-02-22]
	Updated textproc/p5-Kwalify to 1.21 [sno 2010-02-22]
	Updated textproc/p5-XML-Elemental to 2.1.1 [sno 2010-02-22]
	Updated security/p5-Authen-SASL to 2.13 [sno 2010-02-22]
	Updated textproc/p5-XML-Stream to 1.23 [sno 2010-02-22]
	Updated textproc/p5-XML-Twig to 3.34 [sno 2010-02-22]
	Updated sysutils/p5-Lchown to 1.01 [sno 2010-02-22]
	Updated security/p5-Net-OpenSSH to 0.45 [sno 2010-02-22]
	Updated devel/p5-CPAN-Reporter to 1.1711 [sno 2010-02-22]
	Updated mail/p5-MIME-Charset to 1.008 [sno 2010-02-22]
	Updated www/p5-HTTP-Body to 1.07 [sno 2010-02-22]
	Updated www/p5-HTTP-Server-Simple to 0.42 [sno 2010-02-22]
	Updated www/p5-URI-Find to 20100211 [sno 2010-02-22]
	Updated www/p5-CSS-Squish to 0.09 [sno 2010-02-22]
	Updated www/p5-Rose-HTMLx-Form-Related to 0.20 [sno 2010-02-22]
	Updated databases/p5-DBIx-Class-Schema-Loader to 0.05003 [sno 2010-02-22]
	Updated databases/p5-SQL-Translator to 0.11004 [sno 2010-02-22]
	Added games/doom1 version 1.8 [wiz 2010-02-22]
	Updated databases/p5-Rose-DBx-Garden to 0.17 [sno 2010-02-23]
	Updated devel/p5-Cache-FastMmap to 1.35 [sno 2010-02-23]
	Updated devel/p5-Devel-Caller to 2.04 [sno 2010-02-23]
	Updated archivers/p5-Archive-Tar to 1.58 [sno 2010-02-23]
	Updated devel/p5-Test-LongString to 0.13 [sno 2010-02-23]
	Updated math/p5-Spreadsheet-WriteExcel to 2.37 [sno 2010-02-23]
	Updated devel/p5-Module-Install to 0.94 [sno 2010-02-23]
	Updated lang/parrot to 2.1.1 [he 2010-02-23]
	Updated devel/p5-MooseX-Types-Common to 0.001002 [sno 2010-02-23]
	Updated devel/p5-ExtUtils-CBuilder to 0.27.02 [sno 2010-02-23]
	Added sysutils/p5-IO-KQueue version 0.34 [sno 2010-02-23]
	Added sysutils/p5-Linux-Inotify2 version 1.2.1 [sno 2010-02-23]
	Updated devel/p5-File-ChangeNotify to 0.12 [sno 2010-02-23]
	Updated www/typo3 to 4.3.2 [taca 2010-02-23]
	Updated devel/p5-Method-Signatures-Simple to 0.05 [sno 2010-02-23]
	Updated devel/p5-Test-WWW-Selenium to 1.21 [sno 2010-02-23]
	Updated devel/p5-Test-YAML-Meta to 0.15 [sno 2010-02-23]
	Updated security/p5-IO-Socket-SSL to 1.32 [sno 2010-02-23]
	Updated time/p5-DateTime-Format-Natural to 0.84 [sno 2010-02-23]
	Updated www/p5-libapreq2 to 2.12 [sno 2010-02-23]
	Updated www/p5-libapreq to 1.34 [sno 2010-02-23]
	Updated www/p5-App-Nopaste to 0.19 [sno 2010-02-23]
	Updated devel/p5-autodie to 2.09 [sno 2010-02-23]
	Updated devel/p5-App-Cmd to 0.304 [sno 2010-02-23]
	Updated devel/p5-Curses to 1.28 [sno 2010-02-23]
	Updated devel/p5-Test-YAML-Valid to 0.04 [sno 2010-02-23]
	Updated devel/p5-UUID-Tiny to 1.03 [sno 2010-02-23]
	Updated databases/p5-Apache-DBI to 1.08 [sno 2010-02-23]
	Updated net/msdl to 1.2.7 [obache 2010-02-24]
	Updated cad/gerbv to 2.4.0 [dmcmahill 2010-02-24]
	Updated lang/sbcl to 1.0.35 [asau 2010-02-24]
	Updated security/mit-krb5 to 1.4.2nb9 [tez 2010-02-24]
	Updated pkgtools/pbulk to 0.46 [joerg 2010-02-24]
	Updated www/privoxy to 3.0.16 [mjl 2010-02-24]
	Removed www/galeon successor www/epiphany [tnn 2010-02-25]
	Updated mail/postfix to 2.7.0 [martti 2010-02-25]
	Updated mail/postfix-current to 2.8.20100213 [martti 2010-02-25]
	Updated x11/p5-Wx to 0.97.01nb1 [sno 2010-02-25]
	Updated editors/p5-Padre to 0.57 [sno 2010-02-25]
	Updated misc/calibre to 0.6.24nb6 [wiz 2010-02-25]
	Updated multimedia/ns-flash to 9.0.262 [mishka 2010-02-25]
	Updated x11/py-qt4 to 4.7nb1 [wiz 2010-02-25]
	Updated graphics/p5-Image-Size to 3.2.2 [sno 2010-02-25]
	Updated sysutils/ddrescue to 1.11 [wiz 2010-02-25]
	Updated net/Transmission to 1.91 [tnn 2010-02-25]
	Updated security/sudo to 1.7.2p4 [taca 2010-02-26]
	Updated security/openssl to 0.9.8m [taca 2010-02-26]
	Updated devel/m4 to 1.4.14 [wiz 2010-02-26]
	Updated textproc/p5-Text-vCard to 2.07 [wiz 2010-02-26]
	Updated mail/thunderbird to 3.0.2 [tnn 2010-02-26]
	Added www/lua-curl version 0.2 [agc 2010-02-26]
	Updated lang/php5 to 5.2.13 [taca 2010-02-27]
	Updated textproc/php-json to 5.2.13 [taca 2010-02-27]
	Updated net/msdl to 1.2.7r1 [obache 2010-02-27]
	Updated net/dhcpcd to 5.2.0 [roy 2010-02-27]
	Removed emulators/peace [kent 2010-02-27]
	Updated net/dhcpcd to 5.2.1 [roy 2010-02-27]
	Updated shells/zsh-current to 4.3.10 [snj 2010-02-27]
	Updated x11/py-qt4 to 4.7nb2 [wiz 2010-02-27]
	Updated emulators/qemu to 0.12.3 [tnn 2010-02-27]
	Updated devel/memcached to 1.4.4 [morr 2010-02-27]
	Updated www/typolight28-translations to 20100226 [taca 2010-02-28]
	Updated www/typolight28 to 2.8.1 [taca 2010-02-28]
	Updated cad/verilog-current to 20090923 [dmcmahill 2010-02-28]
	Updated cad/geda to 1.6.1 [dmcmahill 2010-02-28]
	Updated net/filezilla to 3.3.2 [zafer 2010-02-28]
	Removed audio/cmus-unofficial successor audio/cmus [ahoka 2010-02-28]
	Updated audio/cmus to 2.3.0rc1 [ahoka 2010-02-28]
	Updated textproc/p5-Data-FormValidator to 4.66 [sno 2010-03-01]
	Updated security/openssl to 0.9.8mnb1 [taca 2010-03-01]
	Updated mail/sylpheed to 3.0.0 [tnn 2010-03-01]
	Added lang/likepython version 0.1 [is 2010-03-01]
	Added games/hex-a-hop version 1.1.0 [wiz 2010-03-01]
	Updated textproc/json-glib to 0.10.2 [obache 2010-03-02]
	Updated net/tor to 0.2.1.24 [obache 2010-03-02]
	Updated devel/ruby-highline to 1.5.2 [obache 2010-03-02]
	Added devel/ruby-termcolor version 1.2.0 [obache 2010-03-02]
	Added net/ruby-rubytter version 1.0.3 [obache 2010-03-02]
	Added www/termtter version 1.7.2 [obache 2010-03-02]
	Updated x11/p5-Wx-Perl-ProcessStream to 0.27 [sno 2010-03-02]
	Updated mail/pear-Mail to 1.2.0 [taca 2010-03-02]
	Updated archivers/php-zip to 5.2.13.1.8.11 [taca 2010-03-02]
	Updated www/typolight28-translations to 20100301 [taca 2010-03-02]
	Updated net/samba33 to 3.3.11 [taca 2010-03-02]
	Added devel/monotone-el version 0.46 [jmmv 2010-03-02]
	Updated audio/cmus to 2.3.0 [ahoka 2010-02-28]
	Updated misc/openoffice3-bin to 3.2.0 [bad 2010-03-02]
	Added geography/qlandkartegt version 0.17.1 [jkunz 2010-03-02]
	Added geography/qlandkartegt-garmindev version 0.3.3 [jkunz 2010-03-02]
	Added geography/qlandkartem version 0.2.0 [jkunz 2010-03-02]
	Removed databases/php-oracle [taca 2010-03-03]
	Updated cad/magic to 7.5.188 [dmcmahill 2010-03-03]
	Updated multimedia/libdv to 1.0.0 [obache 2010-03-03]
	Updated multimedia/libdv-tools to 1.0.0 [obache 2010-03-03]
	Updated math/py-networkx to 1.0.1 [obache 2010-03-03]
	Added devel/colordiff version 1.0.9 [gdt 2010-03-03]
	Updated net/drill to 1.6.4 [he 2010-03-03]
	Updated www/ikiwiki to 3.20100302 [schmonz 2010-03-03]
	Updated www/typolight28-translations to 20100302 [taca 2010-03-03]
	Updated editors/vim-share to 7.2.385 [martti 2010-03-03]
	Updated archivers/unzip to 6.0 [wiz 2010-03-03]
	Updated devel/subversion to 1.6.9nb1 [gdt 2010-03-03]
	Updated textproc/p5-Text-CSV_XS to 0.71 [sno 2010-03-03]
	Updated devel/p5-Log-Log4perl to 1.28 [sno 2010-03-03]
	Updated devel/p5-Tie-IxHash to 1.22 [sno 2010-03-03]
	Updated devel/p5-Module-Find to 0.10 [sno 2010-03-03]
	Updated devel/p5-autodie to 2.10 [sno 2010-03-03]
	Updated databases/p5-SQL-Translator to 0.11005 [sno 2010-03-03]
	Updated databases/p5-DBIx-Class to 0.08120 [sno 2010-03-03]
	Updated graphics/p5-RRDTool-OO to 0.30 [sno 2010-03-03]
	Added audio/sfxr version 1.1 [wiz 2010-03-03]
	Updated www/drupal to 5.22 [taca 2010-03-04]
	Updated www/drupal6 to 6.16 [taca 2010-03-04]
	Updated geography/epsg to 7.4.1 [gdt 2010-03-04]
	Updated graphics/clutter to 1.2.0 [obache 2010-03-04]
	Updated sysutils/memtester to 4.1.3 [schmonz 2010-03-04]
	Updated geography/epsg-docs to 200911 [gdt 2010-03-04]
	Updated lang/php5 to 5.2.13nb1 [taca 2010-03-04]
	Updated security/php-suhosin to 5.2.13.0.9.29 [taca 2010-03-04]
	Updated mail/squirrelmail to 1.4.20rc2nb4 [taca 2010-03-04]
	Added databases/mysql51-client version 5.1.44 [taca 2010-03-04]
	Added databases/mysql51-server version 5.1.44 [taca 2010-03-04]
	Updated x11/x3270 to 3.3.10ga4 [gls 2010-03-04]
	Updated mail/squirrelmail to 1.4.20rc2nb5 [taca 2010-03-05]
	Updated databases/mysqlcc to 0.9.8 [taca 2010-03-05]
	Updated databases/postgresql-postgis to 1.5.0 [gdt 2010-03-05]
	Updated www/gitweb to 1.6.6.2 [gdt 2010-03-05]
	Updated security/netpgp to 20100304 [agc 2010-03-05]
	Updated security/netpgp to 20100305 [agc 2010-03-05]
	Updated net/py-twisted to 10.0.0 [obache 2010-03-06]
	Updated net/py-twisted-docs to 10.0.0 [obache 2010-03-06]
	Updated geography/epsg-docs to 200911nb1 [dholland 2010-03-07]
	Updated mail/squirrelmail to 1.4.20 [taca 2010-03-07]
	Updated news/newsfetch to 1.3nb2 [dholland 2010-03-07]
	Updated misc/gaupol to 0.15 [wiz 2010-03-07]
	Updated net/rdist6 to 0.92nb3 [lukem 2010-03-07]
	Updated devel/mercurial to 1.5 [wiz 2010-03-07]
	Updated geography/merkaartor to 0.15.2 [jkunz 2010-03-07]
	Updated security/tct to 1.09nb4 [dholland 2010-03-08]
	Updated graphics/ocrad to 0.19 [adam 2010-03-08]
	Added devel/flexdock version 0.5.1 [dmcmahill 2010-03-08]
	Updated www/py-uwsgi to 0.9.4.2 [joerg 2010-03-08]
	Updated www/nginx to 0.8.34 [joerg 2010-03-08]
	Updated lang/vala to 0.7.10 [joerg 2010-03-08]
	Updated devel/p5-Devel-NYTProf to 3.02 [sno 2010-03-08]
	Updated devel/p5-FreezeThaw to 0.50 [sno 2010-03-08]
	Updated print/p5-LaTeX-Table to 1.0.1 [sno 2010-03-08]
	Updated security/p5-Crypt-Blowfish to 2.12 [sno 2010-03-08]
	Updated devel/p5-Graph to 0.93 [sno 2010-03-08]
	Added time/p5-DateTime-TimeZone-HPUX version 1.04 [sno 2010-03-08]
	Updated time/p5-DateTime-TimeZone to 1.11 [sno 2010-03-08]
	Updated time/p5-DateTime-Format-Flexible to 0.14 [sno 2010-03-08]
	Updated devel/p5-Set-Scalar to 1.25 [sno 2010-03-08]
	Updated devel/p5-MooseX-Getopt to 0.27 [sno 2010-03-08]
	Updated textproc/p5-Text-SimpleTable to 2.0.1 [sno 2010-03-08]
	Updated net/p5-Net-Packet to 3.27 [sno 2010-03-08]
	Updated net/p5-RadiusPerl to 0.17 [sno 2010-03-08]
	Updated misc/p5-Locale-Codes to 3.11 [sno 2010-03-08]
	Updated mail/p5-User-Identity to 0.93 [sno 2010-03-08]
	Updated devel/p5-Object-InsideOut to 3.63 [sno 2010-03-08]
	Updated editors/p5-Padre-Plugin-PerlTidy to 0.10 [sno 2010-03-08]
	Updated editors/p5-Padre-Plugin-PerlCritic to 0.07 [sno 2010-03-08]
	Updated net/p5-Net-Twitter to 3.11008 [sno 2010-03-08]
	Updated x11/xf86-video-radeonhd to 1.3.0nb1 [snj 2010-03-08]
	Updated x11/xf86-video-ati to 6.12.4nb1 [snj 2010-03-08]
	Updated geography/qlandkartegt to 0.18.0 [jkunz 2010-03-08]
	Added games/quakespasm version 0.85.1 [snj 2010-03-08]
	Updated net/unbound to 1.4.1 [pettai 2010-03-08]
	Updated graphics/GraphicsMagick to 1.3.12 [obache 2010-03-09]
	Updated time/ruby-tzinfo to 0.3.17 [taca 2010-03-09]
	Updated net/samba33 to 3.3.12 [taca 2010-03-09]
	Updated www/apache22 to 2.2.15 [taca 2010-03-09]
	Updated www/mediawiki to 1.15.2 [martti 2010-03-09]
	Updated sysutils/bacula to 5.0.1 [adam 2010-03-09]
	Updated sysutils/bacula-clientonly to 5.0.1 [adam 2010-03-09]
	Updated sysutils/bacula-doc to 5.0.1 [adam 2010-03-09]
	Updated sysutils/bacula-tray-monitor to 5.0.1 [adam 2010-03-09]
	Updated sysutils/bacula-qt-console to 5.0.1 [adam 2010-03-09]
	Updated sysutils/bacula-wx-console to 5.0.1 [adam 2010-03-09]
	Updated graphics/png to 1.2.43 [wiz 2010-03-09]
	Updated mail/mimedefang to 2.68 [pettai 2010-03-09]
	Updated audio/mp32ogg to 0.11nb5 [pettai 2010-03-09]
	Added textproc/p5-List-Compare version 0.37 [pettai 2010-03-09]
	Added security/p5-Authen-TacacsPlus version 0.20 [pettai 2010-03-09]
	Added mail/p5-Mail-RFC822-Address version 0.3 [pettai 2010-03-09]
	Added mail/p5-Net-validMX version 2.2.0 [pettai 2010-03-09]
	Added mail/py-sendmail-admin version 1.0 [pettai 2010-03-09]
	Added devel/p5-Config-AutoConf version 0.15 [sno 2010-03-09]
	Updated textproc/p5-Text-BibTeX to 0.40 [sno 2010-03-09]
	Updated editors/p5-Padre to 0.58 [sno 2010-03-09]
	Updated net/p5-Net-eBay to 0.54 [sno 2010-03-09]
	Updated www/p5-HTML-Selector-XPath to 0.04 [sno 2010-03-09]
	Added games/ioquake3-pk3 version 0 [snj 2010-03-09]
	Added games/tyrquake version 0.61 [snj 2010-03-09]
	Updated databases/p5-DBM-Deep to 1.0016 [sno 2010-03-10]
	Updated devel/p5-Moose to 0.99 [sno 2010-03-10]
	Updated net/p5-Net-Interface to 1.012 [sno 2010-03-10]
	Updated math/p5-Math-Pari to 2.010806.04 [sno 2010-03-10]
	Updated time/p5-DateTime-TimeZone to 1.13 [sno 2010-03-10]
	Updated time/p5-Time-Clock to 1.00 [sno 2010-03-10]
	Updated devel/p5-Devel-Declare to 0.006000 [sno 2010-03-10]
	Updated databases/p5-ORLite to 1.41 [sno 2010-03-10]
	Updated www/p5-Catalyst-Runtime to 5.80021 [sno 2010-03-10]
	Updated www/p5-Catalyst-Model-Adaptor to 0.08 [sno 2010-03-10]
	Updated www/p5-Catalyst-View-TT to 0.32 [sno 2010-03-10]
	Updated www/p5-Catalyst-View-JSON to 0.28 [sno 2010-03-10]
	Updated www/p5-Catalyst-Manual to 5.8004 [sno 2010-03-10]
	Updated www/p5-Catalyst-Devel to 1.27 [sno 2010-03-10]
	Updated www/p5-Catalyst-Action-REST to 0.83 [sno 2010-03-10]
	Updated www/p5-Catalyst-Authentication-Store-DBIx-Class to 0.1083 [sno 2010-03-10]
	Updated www/p5-Catalyst-Authentication-Credential-HTTP to 1.012 [sno 2010-03-10]
	Updated www/p5-Test-WWW-Mechanize-Catalyst to 0.52 [sno 2010-03-10]
	Updated geography/gdal-lib to 1.7.1 [adam 2010-03-10]
	Updated databases/p5-CatalystX-CRUD to 0.48 [sno 2010-03-10]
	Updated devel/p5-MRO-Compat to 0.11nb1 [sno 2010-03-10]
	Updated databases/p5-Catalyst-Model-DBIC-Schema to 0.40 [sno 2010-03-10]
	Updated databases/p5-CatalystX-CRUD-ModelAdapter-DBIC to 0.11 [sno 2010-03-10]
	Updated devel/p5-Devel-REPL to 1.003009 [sno 2010-03-10]
	Updated devel/libdatrie to 0.2.3 [obache 2010-03-10]
	Updated devel/libthai to 0.1.14 [obache 2010-03-10]
	Updated inputmethod/gtk-im-libthai to 0.1.5 [obache 2010-03-10]
	Updated editors/vim-share to 7.2.391 [martti 2010-03-10]
	Updated textproc/py-pygments to 1.3.1 [obache 2010-03-10]
	Updated www/p5-CatalystX-CRUD-Controller-RHTMLO to 0.20 [sno 2010-03-10]
	Updated www/p5-CatalystX-CRUD-View-Excel to 0.07 [sno 2010-03-10]
	Updated www/p5-CatalystX-CRUD-YUI to 0.023 [sno 2010-03-10]
	Updated devel/p5-autobox-Core to 1.0 [sno 2010-03-10]
	Updated www/trac to 0.11.7 [gdt 2010-03-10]
	Updated net/p5-Net-FTPSSL to 0.14 [sno 2010-03-10]
	Updated math/p5-Excel-Template-Plus to 0.05 [sno 2010-03-10]
	Updated misc/p5-Business-CreditCard to 0.31 [sno 2010-03-10]
	Updated net/p5-Nmap-Parser to 1.20 [sno 2010-03-10]
	Updated devel/p5-App-Cmd to 0.307 [sno 2010-03-10]
	Updated devel/p5-IO-Interactive to 0.0.6 [sno 2010-03-10]
	Updated devel/p5-IPC-SysV to 2.02 [sno 2010-03-10]
	Updated devel/p5-Scalar-Defer to 0.23 [sno 2010-03-10]
	Updated devel/p5-Test-Class to 0.34 [sno 2010-03-10]
	Updated net/quagga-devel to 0.99.16 [gdt 2010-03-10]
	Updated sysutils/ipa to 2.0.7 [gls 2010-03-10]
	Added net/sysmon version 0.92.2 [pettai 2010-03-10]
	Added devel/pipestatus version 0.6.0 [wiz 2010-03-10]
	Added databases/libdbi version 0.8.3 [wiz 2010-03-10]
	Added databases/libdbi-driver-mysql version 0.8.3.1nb1 [wiz 2010-03-10]
	Added databases/libdbi-driver-pgsql version 0.8.3.1nb1 [wiz 2010-03-10]
	Added databases/libdbi-driver-sqlite version 0.8.3.1 [wiz 2010-03-10]
	Added databases/libdbi-driver-sqlite3 version 0.8.3.1 [wiz 2010-03-10]
	Updated www/neon to 0.29.2 [gdt 2010-03-11]
	Updated multimedia/clutter-gst to 1.0.0 [obache 2010-03-11]
	Updated graphics/p5-clutter to 1.0.1nb1 [obache 2010-03-11]
	Updated graphics/py-clutter to 1.0.0nb1 [obache 2010-03-11]
	Added graphics/py-clutter-gtk version 0.10.0 [obache 2010-03-11]
	Added multimedia/py-clutter-gst version 1.0.0 [obache 2010-03-11]
	Updated editors/vim-share to 7.2.394 [martti 2010-03-11]
	Updated textproc/p5-Text-SimpleTable to 2.02 [sno 2010-03-11]
	Updated mail/p5-Email-Date-Format to 1.002nb2 [sno 2010-03-11]
	Updated mail/p5-Email-Simple to 2.100 [sno 2010-03-11]
	Removed mail/p5-Email-Simple-Creator [sno 2010-03-11]
	Updated mail/p5-Email-MIME to 1.903 [sno 2010-03-11]
	Removed mail/p5-Email-MIME-Creator [sno 2010-03-11]
	Removed mail/p5-Email-MIME-Modifier [sno 2010-03-11]
	Added devel/p5-Throwable version 0.100090 [sno 2010-03-11]
	Updated mail/p5-Email-Sender to 0.100460 [sno 2010-03-11]
	Updated mail/p5-Catalyst-View-Email to 0.23 [sno 2010-03-11]
	Updated misc/stellarium 0.10.4 [adam 2010-03-11]
	Added net/py-dpkt version 1.6 [pettai 2010-03-11]
	Updated www/neon to 0.29.3 [gdt 2010-03-11]
	Updated pkgtools/pkglint to 4.93 [rillig 2010-03-11]