summaryrefslogtreecommitdiff
path: root/doc/CHANGES-2011
blob: 01a119fd4ef9650045b95340cf8881850f6777e0 (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
$NetBSD: CHANGES-2011,v 1.617 2011/03/11 09:30:29 adam Exp $

Changes to the packages collection and infrastructure in 2011:

	Updated net/py-boto to 1.9b [gson 2011-01-01]
	Updated www/ikiwiki to 3.20101231 [schmonz 2011-01-02]
	Updated textproc/mdoclint to 1.13 [wiz 2011-01-02]
	Updated chat/psi to 0.14 [schnoebe 2011-01-02]
	Updated www/geeklog to 1.7.1.1 [taca 2011-01-03]
	Updated net/dhcpcd to 5.2.10 [roy 2011-01-03]
	Downgraded sysutils/py-dbus to 0.83.1 [drochner 2011-01-03]
	Updated net/wireshark to 1.4.2nb1 [tron 2011-01-04]
	Updated graphics/gnuplot to 4.2.6nb3 [dholland 2011-01-06]
	Updated graphics/gnuplot-nox11 to 4.2.6nb4 [dholland 2011-01-06]
	Updated www/contao29 to 2.9.3 [taca 2011-01-06]
	Updated www/typolight28 to 2.8.4nb2 [taca 2011-01-06]
	Updated www/ikiwiki to 3.20110105 [schmonz 2011-01-07]
	Updated lang/php5 to 5.2.17 [taca 2011-01-07]
	Updated lang/php53 to 5.3.5 [taca 2011-01-07]
	Updated www/contao29-translations to 20110108 [taca 2011-01-08]
	Updated sysutils/hal to 0.5.14nb1 [obache 2011-01-08]
	Updated lang/mono to 2.8.2 [kefren 2011-01-08]
	Updated www/mono-xsp to 2.8.2 [kefren 2011-01-08]
	Updated www/ap-mono to 2.8.2 [kefren 2011-01-08]
	Added devel/libuuid version 2.18 [markd 2011-01-08]
	Added devel/libblkid version 2.18 [markd 2011-01-08]
	Updated mail/mhonarc to 2.6.18 [spz 2011-01-09]
	Updated www/contao29-translations to 20110110 [taca 2011-01-10]
	Downgraded graphics/digikam to 1.6.0 [wiz 2011-01-10]
	Downgraded graphics/kipi-plugins to 1.6.0nb1 [wiz 2011-01-10]
	Updated sysutils/ipa to 2.0.9 [obache 2011-01-11]
	Updated www/gallery2 to 2.3.1 [jym 2011-01-11]
	Updated graphics/libraw to 0.12.3 [gls 2011-01-11]
	Updated lang/vala to 0.10.2 [gls 2011-01-11]
	Updated graphics/shotwell to 0.8.0 [gls 2011-01-11]
	Added devel/py-logilab-astng version 0.21.0 [drochner 2011-01-11]
	Added devel/py-logilab-common version 0.53.0 [drochner 2011-01-11]
	Updated games/lbreakout2 to 2.6.2 [drochner 2011-01-11]
	Updated sysutils/gnome-commander to 1.2.8.9 [drochner 2011-01-11]
	Updated misc/gnome-user-docs to 2.32.0 [drochner 2011-01-11]
	Updated textproc/gnome-doc-utils to 0.20.4 [drochner 2011-01-11]
	Updated mail/gmime24 to 2.4.21 [drochner 2011-01-11]
	Updated graphics/wxsvg to 1.0.7.1 [drochner 2011-01-11]
	Updated games/kye to 1.0 [drochner 2011-01-11]
	Updated sysutils/brasero to 2.32.1 [drochner 2011-01-11]
	Updated devel/eric4 to 4.4.11 [drochner 2011-01-11]
	Updated x11/qt4-qscintilla to 2.4.6 [drochner 2011-01-11]
	Updated x11/py-qt4 to 4.8.2 [drochner 2011-01-11]
	Updated x11/py-sip to 4.12 [drochner 2011-01-11]
	Updated net/libgdata to 0.6.6 [drochner 2011-01-11]
	Updated math/gcalctool to 5.32.2 [drochner 2011-01-11]
	Updated print/evince to 2.32.0 [drochner 2011-01-11]
	Updated security/pinentry to 0.8.1 [drochner 2011-01-11]
	Updated sysutils/nautilus to 2.32.2.1 [drochner 2011-01-11]
	Updated x11/py-gnome2-desktop to 2.32.0 [drochner 2011-01-11]
	Updated time/py-mxDateTime to 3.1.3 [drochner 2011-01-11]
	Updated math/nickle to 2.70 [drochner 2011-01-11]
	Updated audio/mp3diags to 1.0.07.052 [drochner 2011-01-11]
	Updated audio/musicpd to 0.15.15 [drochner 2011-01-11]
	Updated lang/py-cxfreeze to 4.2.2 [drochner 2011-01-11]
	Updated sysutils/xentools3 to 3.1.4nb7 [jym 2011-01-12]
	Updated sysutils/xentools33 to 3.3.2nb5 [jym 2011-01-12]
	Updated net/wireshark to 1.4.3 [tron 2011-01-12]
	Updated pkgtools/rpm2pkg to 3.2.0 [tron 2011-01-12]
	Updated x11/qt4-libs to 4.7.1nb2 [adam 2011-01-12]
	Updated net/proftpd to 1.3.3d [adam 2011-01-12]
	Updated mail/exim to 4.73 [adam 2011-01-12]
	Added graphics/py-sk1libs version 0.9.1 [adam 2011-01-12]
	Added graphics/py-uniconvertor version 1.1.5 [adam 2011-01-12]
	Added net/py-suds version 0.4 [adam 2011-01-12]
	Added www/py-django-classy-tags version 0.3.0 [adam 2011-01-12]
	Added www/py-django-south version 0.7.3 [adam 2011-01-12]
	Added www/py-django-cms version 2.0.2 [adam 2011-01-12]
	Updated net/mDNSResponder to 258.14 [adam 2011-01-12]
	Updated textproc/json-glib to 0.12.2 [obache 2011-01-12]
	Updated graphics/goocanvas to 1.0.0 [obache 2011-01-12]
	Updated mail/exim-html to 4.73 [adam 2011-01-12]
	Updated devel/mercurial to 1.7.3 [wiz 2011-01-12]
	Updated graphics/hugin to 2010.4.0 [adam 2011-01-12]
	Updated graphics/goocanvasmm to 0.15.3nb3 [obache 2011-01-12]
	Updated x11/qt4-libs to 4.7.1nb3 [adam 2011-01-12]
	Updated fonts/tex-kotex-base to 0.2 [minskim 2011-01-12]
	Updated fonts/tex-kotex-base-doc to 0.2 [minskim 2011-01-12]
	Updated print/tex-kotex-utils to 0.2 [minskim 2011-01-12]
	Updated print/tex-kotex to 0.2 [minskim 2011-01-12]
	Updated print/tex-kotex-doc to 0.2 [minskim 2011-01-12]
	Updated print/tex-kotex-dev to 0.2 [minskim 2011-01-12]
	Updated print/tex-kotex-dev-doc to 0.2 [minskim 2011-01-12]
	Added print/tex-fmtcount version 1.31 [minskim 2011-01-12]
	Added print/tex-fmtcount-doc version 1.31 [minskim 2011-01-12]
	Added print/tex-datetime version 2.58 [minskim 2011-01-12]
	Added print/tex-datetime-doc version 2.58 [minskim 2011-01-12]
	Added print/tex-pdfcomment version 2.1 [minskim 2011-01-12]
	Added print/tex-pdfcomment-doc version 2.1 [minskim 2011-01-12]
	Added print/tex-changebar version 3.5c [minskim 2011-01-12]
	Added print/tex-changebar-doc version 3.5c [minskim 2011-01-12]
	Updated print/tex-fixme to 4.1 [minskim 2011-01-12]
	Added print/tex-fixme-doc version 4.1 [minskim 2011-01-12]
	Updated fonts/tex-courier to 2010 [minskim 2011-01-12]
	Updated security/gpg2dot to 1.5 [lukem 2011-01-13]
	Updated textproc/mdocml to 1.10.9 [wiz 2011-01-13]
	Updated mail/roundcube to 0.5 [adam 2011-01-13]
	Updated security/sudo to 1.7.4p5 [taca 2011-01-13]
	Updated mail/dovecot2 to 2.0.9 [adam 2011-01-13]
	Updated graphics/png to 1.5.1beta01 [wiz 2011-01-13]
	Updated misc/tmux to 1.4 [jmmv 2011-01-13]
	Updated multimedia/mediatomb to 0.12.1nb2 [tron 2011-01-14]
	Updated devel/cmake to 2.8.3nb1 [wiz 2011-01-14]
	Updated www/squid31 to 3.1.10 [adam 2011-01-14]
	Updated time/ruby-tzinfo to 0.3.24 [taca 2011-01-15]
	Updated databases/ruby-odbc to 0.99994 [taca 2011-01-15]
	Updated www/contao29-translations to 20110114 [taca 2011-01-15]
	Updated devel/pcre to 8.12 [adam 2011-01-15]
	Updated comms/asterisk16 to 1.6.2.16 [jnemeth 2011-01-16]
	Added textproc/fop version 1.0 [wiz 2011-01-16]
	Updated net/jigdo to 0.7.3nb8 [wiz 2011-01-16]
	Updated comms/asterisk18 to 1.8.2 [jnemeth 2011-01-16]
	Updated pkgtools/pkgin to 0.3.3.2 [imil 2011-01-16]
	Updated pkgtools/pkglint to 4.95 [wiz 2011-01-17]
	Updated print/luatex to 0.65.0 [wiz 2011-01-17]
	Updated time/titrax to 1.98nb5 [he 2011-01-17]
	Updated multimedia/gst-plugins0.10-ffmpeg to 0.10.11 [drochner 2011-01-17]
	Updated multimedia/ffmpeg to 20101018.0.6.1 [drochner 2011-01-17]
	Updated multimedia/x264-devel to 20110101 [drochner 2011-01-17]
	Updated print/foomatic4-db-engine to 4.0.6 [drochner 2011-01-17]
	Updated print/foomatic4-filters to 4.0.6 [drochner 2011-01-17]
	Updated net/tor to 0.2.1.29 [drochner 2011-01-17]
	Updated print/tex-beamer to 3.10 [minskim 2011-01-17]
	Updated print/tex-beamer-doc to 3.10 [minskim 2011-01-17]
	Updated print/tex-needspace to 1.3c [minskim 2011-01-17]
	Updated print/tex-needspace-doc to 1.3c [minskim 2011-01-17]
	Updated print/tex-geometry to 5.6 [minskim 2011-01-17]
	Updated print/tex-geometry-doc to 5.6 [minskim 2011-01-17]
	Updated geography/gdal-lib to 1.7.3nb2 [wiz 2011-01-18]
	Updated net/gofish to 1.2 [wiz 2011-01-18]
	Added geography/emerillon version 0.1.2 [drochner 2011-01-18]
	Added www/librest version 0.6 [drochner 2011-01-18]
	Added graphics/giflib version 4.1.6 [drochner 2011-01-18]
	Updated print/tex-setspace to 6.7nb1 [minskim 2011-01-18]
	Updated print/tex-natbib to 8.31b [minskim 2011-01-18]
	Updated print/tex-natbib-doc to 8.31b [minskim 2011-01-18]
	Updated print/tex-answers to 2.13 [minskim 2011-01-18]
	Updated print/tex-answers-doc to 2.13 [minskim 2011-01-18]
	Updated print/tex-ulem to 2010 [minskim 2011-01-18]
	Updated print/tex-ulem-doc to 2010 [minskim 2011-01-18]
	Updated fonts/tex-helvetic to 2010 [minskim 2011-01-18]
	Updated fonts/tex-courier to 2010.21101 [minskim 2011-01-18]
	Updated graphics/shotwell to 0.8.1 [gls 2010-01-18]
	Updated audio/cmus to 2.3.3 [gls 2010-01-18]
	Updated multimedia/mplayer to mplayer-1.0rc20100913nb3 [jmcneill 2011-01-18]
	Updated print/cups to 1.4.6nb1 [sbd 2011-01-19]
	Updated pkgtools/x11-links to 0.62 [jmcneill 2011-01-18]
	Added multimedia/libva version 1.0.6 [jmcneill 2011-01-18]
	Added multimedia/hwdecode-demos version 0.9.4 [jmcneill 2011-01-18]
	Updated devel/global to 5.9.3 [uebayasi 2011-01-19]
	Updated multimedia/mplayer to 1.0rc20100913nb4 [tron 2011-01-19]
	Updated pkgtools/pkgin to 0.3.3.3 [imil 2011-01-19]
	Updated pkgtools/rpm2pkg to 3.2.1 [tron 2011-01-19]
	Updated pkgtools/x11-links to 0.63 [jmcneill 2011-01-19]
	Updated print/tex-a4wide to 2010 [minskim 2011-01-19]
	Updated print/tex-a4wide-doc to 2010 [minskim 2011-01-19]
	Updated print/tex-advdate to 2010 [minskim 2011-01-19]
	Updated print/tex-advdate-doc to 2010 [minskim 2011-01-19]
	Added games/pingus version 0.7.3 [kefren 2011-01-19]
	Added net/libdmapsharing version 2.1.9 [jmmv 2011-01-19]
	Added multimedia/libvpx version 0.9.5 [ryoon 2011-01-20]
	Updated security/gnupg2 to 2.0.17 [adam 2011-01-20]
	Updated textproc/lout to 3.38 [adam 2011-01-20]
	Updated databases/py-psycopg2 to 2.3.2 [adam 2011-01-20]
	Updated print/tex-breakcites to 2010 [minskim 2011-01-20]
	Updated print/tex-breakcites-doc to 2010 [minskim 2011-01-20]
	Updated print/tex-pgfplots to 1.4.1 [minskim 2011-01-20]
	Updated print/tex-pgfplots-doc to 1.4.1 [minskim 2011-01-20]
	Updated print/tex-ukrhyph to 2010 [minskim 2011-01-20]
	Updated print/tex-amscls to 2010.20248 [minskim 2011-01-20]
	Updated print/tex-amscls-doc to 2010.20248 [minskim 2011-01-20]
	Added graphics/tex-mptopdf version 2010 [minskim 2011-01-20]
	Added graphics/tex-mptopdf-doc version 2010 [minskim 2011-01-20]
	Updated print/tex-collection-latex to 2010 [minskim 2011-01-20]
	Updated print/tex-collection-latex-doc to 2010 [minskim 2011-01-20]
	Updated pkgtools/pkgin to 0.3.3.4 [imil 2011-01-20]
	Updated multimedia/ffmpegthumbnailer to 2.0.6 [gavan 2011-01-20]
	Added misc/ruby-commander version 4.0.2 [tonnerre 2011-01-20]
	Updated print/tex-context to 2010 [minskim 2011-01-21]
	Updated print/tex-context-doc to 2010 [minskim 2011-01-21]
	Updated comms/asterisk16 to 1.6.2.16.1 [jnemeth 2011-01-21]
	Updated comms/asterisk18 to 1.8.2.2 [jnemeth 2011-01-21]
	Updated graphics/jpeg to 8c [adam 2011-01-21]
	Updated net/quvi to 0.2.12 [ryoon 2011-01-21]
	Added print/tex-xetexconfig version 2010 [minskim 2011-01-21]
	Added print/tex-metalogo version 0.12 [minskim 2011-01-21]
	Added print/tex-metalogo-doc version 0.12 [minskim 2011-01-21]
	Updated fonts/tex-fontspec to 2.1e [minskim 2011-01-21]
	Updated fonts/tex-fontspec-doc to 2.1e [minskim 2011-01-21]
	Added print/tex-realscripts version 0.3 [minskim 2011-01-21]
	Added print/tex-realscripts-doc version 0.3 [minskim 2011-01-21]
	Added print/tex-xetex version 2010 [minskim 2011-01-21]
	Added print/tex-xetex-doc version 2010 [minskim 2011-01-21]
	Updated print/tex-xltxtra to 0.5e [minskim 2011-01-21]
	Updated print/tex-xltxtra-doc to 0.5e [minskim 2011-01-21]
	Updated print/tex-dvipdfmx to 2010.20279 [minskim 2011-01-21]
	Updated print/tex-dvipdfmx-doc to 2010.20279 [minskim 2011-01-21]
	Removed print/tex-supp-pdf successor graphics/tex-mptopdf [minskim 2011-01-21]
	Updated fonts/tex-ly1 to 2010.21086 [minskim 2011-01-21]
	Updated fonts/tex-ly1-doc to 2010.21086 [minskim 2011-01-21]
	Updated print/tex-xunicode to 0.96 [minskim 2011-01-21]
	Updated print/tex-xunicode-doc to 0.96 [minskim 2011-01-21]
	Updated www/tidy to 20091027 [wiz 2011-01-21]
	Updated games/powder to 115 [wiz 2011-01-21]
	Updated misc/kchmviewer to 5.3 [wiz 2011-01-21]
	Updated converters/p5-Convert-UUlib to 1.34 [gls 2011-01-21]
	Updated games/gbrainy to 1.61 [wiz 2011-01-21]
	Updated games/puzzles to 9076 [wiz 2011-01-21]
	Updated x11/libXp to 1.0.1 [wiz 2011-01-21]
	Updated www/w3m to 0.5.3 [wiz 2011-01-21]
	Updated www/w3m-img to 0.5.3 [wiz 2011-01-21]
	Updated graphics/png to 1.5.1beta06 [wiz 2011-01-21]
	Updated security/sudo to 1.7.4p6 [taca 2011-01-22]
	Updated misc/zyGrib to 3.9.9 [plunky 2011-01-22]
	Updated print/tex-dvipdfm to 0.13.2dnb2 [minskim 2011-01-22]
	Updated print/tex-pdftex-def to 0.05c [minskim 2011-01-22]
	Updated print/tex-tetex to 3.0.21040 [minskim 2011-01-22]
	Updated fonts/tex-adobemapping to 2010.20535 [minskim 2011-01-22]
	Updated fonts/tex-times to 2010.20926 [minskim 2011-01-22]
	Updated print/tex-hyph-utf8 to 2010.21077 [minskim 2011-01-22]
	Updated print/tex-hyph-utf8-doc to 2010.21077 [minskim 2011-01-22]
	Updated print/tex-pdftex to 1.40.11nb2 [minskim 2011-01-22]
	Updated print/tex-dvips to 2010.21040 [minskim 2011-01-22]
	Added print/tex-beton version 2010 [minskim 2011-01-22]
	Added print/tex-beton-doc version 2010 [minskim 2011-01-22]
	Added print/tex-euler version 2.5 [minskim 2011-01-22]
	Added print/tex-euler-doc version 2.5 [minskim 2011-01-22]
	Added print/tex-here version 2010 [minskim 2011-01-22]
	Added print/tex-here-doc version 2010 [minskim 2011-01-22]
	Added fonts/tex-cmsd version 2010 [minskim 2011-01-22]
	Added fonts/tex-cmsd-doc version 2010 [minskim 2011-01-22]
	Added print/tex-minitoc version 60 [minskim 2011-01-22]
	Added print/tex-minitoc-doc version 60 [minskim 2011-01-22]
	Updated print/tex-amscls to 2010.20248nb1 [minskim 2011-01-22]
	Updated print/tex-hyperref to 6.81y [minskim 2011-01-22]
	Updated print/tex-hyperref-doc to 6.81y [minskim 2011-01-22]
	Updated print/tex-listings to 1.4nb1 [minskim 2011-01-22]
	Updated print/tex-passivetex to 1.25nb1 [minskim 2011-01-22]
	Updated print/tex-kotex to 0.2nb1 [minskim 2011-01-22]
	Updated print/tex-amsrefs to 2.09nb1 [minskim 2011-01-22]
	Updated print/tex-memoir to 3.6g [minskim 2011-01-22]
	Updated print/tex-memoir-doc to 3.6g [minskim 2011-01-22]
	Updated print/tex-texlive-en-doc to 2010.20605 [minskim 2011-01-22]
	Updated print/tex-ltxmisc to 2010.20350 [minskim 2011-01-22]
	Updated print/teTeX3-texmf to 3.0nb29 [minskim 2011-01-22]
	Updated print/tex-plain to 3.141592653nb3 [minskim 2011-01-23]
	Added print/tex-ptex version 3.1.9 [minskim 2011-01-23]
	Added print/tex-ptex-doc version 3.1.9 [minskim 2011-01-23]
	Added print/tex-jsclasses version 2010 [minskim 2011-01-23]
	Updated net/synergy to 1.3.6 [tnn 2011-01-23]
	Updated textproc/py-X to 0.9nb2 [minskim 2011-01-23]
	Updated graphics/goocanvasmm to 0.15.4 [obache 2011-01-23]
	Updated pkgtools/pkglint to 4.96 [obache 2011-01-23]
	Updated graphics/png to 1.5.1beta08 [wiz 2011-01-23]
	Updated devel/kdesdk4 to 4.5.5 [markd 2011-01-23]
	Updated games/kdegames4 to 4.5.5 [markd 2011-01-23]
	Updated games/kdetoys4 to 4.5.5 [markd 2011-01-23]
	Updated graphics/kdegraphics4 to 4.5.5 [markd 2011-01-23]
	Updated graphics/oxygen-icons to 4.5.5 [markd 2011-01-23]
	Updated meta-pkgs/kde4 to 4.5.5 [markd 2011-01-23]
	Updated misc/kdeaccessibility4 to 4.5.5 [markd 2011-01-23]
	Updated misc/kdeadmin4 to 4.5.5 [markd 2011-01-23]
	Updated misc/kdeartwork4 to 4.5.5 [markd 2011-01-23]
	Updated misc/kdeedu4 to 4.5.5 [markd 2011-01-23]
	Updated misc/kdepimlibs4 to 4.5.5 [markd 2011-01-23]
	Updated misc/kdepim4 to 4.4.9 [markd 2011-01-23]
	Updated misc/kdepim-runtime4 to 4.4.9 [markd 2011-01-23]
	Updated misc/kdeplasma-addons4 to 4.5.5 [markd 2011-01-23]
	Updated misc/kdeutils4 to 4.5.5 [markd 2011-01-23]
	Updated multimedia/kdemultimedia4 to 4.5.5 [markd 2011-01-23]
	Updated net/kdenetwork4 to 4.5.5 [markd 2011-01-23]
	Updated www/kdewebdev4 to 4.5.5 [markd 2011-01-23]
	Updated x11/kde4-l10n-de to 4.5.5 [markd 2011-01-23]
	Updated x11/kde4-l10n-en_GB to 4.5.5 [markd 2011-01-23]
	Updated x11/kde4-l10n-nl to 4.5.5 [markd 2011-01-23]
	Updated x11/kdebase-runtime4 to 4.5.5 [markd 2011-01-23]
	Updated x11/kdebase-workspace4 to 4.5.5 [markd 2011-01-23]
	Updated x11/kdebase4 to 4.5.5 [markd 2011-01-23]
	Updated x11/kdebindings4-python to 4.5.5 [markd 2011-01-23]
	Updated x11/kdelibs4 to 4.5.5 [markd 2011-01-23]
	Updated devel/kdevelop4 to 4.1.1 [markd 2011-01-23]
	Updated devel/kdevplatform to 1.1.1 [markd 2011-01-23]
	Updated lang/g95 to 0.92 [markd 2011-01-23]
	Added sysutils/mc46 version 4.6.1nb7 [wiz 2011-01-23]
	Updated sysutils/mc to 4.7.0.10nb1 [wiz 2011-01-23]
	Removed audio/gogo successor audio/lame [tnn 2011-01-23]
	Updated lang/librep to 0.91.0 [tnn 2011-01-23]
	Updated x11/rep-gtk2 to 0.90.4 [tnn 2011-01-23]
	Updated wm/sawfish to 1.7.1 [tnn 2011-01-23]
	Updated www/ikiwiki to 3.20110123 [schmonz 2011-01-24]
	Updated inputmethod/ibus-el to 0.2.1 [obache 2011-01-24]
	Updated graphics/png to 1.5.1beta09 [adam 2011-01-24]
	Updated devel/py-gobject-shared to 2.26.0nb3 [obache 2011-01-24]
	Updated graphics/gif2png to 2.5.4 [wiz 2011-01-24]
	Updated net/rancid to 2.3.6 [pettai 2011-01-24]
	Updated graphics/gimp to 2.6.11nb4 [wiz 2011-01-24]
	Updated print/ja-vfxdvik to 22.40v.j1.14nb15 [minskim 2011-01-24]
	Updated security/opendnssec to 1.2.0 [pettai 2011-01-24]
	Updated www/opera to 11.00 [ahoka 2011-01-24]
	Updated emulators/suse113_fontconfig to 11.3nb1 [ahoka 2011-01-24]
	Updated x11/xpad to 4.0 [obache 2011-01-25]
	Updated security/pam-af to 1.0.1nb1 [obache 2011-01-25]
	Updated misc/gwaei to 1.5.2 [ryoon 2011-01-25]
	Updated www/ikiwiki to 3.20110124 [schmonz 2011-01-25]
	Updated inputmethod/ibus-handwrite to 2.1.3 [obache 2011-01-26]
	Added net/ether2dns version 1.5 [is 2011-01-26]
	Updated mail/exim to 4.74 [adam 2011-01-27]
	Updated mail/exim-html to 4.74 [adam 2011-01-27]
	Updated mail/milter-manager to 1.6.4 [obache 2011-01-27]
	Updated net/netatalk to 2.1.5 [hauke 2011-01-27]
	Updated databases/phpmyadmin to 2.11.11.1nb1 [tron 2011-01-27]
	Updated multimedia/gst-plugins0.10-ugly to 0.10.17 [drochner 2011-01-27]
	Updated multimedia/gst-plugins0.10-bad to 0.10.21 [drochner 2011-01-27]
	Updated multimedia/gst-plugins0.10-good to 0.10.27 [drochner 2011-01-27]
	Updated multimedia/gst-plugins0.10-base to 0.10.32 [drochner 2011-01-27]
	Updated multimedia/gstreamer0.10 to 0.10.32 [drochner 2011-01-27]
	Updated www/midori to 0.2.9 [drochner 2011-01-27]
	Updated x11/pixman to 0.20.2 [drochner 2011-01-27]
	Updated multimedia/vlc to 1.1.6 [drochner 2011-01-27]
	Updated print/transfig to 3.2.5d [drochner 2011-01-27]
	Added devel/mk-configure version 0.21.0 [drochner 2011-01-27]
	Added lang/runawk version 1.3.1 [drochner 2011-01-27]
	Updated audio/amarok to 2.4.0 [wiz 2011-01-27]
	Removed games/wormux successor games/warmux [adam 2011-01-27]
	Added games/warmux version 11.01 [adam 2011-01-27]
	Updated textproc/py-feedparser to 5.0 [schmonz 2011-01-28]
	Updated mail/rss2email to 2.70 [schmonz 2011-01-28]
	Updated comms/asterisk18 to 1.8.2.3nb1 [jnemeth 2011-01-28]
	Updated print/web2c to 2010nb5 [minskim 2011-01-28]
	Updated graphics/optipng to 0.6.5 [adam 2011-01-28]
	Updated devel/libntlm to 1.2 [adam 2011-01-28]
	Updated devel/scmgit to 1.7.3.5 [adam 2011-01-28]
	Updated devel/scmgit-base to 1.7.3.5 [adam 2011-01-28]
	Updated devel/scmgit-docs to 1.7.3.5 [adam 2011-01-28]
	Updated www/opera to 11.01 [ahoka 2011-01-28]
	Updated misc/xchm to 1.18 [adam 2011-01-28]
	Updated mail/ruby-mail to 2.2.15 [taca 2011-01-28]
	Updated sysutils/pdumpfs to 1.3nb3 [obache 2011-01-28]
	Updated net/ether2dns to 1.6 [is 2011-01-28]
	Updated graphics/pngcrush to 1.7.14 [adam 2011-01-28]
	Updated textproc/gnome-subtitles to 1.1 [obache 2011-01-29]
	Added devel/py-mock version 0.7.0b4 [gdt 2011-01-29]
	Updated net/py-foolscap to 0.6.1 [gdt 2011-01-29]
	Updated graphics/vigra to 1.7.1 [adam 2011-01-29]
	Added devel/RBTools version 0.2 [jnemeth 2011-01-30]
	Updated lang/parrot to 3.0.0 [he 2011-01-30]
	Updated devel/ruby-pkg-config to 1.0.8 [obache 2011-01-30]
	Updated pkgtools/x11-links to 0.64 [wiz 2011-01-30]
	Updated www/py-django-cms to 2.1.0 [adam 2011-01-30]
	Updated sysutils/netbt-hcidump to 2.0 [plunky 2011-01-30]
	Updated www/contao29-translations to 20110116 [taca 2011-01-31]
	Updated net/iperf to 2.0.5 [adam 2011-01-31]
	Added devel/log4cxx version 0.10.0 [reed 2011-01-31]
	Added misc/ec2-api-tools version 1.3.62308 [jym 2011-01-31]
	Added misc/ec2-ami-tools version 1.3.57676 [jym 2011-01-31]
	Updated net/nmap to 5.50 [pettai 2011-01-31]
	Updated games/enigma to 1.01nb5 [wiz 2011-02-01]
	Updated filesystems/tahoe-lafs to 1.8.2 [gdt 2011-02-01]
	Updated x11/stalonetray to 0.8.1 [schnoebe 2011-02-01]
	Updated pkgtools/pkglint to 4.97 [wiz 2011-02-01]
	Updated databases/sqlite3 to 3.7.5 [adam 2011-02-02]
	Updated databases/sqlite3-docs to 3.7.5 [adam 2011-02-02]
	Updated databases/sqlite3-tcl to 3.7.5 [adam 2011-02-02]
	Updated mail/msmtp to 1.4.23 [ryoon 2011-02-02]
	Updated devel/cssc to 1.3.0 [ryoon 2011-02-02]
	Updated chat/libpurple to 2.7.9 [adam 2011-02-02]
	Updated chat/finch to 2.7.9 [adam 2011-02-02]
	Updated chat/pidgin to 2.7.9 [adam 2011-02-02]
	Updated chat/pidgin-sametime to 2.7.9 [adam 2011-02-02]
	Updated chat/pidgin-silc to 2.7.9 [adam 2011-02-02]
	Updated time/gcal to 3.6 [ryoon 2011-02-02]
	Updated print/tex-koma-script to 3.08 [minskim 2011-02-02]
	Updated print/tex-pdftex-def to 0.05d [minskim 2011-02-02]
	Updated print/tex-dvipdfm to 0.13.2dnb3 [minskim 2011-02-02]
	Updated print/tex-dvipdfm-doc to 0.13.2dnb1 [minskim 2011-02-02]
	Updated print/tex-dvips to 2010.21248 [minskim 2011-02-02]
	Updated print/tex-pdftex to 1.40.11nb3 [minskim 2011-02-02]
	Updated print/tex-tetex to 3.0.21248 [minskim 2011-02-02]
	Added audio/mpdas version 0.3.0 [gls 2011-02-02]
	Updated mail/dovecot2 to 2.0.9nb1 [tron 2011-02-02]
	Updated databases/apache-cassandra to 0.7.0 [tonnerre 2011-02-02]
	Updated graphics/png to 1.5.1 [wiz 2011-02-03]
	Updated devel/mercurial to 1.7.5 [wiz 2011-02-03]
	Updated net/yaz to 4.1.3 [wiz 2011-02-03]
	Updated net/clive to 2.2.22 [wiz 2011-02-03]
	Updated textproc/dict-server to 1.12.0 [obache 2011-02-03]
	Updated textproc/dict-client to 1.12.0 [obache 2011-02-03]
	Updated misc/dialog to 1.1.20110118 [wiz 2011-02-03]
	Added devel/p5-Term-Shell version 0.02 [imil 2011-02-03]
	Added sysutils/shelldap version 0.2 [imil 2011-02-03]
	Updated mail/mutt-devel to 1.5.21nb1 [tron 2011-02-03]
	Updated benchmarks/randread to 0.2 [obache 2011-02-03]
	Updated inputmethod/skk to 14.2 [uebayasi 2011-02-03]
	Updated x11/py-qt4 to 4.8.3 [drochner 2011-02-03]
	Updated x11/py-sip to 4.12.1 [drochner 2011-02-03]
	Added devel/gprbuild-aux version 20101120 [drochner 2011-02-03]
	Added x11/gtkada version 2.22 [drochner 2011-02-03]
	Added textproc/xmlada version 4.1w [drochner 2011-02-03]
	Added devel/gnatpython version 20101207 [drochner 2011-02-03]
	Added lang/gnat-aux version 20110125 [drochner 2011-02-03]
	Updated print/poppler to 0.16.2 [drochner 2011-02-03]
	Updated graphics/libraw to 0.12.4 [gls 2011-02-03]
	Added emulators/mame version 0.141 [wiz 2011-02-03]
	Added emulators/mess version 0.141 [wiz 2011-02-03]
	Removed emulators/sdlmame successor emulators/mame [wiz 2011-02-03]
	Removed emulators/sdlmess successor emulators/mess [wiz 2011-02-03]
	Updated converters/skf to 1.97.4 [obache 2011-02-04]
	Updated www/ap2-chroot to 0.5 [obache 2011-02-04]
	Updated chat/mu-conference to 0.8 [adam 2011-02-04]
	Added fonts/tex-palatino version 2010 [minskim 2011-02-04]
	Added print/tex-pdfpages version 0.4l [minskim 2011-02-04]
	Added print/tex-pdfpages-doc version 0.4l [minskim 2011-02-04]
	Added print/tex-eso-pic version 2.0c [minskim 2011-02-04]
	Added print/tex-eso-pic-doc version 2.0c [minskim 2011-02-04]
	Updated graphics/inkscape to 0.48.1 [adam 2011-02-05]
	Updated emulators/spim to 8.0 [ryoon 2011-02-05]
	Updated audio/twolame to 0.3.13 [ryoon 2011-02-05]
	Updated textproc/wdiff to 0.6.5 [ryoon 2011-02-05]
	Updated fonts/alee-ttf to 12 [ryoon 2011-02-06]
	Removed emulators/xmame successor emulators/mame [wiz 2011-02-06]
	Removed emulators/xmess successor emulators/mess [wiz 2011-02-06]
	Added comms/spandsp version 0.0.6pre18 [jnemeth 2011-02-06]
	Updated textproc/GutenMark to 20090510 [ryoon 2011-02-06]
	Added devel/poco version 1.4.0 [schnoebe 2011-02-06]
	Added databases/poco-data version 1.4.0 [schnoebe 2011-02-06]
	Added databases/poco-data-mysql version 1.4.0 [schnoebe 2011-02-06]
	Added databases/poco-data-odbc version 1.4.0 [schnoebe 2011-02-06]
	Added databases/poco-data-sqlite version 1.4.0 [schnoebe 2011-02-06]
	Added chat/gloox version 1.0 [schnoebe 2011-02-06]
	Added chat/py-xmpppy version 0.5.0rc1nb2 [schnoebe 2011-02-06]
	Added print/tex-tocloft version 2.3e [minskim 2011-02-07]
	Added print/tex-tocloft-doc version 2.3e [minskim 2011-02-07]
	Added print/tex-hyphenat version 2.3c [minskim 2011-02-07]
	Added print/tex-hyphenat-doc version 2.3c [minskim 2011-02-07]
	Added print/tex-ntgclass version 2010 [minskim 2011-02-07]
	Added print/tex-ntgclass-doc version 2010 [minskim 2011-02-07]
	Updated fonts/tex-psnfss to 9.2anb2 [minskim 2011-02-07]
	Added chat/spectrum version 1.4.7 [schnoebe 2011-02-07]
	Updated multimedia/mjpegtools to 1.9.0nb5 [wiz 2011-02-07]
	Updated fonts/umefont-ttf to 0.424 [ryoon 2011-02-07]
	Updated lang/ruby19-base to 1.9.2pl136nb1 [taca 2011-02-07]
	Updated www/typo3 to 4.5.0 [taca 2011-02-07]
	Updated archivers/unrar to 4.0.6 [adam 2011-02-07]
	Updated print/tex-lastpage to 1.2g [minskim 2011-02-07]
	Updated print/tex-lastpage-doc to 1.2g [minskim 2011-02-07]
	Added print/pdvipsk version 5.98pl1.7b [minskim 2011-02-07]
	Updated print/tex-ptex to 3.1.9nb1 [minskim 2011-02-07]
	Updated print/ja-ptex to 2.0 [minskim 2011-02-07]
	Removed print/ja-jsclasses successor print/tex-jsclasses [minskim 2011-02-07]
	Removed print/ja-ptex-bin successor print/tex-ptex [minskim 2011-02-07]
	Removed print/ja-ptex-share successor print/tex-ptex [minskim 2011-02-07]
	Updated mail/spamdyke to 4.2.0 [schmonz 2011-02-07]
	Updated devel/cutter to 1.1.6 [obache 2011-02-08]
	Updated security/clamav to 0.97 [adam 2011-02-08]
	Updated print/pdflib-lite to 7.0.5 [adam 2011-02-08]
	Updated graphics/plotutils to 2.6nb3 [adam 2011-02-08]
	Removed graphics/plotutils-nox11 [adam 2011-02-08]
	Updated graphics/gnuplot to 4.4.2 [adam 2011-02-08]
	Removed graphics/gnuplot-nox11 [adam 2011-02-08]
	Updated net/youtube-dl to 20110130 [ryoon 2011-02-08]
	Added sysutils/nvramtool version 0pre6338 [jakllsch 2011-02-08]
	Added multimedia/adobe-flash-plugin10.1 version 10.1.102.65 [ahoka 2011-02-08]
	Updated sysutils/flashrom to 0.9.3 [jakllsch 2011-02-08]
	Updated archivers/cabextract to 1.3nb1 [jakllsch 2011-02-08]
	Updated emulators/suse113_alsa to 11.3nb2 [ahoka 2011-02-08]
	Updated databases/phppgadmin to 5.0.2 [asau 2011-02-08]
	Updated security/openssl to 0.9.8qnb1 [taca 2011-02-09]
	Updated net/ntop to 4.0.3 [adam 2011-02-09]
	Updated databases/postgresql90 to 9.0.3 [adam 2011-02-09]
	Updated databases/postgresql90-client to 9.0.3 [adam 2011-02-09]
	Updated databases/postgresql90-server to 9.0.3 [adam 2011-02-09]
	Updated databases/postgresql90-docs to 9.0.3 [adam 2011-02-09]
	Updated databases/postgresql90-adminpack to 9.0.3 [adam 2011-02-09]
	Updated databases/postgresql90-datatypes to 9.0.3 [adam 2011-02-09]
	Updated databases/postgresql90-dblink to 9.0.3 [adam 2011-02-09]
	Updated databases/postgresql90-monitoring to 9.0.3 [adam 2011-02-09]
	Updated databases/postgresql90-pgcrypto to 9.0.3 [adam 2011-02-09]
	Updated databases/postgresql90-plperl to 9.0.3 [adam 2011-02-09]
	Updated databases/postgresql90-plpython to 9.0.3 [adam 2011-02-09]
	Updated databases/postgresql90-pltcl to 9.0.3 [adam 2011-02-09]
	Updated databases/postgresql90-replicationtools to 9.0.3 [adam 2011-02-09]
	Updated databases/postgresql90-upgrade to 9.0.3 [adam 2011-02-09]
	Updated archivers/xz to 5.0.1 [adam 2011-02-09]
	Removed emulators/gxmame [wiz 2011-02-09]
	Updated devel/ruby-activesupport to 2.3.11 [taca 2011-02-09]
	Updated databases/ruby-activerecord to 2.3.11 [taca 2011-02-09]
	Updated www/ruby-actionpack to 2.3.11 [taca 2011-02-09]
	Updated mail/ruby-actionmailer to 2.3.11 [taca 2011-02-09]
	Updated www/ruby-activeresource to 2.3.11 [taca 2011-02-09]
	Updated www/ruby-rails to 2.3.11 [taca 2011-02-09]
	Updated www/ruby-rack-test to 0.5.7 [taca 2011-02-09]
	Updated databases/ruby-arel to 2.0.8 [taca 2011-02-09]
	Updated devel/ruby-activesupport3 to 3.0.4 [taca 2011-02-09]
	Updated devel/ruby-activemodel to 3.0.4 [taca 2011-02-09]
	Updated www/ruby-actionpack3 to 3.0.4 [taca 2011-02-09]
	Updated databases/ruby-activerecord3 to 3.0.4 [taca 2011-02-09]
	Updated www/ruby-activeresource3 to 3.0.4 [taca 2011-02-09]
	Updated mail/ruby-actionmailer3 to 3.0.4 [taca 2011-02-09]
	Updated devel/ruby-railties to 3.0.4 [taca 2011-02-09]
	Updated www/ruby-rails3 to 3.0.4 [taca 2011-02-09]
	Removed net/bind95 [taca 2011-02-09]
	Updated net/bind96 to 9.6.3 [taca 2011-02-09]
	Updated emulators/suse113_krb5 to 11.3nb1 [chs 2011-02-10]
	Updated emulators/suse113_libtiff to 11.3nb1 [chs 2011-02-10]
	Updated emulators/suse113_libxml2 to 11.3nb1 [chs 2011-02-10]
	Updated emulators/suse113_openssl to 11.3nb2 [chs 2011-02-10]
	Updated emulators/suse113_gtk2 to 11.3nb2 [chs 2011-02-10]
	Updated geography/gdal-lib to 1.8.0 [brook 2011-02-10]
	Updated devel/gobject-introspection to 0.10.2 [obache 2011-02-10]
	Updated sysutils/pftop to 0.7nb1 [rumko 2011-02-10]
	Updated graphics/babl to 0.1.4 [adam 2011-02-10]
	Updated graphics/gegl to 0.1.4 [adam 2011-02-10]
	Updated www/py-django to 1.2.5 [adam 2011-02-10]
	Updated www/wordpress to 3.0.5 [morr 2011-02-10]
	Updated databases/ipa_sdb to 1.1 [obache 2011-02-10]
	Updated chat/libpurple to 2.7.10 [adam 2011-02-10]
	Updated chat/finch to 2.7.10 [adam 2011-02-10]
	Updated chat/pidgin to 2.7.10 [adam 2011-02-10]
	Updated chat/pidgin-sametime to 2.7.10 [adam 2011-02-10]
	Updated chat/pidgin-silc to 2.7.10 [adam 2011-02-10]
	Updated www/http_load to 20060312nb2 [obache 2011-02-10]
	Updated x11/libxdg-basedir to 1.1.1nb1 [obache 2011-02-10]
	Updated multimedia/mjpegtools to 1.9.0nb6 [wiz 2011-02-10]
	Updated databases/phpmyadmin to 2.11.11.2 [tron 2011-02-10]
	Updated lang/ecl to 11.1.1 [asau 2011-02-11]
	Updated audio/mac to 3.99u4b5s7 [wiz 2011-02-11]
	Added devel/py-mako version 0.3.6 [adam 2011-02-11]
	Updated devel/lua-mode to 20110121 [jmmv 2011-02-11]
	Updated net/ntop to 4.0.3nb1 [adam 2011-02-11]
	Updated sysutils/ipa to 2.1 [obache 2011-02-11]
	Updated net/libpcap to 4.1.1 [adam 2011-02-11]
	Updated net/tcpdump to 4.1.1 [adam 2011-02-11]
	Updated meta-pkgs/ruby-gnome2 to 0.90.7 [obache 2011-02-11]
	Updated devel/ruby-gnome2-atk to 0.90.7 [obache 2011-02-11]
	Removed devel/ruby-gnome2-bonobo [obache 2011-02-11]
	Removed devel/ruby-gnome2-bonoboui [obache 2011-02-11]
	Removed devel/ruby-gnome2-gconf [obache 2011-02-11]
	Updated devel/ruby-gnome2-gio to 0.90.7 [obache 2011-02-11]
	Updated devel/ruby-gnome2-glib to 0.90.7 [obache 2011-02-11]
	Removed devel/ruby-gnome2-libglade [obache 2011-02-11]
	Updated devel/ruby-gnome2-pango to 0.90.7 [obache 2011-02-11]
	Updated graphics/ruby-gnome2-gdkpixbuf to 0.90.7 [obache 2011-02-11]
	Removed graphics/ruby-gnome2-gnomecanvas [obache 2011-02-11]
	Updated graphics/ruby-gnome2-goocanvas to 0.90.7 [obache 2011-02-11]
	Removed graphics/ruby-gnome2-gtkglext [obache 2011-02-11]
	Removed graphics/ruby-gnome2-libart [obache 2011-02-11]
	Updated graphics/ruby-gnome2-rsvg to 0.90.7 [obache 2011-02-11]
	Updated multimedia/ruby-gnome2-gstreamer to 0.90.7 [obache 2011-02-11]
	Removed print/ruby-gnome2-gnomeprint [obache 2011-02-11]
	Removed print/ruby-gnome2-gnomeprintui [obache 2011-02-11]
	Updated print/ruby-gnome2-poppler to 0.90.7 [obache 2011-02-11]
	Removed sysutils/ruby-gnome2-gnomevfs [obache 2011-02-11]
	Removed www/ruby-gnome2-gtkhtml2 [obache 2011-02-11]
	Updated www/ruby-gnome2-gtkmozembed to 0.90.7 [obache 2011-02-11]
	Removed x11/ruby-gnome2-gnome [obache 2011-02-11]
	Updated x11/ruby-gnome2-gtk to 0.90.7 [obache 2011-02-11]
	Removed x11/ruby-gnome2-gtksourceview [obache 2011-02-11]
	Updated x11/ruby-gnome2-gtksourceview2 to 0.90.7 [obache 2011-02-11]
	Removed x11/ruby-gnome2-panelapplet [obache 2011-02-11]
	Updated x11/ruby-gnome2-vte to 0.90.7 [obache 2011-02-11]
	Updated mail/milter-manager to 1.6.5 [obache 2011-02-11]
	Updated mail/roundcube to 0.5.1 [adam 2011-02-11]
	Updated net/quvi to 0.2.13 [ryoon 2011-02-11]
	Updated devel/libevent to 2.0.10 [tnn 2011-02-11]
	Updated net/Transmission to 2.21 [tnn 2011-02-11]
	Updated editors/nvi-m17n to 1.79.20040401nb5 [obache 2011-02-12]
	Updated chat/navi2ch to 1.8.3 [ryoon 2011-02-12]
	Updated audio/kid3 to 1.6 [shattered 2011-02-12]
	Updated sysutils/dmidecode to 2.11 [shattered 2011-02-12]
	Updated editors/ted to 2.21nb2 [wiz 2011-02-12]
	Updated mail/rss2email to 2.70nb1 [schmonz 2011-02-12]
	Updated finance/gnucash to 2.4.2 [wiz 2011-02-12]
	Updated net/poptop to 1.3.4 [asau 2011-02-12]
	Updated chat/jabberd2 to 2.2.12 [adam 2011-02-12]
	Updated inputmethod/skk-jisyo-cdb to 201102 [ryoon 2011-02-12]
	Updated net/tinc to 1.0.13nb1 [rumko 2011-02-13]
	Updated misc/emacs-wiki to 2.72 [ryoon 2011-02-13]
	Added multimedia/gst123 version 0.1.4 [ryoon 2011-02-13]
	Updated devel/cutter to 1.1.7 [obache 2011-02-13]
	Updated pkgtools/pkgin to 0.4.0 [imil 2011-02-13]
	Updated databases/phpmyadmin to 2.11.11.3 [tron 2011-02-13]
	Updated databases/mysql51-client to 5.1.55 [taca 2011-02-13]
	Updated databases/mysql51-server to 5.1.55 [taca 2011-02-13]
	Updated www/contao29-translations to 20110213 [taca 2011-02-13]
	Updated games/gbrainy to 1.62 [wiz 2011-02-13]
	Added www/aws version 2.10.0.1 [drochner 2011-02-13]
	Updated www/webkit-gtk to 1.2.7 [drochner 2011-02-13]
	Updated lang/gnat-aux to 20110203 [drochner 2011-02-13]
	Added devel/gps version 5.0.0 [drochner 2011-02-13]
	Updated www/apache-tomcat6 to 6.0.32 [spz 2011-02-15]
	Updated graphics/exiv2 to 0.21.1 [adam 2011-02-15]
	Updated databases/postgresql84 to 8.4.7 [adam 2011-02-15]
	Updated databases/postgresql84-client to 8.4.7 [adam 2011-02-15]
	Updated databases/postgresql84-server to 8.4.7 [adam 2011-02-15]
	Updated databases/postgresql84-adminpack to 8.4.7 [adam 2011-02-15]
	Updated databases/postgresql84-dblink to 8.4.7 [adam 2011-02-15]
	Updated databases/postgresql84-pgcrypto to 8.4.7 [adam 2011-02-15]
	Updated databases/postgresql84-plperl to 8.4.7 [adam 2011-02-15]
	Updated databases/postgresql84-plpython to 8.4.7 [adam 2011-02-15]
	Updated databases/postgresql84-pltcl to 8.4.7 [adam 2011-02-15]
	Updated databases/postgresql83 to 8.3.14 [adam 2011-02-15]
	Updated databases/postgresql83-client to 8.3.14 [adam 2011-02-15]
	Updated databases/postgresql83-server to 8.3.14 [adam 2011-02-15]
	Updated databases/postgresql83-adminpack to 8.3.14 [adam 2011-02-15]
	Updated databases/postgresql83-plperl to 8.3.14 [adam 2011-02-15]
	Updated databases/postgresql83-plpython to 8.3.14 [adam 2011-02-15]
	Updated databases/postgresql83-pltcl to 8.3.14 [adam 2011-02-15]
	Updated chat/climm to 0.7.1 [adam 2011-02-15]
	Added archivers/ruby-bz2 version 0.2.2 [obache 2011-02-15]
	Added audio/ruby-mp3info version 0.6.13 [obache 2011-02-15]
	Updated databases/db5 to 5.1.25 [adam 2011-02-15]
	Added print/tex-chessfss version 1.2a [wiz 2011-02-15]
	Added print/tex-chessfss-doc version 1.2a [wiz 2011-02-15]
	Added print/tex-skak version 1.5 [wiz 2011-02-15]
	Added print/tex-skak-doc version 1.5 [wiz 2011-02-15]
	Added print/tex-chessfss version 1.2a [wiz 2011-02-15]
	Added print/tex-chessfss-doc version 1.2a [wiz 2011-02-15]
	Added print/tex-texmate version 2 [wiz 2011-02-15]
	Added print/tex-texmate-doc version 2 [wiz 2011-02-15]
	Updated graphics/gegl to 0.1.6 [adam 2011-02-15]
	Updated multimedia/mkvtoolnix to 4.5.0 [drochner 2011-02-15]
	Updated multimedia/vlc to 1.1.7 [drochner 2011-02-15]
	Updated multimedia/libmatroska to 1.1.0 [drochner 2011-02-15]
	Updated devel/libebml to 1.2.0 [drochner 2011-02-15]
	Updated wm/fvwm-devel to 2.5.31 [jmmv 2011-02-15]
	Added databases/postgresql90-fuzzystrmatch version 9.0.3 [manu 2011-02-16]
	Updated time/xonclock to 0.0.9.3 [wiz 2011-02-16]
	Updated time/etm to 702 [ryoon 2011-02-16]
	Updated net/bind97 to 9.7.3 [taca 2011-02-16]
	Updated security/openssh to 5.8.1 [taca 2011-02-16]
	Added fonts/tamsyn-font version 1.6 [wiz 2011-02-16]
	Updated time/xonclock to 0.0.9.4 [wiz 2011-02-16]
	Updated multimedia/dvdauthor to 0.7.0 [gls 2011-02-16]
	Updated multimedia/dvdstyler to 1.8.2.1 [gls 2011-02-16]
	Updated print/abcm2ps to 6.2.9 [ryoon 2011-02-16]
	Updated devel/libgee to 0.6.1 [gls 2011-02-16]
	Updated net/nmap to 5.51 [pettai 2011-02-16]
	Updated graphics/libraw to 0.13.1 [gls 2011-02-16]
	Added devel/libxenserver version 5.6.100 [sborrill 2011-02-17]
	Updated devel/kdbg to 2.2.2 [markd 2011-02-17]
	Updated sysutils/ipmitool to 1.8.11 [markd 2011-02-17]
	Updated multimedia/avidemux to 2.5.4 [markd 2011-02-17]
	Updated graphics/py-matplotlib to 1.0.1 [markd 2011-02-17]
	Updated graphics/py-matplotlib-tk to 1.0.1 [markd 2011-02-17]
	Updated graphics/py-matplotlib-gtk2 to 1.0.1 [markd 2011-02-17]
	Updated sysutils/hal to 0.5.14nb2 [jmcneill 2011-02-17]
	Updated audio/abcmidi to 20110101 [ryoon 2011-02-17]
	Updated www/py-django-cms to 2.1.2 [adam 2011-02-17]
	Added www/py-django-appmedia version 1.0.1 [adam 2011-02-17]
	Updated fonts/vlgothic-ttf to 20101218 [wiz 2011-02-18]
	Updated databases/abook to 0.6.0rc2 [shattered 2011-02-18]
	Updated print/tex-amsmath to 2.13nb2 [minskim 2011-02-19]
	Updated devel/pvs to 3.2nb3 [minskim 2011-02-19]
	Removed print/tex-hlatex successor print/tex-kotex [minskim 2011-02-19]
	Added fonts/tex-avantgar version 2010 [minskim 2011-02-19]
	Added graphics/imlib-gtk version 1.9.15 [markd 2011-02-19]
	Updated sysutils/shelldap to 0.4 [imil 2011-02-19]
	Updated lang/parrot to 3.1.0 [he 2011-02-19]
	Updated devel/monodevelop to 2.4.2 [kefren 2011-02-19]
	Added x11/gtkglarea2 version 2.0.1 [wiz 2011-02-19]
	Updated devel/libosip to 3.5.0 [schwarz 2011-02-19]
	Updated devel/ruby-activemodel to 3.0.4nb1 [taca 2011-02-20]
	Added graphics/gimp-docs-en version 2.6.1 [ryoon 2011-02-20]
	Added graphics/gimp-docs-de version 2.6.1 [ryoon 2011-02-20]
	Added graphics/gimp-docs-es version 2.6.1 [ryoon 2011-02-20]
	Added graphics/gimp-docs-fr version 2.6.1 [ryoon 2011-02-20]
	Added graphics/gimp-docs-it version 2.6.1 [ryoon 2011-02-20]
	Added graphics/gimp-docs-ko version 2.6.1 [ryoon 2011-02-20]
	Added graphics/gimp-docs-nl version 2.6.1 [ryoon 2011-02-20]
	Added graphics/gimp-docs-nn version 2.6.1 [ryoon 2011-02-20]
	Added graphics/gimp-docs-pl version 2.6.1 [ryoon 2011-02-20]
	Added graphics/gimp-docs-ru version 2.6.1 [ryoon 2011-02-20]
	Added graphics/gimp-docs-sv version 2.6.1 [ryoon 2011-02-20]
	Added graphics/gimp-docs-zh_CN version 2.6.1 [ryoon 2011-02-20]
	Removed graphics/gimp-docs successor meta-pkgs/gimp-docs [ryoon 2011-02-20]
	Added meta-pkgs/gimp-docs version 2.6.1 [ryoon 2011-02-20]
	Updated www/ruby-actionpack3 to 3.0.4nb1 [taca 2011-02-20]
	Updated emulators/ckmame to 0.11 [wiz 2011-02-20]
	Added fonts/tex-bookman version 2010 [minskim 2011-02-20]
	Updated mail/opendkim to 2.2.2 [pettai 2011-02-21]
	Updated lang/sun-jre6 to 6.0.24 [obache 2011-02-21]
	Updated lang/sun-jdk6 to 6.0.24 [obache 2011-02-21]
	Updated emulators/suse100_fontconfig to 10.0nb7 [obache 2011-02-21]
	Updated lang/ruby18-base to 1.8.7.334 [taca 2011-02-21]
	Updated lang/ruby19-base to 1.9.2pl180 [taca 2011-02-21]
	Updated net/libnice to 0.1.0 [wiz 2011-02-21]
	Updated multimedia/farsight2 to 0.0.25 [wiz 2011-02-21]
	Updated lang/php5 to 5.2.17nb2 [taca 2011-02-21]
	Updated lang/php53 to 5.3.5nb1 [taca 2011-02-21]
	Updated archivers/php-zip to 5.3.5nb1 [taca 2011-02-21]
	Updated graphics/php-exif to 5.3.5nb1 [taca 2011-02-21]
	Removed www/typo3_44 [taca 2011-02-21]
	Updated pkgtools/pkgin to 0.4.1 [imil 2011-02-21]
	Updated archivers/php-zip to 5.3.5nb2 [taca 2011-02-22]
	Updated graphics/php-exif to 5.3.5nb2 [taca 2011-02-22]
	Updated databases/py-ldap to 2.3.13 [adam 2011-02-22]
	Added lang/python27 version 2.7.1 [obache 2011-02-22]
	Updated textproc/hunspell-hu_HU to 1.6.1 [ahoka 2011-02-22]
	Updated devel/netbsd-iscsi-lib to 20110222 [sborrill 2011-02-22]
	Updated net/netbsd-iscsi-initiator to 20110222 [sborrill 2011-02-22]
	Updated net/netbsd-iscsi-target to 20110222 [sborrill 2011-02-22]
	Updated www/contao29-translations to 20110222 [taca 2011-02-22]
	Updated textproc/xmlrpc-c to 1.06.42 [adam 2011-02-22]
	Updated devel/cmake to 2.8.4 [adam 2011-02-22]
	Updated misc/rubygems to 1.3.7nb1 [taca 2011-02-23]
	Updated textproc/xerces-c to 3.1.1 [adam 2011-02-23]
	Added textproc/xqilla version 2.2.4 [adam 2011-02-23]
	Removed textproc/xalan-c successor textproc/xerces-c [adam 2011-02-23]
	Removed textproc/libpathan successor textproc/xqilla [adam 2011-02-23]
	Removed textproc/p5-XML-Xerces [adam 2011-02-23]
	Updated security/xml-security-c to 1.6.0 [adam 2011-02-23]
	Updated textproc/xmltooling to 1.4.1 [adam 2011-02-23]
	Updated security/opensaml to 2.4.1 [adam 2011-02-23]
	Updated games/enigma to 1.01.1914 [adam 2011-02-23]
	Updated databases/bdb-xml to 2.5.16 [adam 2011-02-23]
	Updated databases/py-bdb-xml to 2.5.16 [adam 2011-02-23]
	Updated databases/py-bsddb3 to 5.1.1 [adam 2011-02-23]
	Updated devel/readline to 6.2 [adam 2011-02-23]
	Updated chat/jabberd2 to 2.2.13 [adam 2011-02-23]
	Updated www/py-django-cms to 2.1.3 [adam 2011-02-24]
	Updated devel/boost-jam to 1.46.0 [adam 2011-02-24]
	Updated devel/boost-headers to 1.46.0 [adam 2011-02-24]
	Updated devel/boost-libs to 1.46.0 [adam 2011-02-24]
	Updated devel/boost-docs to 1.46.0 [adam 2011-02-24]
	Updated devel/boost-build to 1.46.0 [adam 2011-02-24]
	Updated devel/boost-python to 1.46.0 [adam 2011-02-24]
	Updated meta-pkgs/boost to 1.46.0 [adam 2011-02-24]
	Updated graphics/glew to 1.5.8 [adam 2011-02-24]
	Updated games/wesnoth to 1.8.5 [adam 2011-02-24]
	Updated www/geeklog to 1.7.2 [taca 2011-02-24]
	Updated www/typo3 to 4.5.1 [taca 2011-02-24]
	Updated sysutils/fabric to 0.9.4 [gls 2011-02-24]
	Updated textproc/asciidoc to 8.6.4 [gls 2011-02-24]
	Updated multimedia/farsight2 to 0.0.25 [wiz 2011-02-24]
	Added textproc/ruby-escape version 0.2 [obache 2011-02-25]
	Added www/ruby-httpclient version 2.1.6.1 [obache 2011-02-25]
	Added devel/ruby-memoize version 1.3.1 [obache 2011-02-25]
	Updated security/ruby-oauth to 0.4.4nb1 [obache 2011-02-25]
	Added misc/howm version 1.3.9.1 [obache 2011-02-25]
	Updated lang/pcc-current to 1.0.0.BETA.20110225 [he 2011-02-25]
	Removed graphics/uniconvertor successor graphics/py-uniconvertor [adam 2011-02-25]
	Updated multimedia/totem-pl-parser to 2.32.3 [drochner 2011-02-25]
	Updated multimedia/py-gstreamer0.10 to 0.10.21 [drochner 2011-02-25]
	Updated net/scapy to 2.1.1 [drochner 2011-02-25]
	Updated math/gnumeric110 to 1.10.13 [drochner 2011-02-25]
	Updated misc/goffice0.8 to 0.8.13 [drochner 2011-02-25]
	Updated mail/gmime24 to 2.4.22 [drochner 2011-02-25]
	Updated mail/evolution-data-server to 2.32.2 [drochner 2011-02-25]
	Updated graphics/veusz to 1.10 [drochner 2011-02-25]
	Updated graphics/libgnomecanvas to 2.30.3 [drochner 2011-02-25]
	Updated devel/gobject-introspection to 0.10.3 [drochner 2011-02-25]
	Updated chat/telepathy-idle to 0.1.7 [drochner 2011-02-25]
	Updated chat/telepathy-mission-control5 to 5.6.1 [drochner 2011-02-25]
	Updated chat/telepathy-farsight to 0.0.15 [drochner 2011-02-25]
	Updated chat/telepathy-glib to 0.12.7 [drochner 2011-02-25]
	Updated graphics/magicpoint to 1.13anb6 [wiz 2011-02-25]
	Added net/unison2.32 version 2.32.52nb4 [wiz 2011-02-25]
	Updated net/unison to 2.40.61 [wiz 2011-02-25]
	Added audio/xine-alsa version 1.1.19 [markd 2011-02-25]
	Updated textproc/php-intl to 1.1.2nb1 [taca 2011-02-26]
	Updated databases/mysql5-client to 5.0.92 [taca 2011-02-26]
	Updated databases/mysql5-server to 5.0.92 [taca 2011-02-26]
	Updated www/typo3 to 4.5.2 [taca 2011-02-26]
	Updated www/ikiwiki to 3.20110225 [schmonz 2011-02-26]
	Updated www/contao29-translations to 20110224 [taca 2011-02-26]
	Updated finance/p5-Finance-Quote to 1.17nb2 [obache 2011-02-26]
	Updated net/p5-Net-IP to 1.25nb3 [obache 2011-02-26]
	Updated graphics/djvulibre-lib to 3.5.23 [ryoon 2011-02-26]
	Updated graphics/djvulibre-tools to 3.5.23 [ryoon 2011-02-26]
	Updated graphics/djview4 to 4.5nb4 [ryoon 2011-02-26]
	Added games/lnl version 3.4.19 [obache 2011-02-26]
	Updated mail/postfix to 2.8.1 [tron 2011-02-26]
	Removed mail/postfix-current successor mail/postfix [tron 2011-02-26]
	Updated net/mldonkey to 3.0.7 [wiz 2011-02-26]
	Updated net/mldonkey-gui to 3.0.7 [wiz 2011-02-26]
	Updated pkgtools/x11-links to 0.65 [wiz 2011-02-26]
	Added net/p5-Net-DNS-Zone-Parser version 0.02 [obache 2011-02-26]
	Updated multimedia/avidemux to 2.5.4nb1 [wiz 2011-02-26]
	Updated print/chktex to 1.6.3nb2 [wiz 2011-02-26]
	Updated print/p5-LaTeX-Driver to 0.08nb2 [wiz 2011-02-26]
	Updated print/pdfjam to 1.20nb2 [wiz 2011-02-26]
	Updated inputmethod/libhangul to 0.0.12 [obache 2011-02-27]
	Updated inputmethod/ibus-hangul to 1.3.1 [obache 2011-02-27]
	Updated www/wordpress to 3.1 [morr 2011-02-27]
	Updated audio/musicpd to 0.16 [wiz 2011-02-27]
	Updated audio/musicpd to 0.16.1 [wiz 2011-02-27]
	Added net/p5-Net-DNS-Resolver-Programmable version 0.003 [obache 2011-02-27]
	Updated net/p5-NetAddr-IP to 4.038 [obache 2011-02-27]
	Updated emulators/fuse to 1.0.0.1 [adam 2011-02-27]
	Added mail/p5-Mail-SPF version 2.007 [obache 2011-02-27]
	Added audio/libmpdclient version 2.4 [wiz 2011-02-27]
	Updated audio/mpc to 0.20 [wiz 2011-02-27]
	Updated audio/ncmpc to 0.18 [wiz 2011-02-27]
	Updated textproc/gtk-doc to 1.17 [wiz 2011-02-27]
	Added emulators/suse113_libcurl version 11.3 [chs 2011-02-27]
	Added emulators/suse113_32_libcurl version 11.3 [chs 2011-02-27]
	Updated emulators/suse113_base to 11.3nb2 [chs 2011-02-27]
	Added audio/gmpc-lyricwiki version 0.20.0 [wiz 2011-02-27]
	Updated emulators/suse113_krb5 to 11.3nb2 [chs 2011-02-27]
	Updated multimedia/adobe-flash-plugin10.1 to 10.2.152.27nb1 [chs 2011-02-27]
	Added audio/gmpc-tagedit version 0.20.0 [wiz 2011-02-27]
	Added audio/gmpc-mdcover version 0.20.0 [wiz 2011-02-27]
	Added audio/gmpc-lastfm version 0.20.0 [wiz 2011-02-27]
	Added fonts/motoya-fonts version 20100921 [ryoon 2011-02-27]
	Added audio/gmpc-lyrics version 0.20.0 [wiz 2011-02-27]
	Added audio/gmpc-albumview version 0.20.0 [wiz 2011-02-27]
	Added net/nicovideo-dl version 0.0.20110122 [ryoon 2011-02-27]
	Updated emulators/suse113_base to 11.3nb3 [chs 2011-02-28]
	Updated textproc/py-pygments to 1.4 [obache 2011-02-28]
	Updated devel/ncurses to 5.8 [adam 2011-02-28]
	Updated devel/ncursesw to 5.8 [adam 2011-02-28]
	Updated net/samba33 to 3.3.15 [taca 2011-02-28]
	Updated net/samba35 to 3.5.7 [taca 2011-02-28]
	Added www/p5-Mojolicious version 1.11 [wiz 2011-02-28]
	Removed www/p5-Mojo successor www/p5-Mojolicious [wiz 2011-02-28]
	Added devel/mdds version 0.5.1 [wiz 2011-02-28]
	Added benchmarks/super_pi version 20030927 [wiz 2011-02-28]
	Updated www/squid31 to 3.1.11 [adam 2011-02-28]
	Updated net/youtube-dl to 20110225c [ryoon 2011-02-28]
	Updated lang/python26 to 2.6.6nb6 [tron 2011-02-28]
	Updated lang/pear to 1.9.2 [taca 2011-03-01]
	Updated editors/emacs-snapshot to 24.0.50.20110224 [minskim 2011-03-01]
	Updated net/rtorrent to 0.8.6nb2 [tron 2011-03-01]
	Updated lang/pcc-current to 1.0.0.BETA.20110228 [he 2011-03-01]
	Added fonts/urbanrenewal-ttf version 201102 [wiz 2011-03-01]
	Updated lang/icon to 9.4.3nb1 [wiz 2011-03-01]
	Updated textproc/p5-Text-vCard to 2.10 [wiz 2011-03-01]
	Removed security/libksba04 successor security/libksba [kleink 2011-03-01]
	Updated net/wireshark to 1.4.4 [tron 2011-03-02]
	Updated mail/faces to 1.6.1nb5 [obache 2011-03-02]
	Updated devel/ccache to 3.1.4 [wiz 2011-03-02]
	Updated devel/mercurial to 1.8 [wiz 2011-03-02]
	Added games/onscripter version 20110226 [ryoon 2011-03-02]
	Updated net/aria2 to 1.10.9 [ryoon 2011-03-02]
	Updated editors/yudit to 2.9.2 [ryoon 2011-03-02]
	Updated emulators/bochs to 2.4.6 [ryoon 2011-03-02]
	Updated www/typo3 to 4.5.2nb1 [bouyer 2011-03-02]
	Updated chat/cgiirc to 0.5.10 [gls 2011-03-02]
	Updated print/tex-dvips to 2010.21308 [minskim 2011-03-03]
	Added fonts/tex-charter version 2010 [minskim 2011-03-03]
	Added fonts/tex-charter-doc version 2010 [minskim 2011-03-03]
	Updated fonts/freefont-ttf to 20100919 [ryoon 2011-03-03]
	Updated x11/qt4 to 4.7.2 [adam 2011-03-03]
	Updated x11/qt4-libs to 4.7.2 [adam 2011-03-03]
	Updated x11/qt4-tools to 4.7.2 [adam 2011-03-03]
	Updated x11/qt4-docs to 4.7.2 [adam 2011-03-03]
	Updated x11/qt4-mng to 4.7.2 [adam 2011-03-03]
	Updated x11/qt4-mysql to 4.7.2 [adam 2011-03-03]
	Updated x11/qt4-pgsql to 4.7.2 [adam 2011-03-03]
	Updated x11/qt4-qdbus to 4.7.2 [adam 2011-03-03]
	Updated x11/qt4-sqlite3 to 4.7.2 [adam 2011-03-03]
	Updated x11/qt4-tiff to 4.7.2 [adam 2011-03-03]
	Updated security/gpgme to 1.3.0 [adam 2011-03-03]
	Added x11/py-vte version 0.26.2 [obache 2011-03-03]
	Updated graphics/ocrad to 0.21 [gdt 2011-03-03]
	Added fonts/tex-cmextra version 2010 [minskim 2011-03-03]
	Updated print/latex-mk to 2.1nb1 [minskim 2011-03-03]
	Updated print/tex-context-doc to 2010nb1 [minskim 2011-03-03]
	Updated print/tex-latex-bin-doc to 2010.21345 [minskim 2011-03-03]
	Updated print/tex-luatex-doc to 0.60.1nb1 [minskim 2011-03-03]
	Updated print/tex-pdftex to 1.40.11nb4 [minskim 2011-03-03]
	Updated print/tex-pdftex-doc to 1.40.11nb2 [minskim 2011-03-03]
	Updated devel/subversion to 1.6.16 [taca 2011-03-04]
	Updated devel/java-subversion to 1.6.16 [taca 2011-03-04]
	Updated devel/p5-subversion to 1.6.16 [taca 2011-03-04]
	Updated devel/py-subversion to 1.6.16 [taca 2011-03-04]
	Updated devel/ruby-subversion to 1.6.16 [taca 2011-03-04]
	Updated www/ap2-subversion to 1.6.16 [taca 2011-03-04]
	Added net/bind98 version 9.8.0 [taca 2011-03-04]
	Updated www/ja-trac to 0.12.2pl1 [obache 2011-03-03]
	Updated www/firefox-l10n to 3.6.13 [obache 2011-03-04]
	Updated www/contao29-translations to 20110304 [taca 2011-03-04]
	Updated meta-pkgs/ruby-gnome2 to 0.90.8 [obache 2011-03-04]
	Updated devel/ruby-gnome2-atk to 0.90.8 [obache 2011-03-04]
	Updated devel/ruby-gnome2-gio to 0.90.8 [obache 2011-03-04]
	Updated devel/ruby-gnome2-glib to 0.90.8 [obache 2011-03-04]
	Updated devel/ruby-gnome2-pango to 0.90.8 [obache 2011-03-04]
	Updated graphics/ruby-gnome2-gdkpixbuf to 0.90.8 [obache 2011-03-04]
	Updated graphics/ruby-gnome2-goocanvas to 0.90.8 [obache 2011-03-04]
	Updated graphics/ruby-gnome2-rsvg to 0.90.8 [obache 2011-03-04]
	Updated multimedia/ruby-gnome2-gstreamer to 0.90.8 [obache 2011-03-04]
	Updated print/ruby-gnome2-poppler to 0.90.8 [obache 2011-03-04]
	Updated www/ruby-gnome2-gtkmozembed to 0.90.8 [obache 2011-03-04]
	Updated x11/ruby-gnome2-gtk to 0.90.8 [obache 2011-03-04]
	Updated x11/ruby-gnome2-gtksourceview2 to 0.90.8 [obache 2011-03-04]
	Updated x11/ruby-gnome2-vte to 0.90.8 [obache 2011-03-04]
	Updated pkgtools/pkgdiff to 1.1 [wiz 2011-03-04]
	Added net/p5-Net-INET6Glue version 0.5 [tron 2011-03-04]
	Added math/tex-fp version 2010 [minskim 2011-03-04]
	Added math/tex-fp-doc version 2010 [minskim 2011-03-04]
	Added finance/tex-euro version 1.1 [minskim 2011-03-04]
	Added finance/tex-euro-doc version 1.1 [minskim 2011-03-04]
	Added fonts/tex-euro-ce version 2010 [minskim 2011-03-04]
	Added fonts/tex-euro-ce-doc version 2010 [minskim 2011-03-04]
	Updated devel/pango to 1.28.3nb3 [tron 2011-03-05]
	Updated devel/xulrunner to 1.9.2.15 [tnn 2011-03-05]
	Updated www/firefox to 3.6.15 [tnn 2011-03-05]
	Updated www/seamonkey to 2.0.12 [tnn 2011-03-05]
	Updated mail/thunderbird to 3.1.8 [tnn 2011-03-05]
	Added databases/postgresql83-uuid version 1.0.2 [brook 2011-03-05]
	Added databases/postgresql84-uuid version 1.0.2 [brook 2011-03-05]
	Added databases/postgresql90-uuid version 1.0.2 [brook 2011-03-05]
	Updated fonts/liberation-ttf to 1.06.0.20100721 [ryoon 2011-03-05]
	Updated lang/sbcl to 1.0.46 [asau 2011-03-05]
	Updated chat/weechat to 0.3.4 [tonio 2011-03-05]
	Updated lang/python25 to 2.5.5nb2 [dholland 2011-03-06]
	Updated mail/mailagent to 3.0.73nb1 [dholland 2011-03-06]
	Updated x11/lesstif to 0.95.2nb1 [dholland 2011-03-06]
	Updated chat/irssi to 0.8.15nb1 [dholland 2011-03-06]
	Updated www/py-django-classy-tags to 0.3.3 [adam 2011-03-06]
	Updated graphics/mypaint to 0.9.1 [ryoon 2011-03-06]
	Updated www/firefox-l10n to 3.6.15 [obache 2011-03-06]
	Updated devel/libev to 4.04 [asau 2011-03-06]
	Removed audio/gkrellm-xmms [wiz 2011-03-06]
	Removed audio/gqmpeg [wiz 2011-03-06]
	Removed audio/libvisual-xmms [wiz 2011-03-06]
	Removed audio/madman [wiz 2011-03-06]
	Removed audio/py-xmms [wiz 2011-03-06]
	Removed audio/xmms-alarm [wiz 2011-03-06]
	Removed audio/xmms-arts [wiz 2011-03-06]
	Removed audio/xmms-bezier [wiz 2011-03-06]
	Removed audio/xmms-blursk [wiz 2011-03-06]
	Removed audio/xmms-bump-scope [wiz 2011-03-06]
	Removed audio/xmms-dflowers [wiz 2011-03-06]
	Removed audio/xmms-dscope [wiz 2011-03-06]
	Removed audio/xmms-dspectogram [wiz 2011-03-06]
	Removed audio/xmms-dspectral [wiz 2011-03-06]
	Removed audio/xmms-fmradio [wiz 2011-03-06]
	Removed audio/xmms-funtimedancer [wiz 2011-03-06]
	Removed audio/xmms-gdancer [wiz 2011-03-06]
	Removed audio/xmms-infinity [wiz 2011-03-06]
	Removed audio/xmms-iris [wiz 2011-03-06]
	Removed audio/xmms-jakdaw [wiz 2011-03-06]
	Removed audio/xmms-jess [wiz 2011-03-06]
	Removed audio/xmms-liveice [wiz 2011-03-06]
	Removed audio/xmms-madspin [wiz 2011-03-06]
	Removed audio/xmms-modplug [wiz 2011-03-06]
	Removed audio/xmms-neato [wiz 2011-03-06]
	Removed audio/xmms-nebulus [wiz 2011-03-06]
	Removed audio/xmms-osx [wiz 2011-03-06]
	Removed audio/xmms-paranormal [wiz 2011-03-06]
	Removed audio/xmms-synaesthesia [wiz 2011-03-06]
	Removed audio/xmms-tv-scope [wiz 2011-03-06]
	Removed audio/xmms-vismsa [wiz 2011-03-06]
	Removed audio/xmmsctrl [wiz 2011-03-06]
	Removed graphics/g3d [wiz 2011-03-06]
	Removed graphics/gimageview [wiz 2011-03-06]
	Removed graphics/gimp1 [wiz 2011-03-06]
	Removed graphics/gimp1-data [wiz 2011-03-06]
	Removed graphics/gimp1-wideangle [wiz 2011-03-06]
	Removed graphics/gphoto [wiz 2011-03-06]
	Removed graphics/ov519view [wiz 2011-03-06]
	Removed graphics/phpsview [wiz 2011-03-06]
	Removed graphics/pixieplus [wiz 2011-03-06]
	Removed graphics/pornview [wiz 2011-03-06]
	Removed graphics/ppmtoxvpic [wiz 2011-03-06]
	Removed graphics/qcamview [wiz 2011-03-06]
	Removed graphics/snx101view [wiz 2011-03-06]
	Removed inputmethod/ami [wiz 2011-03-06]
	Removed multimedia/smpeg-xmms [wiz 2011-03-06]
	Removed print/gimp-print [wiz 2011-03-06]
	Removed print/gimp-print-cups [wiz 2011-03-06]
	Removed print/gimp-print-escputil [wiz 2011-03-06]
	Removed print/gimp-print-ijs [wiz 2011-03-06]
	Removed print/gimp-print-lib [wiz 2011-03-06]
	Removed sysutils/fsv [wiz 2011-03-06]
	Removed wm/qvwm [wiz 2011-03-06]
	Removed wm/whiteBOX [wiz 2011-03-06]
	Removed wm/wmdrawer [wiz 2011-03-06]
	Removed www/galway [wiz 2011-03-06]
	Removed x11/acidlaunch [wiz 2011-03-06]
	Removed x11/dfm [wiz 2011-03-06]
	Removed x11/gtk-engines [wiz 2011-03-06]
	Removed x11/ruby-gtk [wiz 2011-03-06]
	Removed graphics/gimp1-base [wiz 2011-03-06]
	Added audio/xmms-nas version 0.2 [wiz 2011-03-06]
	Added audio/xmms-cdread version 0.14a [wiz 2011-03-06]
	Updated pkgtools/pkgin to 0.4.2 [imil 2011-03-06]
	Added fonts/tex-bera version 2010 [minskim 2011-03-06]
	Added fonts/tex-bera-doc version 2010 [minskim 2011-03-06]
	Added fonts/tex-eurofont version 1.1.3 [minskim 2011-03-06]
	Added fonts/tex-eurofont-doc version 1.1.3 [minskim 2011-03-06]
	Added print/tex-bezos version 2010 [minskim 2011-03-06]
	Added print/tex-bezos-doc version 2010 [minskim 2011-03-06]
	Added print/tex-bibtopic version 1.1a [minskim 2011-03-06]
	Added print/tex-bibtopic-doc version 1.1a [minskim 2011-03-06]
	Updated print/tex-dvipdfm to 0.13.2dnb4 [minskim 2011-03-06]
	Updated print/tex-dvipdfm-doc to 0.13.2dnb2 [minskim 2011-03-06]
	Added fonts/tex-eurosans version 2.1 [minskim 2011-03-06]
	Added fonts/tex-eurosans-doc version 2.1 [minskim 2011-03-06]
	Added fonts/tex-fpl version 1.002 [minskim 2011-03-06]
	Added fonts/tex-fpl-doc version 1.002 [minskim 2011-03-06]
	Added fonts/tex-mathpazo version 1.003 [minskim 2011-03-06]
	Added fonts/tex-mathpazo-doc version 1.003 [minskim 2011-03-06]
	Added editors/qgoogletranslator version 1.2.1 [ryoon 2011-03-07]
	Updated audio/mp3blaster to 3.2.5 [ryoon 2011-03-07]
	Updated inputmethod/ibus-m17n to 1.3.2 [obache 2011-03-07]
	Updated security/gnutls to 2.10.5 [adam 2011-03-07]
	Updated www/contao29-translations to 20110307 [taca 2011-03-07]
	Updated print/tex-dvipdfmx-doc to 2010.21369 [minskim 2011-03-07]
	Added fonts/tex-ncntrsbk version 2010 [minskim 2011-03-07]
	Added fonts/tex-zapfchan version 2010 [minskim 2011-03-07]
	Added fonts/tex-pxfonts version 2010 [minskim 2011-03-07]
	Added fonts/tex-pxfonts-doc version 2010 [minskim 2011-03-07]
	Updated www/py-moin to 1.9.3nb1 [gls 2011-03-07]
	Updated www/moodle to 2.0.2 [gls 2011-03-07]
	Updated net/samba35 to 3.5.8 [adam 2011-03-08]
	Updated databases/mysql51-client to 5.1.56 [taca 2011-03-08]
	Updated databases/mysql51-server to 5.1.56 [taca 2011-03-08]
	Updated www/contao29 to 2.9.4 [taca 2011-03-08]
	Updated textproc/ruby-itex2MML to 1.4.5 [taca 2011-03-08]
	Updated print/lilypond to 2.12.3nb2 [ryoon 2011-03-08]
	Updated audio/gqmpeg-skins to 20030712nb6 [wiz 2011-03-08]
	Added fonts/tex-tex-gyre version 2.004 [minskim 2011-03-08]
	Added fonts/tex-tex-gyre-doc version 2.004 [minskim 2011-03-08]
	Added fonts/tex-utopia version 2010 [minskim 2011-03-08]
	Added fonts/tex-utopia-doc version 2010 [minskim 2011-03-08]
	Added fonts/tex-collection-fontsrecommended version 2010 [minskim 2011-03-08]
	Added fonts/tex-collection-fontsrecommended-doc version 2010 [minskim 2011-03-08]
	Added fonts/tex-wasysym version 2.0 [minskim 2011-03-08]
	Added fonts/tex-wasysym-doc version 2.0 [minskim 2011-03-08]
	Updated net/clive to 2.2.23 [reed 2011-03-08]
	Updated sysutils/fabric to 1.0.0 [gls 2011-03-08]
	Updated www/contao29-translations to 20110308 [taca 2011-03-08]
	Added misc/window version 20110309 [jmmv 2011-03-09]
	Updated graphics/libraw to 0.13.2 [drochner 2011-03-09]
	Updated print/poppler to 0.16.3 [drochner 2011-03-09]
	Updated x11/gtk2 to 2.24.1 [drochner 2011-03-09]
	Updated devel/glib2 to 2.28.2 [drochner 2011-03-09]
	Updated net/tor to 0.2.1.30 [drochner 2011-03-09]
	Updated print/mupdf to 0.8 [drochner 2011-03-09]
	Updated math/mpcomplex to 0.9 [asau 2011-03-09]
	Updated www/curl to 7.21.4 [asau 2011-03-09]
	Updated devel/libsigsegv to 2.9 [asau 2011-03-09]
	Updated sysutils/mtools to 4.0.14 [asau 2011-03-09]
	Updated editors/emacs-snapshot to 24.0.50.20110309 [minskim 2011-03-10]
	Updated devel/libsigc++ to 2.2.9 [adam 2011-03-10]
	Updated fonts/umefont-ttf to 0.425 [ryoon 2011-03-10]
	Updated mail/dovecot2 to 2.0.11 [adam 2011-03-10]
	Added fonts/tex-eco version 1.3 [minskim 2011-03-10]
	Added fonts/tex-eco-doc version 1.3 [minskim 2011-03-10]
	Added fonts/tex-esint version 1.1 [minskim 2011-03-10]
	Added fonts/tex-esint-doc version 1.1 [minskim 2011-03-10]
	Updated net/lftp to 4.1.3 [pettai 2011-03-10]
	Updated net/lft to 3.31 [gls 2011-03-11]
	Updated security/libksba to 1.2.0 [adam 2011-03-11]
	Updated textproc/xmlto to 0.0.23 [adam 2011-03-11]
	Updated devel/scmgit to 1.7.4.1 [adam 2011-03-11]
	Updated devel/scmgit-base to 1.7.4.1 [adam 2011-03-11]
	Updated devel/scmgit-docs to 1.7.4.1 [adam 2011-03-11]