summaryrefslogtreecommitdiff
path: root/doc/CHANGES-2013
blob: 1435469dfba54a2942d9f6a09727fe1b0521ac73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
$NetBSD: CHANGES-2013,v 1.1490 2013/04/24 09:52:54 sbd Exp $

Changes to the packages collection and infrastructure in 2013:

	Updated textproc/mdoclint to 1.18 [jnemeth 2013-01-01]
	Updated graphics/blender to 2.65a [ryoon 2013-01-02]
	Updated graphics/fotoxx to 13.01 [ryoon 2013-01-02]
	Updated net/aria2 to 1.16.1 [ryoon 2013-01-02]
	Updated comms/asterisk to 11.1.1 [jnemeth 2013-01-03]
	Updated comms/asterisk to 10.11.1 [jnemeth 2013-01-03]
	Updated comms/asterisk to 1.8.19.1 [jnemeth 2013-01-03]
	mk/bsd.pkg.mk: freeze ended for pkgsrc-2012Q4 branch [agc 2013-01-03]
	Updated mail/milter-greylist to 4.4.1 [tron 2013-01-03]
	Updated www/py-django-mptt to 0.5.5 [adam 2013-01-03]
	Updated lang/perl5 to 5.16.2nb2 [dholland 2013-01-03]
	Updated pkgtools/digest to 20121220 [dholland 2013-01-03]
	Added print/electrix version 0.2.0 [ryoon 2013-01-03]
	Added print/qpdfview version 0.3.7 [ryoon 2013-01-03]
	Updated graphics/fotoxx to 13.01 [ryoon 2013-01-03]
	Added www/php-piwigo version 2.4.6 [ryoon 2013-01-03]
	Updated www/jetty7 to 7.6.8.20121106 [ryoon 2013-01-03]
	Updated databases/py-postgresql to 4.1 [darcy 2013-01-03]
	Added www/php-tt-rss version 1.6.2 [ryoon 2013-01-03]
	Added www/py-bleach version 1.1.5 [ryoon 2013-01-03]
	Added www/py-django-mezzanine-grappelli version 0.2.11 [ryoon 2013-01-03]
	Added www/py-django-mezzanine-filebrowser version 0.2.13 [ryoon 2013-01-03]
	Added devel/py-flakes version 0.5.0nb1 [ryoon 2013-01-03]
	Added devel/py-pep8 version 1.3.4 [ryoon 2013-01-03]
	Added www/py-mezzanine version 1.2.4 [ryoon 2013-01-03]
	Updated lang/clang to 3.2 [adam 2013-01-03]
	Added www/py-django-appconf version 0.5 [ryoon 2013-01-03]
	Updated shells/zsh to 5.0.2 [ryoon 2013-01-03]
	Updated misc/vym to 2.2.4 [ryoon 2013-01-03]
	Added net/py-smb version 1.1.2 [ryoon 2013-01-03]
	Added devel/open-vcdiff version 0.8.3 [agc 2013-01-03]
	Updated www/py-moin to 1.9.6 [gls 2013-01-03]
	Updated databases/sqlite3 to 3.7.15.1 [adam 2013-01-03]
	Updated databases/sqlite3-docs to 3.7.15.1 [adam 2013-01-03]
	Updated databases/sqlite3-tcl to 3.7.15.1 [adam 2013-01-03]
	Updated databases/mysql55-client to 5.5.29 [adam 2013-01-03]
	Updated databases/mysql55-server to 5.5.29 [adam 2013-01-03]
	Updated comms/asterisk to 11.1.2 [jnemeth 2013-01-04]
	Updated pkgtools/libkver to 0.7.1 [apb 2013-01-04]
	Updated textproc/icu to 50.1.1 [adam 2013-01-04]
	Updated devel/ruby-ole to 1.2.11.6 [obache 2013-01-05]
	Updated math/ruby-spreadsheet to 0.7.5 [obache 2013-01-05]
	Updated security/ruby-simple_oauth to 0.2.0 [obache 2013-01-05]
	Updated www/ruby-httpclient to 2.3.2 [obache 2013-01-05]
	Added misc/ruby-typed-array version 0.1.2 [obache 2013-01-05]
	Updated net/mikutter to 0.2.1.1112 [obache 2013-01-05]
	Updated devel/xulrunner to 17.0.1nb2 [sbd 2013-01-05]
	Updated devel/npapi-sdk to 0.27.2 [obache 2013-01-05]
	Updated devel/gmtk to 1.0.7 [obache 2013-01-05]
	Updated multimedia/gnome-mplayer to 1.0.7 [obache 2013-01-05]
	Updated multimedia/gecko-mediaplayer to 1.0.7 [obache 2013-01-05]
	Updated textproc/p5-XML-Feed to 0.51 [wen 2013-01-05]
	Updated textproc/p5-XML-RSS to 1.49 [wen 2013-01-05]
	Updated audio/nas to 1.9.3 [mef 2013-01-05]
	Added devel/perltidy version 20121207 [darcy 2013-01-05]
	Updated devel/ruby-activesupport3 to 3.0.18 [taca 2013-01-05]
	Updated devel/ruby-activemodel to 3.0.18 [taca 2013-01-05]
	Updated www/ruby-activeresource3 to 3.0.18 [taca 2013-01-05]
	Updated www/ruby-actionpack3 to 3.0.18 [taca 2013-01-05]
	Updated databases/ruby-activerecord3 to 3.0.18 [taca 2013-01-05]
	Updated mail/ruby-actionmailer3 to 3.0.18 [taca 2013-01-05]
	Updated devel/ruby-railties to 3.0.18 [taca 2013-01-05]
	Updated www/ruby-rails3 to 3.0.18 [taca 2013-01-05]
	Updated textproc/p5-XML-Rabbit to 0.2.1 [wen 2013-01-05]
	Updated devel/ruby-activesupport31 to 3.1.9 [taca 2013-01-05]
	Updated devel/ruby-activemodel31 to 3.1.9 [taca 2013-01-05]
	Updated www/ruby-activeresource31 to 3.1.9 [taca 2013-01-05]
	Updated databases/ruby-activerecord31 to 3.1.9 [taca 2013-01-05]
	Updated www/ruby-actionpack31 to 3.1.9 [taca 2013-01-05]
	Updated mail/ruby-actionmailer31 to 3.1.9 [taca 2013-01-05]
	Updated devel/ruby-railties31 to 3.1.9 [taca 2013-01-05]
	Updated www/ruby-rails31 to 3.1.9 [taca 2013-01-05]
	Updated textproc/p5-XML-Entities to 1.0001 [wen 2013-01-05]
	Updated devel/ruby-activesupport32 to 3.2.10 [taca 2013-01-05]
	Updated devel/ruby-activemodel32 to 3.2.10 [taca 2013-01-05]
	Updated www/ruby-activeresource32 to 3.2.10 [taca 2013-01-05]
	Updated databases/ruby-activerecord32 to 3.2.10 [taca 2013-01-05]
	Updated www/ruby-actionpack32 to 3.2.10 [taca 2013-01-05]
	Updated mail/ruby-actionmailer32 to 3.2.10 [taca 2013-01-05]
	Updated devel/ruby-railties32 to 3.2.10 [taca 2013-01-05]
	Updated www/ruby-rails32 to 3.2.10 [taca 2013-01-05]
	Updated mail/opendkim to 2.7.3 [pettai 2013-01-05]
	Updated devel/nss to 3.14.1 [ryoon 2013-01-05]
	Added converters/docx2txt version 1.2nb1 [is 2013-01-05]
	Added graphics/xdot version 20121124 [wiz 2013-01-05]
	Added devel/autoconf-archive version 2012.11.14 [wiz 2013-01-05]
	Added games/toppler version 1.1.6 [wiz 2013-01-05]
	Added games/uqm version 0.7.0nb1 [wiz 2013-01-05]
	Removed lang/tcl-itcl-current [wiz 2013-01-05]
	Updated converters/libvisio to 0.0.24 [wiz 2013-01-06]
	Updated textproc/enca to 1.13 [wiz 2013-01-06]
	Updated devel/py-distribute to 0.6.33 [wiz 2013-01-06]
	Updated devel/gob2 to 2.0.19 [wiz 2013-01-06]
	Updated textproc/gsed to 4.2.2nb4 [wiz 2013-01-06]
	Updated graphics/freetype2 to 2.4.11 [wiz 2013-01-06]
	Updated devel/pango to 1.32.5 [wiz 2013-01-06]
	Updated devel/global to 6.2.7 [wiz 2013-01-06]
	Updated devel/mercurial to 2.4.2 [wiz 2013-01-06]
	Updated devel/doxygen to 1.8.3 [wiz 2013-01-06]
	Updated net/Transmission to 2.75 [wiz 2013-01-06]
	Updated net/Transmission-gui to 2.75 [wiz 2013-01-06]
	Updated www/libmicrohttpd to 0.9.24 [wiz 2013-01-06]
	Updated fonts/harfbuzz to 0.9.9nb1 [ryoon 2013-01-06]
	Removed devel/perltidy [darcy 2013-01-06]
	Updated security/gnupg to 1.4.13 [spz 2013-01-06]
	Added devel/lua-lpeg version 0.10.2 [alnsn 2013-01-06]
	Updated games/supertuxkart to 0.8 [ryoon 2013-01-06]
	Updated security/pcsc-lite to 1.8.7 [pettai 2013-01-06]
	Updated security/ccid to 1.4.8 [pettai 2013-01-06]
	Updated fonts/urw-fonts to 1.0.7pre44 [wiz 2013-01-06]
	Updated fonts/umefont-ttf to 0.447 [ryoon 2013-01-07]
	Added devel/reposurgeon version 2.12 [ryoon 2013-01-07]
	Updated lang/tcl-itcl to 3.4.1nb1 [wiz 2013-01-07]
	Updated sysutils/tkdesk to 2.0nb3 [wiz 2013-01-07]
	Updated cad/tnt-mmtl to 1.2.2nb7 [wiz 2013-01-07]
	Updated lang/php53 to 5.3.20 [taca 2013-01-07]
	Updated lang/php54 to 5.4.10 [taca 2013-01-07]
	Updated www/contao211 to 2.11.8 [taca 2013-01-07]
	Updated www/contao211-example to 2.11.8 [taca 2013-01-07]
	Updated www/contao30 to 3.0.2 [taca 2013-01-07]
	Updated www/contao30-example to 3.0.2 [taca 2013-01-07]
	Added devel/py-blinker version 1.2 [kleink 2013-01-07]
	Added www/py-werkzeug version 0.8.3 [kleink 2013-01-07]
	Added www/py-flask version 0.9 [kleink 2013-01-07]
	Added www/py-flask-login version 0.1.3 [kleink 2013-01-07]
	Added www/py-flask-sqlalchemy version 0.16 [kleink 2013-01-07]
	Added www/py-wtforms version 1.0.2 [kleink 2013-01-07]
	Added www/py-flask-wtf version 0.8.2 [kleink 2013-01-07]
	Updated security/gnupg to 1.4.13nb1 [wiz 2013-01-07]
	Added www/py-flask-admin version 1.0.4 [kleink 2013-01-07]
	Updated math/py-pandas to 0.10.0 [bad 2013-01-08]
	Added audio/ibniz version 1.18 [wiz 2013-01-08]
	Added editors/tweak version 3.01 [wiz 2013-01-08]
	Updated pkgtools/pkg_tarup to 1.9.1 [jperkin 2013-01-08]
	Updated www/contao30 to 3.0.3 [taca 2013-01-08]
	Updated www/contao30-example to 3.0.3 [taca 2013-01-08]
	Updated mail/milter-greylist to 4.4.2 [tron 2013-01-08]
	Added www/py-flask-uploads version 0.1.3 [kleink 2013-01-08]
	Added www/py-flask-flatpages version 0.3 [kleink 2013-01-08]
	Added www/py-flask-frozen version 0.9 [kleink 2013-01-08]
	Added www/py-flask-rest version 1.1 [kleink 2013-01-08]
	Updated databases/py-postgresql to 4.1.1 [darcy 2013-01-08]
	Updated security/stunnel to 4.54 [jym 2013-01-09]
	Updated www/contao30 to 3.0.3nb1 [taca 2013-01-09]
	Updated devel/xulrunner192 to 1.9.2nb7 [martin 2013-01-09]
	Updated www/ruby-rack to 1.4.3 [taca 2013-01-09]
	Updated multimedia/adobe-flash-plugin11 to 11.2.202.261 [obache 2013-01-09]
	Updated multimedia/adobe-flash-plugin10.1 to 10.3.183.50 [obache 2013-01-09]
	Updated devel/ruby-activesupport3 to 3.0.19 [taca 2013-01-09]
	Updated devel/ruby-activemodel to 3.0.19 [taca 2013-01-09]
	Updated www/ruby-activeresource3 to 3.0.19 [taca 2013-01-09]
	Updated www/ruby-actionpack3 to 3.0.19 [taca 2013-01-09]
	Updated databases/ruby-activerecord3 to 3.0.19 [taca 2013-01-09]
	Updated mail/ruby-actionmailer3 to 3.0.19 [taca 2013-01-09]
	Updated devel/ruby-railties to 3.0.19 [taca 2013-01-09]
	Updated www/ruby-rails3 to 3.0.19 [taca 2013-01-09]
	Updated devel/ruby-activesupport31 to 3.1.10 [taca 2013-01-09]
	Updated devel/ruby-activemodel31 to 3.1.10 [taca 2013-01-09]
	Updated www/ruby-activeresource31 to 3.1.10 [taca 2013-01-09]
	Updated databases/ruby-activerecord31 to 3.1.10 [taca 2013-01-09]
	Updated www/ruby-actionpack31 to 3.1.10 [taca 2013-01-09]
	Updated mail/ruby-actionmailer31 to 3.1.10 [taca 2013-01-09]
	Updated devel/ruby-railties31 to 3.1.10 [taca 2013-01-09]
	Updated www/ruby-rails31 to 3.1.10 [taca 2013-01-09]
	Updated devel/ruby-activesupport32 to 3.2.11 [taca 2013-01-09]
	Updated devel/ruby-activemodel32 to 3.2.11 [taca 2013-01-09]
	Updated www/ruby-activeresource32 to 3.2.11 [taca 2013-01-09]
	Updated databases/ruby-activerecord32 to 3.2.11 [taca 2013-01-09]
	Updated www/ruby-actionpack32 to 3.2.11 [taca 2013-01-09]
	Updated mail/ruby-actionmailer32 to 3.2.11 [taca 2013-01-09]
	Updated devel/ruby-railties32 to 3.2.11 [taca 2013-01-09]
	Updated www/ruby-rails32 to 3.2.11 [taca 2013-01-09]
	Updated time/ical to 3.0.2 [is 2013-01-09]
	Updated x11/gtk3 to 3.6.4 [prlw1 2013-01-09]
	Updated converters/fribidi to 0.19.5 [mef 2013-01-09]
	Updated net/mikutter to 0.2.1.1117 [obache 2013-01-10]
	Updated devel/xulrunner to 18.0 [ryoon 2013-01-10]
	Updated www/firefox to 18.0 [ryoon 2013-01-10]
	Updated devel/xulrunner10 to 10.0.12 [is 2013-01-10]
	Updated www/firefox10 to 10.0.12 [is 2013-01-10]
	Updated databases/p5-SQL-Statement to 1.402 [wen 2013-01-10]
	Updated textproc/p5-Text-CSV_XS to 0.94 [wen 2013-01-10]
	Updated mail/thunderbird10 to 10.0.12 [ryoon 2013-01-10]
	Added devel/xulrunner17 version 17.0.2 [ryoon 2013-01-10]
	Added www/firefox17 version 17.0.2 [ryoon 2013-01-10]
	Updated databases/sqlite3 to 3.7.15.2 [adam 2013-01-10]
	Updated databases/sqlite3-docs to 3.7.15.2 [adam 2013-01-10]
	Updated databases/sqlite3-tcl to 3.7.15.2 [adam 2013-01-10]
	Updated sysutils/logrotate to 3.8.2 [wiz 2013-01-10]
	Updated sysutils/mtools to 4.0.18 [is 2013-01-10]
	Added www/firefox17-l10n version 17.0.2 [ryoon 2013-01-10]
	Updated devel/at-spi2-core to 2.6.3 [prlw1 2013-01-10]
	Removed devel/guile-fcgi [gdt 2013-01-11]
	Updated pkgtools/x11-links to 0.72 [ryoon 2013-01-11]
	Updated mail/milter-greylist to 4.4.2nb1 [tron 2013-01-11]
	Updated www/squid31 to 3.1.23 [taca 2013-01-11]
	Updated net/isc-dhcp4 to 4.2.5 [taca 2013-01-11]
	Updated net/isc-dhclient4 to 4.2.5 [taca 2013-01-11]
	Updated net/isc-dhcpd4 to 4.2.5 [taca 2013-01-11]
	Updated net/isc-dhcrelay4 to 4.2.5 [taca 2013-01-11]
	Updated databases/ruby-data_objects to 0.10.11 [taca 2013-01-12]
	Updated databases/ruby-do_mysql to 0.10.11 [taca 2013-01-12]
	Updated databases/ruby-do_postgres to 0.10.11 [taca 2013-01-12]
	Updated databases/ruby-do_sqlite3 to 0.10.11 [taca 2013-01-12]
	Updated databases/ruby-sequel to 3.43.0 [taca 2013-01-12]
	Updated databases/ruby-sqlite3 to 1.3.7 [taca 2013-01-12]
	Updated devel/hoe to 3.4.0 [taca 2013-01-12]
	Updated devel/ruby-extlib to 0.9.16 [taca 2013-01-12]
	Updated devel/ruby-gettext to 2.3.7 [taca 2013-01-12]
	Updated misc/m17n-db to 1.6.4 [obache 2013-01-12]
	Updated misc/m17n-contrib to 1.1.14 [obache 2013-01-12]
	Updated devel/ruby-fast_gettext to 0.7.0 [taca 2013-01-12]
	Updated devel/m17n-lib to 1.6.4 [obache 2013-01-12]
	Updated devel/ruby-logging to 1.8.1 [taca 2013-01-12]
	Updated devel/ruby-rspec-mocks to 2.12.1 [taca 2013-01-12]
	Updated devel/ruby-rspec-rails to 2.12.1 [taca 2013-01-12]
	Updated devel/jenkins to 1.480.2 [ryoon 2013-01-12]
	Updated www/py-bleach to 1.1.5nb1 [ryoon 2013-01-12]
	Updated www/py-django-appconf to 0.5nb1 [ryoon 2013-01-12]
	Updated www/py-django-mezzanine-grappelli to 0.2.11nb1 [ryoon 2013-01-12]
	Updated devel/ruby-stomp to 1.2.8 [taca 2013-01-12]
	Updated emulators/xtrs to 4.9d [is 2013-01-12]
	Updated graphics/fotoxx to 13.01.2 [ryoon 2013-01-13]
	Added textproc/uncrustify version 0.59 [ryoon 2013-01-13]
	Added net/bwping version 1.7 [ryoon 2013-01-13]
	Updated net/mikutter to 0.2.1.1119 [obache 2013-01-13]
	Added textproc/py-cssselect version 0.7.1 [jakllsch 2013-01-13]
	Updated misc/calibre to 0.9.7nb1 [jakllsch 2013-01-13]
	Updated emulators/xtrs to 4.9dnb1 [is 2013-01-13]
	Added print/tex-textcase version 0.07 [minskim 2013-01-14]
	Added print/tex-textcase-doc version 0.07 [minskim 2013-01-14]
	Updated meta-pkgs/web-server to 1.2 [dholland 2013-01-14]
	Updated www/ruby-rack12 to 1.2.7 [taca 2013-01-14]
	Updated www/ruby-rack13 to 1.3.9 [taca 2013-01-14]
	Updated www/ruby-rack to 1.4.4 [taca 2013-01-14]
	Updated devel/ruby-ffi to 1.3.1 [taca 2013-01-14]
	Updated devel/ruby-inline to 3.12.0 [taca 2013-01-14]
	Updated graphics/ruby-chunky_png to 1.2.7 [taca 2013-01-14]
	Updated devel/ruby-rspec-rails to 2.12.2 [taca 2013-01-14]
	Updated graphics/ruby-gnuplot to 2.6.2 [taca 2013-01-14]
	Updated net/ruby-domain_name to 0.5.7 [taca 2013-01-14]
	Updated textproc/py-feedparser to 5.1.3 [schmonz 2013-01-14]
	Updated pkgtools/pbulk-base to 0.47 [jperkin 2013-01-14]
	Added security/p5-Authen-Simple version 0.5 [bouyer 2013-01-14]
	Added www/p5-HTTP-Server-Simple-Authen version 0.04 [bouyer 2013-01-14]
	Added net/p5-FusionInventory-Agent version 2.2.7 [bouyer 2013-01-14]
	Added net/p5-FusionInventory-Agent-Task-Network version 1.0.2 [bouyer 2013-01-14]
	Updated editors/vim-share to 7.3.762 [morr 2013-01-14]
	Updated editors/vim-xaw to 7.3.762 [morr 2013-01-14]
	Updated editors/vim-lang to 7.3.762 [morr 2013-01-14]
	Updated security/p5-Digest-SHA to 5.81 [wiz 2013-01-15]
	Updated www/ikiwiki to 3.20121212nb1 [schmonz 2013-01-15]
	Updated security/gnupg2 to 2.0.19nb2 [drochner 2013-01-15]
	Updated ham/fldigi to 3.21.65 [mef 2013-01-16]
	Updated print/acroread9 to 9.5.3 [obache 2013-01-16]
	Updated converters/skf to 1.99.1 [obache 2013-01-16]
	Updated math/ruby-spreadsheet to 0.7.6 [obache 2013-01-16]
	Updated multimedia/x264-devel to 20130115 [adam 2013-01-16]
	Updated multimedia/ffmpeg to 20130106.1.1 [adam 2013-01-16]
	Updated multimedia/ffplay to 1.1 [adam 2013-01-16]
	Updated www/py-werkzeug to 0.8.3nb1 [kleink 2013-01-16]
	Updated www/drupal6 to 6.28 [taca 2013-01-17]
	Updated www/drupal7 to 7.19 [taca 2013-01-17]
	Added meta-pkgs/bulk-small version 20130113 [dholland 2013-01-17]
	Added meta-pkgs/bulk-medium version 20130113 [dholland 2013-01-17]
	Added meta-pkgs/bulk-large version 20130113 [dholland 2013-01-17]
	Updated www/ruby-rack-protection to 1.3.2 [taca 2013-01-17]
	Updated www/ruby-sinatra to 1.3.3nb1 [taca 2013-01-17]
	Updated lang/php54 to 5.4.11 [taca 2013-01-17]
	Updated lang/php53 to 5.3.21 [taca 2013-01-17]
	Updated sysutils/xenkernel41 to 4.1.4 [drochner 2013-01-17]
	Added www/py-werkzeug-docs version 0.8.3 [kleink 2013-01-17]
	Updated www/py-flask to 0.9nb1 [kleink 2013-01-18]
	Updated sysutils/xentools41 to 4.1.4 [drochner 2013-01-18]
	Added devel/gyp version 0.1pre1559 [ryoon 2013-01-18]
	Added inputmethod/ibus-mozc version 1.6.1187.102 [ryoon 2013-01-18]
	Added inputmethod/mozc-tool version 1.6.1187.102 [ryoon 2013-01-18]
	Added inputmethod/mozc-server version 1.6.1187.102 [ryoon 2013-01-18]
	Updated www/p5-HTML-Template to 2.9.4 [wen 2013-01-18]
	Updated devel/p5-Method-Signatures-Simple to 1.05 [wen 2013-01-18]
	Updated lang/chicken to 4.8.0.1 [asau 2013-01-18]
	Updated multimedia/ffmpegthumbnailer to 2.0.8 [wiz 2013-01-19]
	Updated mail/dovecot2 to 2.1.13 [manu 2013-01-19]
	Updated textproc/py-xlrd to 0.8.0 [obache 2013-01-19]
	Added net/nagios-plugin-raidctl version 0.1 [manu 2013-01-19]
	Added net/nagios-plugin-dumpdates version 0.1 [manu 2013-01-19]
	Updated textproc/py-markdown2 to 2.1.0 [obache 2013-01-19]
	Updated devel/py-testtools to 0.9.24 [obache 2013-01-19]
	Updated databases/p5-Redis to 1.958 [wen 2013-01-19]
	Added devel/p5-Stream-Buffered version 0.02 [wen 2013-01-19]
	Updated www/p5-Plack to 1.0015 [wen 2013-01-19]
	Updated x11/p5-Wx to 0.9916 [schmonz 2013-01-19]
	Renamed misc/git to sysutils/gnuit [reed 2013-01-19]
	Updated devel/p5-Test-Trap to 0.2.2 [schmonz 2013-01-19]
	Updated wm/fvwm to 2.6.5 [mef 2013-01-20]
	Updated www/seamonkey to 2.15 [ryoon 2013-01-20]
	Updated www/ja-trac to 1.0pl1 [obache 2013-01-20]
	Updated fonts/sourcecodepro-fonts to 1.017 [ryoon 2013-01-20]
	Updated fonts/vlgothic-ttf to 20121230 [ryoon 2013-01-20]
	Updated chat/bitlbee to 3.2 [tonio 2013-01-20]
	Updated devel/xulrunner to 18.0.1 [ryoon 2013-01-20]
	Updated www/firefox to 18.0.1 [ryoon 2013-01-20]
	Updated devel/subversion to 1.6.20 [ryoon 2013-01-20]
	Updated devel/subversion-base to 1.6.20 [ryoon 2013-01-20]
	Updated x11/rxvt-unicode to 9.16 [morr 2013-01-20]
	Updated devel/p5-subversion to 1.6.20 [ryoon 2013-01-20]
	Updated devel/ruby-subversion to 1.6.20 [ryoon 2013-01-20]
	Updated devel/py-subversion to 1.6.20 [ryoon 2013-01-20]
	Updated devel/java-subversion to 1.6.20 [ryoon 2013-01-20]
	Updated graphics/darktable to 1.1.2 [jakllsch 2013-01-20]
	Updated audio/opus-tools to 0.1.6 [ryoon 2013-01-20]
	Updated meta-pkgs/bulk-small to 20130120 [dholland 2013-01-20]
	Updated games/craft to 3.5nb3 [dholland 2013-01-21]
	Updated databases/mysql51-client to 5.1.67 [adam 2013-01-21]
	Updated databases/mysql51-server to 5.1.67 [adam 2013-01-21]
	Updated databases/phpldapadmin to 1.2.2nb1 [taca 2013-01-21]
	Updated emulators/mame to 0.148 [wiz 2013-01-21]
	Updated emulators/mess to 0.148 [wiz 2013-01-21]
	Updated x11/editres to 1.0.6 [wiz 2013-01-21]
	Updated x11/xterm to 288 [wiz 2013-01-21]
	Updated sysutils/cdrtools to 3.01alpha11 [wiz 2013-01-21]
	Updated misc/dialog to 1.2.20121230 [wiz 2013-01-21]
	Updated textproc/redland to 1.0.16 [wiz 2013-01-21]
	Updated textproc/enca to 1.14 [wiz 2013-01-21]
	Updated x11/ico to 1.0.4 [wiz 2013-01-21]
	Updated x11/viewres to 1.0.4 [wiz 2013-01-21]
	Updated x11/xcalc to 1.0.5 [wiz 2013-01-21]
	Updated x11/xconsole to 1.0.5 [wiz 2013-01-21]
	Updated x11/xmag to 1.0.5 [wiz 2013-01-21]
	Updated x11/xmessage to 1.0.4 [wiz 2013-01-21]
	Updated multimedia/libass to 0.10.1 [wiz 2013-01-21]
	Updated x11/libXTrap to 1.0.1 [wiz 2013-01-21]
	Updated x11/libXcomposite to 0.4.4 [wiz 2013-01-21]
	Updated x11/libXdamage to 1.1.4 [wiz 2013-01-21]
	Updated x11/beforelight to 1.0.5 [wiz 2013-01-21]
	Updated fonts/harfbuzz to 0.9.10 [wiz 2013-01-21]
	Updated devel/automake to 1.13.1 [wiz 2013-01-21]
	Updated devel/ccache to 3.1.9 [wiz 2013-01-21]
	Updated fonts/harfbuzz to 0.9.12 [wiz 2013-01-21]
	Updated x11/libXi to 1.6.2 [wiz 2013-01-21]
	Updated x11/rgb to 1.0.5 [wiz 2013-01-21]
	Updated graphics/cairo to 1.12.10 [wiz 2013-01-21]
	Updated graphics/cairo-gobject to 1.12.10 [wiz 2013-01-21]
	Updated net/Transmission to 2.76 [wiz 2013-01-21]
	Updated net/Transmission-gui to 2.76 [wiz 2013-01-21]
	Updated misc/py-anki2 to 2.0.5 [wiz 2013-01-21]
	Updated multimedia/libdvbpsi to 1.0.0 [wiz 2013-01-21]
	Updated multimedia/ffmpeg to 20130120.1.1.1 [wiz 2013-01-21]
	Updated sysutils/fabric to 1.5.2 [gls 2013-01-21]
	Updated audio/cd-discid to 0.9nb1 [jperkin 2013-01-21]
	Removed multimedia/vlc08 [wiz 2013-01-22]
	Updated audio/cd-discid to 1.3.1 [jperkin 2013-01-22]
	Removed multimedia/vls [wiz 2013-01-22]
	Added multimedia/libdvbpsi0 version 0.2.2 [wiz 2013-01-22]
	Removed multimedia/vlc10 [wiz 2013-01-22]
	Updated lang/coq to 8.4pl1 [jaapb 2013-01-22]
	Updated devel/gnome-common to 3.6.0nb1 [wiz 2013-01-22]
	Updated geography/geos to 3.3.7 [gdt 2013-01-23]
	Updated www/moodle to 2.3.4 [wen 2013-01-23]
	Updated devel/p5-Test-Compile to 0.23 [wen 2013-01-23]
	Updated textproc/p5-String-Approx to 3.27 [wen 2013-01-23]
	Updated textproc/p5-PDF-API2 to 2.020 [wen 2013-01-23]
	Updated x11/xsetroot to 1.1.1 [wiz 2013-01-23]
	Updated print/auctex to 11.87 [mef 2013-01-23]
	Updated devel/p5-Cache-Memcached to 1.30 [rhaen 2013-01-23]
	Updated devel/p5-Log-Log4perl to 1.40 [rhaen 2013-01-23]
	Updated devel/p5-Perl6-Junction to 1.50000 [rhaen 2013-01-23]
	Updated mail/p5-Email-Address to 1.897 [rhaen 2013-01-23]
	Updated mail/p5-Email-Simple to 2.102 [rhaen 2013-01-23]
	Updated mail/p5-Email-MIME to 1.911 [rhaen 2013-01-23]
	Updated security/p5-Crypt-Twofish to 2.15 [rhaen 2013-01-23]
	Updated textproc/p5-Text-WikiFormat to 0.80 [rhaen 2013-01-23]
	Updated textproc/p5-XML-Twig to 3.42 [rhaen 2013-01-23]
	Updated textproc/icu to 50.1.2 [adam 2013-01-23]
	Updated www/contao211-translations to 201301180 [taca 2013-01-23]
	Updated x11/xfd to 1.1.1 [wiz 2013-01-23]
	Updated meta-pkgs/modular-xorg-apps to 1.10 [wiz 2013-01-23]
	Updated www/firefox-l10n to 18.0.1 [ryoon 2013-01-23]
	Added fonts/cantarell-fonts version 0.0.12 [wiz 2013-01-23]
	Added misc/labelnation version 1.212 [wiz 2013-01-23]
	Updated devel/libctl to 3.2.1 [wiz 2013-01-23]
	Updated lang/erlang to 15.1.3.1 [asau 2013-01-23]
	Updated lang/erlang-man to 15.1.3.1 [asau 2013-01-23]
	Updated lang/erlang-doc to 15.1.3.1 [asau 2013-01-23]
	Updated multimedia/kaffeine to 1.2.2 [wiz 2013-01-23]
	Added graphics/gimp-high-pass-filter version 1.2 [wiz 2013-01-23]
	Added graphics/qcomicbook version 0.9.0 [wiz 2013-01-23]
	Added x11/gxmessage version 2.20.0 [wiz 2013-01-23]
	Added x11/tktable version 2.10nb1 [wiz 2013-01-23]
	Added editors/dhex version 0.68 [wiz 2013-01-23]
	Added math/R-intervals version 0.13.3 [wen 2013-01-24]
	Updated math/R-spacetime to 1.0.3 [wen 2013-01-24]
	Updated math/R-gstat to 1.0.15 [wen 2013-01-24]
	Updated math/R-xts to 0.9.3 [wen 2013-01-24]
	Updated math/R-genetics to 1.3.8 [wen 2013-01-24]
	Updated graphics/png to 1.5.14 [wiz 2013-01-24]
	Updated emulators/suse121_freetype2 to 12.1nb2 [obache 2013-01-24]
	Updated emulators/suse121_qt4 to 12.1nb1 [obache 2013-01-24]
	Updated math/ruby-spreadsheet to 0.7.7 [obache 2013-01-24]
	Updated net/zeromq to 2.2.0 [obache 2013-01-24]
	Updated lang/swi-prolog-packages to 5.11.18nb3 [is 2013-01-24]
	Updated net/py-zmq to 2.2.0.1 [obache 2013-01-24]
	Updated emulators/qemu to 1.3.0 [ryoon 2013-01-24]
	Updated graphics/pngcrush to 1.7.44 [adam 2013-01-24]
	Updated graphics/jpeg to 9 [adam 2013-01-24]
	Updated misc/p5-Locale-libintl to 1.23 [wiz 2013-01-25]
	Updated x11/libdrm to 2.4.41 [wiz 2013-01-25]
	Updated misc/py-anki2 to 2.0.6 [wiz 2013-01-25]
	Updated print/lilypond to 2.16.2 [wiz 2013-01-25]
	Updated inputmethod/libskk to 1.0.0 [obache 2013-01-25]
	Updated inputmethod/tegaki-wagomu to 0.3.1nb6 [obache 2013-01-25]
	Updated www/php-owncloud to 4.5.6 [ryoon 2013-01-25]
	Updated devel/gitolite to 3.04 [ryoon 2013-01-25]
	Updated www/apache-tomcat7 to 7.0.35 [ryoon 2013-01-25]
	Updated devel/lua-lrexlib to 2.7.2 [ryoon 2013-01-25]
	Updated devel/lua-lrexlib-onig to 2.7.2 [ryoon 2013-01-25]
	Updated devel/lua-lrexlib-pcre to 2.7.2nb1 [ryoon 2013-01-25]
	Updated devel/lua-lrexlib-posix to 2.7.2 [ryoon 2013-01-25]
	Added www/py-tornado version 2.4.1 [imil 2013-01-25]
	Updated databases/p5-DBD-mysql to 4.022 [rhaen 2013-01-26]
	Updated mail/mew to 6.5nb1 [ryoon 2013-01-26]
	Added www/ruby-multipart-post version 1.1.5 [obache 2013-01-26]
	Added www/ruby-faraday version 0.8.4 [obache 2013-01-26]
	Added textproc/ruby-levenshtein version 0.2.2 [obache 2013-01-26]
	Updated devel/ruby-gettext to 2.3.7nb1 [obache 2013-01-26]
	Updated graphics/rabbit to 2.0.6 [obache 2013-01-26]
	Added fonts/consolamono-ttf version 20121116 [ryoon 2013-01-26]
	Updated inputmethod/ibus-hangul to 1.4.2 [obache 2013-01-26]
	Updated net/mikutter to 0.2.1.1125 [obache 2013-01-26]
	Updated games/onscripter to 20130120 [tsutsui 2013-01-26]
	Updated databases/p5-DBIx-Class to 0.08205 [rhaen 2013-01-26]
	Updated devel/p5-strictures to 1.004004 [rhaen 2013-01-26]
	Updated devel/p5-Moo to 1.000007 [rhaen 2013-01-26]
	Updated editors/zim to 0.59 [ryoon 2013-01-26]
	Updated devel/p5-App-cpanminus to 1.5019 [wen 2013-01-26]
	Updated www/p5-WWW-Shorten to 3.03 [wen 2013-01-26]
	Updated www/p5-Web-Scraper to 0.37 [rhaen 2013-01-26]
	Updated devel/p5-AnyEvent to 7.04 [rhaen 2013-01-26]
	Updated devel/p5-EV to 4.11 [rhaen 2013-01-26]
	Added devel/p5-Safe-Isa version 1.000002 [rhaen 2013-01-26]
	Updated www/p5-Catalyst-Runtime to 5.90019 [rhaen 2013-01-26]
	Updated www/p5-Mojolicious to 3.82 [rhaen 2013-01-26]
	Updated x11/mlterm to 3.1.7 [tsutsui 2013-01-26]
	Updated mail/dovecot2 to 2.1.13nb1 [bouyer 2013-01-26]
	Updated databases/p5-ORLite to 1.98 [rhaen 2013-01-26]
	Updated devel/p5-Devel-Cover to 0.99 [rhaen 2013-01-26]
	Updated devel/p5-Error to 1.7019 [rhaen 2013-01-26]
	Updated devel/p5-Class-Method-Modifiers to 2.00 [rhaen 2013-01-26]
	Updated databases/p5-DBI to 1.623 [rhaen 2013-01-26]
	Updated devel/p5-Any-Moose to 0.20 [rhaen 2013-01-26]
	Updated devel/p5-Devel-StackTrace to 1.30 [rhaen 2013-01-26]
	Updated devel/p5-Event to 1.21 [rhaen 2013-01-26]
	Updated inputmethod/ibus-mozc to 1.6.1187.102nb1 [ryoon 2013-01-26]
	Updated inputmethod/mozc-tool to 1.6.1187.102nb1 [ryoon 2013-01-26]
	Updated inputmethod/mozc-server to 1.6.1187.102nb1 [ryoon 2013-01-26]
	Updated devel/p5-Log-Dispatch to 2.35 [rhaen 2013-01-26]
	Updated www/p5-Catalyst-Manual to 5.9006 [rhaen 2013-01-26]
	Updated converters/dos2unix to 6.0.3 [ryoon 2013-01-26]
	Removed audio/akode-plugins-ffmpeg [wiz 2013-01-27]
	Updated mbone/vic-devel to 2.8.1.4.0beta.4337nb6 [wiz 2013-01-27]
	Removed wm/metisse [wiz 2013-01-27]
	Removed x11/nucleo [wiz 2013-01-27]
	Updated print/hplip to 3.12.11 [schnoebe 2013-01-27]
	Updated www/wordpress to 3.5.1 [morr 2013-01-27]
	Updated www/p5-Apache-ASP to 2.62 [rhaen 2013-01-27]
	Updated www/p5-Catalyst-Plugin-Authentication to 0.10022 [rhaen 2013-01-27]
	Updated www/p5-Catalyst-Plugin-Session-Store-DBIC to 0.12 [rhaen 2013-01-27]
	Updated devel/p5-Syntax-Keyword-Junction to 0.003002 [rhaen 2013-01-27]
	Updated devel/p5-TAP-Formatter-HTML to 0.11 [rhaen 2013-01-27]
	Updated mail/p5-MailTools to 2.12 [rhaen 2013-01-27]
	Updated textproc/p5-CAM-PDF to 1.58 [rhaen 2013-01-27]
	Updated www/p5-CGI-Application-Plugin-ValidateRM to 2.5 [rhaen 2013-01-27]
	Updated www/p5-HTML-Mason to 1.50 [rhaen 2013-01-27]
	Updated www/p5-Starman to 0.3006 [rhaen 2013-01-27]
	Added mail/mimp version 1.1.4 [bouyer 2013-01-27]
	Updated www/py-wtforms to 1.0.3 [kleink 2013-01-27]
	Updated www/py-django-photologue to 2.5 [adam 2013-01-27]
	Updated mail/getmail to 4.37.0 [schmonz 2013-01-27]
	Added devel/p5-FindBin-libs version 1.65.1 [schmonz 2013-01-27]
	Added devel/p5-Ouch version 0.0401 [schmonz 2013-01-27]
	Added devel/p5-Test-BDD-Cucumber version 0.12 [schmonz 2013-01-27]
	Updated www/ikiwiki to 3.20121212nb2 [schmonz 2013-01-28]
	Updated devel/scmgit to 1.8.1.1 [adam 2013-01-28]
	Updated devel/scmgit-base to 1.8.1.1 [adam 2013-01-28]
	Updated devel/scmgit-docs to 1.8.1.1 [adam 2013-01-28]
	Updated www/gitweb to 1.8.1.1 [adam 2013-01-28]
	Updated www/py-paste to 1.7.5.1 [adam 2013-01-28]
	Added www/py-django-easy-thumbnails version 1.2 [adam 2013-01-28]
	Added www/py-django-inline-ordering version 1.0.2 [adam 2013-01-28]
	Added www/py-django-cmsplugin_gallery version 0.5.3 [adam 2013-01-28]
	Updated fonts/bdftopcf to 1.0.4 [wiz 2013-01-29]
	Updated meta-pkgs/modular-xorg-apps to 1.11 [wiz 2013-01-29]
	Updated devel/pkg-config to 0.28 [wiz 2013-01-29]
	Updated devel/py-cython to 0.17.4 [wiz 2013-01-29]
	Updated devel/py-distribute to 0.6.34 [wiz 2013-01-29]
	Updated fonts/t1utils to 1.37 [wiz 2013-01-29]
	Updated print/diffpdf to 2.1.2 [wiz 2013-01-29]
	Updated textproc/rasqal to 0.9.30 [wiz 2013-01-29]
	Added fonts/courier-prime version 1.203 [wiz 2013-01-29]
	Updated devel/ruby-activesupport3 to 3.0.20 [taca 2013-01-29]
	Updated devel/ruby-activemodel to 3.0.20 [taca 2013-01-29]
	Updated www/ruby-activeresource3 to 3.0.20 [taca 2013-01-29]
	Updated databases/ruby-activerecord3 to 3.0.20 [taca 2013-01-29]
	Updated www/ruby-actionpack3 to 3.0.20 [taca 2013-01-29]
	Updated mail/ruby-actionmailer3 to 3.0.20 [taca 2013-01-29]
	Updated devel/ruby-railties to 3.0.20 [taca 2013-01-29]
	Updated www/ruby-rails3 to 3.0.20 [taca 2013-01-29]
	Updated mail/fml4 to 4.0.3.20040215nb4 [taca 2013-01-29]
	Updated mail/fml to 20121230 [taca 2013-01-29]
	Updated net/libupnp to 1.6.18 [drochner 2013-01-29]
	Updated x11/xev to 1.2.1 [wiz 2013-01-29]
	Updated x11/xkeyboard-config to 2.8 [wiz 2013-01-30]
	Updated x11/pixman to 0.28.2 [wiz 2013-01-30]
	Updated devel/doxygen to 1.8.3.1 [wiz 2013-01-30]
	Added devel/cvsps3 version 3.2 [ryoon 2013-01-30]
	Updated net/samba35 to 3.5.21 [taca 2013-01-30]
	Updated net/samba to 3.6.12 [taca 2013-01-30]
	Added sysutils/di version 4.34 [obache 2013-01-30]
	Updated devel/scmgit to 1.8.1.1nb1 [wiz 2013-01-30]
	Updated devel/scmgit to 1.8.1.2 [adam 2013-01-30]
	Updated devel/scmgit-base to 1.8.1.2 [adam 2013-01-30]
	Updated devel/scmgit-docs to 1.8.1.2 [adam 2013-01-30]
	Updated www/gitweb to 1.8.1.2 [adam 2013-01-30]
	Added www/p5-CGI-Session-Plugin-Redirect version 1.01 [wiz 2013-01-30]
	Updated www/tidy to 20091027nb4 [wiz 2013-01-30]
	Added sysutils/menu-cache version 0.4.1nb1 [reed 2013-01-31]
	Removed shells/zsh-current [wiz 2013-01-31]
	Updated security/mozilla-rootcerts to 1.0.20121229 [wiz 2013-01-31]
	Updated pkgtools/pkg_install to 20130131 [wiz 2013-01-31]
	Updated net/wireshark to 1.8.5 [tron 2013-01-31]
	Updated databases/ruby-dm-active_model to 1.2.1nb2 [taca 2013-01-31]
	Updated databases/ruby-dm-rails to 1.2.1nb2 [taca 2013-01-31]
	Updated lang/ruby193-base to 1.9.3p374 [taca 2013-01-31]
	Updated databases/ruby-gdbm to 1.9.3p374nb2 [taca 2013-01-31]
	Updated devel/ruby-curses to 1.9.3p374 [taca 2013-01-31]
	Updated devel/ruby-fiddle to 1.9.3p374 [taca 2013-01-31]
	Updated devel/ruby-readline to 1.9.3p374nb2 [taca 2013-01-31]
	Updated x11/ruby-tk to 1.9.3p374nb1 [taca 2013-01-31]
	Updated lang/ruby193 to 1.9.3p374 [taca 2013-01-31]
	Updated devel/ruby-mode to 1.9.3p374 [taca 2013-01-31]
	Updated devel/gmp to 5.1.0 [adam 2013-01-31]
	Updated math/glpk to 4.48 [adam 2013-01-31]
	Added print/qpdf version 4.0.1 [wiz 2013-01-31]
	Updated devel/gettext to 0.18.2 [adam 2013-01-31]
	Updated devel/gettext-asprintf to 0.18.2 [adam 2013-01-31]
	Updated devel/gettext-lib to 0.18.2 [adam 2013-01-31]
	Updated devel/gettext-m4 to 0.18.2 [adam 2013-01-31]
	Updated devel/gettext-tools to 0.18.2 [adam 2013-01-31]
	Updated lang/gawk to 4.0.2 [adam 2013-01-31]
	Added x11/lxsession version 0.4.6.1nb1 [reed 2013-02-01]
	Updated time/p5-Time-Interval to 1.232 [wen 2013-02-01]
	Updated devel/p5-Tree-DAG_Node to 1.10 [wen 2013-02-01]
	Updated www/p5-Plack to 1.0016 [wen 2013-02-01]
	Updated devel/p5-App-cpanminus to 1.5021 [wen 2013-02-01]
	Updated devel/p5-Mouse to 1.04 [wen 2013-02-01]
	Updated geography/p5-Geo-Distance to 0.20 [wen 2013-02-01]
	Updated emulators/suse121_qt4 to 12.1nb2 [obache 2013-02-01]
	Updated www/opera to 12.13 [obache 2013-02-01]
	Updated lang/ruby193-base to 1.9.3p374nb1 [taca 2013-02-02]
	Updated misc/ja-less to 382.262.03 [ryoon 2013-02-02]
	Updated www/ikiwiki to 3.20121212nb3 [schmonz 2013-02-02]
	Updated devel/autoconf-archive to 2013.02.02 [wiz 2013-02-03]
	Updated devel/mercurial to 2.5 [wiz 2013-02-03]
	Updated misc/rubygems to 1.8.25 [taca 2013-02-03]
	Updated devel/py-cython to 0.18 [wiz 2013-02-03]
	Updated misc/py-anki2 to 2.0.7 [wiz 2013-02-03]
	Updated graphics/cairo to 1.12.12 [wiz 2013-02-03]
	Updated graphics/cairo-gobject to 1.12.12 [wiz 2013-02-03]
	Updated www/nginx to 1.2.6 [imil 2013-02-03]
	Updated print/epdfview to 0.1.8nb11 [jakllsch 2013-02-03]
	Updated mail/akonadi to 1.7.2 [markd 2013-02-04]
	Updated textproc/soprano to 2.8.0 [markd 2013-02-04]
	Updated sysutils/strigi to 0.7.7 [markd 2013-02-04]
	Updated lang/g95 to 0.93 [markd 2013-02-04]
	Removed net/samba30 [wiz 2013-02-05]
	Removed net/samba33 [wiz 2013-02-05]
	Updated print/kpathsea to 6.1.0nb1 [wiz 2013-02-05]
	Updated devel/xulrunner to 18.0.1nb2 [ryoon 2013-02-05]
	Updated net/mikutter to 0.2.1.1127 [obache 2013-02-05]
	Updated x11/libdrm to 2.4.42 [wiz 2013-02-05]
	Updated security/openssl to 0.9.8y [taca 2013-02-05]
	Updated mail/postfix to 2.8.14 [taca 2013-02-05]
	Updated misc/stellarium to 0.12.0 [drochner 2013-02-05]
	Updated www/libmicrohttpd to 0.9.25 [wiz 2013-02-06]
	Updated mail/sendmail to 8.14.6 [jnemeth 2013-02-06]
	Updated mail/libmilter to 8.14.6 [jnemeth 2013-02-06]
	Updated mail/sendmail-qtool to 8.14.6 [jnemeth 2013-02-06]
	Updated mail/sendmail-cidrexpand to 8.14.6 [jnemeth 2013-02-06]
	Updated lang/ruby193-base to 1.9.3p385 [taca 2013-02-06]
	Updated databases/ruby-gdbm to 1.9.3p385nb2 [taca 2013-02-06]
	Updated devel/ruby-curses to 1.9.3p385 [taca 2013-02-06]
	Updated devel/ruby-fiddle to 1.9.3p385 [taca 2013-02-06]
	Updated devel/ruby-readline to 1.9.3p385nb2 [taca 2013-02-06]
	Updated x11/ruby-tk to 1.9.3p385nb1 [taca 2013-02-06]
	Updated lang/ruby193 to 1.9.3p385 [taca 2013-02-06]
	Updated devel/ruby-mode to 1.9.3p385 [taca 2013-02-06]
	Updated devel/ruby-rdoc to 3.12.1 [taca 2013-02-06]
	Updated www/contao211 to 2.11.9 [taca 2013-02-06]
	Updated devel/ruby-railties to 3.0.20nb1 [taca 2013-02-06]
	Updated devel/ruby-railties31 to 3.1.10nb1 [taca 2013-02-06]
	Updated devel/ruby-railties32 to 3.2.11nb1 [taca 2013-02-06]
	Updated net/libpcap to 1.3.0 [jperkin 2013-02-06]
	Updated net/tcpdump to 4.3.0 [jperkin 2013-02-06]
	Updated net/trafshow to 5.2.3nb2 [jperkin 2013-02-06]
	Updated security/openssl to 1.0.1d [jperkin 2013-02-06]
	Updated comms/asterisk18 to 1.8.20.1 [jnemeth 2013-02-07]
	Updated audio/libaudiofile to 0.3.5 [wiz 2013-02-07]
	Updated graphics/jhead to 2.97 [wiz 2013-02-07]
	Updated meta-pkgs/ruby-gnome2 to 1.2.1 [obache 2013-02-07]
	Updated devel/ruby-gnome2-atk to 1.2.1 [obache 2013-02-07]
	Updated devel/ruby-gnome2-gio to 1.2.1 [obache 2013-02-07]
	Added devel/ruby-gnome2-gobject-introspection version 1.2.1 [obache 2013-02-07]
	Updated devel/ruby-gnome2-glib to 1.2.1 [obache 2013-02-07]
	Updated devel/ruby-gnome2-pango to 1.2.1 [obache 2013-02-07]
	Added graphics/ruby-gnome2-gdk3 version 1.2.1 [obache 2013-02-07]
	Updated graphics/ruby-gnome2-gdkpixbuf to 1.2.1 [obache 2013-02-07]
	Updated graphics/ruby-gnome2-goocanvas to 1.2.1 [obache 2013-02-07]
	Updated graphics/ruby-gnome2-rsvg to 1.2.1 [obache 2013-02-07]
	Updated multimedia/ruby-gnome2-gstreamer to 1.2.1 [obache 2013-02-07]
	Updated print/ruby-gnome2-poppler to 1.2.1 [obache 2013-02-07]
	Updated x11/ruby-gnome2-gtk to 1.2.1 [obache 2013-02-07]
	Added x11/ruby-gnome2-gtk3 version 1.2.1 [obache 2013-02-07]
	Updated x11/ruby-gnome2-gtksourceview2 to 1.2.1 [obache 2013-02-07]
	Added x11/ruby-gnome2-gtksourceview3 version 1.2.1 [obache 2013-02-07]
	Updated x11/ruby-gnome2-vte to 1.2.1 [obache 2013-02-07]
	Updated devel/xulrunner to 18.0.2 [ryoon 2013-02-07]
	Updated www/firefox to 18.0.2 [ryoon 2013-02-07]
	Updated mail/msmtp to 1.4.30 [ryoon 2013-02-07]
	Updated www/ruby-rack12 to 1.2.8 [taca 2013-02-08]
	Updated www/ruby-rack13 to 1.3.10 [taca 2013-02-08]
	Updated www/ruby-rack to 1.4.5 [taca 2013-02-08]
	Updated mail/roundcube to 0.8.5 [taca 2013-02-08]
	Updated security/openssl to 1.0.1dnb2 [jperkin 2013-02-08]
	Updated graphics/pngcrush to 1.7.47 [adam 2013-02-08]
	Updated www/seamonkey to 2.15.2 [ryoon 2013-02-08]
	Added devel/google-glog version 0.3.3 [tonnerre 2013-02-08]
	Updated net/nsd to 3.2.15 [pettai 2013-02-08]
	Updated multimedia/adobe-flash-plugin11 to 11.2.202.262 [obache 2013-02-09]
	Updated emulators/suse121_base to 12.1nb5 [obache 2013-02-09]
	Updated lang/sun-jre7 to 7.0.13 [ryoon 2013-02-09]
	Updated lang/sun-jdk7 to 7.0.13 [ryoon 2013-02-09]
	Updated databases/postgresql92 to 9.2.3 [adam 2013-02-09]
	Updated databases/postgresql92-client to 9.2.3 [adam 2013-02-09]
	Updated databases/postgresql92-server to 9.2.3 [adam 2013-02-09]
	Updated databases/postgresql92-docs to 9.2.3 [adam 2013-02-09]
	Updated databases/postgresql92-adminpack to 9.2.3 [adam 2013-02-09]
	Updated databases/postgresql92-datatypes to 9.2.3 [adam 2013-02-09]
	Updated databases/postgresql92-dblink to 9.2.3 [adam 2013-02-09]
	Updated databases/postgresql92-fuzzystrmatch to 9.2.3 [adam 2013-02-09]
	Updated databases/postgresql92-monitoring to 9.2.3 [adam 2013-02-09]
	Updated databases/postgresql92-pgcrypto to 9.2.3 [adam 2013-02-09]
	Updated databases/postgresql92-plperl to 9.2.3 [adam 2013-02-09]
	Updated databases/postgresql92-plpython to 9.2.3 [adam 2013-02-09]
	Updated databases/postgresql92-pltcl to 9.2.3 [adam 2013-02-09]
	Updated databases/postgresql92-replicationtools to 9.2.3 [adam 2013-02-09]
	Updated databases/postgresql92-upgrade to 9.2.3 [adam 2013-02-09]
	Updated databases/postgresql91 to 9.1.8 [adam 2013-02-09]
	Updated databases/postgresql91-adminpack to 9.1.8 [adam 2013-02-09]
	Updated databases/postgresql91-client to 9.1.8 [adam 2013-02-09]
	Updated databases/postgresql91-datatypes to 9.1.8 [adam 2013-02-09]
	Updated databases/postgresql91-dblink to 9.1.8 [adam 2013-02-09]
	Updated databases/postgresql91-docs to 9.1.8 [adam 2013-02-09]
	Updated databases/postgresql91-fuzzystrmatch to 9.1.8 [adam 2013-02-09]
	Updated databases/postgresql91-monitoring to 9.1.8 [adam 2013-02-09]
	Updated databases/postgresql91-pgcrypto to 9.1.8 [adam 2013-02-09]
	Updated databases/postgresql91-plperl to 9.1.8 [adam 2013-02-09]
	Updated databases/postgresql91-plpython to 9.1.8 [adam 2013-02-09]
	Updated databases/postgresql91-pltcl to 9.1.8 [adam 2013-02-09]
	Updated databases/postgresql91-replicationtools to 9.1.8 [adam 2013-02-09]
	Updated databases/postgresql91-server to 9.1.8 [adam 2013-02-09]
	Updated databases/postgresql91-upgrade to 9.1.8 [adam 2013-02-09]
	Updated databases/postgresql90 to 9.0.12 [adam 2013-02-09]
	Updated databases/postgresql90-adminpack to 9.0.12 [adam 2013-02-09]
	Updated databases/postgresql90-client to 9.0.12 [adam 2013-02-09]
	Updated databases/postgresql90-datatypes to 9.0.12 [adam 2013-02-09]
	Updated databases/postgresql90-dblink to 9.0.12 [adam 2013-02-09]
	Updated databases/postgresql90-docs to 9.0.12 [adam 2013-02-09]
	Updated databases/postgresql90-fuzzystrmatch to 9.0.12 [adam 2013-02-09]
	Updated databases/postgresql90-monitoring to 9.0.12 [adam 2013-02-09]
	Updated databases/postgresql90-pgcrypto to 9.0.12 [adam 2013-02-09]
	Updated databases/postgresql90-plperl to 9.0.12 [adam 2013-02-09]
	Updated databases/postgresql90-plpython to 9.0.12 [adam 2013-02-09]
	Updated databases/postgresql90-pltcl to 9.0.12 [adam 2013-02-09]
	Updated databases/postgresql90-replicationtools to 9.0.12 [adam 2013-02-09]
	Updated databases/postgresql90-server to 9.0.12 [adam 2013-02-09]
	Updated databases/postgresql90-upgrade to 9.0.12 [adam 2013-02-09]
	Updated databases/postgresql84 to 8.4.16 [adam 2013-02-09]
	Updated databases/postgresql84-adminpack to 8.4.16 [adam 2013-02-09]
	Updated databases/postgresql84-client to 8.4.16 [adam 2013-02-09]
	Updated databases/postgresql84-dblink to 8.4.16 [adam 2013-02-09]
	Updated databases/postgresql84-pgcrypto to 8.4.16 [adam 2013-02-09]
	Updated databases/postgresql84-plperl to 8.4.16 [adam 2013-02-09]
	Updated databases/postgresql84-plpython to 8.4.16 [adam 2013-02-09]
	Updated databases/postgresql84-pltcl to 8.4.16 [adam 2013-02-09]
	Updated databases/postgresql84-server to 8.4.16 [adam 2013-02-09]
	Updated databases/postgresql83 to 8.3.23 [adam 2013-02-09]
	Updated databases/postgresql83-adminpack to 8.3.23 [adam 2013-02-09]
	Updated databases/postgresql83-client to 8.3.23 [adam 2013-02-09]
	Updated databases/postgresql83-plperl to 8.3.23 [adam 2013-02-09]
	Updated databases/postgresql83-pltcl to 8.3.23 [adam 2013-02-09]
	Updated databases/postgresql83-server to 8.3.23 [adam 2013-02-09]
	Updated devel/subversion to 1.7.8 [ryoon 2013-02-09]
	Updated devel/subversion-base to 1.7.8 [ryoon 2013-02-09]
	Updated devel/p5-subversion to 1.7.8 [ryoon 2013-02-09]
	Updated devel/py-subversion to 1.7.8 [ryoon 2013-02-09]
	Updated devel/ruby-subversion to 1.7.8 [ryoon 2013-02-09]
	Updated devel/java-subversion to 1.7.8 [ryoon 2013-02-09]
	Updated www/ap2-subversion to 1.7.8 [ryoon 2013-02-09]
	Added devel/subversion16 version 1.6.20 [ryoon 2013-02-09]
	Added databases/ruby-hiera version 1.0.0 [taca 2013-02-09]
	Updated databases/ruby-sequel to 3.44.0 [taca 2013-02-09]
	Updated time/py-icalendar to 3.3 [kleink 2013-02-09]
	Updated audio/jack to 0.121.3 [ryoon 2013-02-09]
	Updated pkgtools/pkgsrc-todo to 1.2 [wiz 2013-02-09]
	Updated math/cloog to 0.18.0 [wiz 2013-02-09]
	Updated sysutils/strigi to 0.7.8 [markd 2013-02-09]
	Updated lang/racket-textual to 5.3.2 [asau 2013-02-10]
	Updated lang/racket to 5.3.2 [asau 2013-02-10]
	Updated net/openvpn to 2.3.0 [manu 2013-02-10]
	Updated net/openvpn-acct-wtmpx to 20130210 [manu 2013-02-10]
	Added net/openvpn-nagios version 20130210 [manu 2013-02-10]
	Updated comms/asterisk10 to 10.12.1 [jnemeth 2013-02-10]
	Updated audio/moc-devel to 2.5.0b1 [ryoon 2013-02-10]
	Updated audio/jack to 0.121.3nb1 [ryoon 2013-02-10]
	Added mail/minimalist version 2.5.4.1 [wiz 2013-02-10]
	Updated sysutils/fabric to 1.5.3 [gls 2013-02-10]
	Added www/squid3 version 3.3.1 [adam 2013-02-10]
	Removed www/squid31 successor www/squid3 [adam 2013-02-10]
	Updated comms/asterisk to 11.2.1 [jnemeth 2013-02-10]
	Updated graphics/openimageio to 1.1.5 [ryoon 2013-02-10]
	Added comms/java-rxtx version 2.1.7r2 [dsainty 2013-02-11]
	Updated security/ruby-net-ssh to 2.6.5 [taca 2013-02-11]
	Updated security/ruby-net-scp to 1.1.0 [taca 2013-02-11]
	Updated security/ruby-net-sftp to 2.1.1 [taca 2013-02-11]
	Updated security/ruby-net-ssh-gateway to 1.2.0 [taca 2013-02-11]
	Updated devel/ZenTest to 4.9.0 [taca 2013-02-11]
	Updated devel/hoe to 3.5.0 [taca 2013-02-11]
	Updated devel/ruby-daemon_controller to 1.1.1 [taca 2013-02-11]
	Updated devel/ruby-rspec-expectations to 2.12.1nb1 [taca 2013-02-11]
	Updated devel/ruby-rspec-mocks to 2.12.2 [taca 2013-02-11]
	Updated textproc/ruby-diff-lcs to 1.2.1 [taca 2013-02-11]
	Updated textproc/ruby-json-pure to 1.7.6 [taca 2013-02-11]
	Updated textproc/ruby-json to 1.7.6 [taca 2013-02-11]
	Updated textproc/ruby-nokogiri to 1.5.6 [taca 2013-02-11]
	Updated devel/ruby-flexmock to 1.3.0 [taca 2013-02-11]
	Updated devel/ruby-gettext_i18n_rails to 0.9.2 [taca 2013-02-11]
	Updated devel/ruby-kgio to 2.8.0 [taca 2013-02-11]
	Updated devel/ruby-mocha to 0.13.2 [taca 2013-02-11]
	Updated devel/ruby-rbx-require-relative to 0.0.9 [taca 2013-02-11]
	Updated devel/ruby-sexp-processor to 4.1.4 [taca 2013-02-11]
	Updated devel/ruby-test-unit to 2.5.4 [taca 2013-02-11]
	Updated devel/ruby-parser to 3.1.1 [taca 2013-02-11]
	Updated devel/ruby2ruby to 2.0.3 [taca 2013-02-11]
	Updated devel/ruby-thor to 0.17.0 [taca 2013-02-11]
	Updated graphics/ruby-RMagick to 2.13.2 [taca 2013-02-11]
	Updated graphics/ruby-oily_png to 1.0.3 [taca 2013-02-11]
	Updated mail/ruby-mime-types to 1.21 [taca 2013-02-11]
	Updated net/ruby-amq-protocol to 1.1.0 [taca 2013-02-11]
	Updated net/ruby-amq-client to 0.9.11 [taca 2013-02-11]
	Updated www/ruby-rack-ssl to 1.3.3 [taca 2013-02-11]
	Updated sysutils/ruby-fssm to 0.2.10 [taca 2013-02-11]
	Updated sysutils/ruby-facter to 1.6.17 [taca 2013-02-11]
	Updated sysutils/capistrano to 2.14.2 [taca 2013-02-11]
	Updated www/thoth to 0.2.1nb3 [taca 2013-02-11]
	Updated security/opendnssec to 1.3.12nb2 [taca 2013-02-11]
	Added security/ipv6-toolkit version 1.3b [agc 2013-02-11]
	Added devel/ruby-backports version 2.7.1 [taca 2013-02-11]
	Added devel/ruby-blankslate version 2.1.2.4 [taca 2013-02-11]
	Added devel/ruby-parslet version 1.4.0 [taca 2013-02-11]
	Added devel/ruby-path version 1.3.1 [taca 2013-02-11]
	Added devel/ruby-term-ansicolor version 1.0.7 [taca 2013-02-11]
	Added fonts/ruby-afm version 0.2.0 [taca 2013-02-11]
	Updated audio/easytag to 2.1.8 [wiz 2013-02-11]
	Updated print/ruby-pdf-reader to 1.3.0 [taca 2013-02-11]
	Updated x11/xkbutils to 1.0.4 [wiz 2013-02-11]
	Updated textproc/ruby-fast-stemmer to 1.0.2 [taca 2013-02-11]
	Updated textproc/ruby-kramdown to 0.14.2 [taca 2013-02-11]
	Updated x11/xsm to 1.0.3 [wiz 2013-02-11]
	Updated textproc/ruby-libxml to 2.5.0 [taca 2013-02-11]
	Updated x11/xvinfo to 1.1.2 [wiz 2013-02-11]
	Removed x11/liblbxutil [wiz 2013-02-11]
	Removed x11/lbxproxy [wiz 2013-02-11]
	Updated textproc/ruby-rison to 2.0.0 [taca 2013-02-11]
	Updated x11/sessreg to 1.0.8 [wiz 2013-02-11]
	Updated textproc/ruby-will-paginate to 3.0.4 [taca 2013-02-11]
	Updated misc/py-anki2 to 2.0.8 [wiz 2013-02-11]
	Updated x11/xterm to 289 [wiz 2013-02-11]
	Updated www/curl to 7.29.0 [wiz 2013-02-11]
	Updated multimedia/ffmpeg to 20130602.1.1.2 [wiz 2013-02-11]
	Updated multimedia/ffplay to 1.1.2 [wiz 2013-02-11]
	Added www/ruby-http_router version 0.10.2 [taca 2013-02-11]
	Updated devel/mercurial to 2.5.1 [wiz 2013-02-11]
	Updated www/ruby-sinatra to 1.3.4 [taca 2013-02-11]
	Added www/ruby-sinatra-contrib version 1.3.2 [taca 2013-02-11]
	Added www/ruby-rack-contrib version 1.1.0 [taca 2013-02-11]
	Added www/ruby-rack-rewrite version 1.3.3 [taca 2013-02-11]
	Added www/ruby-url_mount version 0.2.1 [taca 2013-02-11]
	Added www/ruby-padrino-core version 0.10.7 [taca 2013-02-11]
	Added www/ruby-padrino-cache version 0.10.7 [taca 2013-02-11]
	Added www/ruby-padrino-gen version 0.10.7 [taca 2013-02-11]
	Added www/ruby-padrino-admin version 0.10.7 [taca 2013-02-11]
	Added www/ruby-padrino-mailer version 0.10.7 [taca 2013-02-11]
	Added www/ruby-padrino version 0.10.7 [taca 2013-02-11]
	Added www/ruby-padrino-helpers version 0.10.7 [taca 2013-02-11]
	Updated www/ruby-jquery-rails to 2.2.1 [taca 2013-02-11]
	Updated www/ruby-sass to 3.2.5 [taca 2013-02-11]
	Updated www/ruby-sass-rails32 to 3.2.6 [taca 2013-02-11]
	Updated mail/dovecot2 to 2.1.15 [adam 2013-02-11]
	Updated databases/libpqxx to 4.0.1 [hiramatsu 2013-02-12]
	Updated databases/libpqxx-doc to 4.0.1 [hiramatsu 2013-02-12]
	Updated editors/emacs-snapshot to 24.3.50.20130207 [minskim 2013-02-12]
	Updated devel/gmp to 5.1.1 [adam 2013-02-12]
	Updated emulators/yabause to 0.9.12 [wiz 2013-02-12]
	Updated sysutils/cdrtools to 3.01alpha12 [wiz 2013-02-12]
	Updated textproc/diffstat to 1.56 [wiz 2013-02-12]
	Updated lang/ruby193-base to 1.9.3p385nb2 [taca 2013-02-12]
	Updated textproc/ruby-json-pure to 1.7.7 [taca 2013-02-12]
	Updated textproc/ruby-json to 1.7.7 [taca 2013-02-12]
	Updated security/gnutls to 3.0.28 [drochner 2013-02-12]
	Updated databases/ruby-activerecord3 to 3.0.20nb1 [taca 2013-02-12]
	Updated devel/ruby-activesupport31 to 3.1.11 [taca 2013-02-12]
	Updated devel/ruby-activemodel31 to 3.1.11 [taca 2013-02-12]
	Updated www/ruby-activeresource31 to 3.1.11 [taca 2013-02-12]
	Updated databases/ruby-activerecord31 to 3.1.11 [taca 2013-02-12]
	Updated www/ruby-actionpack31 to 3.1.11 [taca 2013-02-12]
	Updated mail/ruby-actionmailer31 to 3.1.11 [taca 2013-02-12]
	Updated devel/ruby-railties31 to 3.1.11 [taca 2013-02-12]
	Updated www/ruby-rails31 to 3.1.11 [taca 2013-02-12]
	Updated devel/ruby-activesupport32 to 3.2.12 [taca 2013-02-12]
	Updated devel/ruby-activemodel32 to 3.2.12 [taca 2013-02-12]
	Updated www/ruby-activeresource32 to 3.2.12 [taca 2013-02-12]
	Updated databases/ruby-activerecord32 to 3.2.12 [taca 2013-02-12]
	Updated www/ruby-actionpack32 to 3.2.12 [taca 2013-02-12]
	Updated mail/ruby-actionmailer32 to 3.2.12 [taca 2013-02-12]
	Updated devel/ruby-railties32 to 3.2.12 [taca 2013-02-12]
	Updated www/ruby-rails32 to 3.2.12 [taca 2013-02-12]
	Updated textproc/ruby-multi_json to 1.5.1 [taca 2013-02-12]
	Updated devel/ruby-activemodel to 3.0.20nb1 [taca 2013-02-12]
	Updated graphics/cairo to 1.12.14 [wiz 2013-02-12]
	Updated graphics/cairo-gobject to 1.12.14 [wiz 2013-02-12]
	Updated databases/mysql55-client to 5.5.30 [adam 2013-02-12]
	Updated databases/mysql55-server to 5.5.30 [adam 2013-02-12]
	Updated devel/boost-jam to 1.53.0 [adam 2013-02-12]
	Updated devel/boost-headers to 1.53.0 [adam 2013-02-12]
	Updated devel/boost-libs to 1.53.0 [adam 2013-02-12]
	Updated devel/boost-docs to 1.53.0 [adam 2013-02-12]
	Updated devel/boost-build to 1.53.0 [adam 2013-02-12]
	Updated devel/boost-python to 1.53.0 [adam 2013-02-12]
	Updated meta-pkgs/boost to 1.53.0 [adam 2013-02-12]
	Updated x11/xrandr to 1.4.0 [wiz 2013-02-12]
	Added wm/i3 version 4.4 [tonnerre 2013-02-12]
	Updated www/ikiwiki to 3.20130212 [schmonz 2013-02-13]
	Updated multimedia/adobe-flash-plugin10.1 to 10.3.183.61 [obache 2013-02-13]
	Updated multimedia/adobe-flash-plugin11 to 11.2.202.270 [obache 2013-02-13]
	Updated www/opera to 12.14 [obache 2013-02-13]
	Updated mail/postfix to 2.9.6 [taca 2013-02-13]
	Updated security/openssl to 1.0.1e [taca 2013-02-13]
	Updated databases/ruby-data_objects to 0.10.12 [taca 2013-02-13]
	Updated databases/ruby-do_mysql to 0.10.12 [taca 2013-02-13]
	Updated databases/ruby-do_postgres to 0.10.12 [taca 2013-02-13]
	Updated databases/ruby-do_sqlite3 to 0.10.12 [taca 2013-02-13]
	Updated devel/ruby-backports to 2.8.2 [taca 2013-02-13]
	Added www/ruby-padrino-contrib version 0.1.13 [taca 2013-02-13]
	Updated print/ruby-pdf-reader to 1.3.1 [taca 2013-02-13]
	Updated misc/ruby-launchy to 2.2.0 [taca 2013-02-13]
	Added www/ruby-puma version 1.6.3 [taca 2013-02-13]
	Updated www/heel to 3.0.1 [taca 2013-02-13]
	Updated textproc/ruby-multi_json to 1.6.0 [taca 2013-02-13]
	Updated www/trac to 1.0 [gdt 2013-02-13]
	Updated x11/gtk2 to 2.24.15 [adam 2013-02-13]
	Updated databases/phpmyadmin to 3.5.6 [tron 2013-02-13]
	Added databases/mysql56-client version 5.6.10 [adam 2013-02-13]
	Added databases/mysql56-server version 5.6.10 [adam 2013-02-13]
	Updated devel/mr to 1.14 [schmonz 2013-02-14]
	Updated x11/xterm to 290 [wiz 2013-02-14]
	Updated devel/atf-libs to 0.17 [jmmv 2013-02-14]
	Updated devel/atf to 0.17 [jmmv 2013-02-14]
	Updated security/knc to 1.7.1 [schmonz 2013-02-14]
	Updated www/contao30 to 3.0.4 [taca 2013-02-15]
	Updated www/contao30-example to 3.0.4 [taca 2013-02-15]
	Updated textproc/ezxml to 0.8.6 [shattered 2013-02-15]
	Updated math/py-pandas to 0.10.1 [bad 2013-02-16]
	Updated graphics/cdlabelgen to 4.2.0 [shattered 2013-02-16]
	Updated misc/dvtm to 0.8 [shattered 2013-02-16]
	Updated graphics/png to 1.6.0nb1 [wiz 2013-02-16]
	Updated pkgtools/revbump to 2.4 [wiz 2013-02-16]
	Updated time/remind to 3.1.12 [schmonz 2013-02-16]
	Updated multimedia/gmediaserver to 0.13.0nb5 [tron 2013-02-16]
	Updated sysutils/ups-nut to 2.6.5 [jdf 2013-02-16]
	Updated time/py-icalendar to 3.3nb1 [wiz 2013-02-16]
	Updated graphics/pngcrush to 1.7.50 [adam 2013-02-16]
	Updated graphics/gimp to 2.8.4 [adam 2013-02-16]
	Updated graphics/enblend-enfuse to 4.1.1 [adam 2013-02-16]
	Updated lang/racket-textual to 5.3.3 [asau 2013-02-16]
	Updated lang/racket to 5.3.3 [asau 2013-02-16]
	Updated devel/p5-File-BaseDir to 0.03nb5 [schmonz 2013-02-16]
	Updated security/ipv6-toolkit to 1.3 [agc 2013-02-16]
	Updated mail/getmail to 4.38.0 [schmonz 2013-02-16]
	Removed databases/ruby-acts-as-versioned [taca 2013-02-17]
	Removed www/ruby-rails3 [taca 2013-02-17]
	Removed mail/ruby-actionmailer3 [taca 2013-02-17]
	Removed devel/ruby-railties [taca 2013-02-17]
	Removed databases/ruby-activerecord3 [taca 2013-02-17]
	Removed www/ruby-actionpack3 [taca 2013-02-17]
	Removed www/ruby-activeresource3 [taca 2013-02-17]
	Removed devel/ruby-activemodel [taca 2013-02-17]
	Removed devel/ruby-activesupport3 [taca 2013-02-17]
	Removed databases/ruby-arel20 [taca 2013-02-17]
	Removed mail/ruby-mail22 [taca 2013-02-17]
	Removed www/ruby-rack-test05 [taca 2013-02-17]
	Removed www/ruby-rack-mount06 [taca 2013-02-17]
	Removed www/ruby-rack12 [taca 2013-02-17]
	Removed devel/ruby-i18n_05 [taca 2013-02-17]
	Removed www/ruby-erubis26 [taca 2013-02-17]
	Updated net/p5-Net-GitHub to 0.50 [wiz 2013-02-17]
	Removed archivers/sapcar [wiz 2013-02-17]
	Removed devel/sapnwrfcsdk [wiz 2013-02-17]
	Removed devel/p5-sapnwrfc [wiz 2013-02-17]
	Updated textproc/p5-Pod-Simple to 3.25 [wen 2013-02-17]
	Updated devel/p5-IO-Digest to 0.11 [wen 2013-02-17]
	Updated devel/p5-Path-Class to 0.31 [wen 2013-02-17]
	Updated net/py-twisted to 12.3.0 [gdt 2013-02-17]
	Updated net/py-twisted-docs to 12.3.0 [gdt 2013-02-17]
	Updated www/p5-Dancer to 1.3110 [wen 2013-02-17]
	Updated net/p5-Geo-IPfree to 1.130450 [wen 2013-02-17]
	Updated time/py-icalendar to 3.3nb2 [wiz 2013-02-17]
	Added emulators/compat50 version 5.0 [spz 2013-02-17]
	Added emulators/compat50-x11 version 5.0 [spz 2013-02-17]
	Added emulators/compat51 version 5.1 [spz 2013-02-17]
	Added emulators/compat51-x11 version 5.1 [spz 2013-02-17]
	Added emulators/compat60 version 6.0 [spz 2013-02-17]
	Added math/isl version 0.11.1 [wiz 2013-02-17]
	Updated math/cloog to 0.18.0nb1 [wiz 2013-02-17]
	Updated net/host to 20040812nb2 [dholland 2013-02-18]
	Updated sysutils/dbus-glib to 0.100.1 [drochner 2013-02-18]
	Updated www/contao211-translations to 201302180 [taca 2013-02-18]
	Updated lang/pear to 1.9.4nb4 [taca 2013-02-18]
	Updated lang/ocaml to 4.00.1nb1 [jaapb 2013-02-18]
	Updated lang/abcl to 1.1.1 [asau 2013-02-18]
	Updated databases/phpmyadmin to 3.5.7 [tron 2013-02-18]
	Updated www/nginx to 1.2.7 [imil 2013-02-18]
	Updated news/slrn to 0.9.9p1nb9 [dholland 2013-02-18]
	Updated graphics/GraphicsMagick to 1.3.17nb4 [wiz 2013-02-19]
	Added devel/kyua-testers version 0.1 [jmmv 2013-02-19]
	Updated www/contao30 to 3.0.5 [taca 2013-02-19]
	Updated devel/jenkins to 1.480.3 [ryoon 2013-02-19]
	Updated devel/py-mako to 0.7.3 [ryoon 2013-02-19]
	Updated textproc/p5-Text-vFile-asData to 0.08 [kleink 2013-02-19]
	Updated textproc/py-markdown to 2.2.1 [ryoon 2013-02-19]
	Updated devel/nspr to 4.9.5 [ryoon 2013-02-20]
	Updated devel/nss to 3.14.3 [ryoon 2013-02-20]
	Updated math/py-numpy to 1.6.2nb1 [jperkin 2013-02-21]
	Updated www/drupal7 to 7.20 [taca 2013-02-21]
	Updated www/geeklog to 1.8.2.1 [taca 2013-02-21]
	Updated math/ruby-spreadsheet to 0.8.1 [obache 2013-02-21]
	Updated security/opendnssec to 1.3.13 [pettai 2013-02-21]
	Updated x11/gtk2 to 2.24.16 [adam 2013-02-21]
	Updated lang/php53 to 5.3.22 [taca 2013-02-22]
	Updated lang/php54 to 5.4.12 [taca 2013-02-22]
	Updated net/mikutter to 0.2.1.1130 [obache 2013-02-22]
	Updated devel/xulrunner to 19.0 [ryoon 2013-02-22]
	Updated www/firefox to 19.0 [ryoon 2013-02-22]
	Updated www/nginx to 1.2.7nb1 [imil 2013-02-22]
	Updated www/serf to 1.1.1 [taca 2013-02-22]
	Updated www/serf0 to 0.7.2 [taca 2013-02-22]
	Updated devel/subversion16-base to 1.6.20nb1 [taca 2013-02-22]
	Updated lang/ruby193-base to 1.9.3p392 [taca 2013-02-22]
	Updated databases/ruby-gdbm to 1.9.3p392nb2 [taca 2013-02-22]
	Updated devel/ruby-curses to 1.9.3p392 [taca 2013-02-22]
	Updated devel/ruby-fiddle to 1.9.3p392 [taca 2013-02-22]
	Updated devel/ruby-readline to 1.9.3p392nb2 [taca 2013-02-22]
	Updated x11/ruby-tk to 1.9.3p392nb1 [taca 2013-02-22]
	Updated lang/ruby193 to 1.9.3p392 [taca 2013-02-22]
	Updated lang/ruby to 1.9.3p392nb1 [taca 2013-02-22]
	Updated devel/ruby-mode to 1.9.3p392 [taca 2013-02-22]
	Added www/nginx-devel version 1.3.13 [imil 2013-02-22]
	Updated www/firefox-l10n to 19.0 [ryoon 2013-02-22]
	Updated mail/getmail to 4.39.0 [schmonz 2013-02-23]
	Updated multimedia/mediainfo to 0.7.62 [schmonz 2013-02-23]
	Updated devel/kyua-cli to 0.6 [jmmv 2013-02-23]
	Updated print/acroread9 to 9.5.4 [obache 2013-02-23]
	Updated math/octave to 3.6.4 [asau 2013-02-23]
	Updated pkgtools/x11-links to 0.73 [obache 2013-02-23]
	Updated www/py-django to 1.4.5 [adam 2013-02-23]
	Updated multimedia/deforaos-player to 0.1.5 [khorben 2013-02-23]
	Added security/libnetpgpverify version 20120928 [agc 2013-02-23]
	Added security/netpgpverify version 20120928 [agc 2013-02-23]
	Updated textproc/rarian to 0.8.1nb3 [jperkin 2013-02-23]
	Updated editors/emacs23 to 23.4nb13 [dholland 2013-02-23]
	Updated editors/emacs23-nox11 to 23.4nb2 [dholland 2013-02-23]
	Updated www/seamonkey to 2.16 [ryoon 2013-02-23]
	Updated editors/emacs22 to 22.3nb27 [dholland 2013-02-24]
	Updated www/seamonkey-l10n to 2.16 [ryoon 2013-02-23]
	Updated editors/emacs22-nox11 to 22.3nb4 [dholland 2013-02-24]
	Updated parallel/openmpi to 1.6.4 [asau 2013-02-24]
	Updated www/ruby-httpclient to 2.3.3 [obache 2013-02-24]
	Removed www/ruby-coffee-rails31 [taca 2013-02-24]
	Removed devel/ruby-uglifier10 [taca 2013-02-24]
	Removed devel/ruby-turn08 [taca 2013-02-24]
	Updated mail/thunderbird to 17.0.3 [ryoon 2013-02-24]
	Updated devel/xulrunner17 to 17.0.3 [ryoon 2013-02-24]
	Updated www/firefox17 to 17.0.3 [ryoon 2013-02-24]
	Removed www/ruby-rails31 [taca 2013-02-24]
	Removed mail/ruby-actionmailer31 [taca 2013-02-24]
	Removed databases/ruby-activerecord31 [taca 2013-02-24]
	Removed devel/ruby-railties31 [taca 2013-02-24]
	Removed www/ruby-actionpack31 [taca 2013-02-24]
	Removed www/ruby-activeresource31 [taca 2013-02-24]
	Removed devel/ruby-activemodel31 [taca 2013-02-24]
	Removed devel/ruby-activesupport31 [taca 2013-02-24]
	Removed mail/ruby-mail23 [taca 2013-02-24]
	Updated www/firefox17-l10n to 17.0.3 [ryoon 2013-02-24]
	Removed databases/ruby-arel22 [taca 2013-02-24]
	Removed www/ruby-rack13 [taca 2013-02-24]
	Removed www/ruby-sass-rails31 [taca 2013-02-24]
	Updated net/aria2 to 1.16.3 [ryoon 2013-02-24]
	Added sysutils/deforaos-terminal version 0.0.0 [khorben 2013-02-24]
	Updated www/p5-Dancer to 1.3111 [wen 2013-02-25]
	Added devel/p5-MooX-Types-MooseLike version 0.21 [wen 2013-02-25]
	Updated lang/icc11 to 11.1.080nb1 [wiz 2013-02-25]
	Updated www/apache24 to 2.4.4 [ryoon 2013-02-25]
	Updated devel/cvsps3 to 3.10 [ryoon 2013-02-25]
	Updated www/php-owncloud to 4.5.7 [ryoon 2013-02-25]
	Updated print/qpdfview to 0.4 [ryoon 2013-02-25]
	Added sysutils/ansible version 1.0 [hubertf 2013-02-26]
	Added sysutils/euca2ools version 2.1.2 [hubertf 2013-02-26]
	Updated www/ruby-faraday to 0.8.6 [obache 2013-02-26]
	Updated www/php-soycms to 1.4.0c [ryoon 2013-02-26]
	Updated emulators/suse121_openssl to 12.1nb4 [obache 2013-02-26]
	Added www/php-sugarcrm version 6.5.10 [ryoon 2013-02-26]
	Updated misc/ruby-launchy to 2.2.0nb1 [taca 2013-02-27]
	Updated sysutils/cdrtools to 3.01alpha13 [wiz 2013-02-27]
	Updated x11/xterm to 291 [wiz 2013-02-27]
	Updated databases/tinycdb to 0.78 [ryoon 2013-02-27]
	Updated graphics/openimageio to 1.1.7 [ryoon 2013-02-27]
	Updated graphics/blender to 2.66 [ryoon 2013-02-27]
	Updated multimedia/adobe-flash-plugin10.1 to 10.3.183.67 [obache 2013-02-28]
	Updated multimedia/adobe-flash-plugin11 to 11.2.202.273 [obache 2013-02-28]
	Updated www/ruby-sinatra to 1.3.5 [obache 2013-02-28]
	Updated textproc/mecab to 0.996 [obache 2013-02-28]
	Updated textproc/mecab-base to 0.996 [obache 2013-02-28]
	Updated textproc/java-mecab to 0.996 [obache 2013-02-28]
	Updated textproc/p5-mecab to 0.996 [obache 2013-02-28]
	Updated textproc/py-mecab to 0.996 [obache 2013-02-28]
	Updated security/mit-krb5 to 1.10.3nb4 [tez 2013-02-28]
	Updated textproc/ruby-mecab to 0.996 [obache 2013-02-28]
	Added security/libsodium version 0.3 [agc 2013-02-28]
	Updated geography/geos to 3.3.8 [gdt 2013-02-28]
	Updated mail/mutt-devel to 1.5.21nb8 [is 2013-02-28]
	Updated shells/rssh to rssh-2.3.4nb1 [darcy 2013-02-28]
	Updated www/php-fpm to 5.4.12nb1 [imil 2013-02-28]
	Updated lang/php53 to 5.3.22nb1 [imil 2013-02-28]
	Updated lang/php54 to 5.4.12nb1 [imil 2013-02-28]
	Updated www/p5-Mojolicious to 3.87 [mspo 2013-03-01]
	Added databases/php-pdo_odbc version 5.2.9.99 [jperkin 2013-03-01]
	Updated graphics/gimp-ufraw to 0.19 [gdt 2013-03-01]
	Updated graphics/lensfun to 0.2.6 [gdt 2013-03-01]
	Updated graphics/lensfun to 0.2.7 [gdt 2013-03-01]
	Updated lang/gcc47 to 4.7.2nb2 [jperkin 2013-03-01]
	Updated lang/gcc47-libs to 4.7.2nb3 [jperkin 2013-03-01]
	Updated devel/rapidsvn to 0.12.1 [markd 2013-03-01]
	Updated emulators/gns3 to 0.8.3.1 [markd 2013-03-01]
	Updated textproc/ruby-tilt to 1.3.4 [obache 2013-03-02]
	Updated math/ruby-spreadsheet to 0.8.2 [obache 2013-03-02]
	Added net/icinga-base version 1.8.4 [ryoon 2013-03-02]
	Added devel/libuv version 20130301 [agc 2013-03-02]
	Updated multimedia/ffmpeg to 20130223.1.1.3 [adam 2013-03-02]
	Updated multimedia/ffplay to 1.1.3 [adam 2013-03-02]
	Updated graphics/png to 1.6.1beta05 [wiz 2013-03-02]
	Moved net/Transmission to net/transmission [wiz 2013-03-02]
	Added net/transmission-gtk version 2.76 [wiz 2013-03-02]
	Added net/transmission-qt version 2.76 [wiz 2013-03-02]
	Removed net/Transmission-gui [wiz 2013-03-02]
	Updated devel/gitolite to 3.3 [ryoon 2013-03-02]
	Updated chat/libpurple to 2.10.7 [obache 2013-03-03]
	Updated chat/finch to 2.10.7 [obache 2013-03-03]
	Updated chat/pidgin to 2.10.7 [obache 2013-03-03]
	Updated chat/pidgin-sametime to 2.10.7 [obache 2013-03-03]
	Updated chat/pidgin-silc to 2.10.7 [obache 2013-03-03]
	Updated textproc/py-pygments to 1.6 [obache 2013-03-03]
	Updated audio/abcmidi to 2012-12-01 [shattered 2013-03-03]
	Updated chat/zircon to 1.18.256 [shattered 2013-03-03]
	Updated devel/trio to 1.12 [shattered 2013-03-03]
	Updated graphics/photopc to 3.05 [shattered 2013-03-03]
	Updated graphics/qvplay to 0.95 [shattered 2013-03-03]
	Updated mail/ifile to 1.3.8 [shattered 2013-03-03]
	Updated misc/granulate to 0.2 [shattered 2013-03-03]
	Updated parallel/parallel to 20130122 [shattered 2013-03-03]
	Updated security/hackbot to 2.21 [shattered 2013-03-03]
	Updated sysutils/ddrescue to 1.16 [shattered 2013-03-03]
	Updated meta-pkgs/desktop-gnome to 0.5 [wiz 2013-03-03]
	Updated devel/apache-maven to 3.0.5 [yyamano 2013-03-03]
	Updated www/apache22 to 2.2.24 [tron 2013-03-03]
	Updated net/p5-Test-TCP to 0.21 [wen 2013-03-04]
	Updated devel/p5-Git-Repository to 1.302 [wen 2013-03-04]
	Updated net/freeDiameter to 1.1.6 [wiz 2013-03-04]
	Updated mail/libspf2 to 1.2.9nb2 [jperkin 2013-03-04]
	Updated www/emacs-w3m-snapshot to 1.4.483.20120614 [hiramatsu 2013-03-04]
	Updated filesystems/openafs to 1.6.2 [jakllsch 2013-03-04]
	Added databases/deforaos-libdatabase version 0.0.0 [khorben 2013-03-04]
	Added graphics/deforaos-camera version 0.0.1 [khorben 2013-03-05]
	Added devel/deforaos-coder version 0.0.0 [khorben 2013-03-05]
	Updated sysutils/deforaos-browser to 0.4.10 [khorben 2013-03-05]
	Updated meta-pkgs/deforaos-desktop to 0.0.2 [khorben 2013-03-05]
	Updated www/typo3_46 to 4.6.16 [taca 2013-03-05]
	Updated www/typo3_45 to 4.5.23 [taca 2013-03-05]
	Updated www/typo3_47 to 4.7.8 [taca 2013-03-05]
	Updated www/nginx-devel to 1.3.14 [imil 2013-03-05]
	Updated devel/p5-PerlIO-via-dynamic to 0.14 [apb 2013-03-05]
	Updated graphics/ImageMagick to 6.8.3.7 [adam 2013-03-05]
	Updated graphics/p5-PerlMagick to 6.8.3.7 [adam 2013-03-05]
	Added www/py-recaptcha version 1.0.6 [darcy 2013-03-05]
	Added converters/p5-Data-Hexify version 1.00 [pettai 2013-03-05]
	Added www/p5-File-Mork version 0.3 [pettai 2013-03-05]
	Added www/php-zendoptimizerplus version 7.0.0 [imil 2013-03-05]
	Added misc/p5-Mac-PropertyList version 1.38 [pettai 2013-03-05]
	Updated inputmethod/uim to 1.8.4 [obache 2013-03-06]
	Updated inputmethod/uim-elisp to 1.8.4 [obache 2013-03-06]
	Added sysutils/user_cygwin version 20130306 [obache 2013-03-06]
	Updated www/typo3_45 to 4.5.24 [taca 2013-03-06]
	Updated www/typo3_46 to 4.6.17 [taca 2013-03-06]
	Updated www/typo3_47 to 4.7.9 [taca 2013-03-06]
	Updated graphics/pngcrush to 1.7.52 [adam 2013-03-06]
	Updated mail/mutt-devel to 1.5.21nb10 [is 2013-03-06]
	Updated textproc/mdoclint to 1.19 [wiz 2013-03-06]
	Updated security/stunnel to 4.55 [jym 2013-03-06]
	Added misc/p5-Parse-Win32Registry version 1.0 [pettai 2013-03-06]
	Added security/log2timeline version 0.64 [pettai 2013-03-06]
	Updated devel/mercurial to 2.5.2 [wiz 2013-03-07]
	Added editors/se version 3.0 [tcort 2013-03-07]
	Updated x11/inputproto to 2.3 [wiz 2013-03-07]
	Updated x11/libXi to 1.7 [wiz 2013-03-07]
	Updated net/wireshark to 1.8.6 [tron 2013-03-07]
	Updated sysutils/user_cygwin to 20130307 [obache 2013-03-07]
	Updated sysutils/logrotate to 3.8.3 [obache 2013-03-07]
	Updated devel/ruby-rdoc to 3.12.2 [taca 2013-03-07]
	Updated www/drupal7 to 7.21 [taca 2013-03-07]
	Updated devel/ruby-eet to 0.1.4nb7 [taca 2013-03-07]
	Updated audio/libaudiofile to 0.3.6 [adam 2013-03-07]
	Updated www/mediawiki to 1.20.3 [wen 2013-03-08]
	Updated multimedia/gmplayer to 1.1nb9 [obache 2013-03-08]
	Updated net/p5-Net-DHCP to 0.69.3 [wiz 2013-03-08]
	Updated net/p5-Net-Write to 1.07 [wiz 2013-03-08]
	Updated parallel/paexec to 0.18.0 [cheusov 2013-03-08]
	Updated devel/mk-configure to 0.24.0 [cheusov 2013-03-08]
	Updated pkgtools/nih to 0.11.0 [cheusov 2013-03-08]
	Updated time/p5-DateTime-TimeZone to 1.57 [wen 2013-03-08]
	Updated pkgtools/pkg_summary-utils to 0.61.0 [cheusov 2013-03-08]
	Updated www/p5-HTTP-Tiny to 0.028 [wen 2013-03-08]
	Updated devel/p5-CPAN-Perl-Releases to 1.02 [wen 2013-03-08]
	Updated net/mtr to 0.84 [wiz 2013-03-08]
	Updated www/p5-PSGI to 1.101 [wen 2013-03-08]
	Added math/libint version 2.0.0 [asau 2013-03-08]
	Updated www/squid3 to 3.3.2 [adam 2013-03-08]
	Updated devel/shtk to 1.1 [jmmv 2013-03-08]
	Updated sysutils/sysbuild to 2.5 [jmmv 2013-03-08]
	Updated sysutils/sysbuild-user to 1.1 [jmmv 2013-03-08]
	Updated print/ghostscript to 9.07 [adam 2013-03-08]
	Updated lang/perl5 to 5.16.2nb4 [tez 2013-03-08]
	Updated textproc/libxml2 to 2.9.0nb2 [tez 2013-03-08]
	Updated devel/clib to 0.3 [tonnerre 2013-03-09]
	Updated graphics/gimp-ufraw to 0.19.1 [gdt 2013-03-09]
	Updated security/py-paramiko to 1.10.0 [gdt 2013-03-09]
	Updated devel/xulrunner to 19.0.2 [ryoon 2013-03-10]
	Updated www/firefox to 19.0.2 [ryoon 2013-03-10]
	Added mail/ruby-mail24 version 2.4.4 [taca 2013-03-10]
	Updated mail/ruby-actionmailer32 to 3.2.12nb1 [taca 2013-03-10]
	Updated mail/ruby-mail to 2.5.3 [taca 2013-03-10]
	Removed misc/ruby-sprockets21 [taca 2013-03-10]
	Added www/ruby-rack14 version 1.4.5 [taca 2013-03-10]
	Updated misc/ruby-sprockets22 to 2.2.2nb1 [taca 2013-03-10]
	Updated www/ruby-rack-cache to 1.2nb1 [taca 2013-03-10]
	Updated www/ruby-rack-ssl to 1.3.3nb1 [taca 2013-03-10]
	Updated www/ruby-rack-test to 0.6.2nb1 [taca 2013-03-10]
	Updated www/ruby-actionpack32 to 3.2.12nb1 [taca 2013-03-10]
	Updated www/ruby-rack to 1.5.2 [taca 2013-03-10]
	Updated inputmethod/skk-jisyo to 201212 [hiramatsu 2013-03-10]
	Updated inputmethod/skk-jisyo-cdb to 201212 [hiramatsu 2013-03-10]
	Updated www/firefox-l10n to 19.0.2 [ryoon 2013-03-10]
	Updated devel/xulrunner17 to 17.0.4 [ryoon 2013-03-10]
	Updated www/firefox17 to 17.0.4 [ryoon 2013-03-10]
	Updated www/firefox17-l10n to 17.0.4 [ryoon 2013-03-10]
	Updated mail/thunderbird to 17.0.4 [ryoon 2013-03-10]
	Updated www/ruby-rack-protection to 1.4.0 [taca 2013-03-10]
	Updated converters/ruby-unf_ext to 0.0.6 [taca 2013-03-10]
	Updated mail/thunderbird-l10n to 17.0.4 [ryoon 2013-03-10]
	Updated databases/ruby-sequel to 3.45.0 [taca 2013-03-10]
	Updated devel/hoe to 3.5.1 [taca 2013-03-10]
	Updated devel/ruby-eventmachine to 1.0.3 [taca 2013-03-10]
	Updated www/curl to 7.29.0nb1 [obache 2013-03-10]
	Updated x11/mlterm to 3.1.8 [tsutsui 2013-03-10]
	Updated games/onscripter to 20130223 [tsutsui 2013-03-10]
	Updated mail/getmail to 4.39.1 [schmonz 2013-03-10]
	Updated devel/ruby-ffi to 1.4.0 [taca 2013-03-11]
	Updated devel/ruby-flexmock to 1.3.1 [taca 2013-03-11]
	Updated devel/ruby-inline to 3.12.1 [taca 2013-03-11]
	Updated devel/ruby-mocha to 0.13.3 [taca 2013-03-11]
	Updated devel/ruby-rspec-core to 2.13.0 [taca 2013-03-11]
	Updated devel/ruby-rspec-expectations to 2.13.0 [taca 2013-03-11]
	Updated devel/ruby-rspec-mocks to 2.13.0 [taca 2013-03-11]
	Updated devel/ruby-rspec to 2.13.0 [taca 2013-03-11]
	Updated devel/ruby-rspec-rails to 2.13.0 [taca 2013-03-11]
	Updated devel/ruby-sexp-processor to 4.1.5 [taca 2013-03-11]
	Updated devel/ruby-i18n to 0.6.4 [taca 2013-03-11]
	Updated graphics/ruby-mini-magick to 3.5.0 [taca 2013-03-11]
	Updated graphics/ruby-oily_png to 1.1.0 [taca 2013-03-11]
	Updated lang/ruby-coffee-script-source to 1.6.1 [taca 2013-03-11]
	Added math/ruby-narray version 0.6.0.8 [taca 2013-03-11]
	Updated graphics/pngcrush to 1.7.53 [adam 2013-03-11]
	Updated textproc/p5-XML-TreeBuilder to 4.1 [obache 2013-03-11]
	Added math/ruby-gsl version 1.15.3 [taca 2013-03-11]
	Removed math/ruby-rb-gsl [taca 2013-03-11]
	Updated graphics/p5-Image-Info to 1.34 [obache 2013-03-11]
	Added devel/p5-IO-Prompter version 0.004003 [obache 2013-03-11]
	Updated net/mikutter to 0.2.1.1132 [obache 2013-03-11]
	Updated misc/ruby-bundler to 1.3.2 [taca 2013-03-11]
	Added fonts/jsMath-fonts version 20090709 [wiz 2013-03-11]
	Updated shells/mksh to R44 [bsiegert 2013-03-11]
	Updated devel/gettext to 0.18.2.1 [adam 2013-03-11]
	Updated devel/gettext-asprintf to 0.18.2.1 [adam 2013-03-11]
	Updated devel/gettext-lib to 0.18.2.1 [adam 2013-03-11]
	Updated devel/gettext-m4 to 0.18.2.1 [adam 2013-03-11]
	Updated devel/gettext-tools to 0.18.2.1 [adam 2013-03-11]
	Updated graphics/GraphicsMagick to 1.3.18 [adam 2013-03-11]
	Updated graphics/p5-GraphicsMagick to 1.3.18 [adam 2013-03-11]
	Updated chat/jabberd2 to 2.2.17nb7 [wiz 2013-03-11]
	Updated sysutils/user_cygwin to 20130312 [obache 2013-03-12]
	Updated emulators/suse121_qt4 to 12.1nb3 [obache 2013-03-12]
	Updated x11/libXi to 1.7nb1 [wiz 2013-03-12]
	Updated net/ruby-addressable to 2.3.3 [taca 2013-03-12]
	Updated net/ruby-amq-protocol to 1.2.0 [taca 2013-03-12]
	Updated net/ruby-amq-client to 0.9.12 [taca 2013-03-12]
	Updated net/ruby-amqp to 0.9.10 [taca 2013-03-12]
	Updated print/ruby-pdf-reader to 1.3.2 [taca 2013-03-12]
	Updated textproc/ruby-coderay to 1.0.9 [taca 2013-03-12]
	Updated textproc/ruby-haml to 4.0.0 [taca 2013-03-12]
	Updated textproc/ruby-libxml to 2.6.0 [taca 2013-03-12]
	Updated lang/chicken to 4.8.0.3 [asau 2013-03-12]
	Updated security/ipv6-toolkit to 1.3.3 [agc 2013-03-12]
	Updated www/py-django to 1.5 [adam 2013-03-12]
	Updated security/cyrus-sasl to 2.1.26nb2 [obache 2013-03-13]
	Updated www/py-django-classy-tags to 0.4 [adam 2013-03-13]
	Updated www/py-django-reversion to 1.7 [adam 2013-03-13]
	Updated www/py-django-sekizai to 0.7 [adam 2013-03-13]
	Updated www/py-flask-frozen to 0.10 [kleink 2013-03-13]
	Updated sysutils/user_cygwin to 20130313 [obache 2013-03-13]
	Updated security/mit-krb5 to 1.10.4 [adam 2013-03-13]
	Updated www/squid3 to 3.3.3 [adam 2013-03-13]
	Updated multimedia/adobe-flash-plugin11 to 11.2.202.275 [obache 2013-03-13]
	Updated multimedia/adobe-flash-plugin10.1 to 10.3.183.68 [obache 2013-03-13]
	Updated time/p5-DateTime-TimeZone to 1.58 [wen 2013-03-13]
	Updated converters/p5-JSON-PP to 2.27202 [wen 2013-03-13]
	Updated security/p5-Digest-SHA to 5.84 [wen 2013-03-13]
	Added inputmethod/mozc-elisp version 1.6.1187.102 [ryoon 2013-03-13]
	Updated editors/OmegaT to 2.6.3 [ryoon 2013-03-13]
	Updated www/squid3 to 3.3.3nb1 [taca 2013-03-13]
	Updated sysutils/deforaos-browser to 0.4.11 [khorben 2013-03-13]
	Updated meta-pkgs/deforaos-desktop to 0.0.3 [khorben 2013-03-13]
	Updated graphics/blender to 2.66a [ryoon 2013-03-13]
	Updated sysutils/fabric to 1.6.0 [gls 2013-03-13]
	Updated databases/guile-pg to 0.45 [gdt 2013-03-13]
	Updated math/ruby-spreadsheet to 0.8.3 [obache 2013-03-14]
	Updated mail/milter-manager to 1.8.6 [obache 2013-03-14]
	Updated graphics/ruby-rcairo to 1.12.4 [obache 2013-03-14]
	Added audio/py-musicbrainz-ngs version 0.3 [wiz 2013-03-14]
	Updated devel/ruby-pkg-config to 1.1.4 [obache 2013-03-14]
	Updated net/netname to 2.2 [kim 2013-03-14]
	Updated sysutils/osname to 2.0 [kim 2013-03-14]
	Added audio/py-beets version 1.0.0 [wiz 2013-03-14]
	Updated lang/ocaml to 4.00.1nb2 [is 2013-03-14]
	Updated net/sdist to 1.9 [kim 2013-03-14]
	Updated net/srsh to 1.3 [kim 2013-03-14]
	Updated textproc/ruby-mab to 0.0.3 [taca 2013-03-14]
	Updated textproc/ruby-multi_json to 1.6.1 [taca 2013-03-14]
	Updated textproc/ruby-textpow to 1.3.1 [taca 2013-03-14]
	Updated textproc/ruby-tilt to 1.3.5 [taca 2013-03-14]
	Updated www/camping to 2.1.531 [taca 2013-03-14]
	Updated www/ruby-innate to 2013.02.21 [taca 2013-03-14]
	Updated www/ruby-jekyll to 0.12.1 [taca 2013-03-14]
	Updated www/ruby-sass to 3.2.7 [taca 2013-03-14]
	Updated www/ruby-unicorn to 4.6.2 [taca 2013-03-14]
	Updated www/ruby-webrobots to 0.1.0 [taca 2013-03-14]
	Updated www/typo3_46 to 4.6.18 [taca 2013-03-14]
	Updated www/typo3_45 to 4.5.25 [taca 2013-03-14]
	Updated www/typo3_47 to 4.7.10 [taca 2013-03-14]
	Updated www/fengoffice to 2.2.3.1 [taca 2013-03-14]
	Updated security/f-prot-antivirus6-fs-bin to 6.2.3 [taca 2013-03-14]
	Updated security/f-prot-antivirus6-ms-bin to 6.2.3 [taca 2013-03-14]
	Updated security/f-prot-antivirus6-ws-bin to 6.2.3 [taca 2013-03-14]
	Updated graphics/ruby-color to 1.4.1nb1 [taca 2013-03-14]
	Updated net/ssync to 1.9.1 [kim 2013-03-14]
	Updated www/ruby-liquid to 2.5.0 [taca 2013-03-14]
	Updated www/urlget to 1.5 [kim 2013-03-14]
	Updated textproc/mdoclint to 1.20 [wiz 2013-03-14]
	Updated devel/gitolite to 3.4 [ryoon 2013-03-14]
	Updated www/py-flask-wtf to 0.8.3 [kleink 2013-03-14]
	Updated x11/gtk2 to 2.24.17 [drochner 2013-03-14]
	Updated devel/libgsf to 1.14.26 [drochner 2013-03-14]
	Updated devel/libgee to 0.6.8 [drochner 2013-03-14]
	Updated devel/libgee0.8 to 0.8.5 [drochner 2013-03-14]
	Updated graphics/wxsvg to 1.1.13 [drochner 2013-03-14]
	Updated fonts/fontconfig to 2.10.91 [drochner 2013-03-14]
	Updated devel/libffi to 3.0.12 [drochner 2013-03-14]
	Updated devel/reposurgeon to 2.26 [ryoon 2013-03-14]
	Removed security/py-ssh [gls 2013-03-14]
	Added devel/libexecinfo version 1.1 [asau 2013-03-15]
	Added security/zoneminder version 1.25.0 [dsainty 2013-03-15]
	Updated comms/openobex to 1.7 [plunky 2013-03-15]
	Updated comms/obexftp to 0.24 [plunky 2013-03-15]
	Updated graphics/jpegoptim to 1.2.5 [adam 2013-03-15]
	Updated security/clamav to 0.97.7 [adam 2013-03-15]
	Updated net/proftpd to 1.3.4c [kim 2013-03-15]
	Updated security/p5-Digest-MD4 to 1.8 [wen 2013-03-15]
	Updated www/p5-HTTP-Proxy to 0.28 [wen 2013-03-15]
	Updated sysutils/xentools41 to 4.1.4nb2 [is 2013-03-15]
	Updated net/libsoup24 to 2.40.3 [drochner 2013-03-15]
	Updated audio/py-mutagen to 1.21 [drochner 2013-03-15]
	Updated net/gssdp to 0.14.2 [drochner 2013-03-15]
	Updated net/gupnp to 0.20.1 [drochner 2013-03-15]
	Updated net/gupnp-av to 0.12.0 [drochner 2013-03-15]
	Updated net/gupnp-igd to 0.2.2 [drochner 2013-03-15]
	Updated security/nettle to 2.6 [drochner 2013-03-15]
	Updated www/liferea-current to 1.8.12 [drochner 2013-03-15]
	Updated www/midori to 0.4.9 [drochner 2013-03-15]
	Updated www/bluefish to 2.2.4 [drochner 2013-03-15]
	Updated graphics/feh to 2.9.1 [drochner 2013-03-15]
	Updated math/genius to 1.0.16 [drochner 2013-03-15]
	Updated graphics/darktable to 1.1.3 [drochner 2013-03-15]
	Added devel/p5-Test-More-Behaviour version 1.0.0 [schmonz 2013-03-15]
	Updated security/KeePass to 2.21 [wiz 2013-03-15]
	Updated security/kpcli to 1.6 [wiz 2013-03-15]
	Updated databases/shared-mime-info to 1.1 [wiz 2013-03-15]
	Updated textproc/raptor2 to 2.0.9 [wiz 2013-03-15]
	Updated devel/py-virtualenv to 1.9.1 [wiz 2013-03-15]
	Updated devel/global to 6.2.8 [wiz 2013-03-15]
	Updated devel/meld to 1.7.1 [wiz 2013-03-15]
	Updated security/libgpg-error to 1.11 [wiz 2013-03-15]
	Updated sysutils/dbus-glib to 0.100.2 [wiz 2013-03-15]
	Updated devel/orc to 0.4.17 [wiz 2013-03-15]
	Updated editors/emacs24 to 24.3 [wiz 2013-03-15]
	Updated fonts/harfbuzz to 0.9.13 [wiz 2013-03-15]
	Updated graphics/potrace to 1.11 [wiz 2013-03-15]
	Updated security/zkt to 1.1.2 [pettai 2013-03-15]
	Added www/ruby-pygments.rb version 0.3.7 [taca 2013-03-15]
	Updated devel/userspace-rcu to 0.7.6 [pettai 2013-03-15]
	Updated mail/opendkim to 2.7.4 [pettai 2013-03-16]
	Updated lang/php53 to 5.3.23 [taca 2013-03-16]
	Updated lang/php54 to 5.4.13 [taca 2013-03-16]
	Updated databases/pear-MDB2 to 2.5.0b5 [taca 2013-03-16]
	Updated databases/pear-MDB2_Driver_mysql to 1.5.0b4 [taca 2013-03-16]
	Updated databases/pear-MDB2_Driver_mysqli to 1.5.0b4 [taca 2013-03-16]
	Updated databases/pear-MDB2_Driver_pgsql to 1.5.0b4 [taca 2013-03-16]
	Updated databases/pear-MDB2_Driver_sqlite to 1.5.0b4 [taca 2013-03-16]
	Updated mail/pear-Mail_Mime to 1.8.7 [taca 2013-03-16]
	Updated textproc/pear-Console_Table to 1.1.5 [taca 2013-03-16]
	Added math/pear-Math_BigInteger version 1.0.0 [taca 2013-03-16]
	Updated security/netpgpverify to 20130316 [agc 2013-03-16]
	Updated devel/gmtk to 1.0.8 [obache 2013-03-16]
	Updated multimedia/gnome-mplayer to 1.0.8 [obache 2013-03-16]
	Updated multimedia/gecko-mediaplayer to 1.0.8 [obache 2013-03-16]
	Updated inputmethod/ibus-qt to 1.3.2 [obache 2013-03-16]
	Updated meta-pkgs/ruby-gnome2 to 1.2.2 [obache 2013-03-16]
	Updated devel/ruby-gnome2-atk to 1.2.2 [obache 2013-03-16]
	Updated devel/ruby-gnome2-gio to 1.2.2 [obache 2013-03-16]
	Updated devel/ruby-gnome2-gobject-introspection to 1.2.2 [obache 2013-03-16]
	Updated devel/ruby-gnome2-glib to 1.2.2 [obache 2013-03-16]
	Updated devel/ruby-gnome2-pango to 1.2.2 [obache 2013-03-16]
	Updated graphics/ruby-gnome2-gdk3 to 1.2.2 [obache 2013-03-16]
	Updated graphics/ruby-gnome2-gdkpixbuf to 1.2.2 [obache 2013-03-16]
	Updated graphics/ruby-gnome2-goocanvas to 1.2.2 [obache 2013-03-16]
	Updated graphics/ruby-gnome2-rsvg to 1.2.2 [obache 2013-03-16]
	Updated multimedia/ruby-gnome2-gstreamer to 1.2.2 [obache 2013-03-16]
	Updated print/ruby-gnome2-poppler to 1.2.2 [obache 2013-03-16]
	Updated x11/ruby-gnome2-gtk to 1.2.2 [obache 2013-03-16]
	Updated x11/ruby-gnome2-gtk3 to 1.2.2 [obache 2013-03-16]
	Updated x11/ruby-gnome2-gtksourceview2 to 1.2.2 [obache 2013-03-16]
	Updated x11/ruby-gnome2-gtksourceview3 to 1.2.2 [obache 2013-03-16]
	Updated x11/ruby-gnome2-vte to 1.2.2 [obache 2013-03-16]
	Updated www/ruby-sinatra to 1.3.6 [obache 2013-03-16]
	Added biology/mpqc version 2.3.1 [asau 2013-03-16]
	Updated databases/openldap to 2.4.34 [adam 2013-03-16]
	Updated databases/openldap-client to 2.4.34 [adam 2013-03-16]
	Updated databases/openldap-server to 2.4.34 [adam 2013-03-16]
	Updated databases/openldap-doc to 2.4.34 [adam 2013-03-16]
	Updated databases/openldap-cloak to 2.4.34 [adam 2013-03-16]
	Updated databases/openldap-nops to 2.4.34 [adam 2013-03-16]
	Updated databases/openldap-smbk5pwd to 2.4.34 [adam 2013-03-16]
	Updated net/ruby-twitter-stream to 0.1.16nb1 [obache 2013-03-16]
	Added net/rabbiter version 2.0.0 [obache 2013-03-16]
	Updated inputmethod/skk to 15.1 [ryoon 2013-03-16]
	Updated devel/SOPE to 2.0.4b [taca 2013-03-16]
	Updated www/SOGo to 2.0.4b [taca 2013-03-16]
	Updated devel/gitolite to 3.4nb1 [ryoon 2013-03-16]
	Updated www/php-owncloud to 4.5.7nb1 [bouyer 2013-03-16]
	Updated mail/poppy to 4.0.1 [shattered 2013-03-16]
	Updated www/calamaris to 2.59 [shattered 2013-03-16]
	Updated geography/gpsbabel to 1.4.4 [gdt 2013-03-16]
	Added security/stud version 0.3p53 [jym 2013-03-16]
	Updated security/libyubikey to 1.10 [pettai 2013-03-16]
	Updated security/ykpers to 1.11.3 [pettai 2013-03-16]
	Updated security/pam-yubico to 2.13 [pettai 2013-03-16]
	Updated security/oath-toolkit to 2.0.2 [pettai 2013-03-16]
	Added print/ghostscript-gpl version 9.05nb3 [dholland 2013-03-16]
	Added print/ghostscript-agpl version 9.07nb1 [dholland 2013-03-16]
	Updated print/libspectre to 0.2.7nb4 [dholland 2013-03-16]
	Updated graphics/GraphicsMagick to 1.3.18nb1 [dholland 2013-03-16]
	Updated graphics/ImageMagick to 6.8.3.7nb1 [dholland 2013-03-16]
	Updated graphics/graphviz to 2.26.3nb22 [dholland 2013-03-16]
	Updated print/cups-drivers-Magicolor5440DL to 1.2.1nb8 [dholland 2013-03-16]
	Updated print/hplip to 3.12.11nb3 [dholland 2013-03-16]
	Updated print/p5-LaTeX-Driver to 0.10nb2 [dholland 2013-03-16]
	Updated print/tex-musixtex to 1.15nb2 [dholland 2013-03-16]
	Updated print/xdvik to 22.84.16nb3 [dholland 2013-03-16]
	Updated graphics/asymptote to 2.15nb2 [dholland 2013-03-16]
	Updated graphics/camlimages to 4.0.1nb21 [dholland 2013-03-16]
	Updated graphics/tex-pst-pdf to 1.1vnb1 [dholland 2013-03-16]
	Updated math/R-CGIwithR to 0.73.0nb6 [dholland 2013-03-16]
	Updated meta-pkgs/netbsd-www to 1.8 [dholland 2013-03-16]
	Updated meta-pkgs/bulk-small to 20130316 [dholland 2013-03-16]
	Updated fonts/ghostscript-cidfonts to 20000901nb4 [dholland 2013-03-16]
	Updated fonts/ghostscript-cidfonts-ryumin to 9.05nb4 [dholland 2013-03-16]
	Updated meta-pkgs/netbsd-www to 1.8 [dholland 2013-03-16]
	Removed print/ghostscript successor print/ghostscript-gpl [dholland 2013-03-16]
	Updated net/net-snmp to 5.7.2 [gdt 2013-03-17]
	Added security/pam-pgsql version 0.7.3.1 [asau 2013-03-17]
	Added databases/nss-pgsql version 1.5.0b [asau 2013-03-17]
	Updated parallel/openpa to 1.0.4 [asau 2013-03-17]
	Updated devel/protobuf to 2.5.0 [wiz 2013-03-17]
	Updated devel/py-distribute to 0.6.35 [wiz 2013-03-17]
	Updated graphics/ImageMagick to 6.8.3.9 [wiz 2013-03-17]
	Updated multimedia/ffmpeg to 20130315.1.2 [wiz 2013-03-17]
	Updated net/transmission to 2.77 [wiz 2013-03-17]
	Updated meta-pkgs/ruby-gnome2 to 1.2.3 [obache 2013-03-17]
	Updated devel/ruby-gnome2-atk to 1.2.3 [obache 2013-03-17]
	Updated devel/ruby-gnome2-gio to 1.2.3 [obache 2013-03-17]
	Updated devel/ruby-gnome2-gobject-introspection to 1.2.3 [obache 2013-03-17]
	Updated devel/ruby-gnome2-glib to 1.2.3 [obache 2013-03-17]
	Updated devel/ruby-gnome2-pango to 1.2.3 [obache 2013-03-17]
	Updated graphics/ruby-gnome2-gdk3 to 1.2.3 [obache 2013-03-17]
	Updated graphics/ruby-gnome2-gdkpixbuf to 1.2.3 [obache 2013-03-17]
	Updated graphics/ruby-gnome2-goocanvas to 1.2.3 [obache 2013-03-17]
	Updated graphics/ruby-gnome2-rsvg to 1.2.2 [obache 2013-03-17]
	Updated multimedia/ruby-gnome2-gstreamer to 1.2.3 [obache 2013-03-17]
	Updated print/ruby-gnome2-poppler to 1.2.3 [obache 2013-03-17]
	Updated x11/ruby-gnome2-gtk to 1.2.2 [obache 2013-03-17]
	Updated x11/ruby-gnome2-gtk3 to 1.2.3 [obache 2013-03-17]
	Updated x11/ruby-gnome2-gtksourceview2 to 1.2.3 [obache 2013-03-17]
	Updated x11/ruby-gnome2-gtksourceview3 to 1.2.3 [obache 2013-03-17]
	Updated x11/ruby-gnome2-vte to 1.2.3 [obache 2013-03-17]
	Updated textproc/py-lxml to 3.1.0 [wiz 2013-03-17]
	Updated www/ruby-webrobots to 0.1.1 [taca 2013-03-17]
	Updated www/ruby-cssmin to 1.0.3 [taca 2013-03-17]
	Updated www/ruby-css-parser to 1.3.4 [taca 2013-03-17]
	Updated www/heel to 3.0.2 [taca 2013-03-17]
	Updated sysutils/ruby-facter to 1.6.18 [taca 2013-03-17]
	Updated net/ruby-snmp to 1.1.1 [taca 2013-03-17]
	Updated net/ruby-domain_name to 0.5.8 [taca 2013-03-17]
	Updated misc/ruby-bundler to 1.3.4 [taca 2013-03-17]
	Updated devel/ruby-rspec-core to 2.13.1 [taca 2013-03-17]
	Updated devel/ruby-rbtree to 0.4.0 [taca 2013-03-17]
	Updated devel/ruby-daemon_controller to 1.1.2 [taca 2013-03-17]
	Updated www/ruby-rack-protection to 1.5.0 [taca 2013-03-17]
	Updated devel/ruby-highline to 1.6.16 [taca 2013-03-17]
	Updated textproc/ruby-multi_json to 1.7.0 [taca 2013-03-17]
	Updated parallel/mpi-ch to 3.0.1 [asau 2013-03-17]
	Added math/eigen3 version 3.1.2 [markd 2013-03-17]
	Updated misc/xdg-utils to 1.1.0rc1 [markd 2013-03-17]
	Updated games/onscripter to 20130316 [tsutsui 2013-03-17]
	Updated www/curl to 7.29.0nb2 [tsutsui 2013-03-17]
	Updated misc/openoffice3 to 3.1.1nb41 [tsutsui 2013-03-17]
	mk/bsd.pkg.mk: started freeze for pkgsrc-2013Q1 branch [wiz 2012-03-17]
	Updated www/php-tt-rss to 1.6.2nb1 [wiz 2013-03-19]
	Updated mail/milter-greylist to 4.4.3 [tron 2013-03-19]
	Updated www/php-owncloud to 5.0.0 [ryoon 2013-03-19]
	Updated www/php-tt-rss to 1.7.4 [ryoon 2013-03-19]
	Updated www/typo3_45 to 4.5.25nb2 [taca 2013-03-19]
	Updated www/typo3_46 to 4.6.18nb2 [taca 2013-03-19]
	Updated www/typo3_47 to 4.7.10nb2 [taca 2013-03-19]
	Updated net/aria2 to 1.16.4 [ryoon 2013-03-19]
	Updated devel/ruby-activesupport32 to 3.2.13 [taca 2013-03-19]
	Updated devel/ruby-activemodel32 to 3.2.13 [taca 2013-03-19]
	Updated www/ruby-actionpack32 to 3.2.13 [taca 2013-03-19]
	Updated databases/ruby-activerecord32 to 3.2.13 [taca 2013-03-19]
	Updated www/ruby-activeresource32 to 3.2.13 [taca 2013-03-19]
	Updated mail/ruby-actionmailer32 to 3.2.13 [taca 2013-03-19]
	Updated devel/ruby-railties32 to 3.2.13 [taca 2013-03-19]
	Updated www/ruby-rails32 to 3.2.13 [taca 2013-03-19]
	Updated parallel/hwloc to 1.5nb2 [sbd 2013-03-19]
	Updated inputmethod/scim-ccinput to 0.3.1nb15 [obache 2013-03-20]
	Updated net/mikutter to 0.2.1.1137 [obache 2013-03-22]
	Updated www/seamonkey to 2.16nb1 [ryoon 2013-03-22]
	Updated print/poppler to 0.22.2 [spz 2013-03-24]
	Updated www/py-flask-admin to 1.0.5 [kleink 2013-03-24]
	Updated x11/mlterm to 3.1.9 [tsutsui 2013-03-24]
	Updated net/wpa_supplicant to 2.0 [rodent 2013-03-24]
	Updated net/wpa_gui to 2.0 [rodent 2013-03-24]
	Updated devel/reposurgeon to 2.26nb1 [dholland 2013-03-24]
	Removed lang/ocamlduce [dholland 2013-03-24]
	Removed devel/p4 [wiz 2013-03-24]
	Removed devel/p4-docs [wiz 2013-03-24]
	Removed devel/p4d [wiz 2013-03-24]
	Removed devel/p4web [wiz 2013-03-24]
	Removed emulators/ski-bin successor emulators/ski [wiz 2013-03-24]
	Updated x11/x3270 to 3.3.12ga12 [gsl 2013-03-24]
	Removed net/gupnp-vala [drochner 2013-03-24]
	Updated games/netmaze to 0.81nb4 [dholland 2013-03-25]
	Updated net/tnftpd to 20130325 [agc 2013-03-25]
	Updated editors/se to 3.0.1 [tcort 2013-03-25]
	Updated lang/tcl-expect to 5.45.0nb1 [jperkin 2013-03-26]
	Updated graphics/gimp-ufraw to 0.19.2 [gdt 2013-03-26]
	Updated emulators/simh to 3.9.0nb4 [martin 2013-03-26]
	Updated games/onscripter to 20130317 [tsutsui 2013-03-26]
	Updated net/isc-dhcp4 to 4.2.5p1 [taca 2013-03-26]
	Updated net/isc-dhclient4 to 4.2.5p1 [taca 2013-03-26]
	Updated net/isc-dhcpd4 to 4.2.5p1 [taca 2013-03-26]
	Updated net/isc-dhcrelay4 to 4.2.5p1 [taca 2013-03-26]
	Updated net/bind99 to 9.9.2pl2 [taca 2013-03-26]
	Updated net/bind98 to 9.8.4pl2 [taca 2013-03-26]
	Updated net/bind97 to 9.7.7nb5 [taca 2013-03-27]
	Updated mail/roundcube to 0.8.6 [taca 2013-03-28]
	Updated emulators/qemu to 1.3.1 [tsutsui 2013-03-29]
	Updated emulators/suse121_libxml2 to 12.1nb5 [obache 2013-03-30]
	Updated net/mikutter to 0.2.1.1141 [obache 2013-03-30]
	Updated devel/xulrunner to 19.0.2nb1 [ryoon 2013-03-30]
	Updated editors/easyedit to 1.4.6nb1 [dholland 2013-03-30]
	Updated audio/buzztard to 0.5.0nb21 [sbd 2013-03-31]
	Updated www/moodle to 2.4.3 [wen 2013-03-31]
	Updated biology/openbabel to 2.3.0nb11 [sbd 2013-04-01]
	mk/bsd.pkg.mk: freeze ended for pkgsrc-2013Q1 branch [wiz 2013-04-01]
	Updated archivers/libzip to 0.11 [wiz 2013-04-01]
	Updated time/py-pytz to 2013b [wiz 2013-04-01]
	Updated www/py-flask-flatpages to 0.4 [kleink 2013-04-01]
	Added devel/py-speaklater version 1.3 [kleink 2013-04-01]
	Added www/py-flask-babelex version 0.8.1 [kleink 2013-04-01]
	Updated graphics/png to 1.6.1 [kim 2013-04-01]
	Updated graphics/jpegoptim to 1.3.0 [adam 2013-04-01]
	Updated databases/sqlite3 to 3.7.16.1 [adam 2013-04-01]
	Updated databases/sqlite3-docs to 3.7.16.1 [adam 2013-04-01]
	Updated databases/sqlite3-tcl to 3.7.16.1 [adam 2013-04-01]
	Updated multimedia/libdvdcss to 1.2.13 [adam 2013-04-01]
	Updated multimedia/dvdbackup to 0.4.2 [adam 2013-04-01]
	Updated www/py-django to 1.5.1 [adam 2013-04-01]
	Added misc/raspberrypi-userland version 20130128 [jmcneill 2013-04-01]
	Added multimedia/libhdhomerun version 20130328 [jmcneill 2013-04-01]
	Added lang/gcc48 version 4.8.0 [wiz 2013-04-01]
	Added lang/gcc48-libs version 4.8.0nb1 [wiz 2013-04-01]
	Updated net/unbound to 1.4.20 [pettai 2013-04-01]
	Updated editors/sandy to 0.4 [mspo 2013-04-02]
	Added x11/kde4-l10n-ar version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-bg version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-bs version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-ca version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-cat version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-cs version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-da version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-el version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-es version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-et version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-eu version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-fa version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-fi version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-fr version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-ga version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-gl version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-he version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-hr version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-hu version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-ia version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-id version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-is version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-it version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-ja version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-kk version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-km version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-ko version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-lt version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-lv version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-nb version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-nds version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-nn version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-pa version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-pl version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-pt version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-pt_BR version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-ro version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-ru version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-si version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-sk version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-sl version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-sr version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-tg version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-th version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-tr version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-ug version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-uk version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-vi version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-wa version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-zh_CN version 4.8.4 [rodent 2013-04-02]
	Added x11/kde4-l10n-zh_TW version 4.8.4 [rodent 2013-04-02]
	Updated converters/p5-Unicode-Collate to 0.97 [hiramatsu 2013-04-02]
	Updated textproc/py-docutils to 0.10 [rodent 2013-04-02]
	Updated databases/p5-DBIx-Class-Candy to 0.002103 [hiramatsu 2013-04-02]
	Updated lang/gcc47 to 4.7.2nb3 [jperkin 2013-04-02]
	Updated lang/gcc47-libs to 4.7.2nb4 [jperkin 2013-04-02]
	Updated devel/sparse to 0.4.4 [dholland 2013-04-02]
	Updated www/contao211 to 2.11.10 [taca 2013-04-02]
	Updated www/contao211-example to 2.11.10 [taca 2013-04-02]
	Updated www/contao211-translations to 201303210 [taca 2013-04-02]
	Updated www/contao30 to 3.0.6 [taca 2013-04-02]
	Updated www/contao30-example to 3.0.6 [taca 2013-04-02]
	Updated www/geeklog to 2.0.0 [taca 2013-04-02]
	Updated databases/phpldapadmin to 1.2.3 [taca 2013-04-02]
	Updated textproc/saxon to 9.4.0.7j [rodent 2013-04-03]
	Updated www/p5-Plack to 1.0022 [wen 2013-04-03]
	Updated devel/p5-Moose to 2.0801 [wen 2013-04-03]
	Updated time/p5-DateTime to 1.01 [wen 2013-04-03]
	Updated time/p5-DateTime-Format-Builder to 0.81 [wen 2013-04-03]
	Updated time/p5-DateTime-Format-Strptime to 1.54 [wen 2013-04-03]
	Updated textproc/p5-Text-CSV_XS to 0.97 [wen 2013-04-03]
	Updated lang/perl5 to 5.16.3 [adam 2013-04-03]
	Updated devel/mercurial to 2.5.3 [wiz 2013-04-03]
	Updated archivers/ocaml-zip to 1.05 [jaapb 2013-04-03]
	Updated devel/ocaml-lwt to 2.4.3 [jaapb 2013-04-03]
	Updated net/ocamlnet to 3.6.3 [jaapb 2013-04-03]
	Updated lang/eag to 2.6 [jaapb 2013-04-03]
	Updated textproc/shared-desktop-ontologies to 0.10.0 [markd 2013-04-03]
	Updated mail/akonadi to 1.9.1 [markd 2013-04-03]
	Updated textproc/soprano to 2.9.0 [markd 2013-04-03]

	Updated archivers/ark to 4.10.2 [markd 2013-04-03]
	Updated devel/kdesdk4 to 4.10.2 [markd 2013-04-03]
	Updated editors/kate to 4.10.2 [markd 2013-04-03]
	Updated games/blinken to 4.10.2 [markd 2013-04-03]
	Updated games/kanagram to 4.10.2 [markd 2013-04-03]
	Updated games/kdetoys4 to 4.10.2 [markd 2013-04-03]
	Updated games/khangman to 4.10.2 [markd 2013-04-03]
	Updated graphics/gwenview to 4.10.2 [markd 2013-04-03]
	Updated graphics/kamera to 4.10.2 [markd 2013-04-03]
	Updated graphics/kcolorchooser to 4.10.2 [markd 2013-04-03]
	Updated graphics/kdegraphics-mobipocket to 4.10.2 [markd 2013-04-03]
	Updated graphics/kdegraphics-strigi-analyzer to 4.10.2 [markd 2013-04-03]
	Updated graphics/kdegraphics-thumbnailers to 4.10.2 [markd 2013-04-03]
	Updated graphics/kgamma to 4.10.2 [markd 2013-04-03]
	Updated graphics/kolourpaint to 4.10.2 [markd 2013-04-03]
	Updated graphics/kruler to 4.10.2 [markd 2013-04-03]
	Updated graphics/ksaneplugin to 4.10.2 [markd 2013-04-03]
	Updated graphics/ksnapshot to 4.10.2 [markd 2013-04-03]
	Updated graphics/libkdcraw to 4.10.2 [markd 2013-04-03]
	Updated graphics/libkexiv2 to 4.10.2 [markd 2013-04-03]
	Updated graphics/libkipi to 4.10.2 [markd 2013-04-03]
	Updated graphics/libksane to 4.10.2 [markd 2013-04-03]
	Updated graphics/oxygen-icons to 4.10.2 [markd 2013-04-03]
	Updated graphics/svgpart to 4.10.2 [markd 2013-04-03]
	Updated math/analitza to 4.10.2 [markd 2013-04-03]
	Updated math/cantor to 4.10.2 [markd 2013-04-03]
	Updated math/kalgebra to 4.10.2 [markd 2013-04-03]
	Updated math/kcalc to 4.10.2 [markd 2013-04-03]
	Updated meta-pkgs/kde4 to 4.10.2 [markd 2013-04-03]
	Updated misc/kaccessible to 4.10.2 [markd 2013-04-03]
	Updated misc/kalzium to 4.10.2 [markd 2013-04-03]
	Updated misc/kbruch to 4.10.2 [markd 2013-04-03]
	Updated misc/kcharselect to 4.10.2 [markd 2013-04-03]
	Updated misc/kde-wallpapers4 to 4.10.2 [markd 2013-04-03]
	Updated misc/kdeadmin4 to 4.10.2 [markd 2013-04-03]
	Updated misc/kdeartwork4 to 4.10.2 [markd 2013-04-03]
	Updated misc/kdepimlibs4 to 4.10.2 [markd 2013-04-03]
	Updated misc/kdeplasma-addons4 to 4.10.2 [markd 2013-04-03]
	Updated misc/kgeography to 4.10.2 [markd 2013-04-03]
	Updated misc/kig to 4.10.2 [markd 2013-04-03]
	Updated misc/kiten to 4.10.2 [markd 2013-04-03]
	Updated misc/klettres to 4.10.2 [markd 2013-04-03]
	Updated misc/kmag to 4.10.2 [markd 2013-04-03]
	Updated misc/kmousetool to 4.10.2 [markd 2013-04-03]
	Updated misc/kmouth to 4.10.2 [markd 2013-04-03]
	Updated misc/kremotecontrol to 4.10.2 [markd 2013-04-03]
	Updated misc/kstars to 4.10.2 [markd 2013-04-03]
	Updated misc/ktouch to 4.10.2 [markd 2013-04-03]
	Updated misc/kturtle to 4.10.2 [markd 2013-04-03]
	Updated misc/kwordquiz to 4.10.2 [markd 2013-04-03]
	Updated misc/libkdeedu to 4.10.2 [markd 2013-04-03]
	Updated misc/marble to 4.10.2 [markd 2013-04-03]
	Updated misc/parley to 4.10.2 [markd 2013-04-03]
	Updated misc/rocs to 4.10.2 [markd 2013-04-03]
	Updated misc/step to 4.10.2 [markd 2013-04-03]
	Updated misc/superkaramba to 4.10.2 [markd 2013-04-03]
	Updated misc/sweeper to 4.10.2 [markd 2013-04-03]
	Updated net/kdenetwork4 to 4.10.2 [markd 2013-04-03]
	Updated print/okular to 4.10.2 [markd 2013-04-03]
	Updated security/kgpg to 4.10.2 [markd 2013-04-03]
	Updated security/kwallet to 4.10.2 [markd 2013-04-03]
	Updated sysutils/filelight to 4.10.2 [markd 2013-04-03]
	Updated sysutils/kdf to 4.10.2 [markd 2013-04-03]
	Updated sysutils/kfloppy to 4.10.2 [markd 2013-04-03]
	Updated time/ktimer to 4.10.2 [markd 2013-04-03]
	Updated www/kdewebdev4 to 4.10.2 [markd 2013-04-03]
	Updated x11/kactivities to 4.10.2 [markd 2013-04-03]
	Updated x11/kde-baseapps4 to 4.10.2 [markd 2013-04-03]
	Updated x11/kde-runtime4 to 4.10.2 [markd 2013-04-03]
	Updated x11/kde-workspace4 to 4.10.2 [markd 2013-04-03]
	Updated x11/kde4-l10n-de to 4.10.2 [markd 2013-04-03]
	Updated x11/kde4-l10n-en_GB to 4.10.2 [markd 2013-04-03]
	Updated x11/kde4-l10n-nl to 4.10.2 [markd 2013-04-03]
	Updated x11/kdelibs4 to 4.10.2 [markd 2013-04-03]
	Updated x11/konsole to 4.10.2 [markd 2013-04-03]
	Updated x11/py-kde4 to 4.10.2 [markd 2013-04-03]
	Removed print/printer-applet [markd 2013-04-03]
	Removed security/ksecrets [markd 2013-04-03]
	Removed multimedia/kdemultimedia4 [markd 2013-04-03]
	Removed games/kdegames4 [markd 2013-04-03]
	Added misc/nepomuk-core version 4.10.2 [markd 2013-04-03]
	Added misc/nepomuk-widgets version 4.10.2 [markd 2013-04-03]
	Added graphics/kde-base-artwork version 4.10.2 [markd 2013-04-03]
	Added multimedia/audiocd-kio version 4.10.2 [markd 2013-04-03]
	Added multimedia/dragon version 4.10.2 [markd 2013-04-03]
	Added multimedia/ffmpegthumbs version 4.10.2 [markd 2013-04-03]
	Added multimedia/juk version 4.10.2 [markd 2013-04-03]
	Added multimedia/kmix version 4.10.2 [markd 2013-04-03]
	Added multimedia/kscd version 4.10.2 [markd 2013-04-03]
	Added multimedia/mplayerthumbs version 4.10.2 [markd 2013-04-03]
	Added multimedia/libkcddb version 4.10.2 [markd 2013-04-03]
	Added multimedia/libkcompactdisc version 4.10.2 [markd 2013-04-03]
	Added games/libkdegames version 4.10.2 [markd 2013-04-03]
	Added games/libkmahjongg version 4.10.2 [markd 2013-04-03]
	Added games/bomber version 4.10.2 [markd 2013-04-03]
	Added games/bovo version 4.10.2 [markd 2013-04-03]
	Added games/granatier version 4.10.2 [markd 2013-04-03]
	Added games/kajongg version 4.10.2 [markd 2013-04-03]
	Added games/kapman version 4.10.2 [markd 2013-04-03]
	Added games/katomic version 4.10.2 [markd 2013-04-03]
	Added games/kblackbox version 4.10.2 [markd 2013-04-03]
	Added games/kblocks version 4.10.2 [markd 2013-04-03]
	Added games/kbounce version 4.10.2 [markd 2013-04-03]
	Added games/kbreakout version 4.10.2 [markd 2013-04-03]
	Added games/kdiamond version 4.10.2 [markd 2013-04-03]
	Added games/kfourinline version 4.10.2 [markd 2013-04-03]
	Added games/kgoldrunner version 4.10.2 [markd 2013-04-03]
	Added games/kigo version 4.10.2 [markd 2013-04-03]
	Added games/killbots version 4.10.2 [markd 2013-04-03]
	Added games/kiriki version 4.10.2 [markd 2013-04-03]
	Added games/kjumpingcube version 4.10.2 [markd 2013-04-03]
	Added games/klickety version 4.10.2 [markd 2013-04-03]
	Added games/klines version 4.10.2 [markd 2013-04-03]
	Added games/kmahjongg version 4.10.2 [markd 2013-04-03]
	Added games/kmines version 4.10.2 [markd 2013-04-03]
	Added games/knavalbattle version 4.10.2 [markd 2013-04-03]
	Added games/knetwalk version 4.10.2 [markd 2013-04-03]
	Added games/kolf version 4.10.2 [markd 2013-04-03]
	Added games/kollision version 4.10.2 [markd 2013-04-03]
	Added games/konquest version 4.10.2 [markd 2013-04-03]
	Added games/kpat version 4.10.2 [markd 2013-04-03]
	Added games/kreversi version 4.10.2 [markd 2013-04-03]
	Added games/kshisen version 4.10.2 [markd 2013-04-03]
	Added games/ksirk version 4.10.2 [markd 2013-04-03]
	Added games/ksnakeduel version 4.10.2 [markd 2013-04-03]
	Added games/kspaceduel version 4.10.2 [markd 2013-04-03]
	Added games/ksquares version 4.10.2 [markd 2013-04-03]
	Added games/ksudoku version 4.10.2 [markd 2013-04-03]
	Added games/ktuberling version 4.10.2 [markd 2013-04-03]
	Added games/kubrick version 4.10.2 [markd 2013-04-03]
	Added games/lskat version 4.10.2 [markd 2013-04-03]
	Added games/palapeli version 4.10.2 [markd 2013-04-03]
	Added games/picmi version 4.10.2 [markd 2013-04-03]
	Updated graphics/libkface to 3.1.0 [markd 2013-04-03]
	Updated misc/libkgeomap to 3.1.0 [markd 2013-04-03]
	Updated misc/libkvkontakte to 3.1.0 [markd 2013-04-03]
	Updated www/libmediawiki to 3.1.0 [markd 2013-04-03]
	Updated graphics/digikam to 3.1.0 [markd 2013-04-03]
	Updated devel/p5-Algorithm-CheckDigits to 1.2.1 [hiramatsu 2013-04-04]
	Updated devel/p5-CPAN-Perl-Releases to 1.08 [hiramatsu 2013-04-04]
	Added textproc/discount version 2.1.6 [wiz 2013-04-04]
	Updated net/dnsmasq to 2.64nb1 [jperkin 2013-04-04]
	Updated meta-pkgs/ruby-gnome2 to 1.2.5 [obache 2013-04-04]
	Updated devel/ruby-gnome2-atk to 1.2.5 [obache 2013-04-04]
	Updated devel/ruby-gnome2-gio to 1.2.5 [obache 2013-04-04]
	Updated devel/ruby-gnome2-gobject-introspection to 1.2.5 [obache 2013-04-04]
	Updated devel/ruby-gnome2-glib to 1.2.5 [obache 2013-04-04]
	Updated devel/ruby-gnome2-pango to 1.2.5 [obache 2013-04-04]
	Updated graphics/ruby-gnome2-gdk3 to 1.2.5 [obache 2013-04-04]
	Updated graphics/ruby-gnome2-gdkpixbuf to 1.2.5 [obache 2013-04-04]
	Updated graphics/ruby-gnome2-goocanvas to 1.2.5 [obache 2013-04-04]
	Updated graphics/ruby-gnome2-rsvg to 1.2.2 [obache 2013-04-04]
	Updated multimedia/ruby-gnome2-gstreamer to 1.2.5 [obache 2013-04-04]
	Updated print/ruby-gnome2-poppler to 1.2.5 [obache 2013-04-04]
	Updated x11/ruby-gnome2-gtk to 1.2.2 [obache 2013-04-04]
	Updated x11/ruby-gnome2-gtk3 to 1.2.5 [obache 2013-04-04]
	Updated x11/ruby-gnome2-gtksourceview2 to 1.2.5 [obache 2013-04-04]
	Updated x11/ruby-gnome2-gtksourceview3 to 1.2.5 [obache 2013-04-04]
	Updated x11/ruby-gnome2-vte to 1.2.5 [obache 2013-04-04]
	Updated editors/easyedit to 1.4.6nb2 [dholland 2013-04-04]
	Removed audio/padevchooser [wiz 2013-04-04]
	Updated www/py-flask-flatpages to 0.5 [kleink 2013-04-04]
	Updated databases/postgresql92 to 9.2.4 [adam 2013-04-04]
	Updated databases/postgresql92-client to 9.2.4 [adam 2013-04-04]
	Updated databases/postgresql92-server to 9.2.4 [adam 2013-04-04]
	Updated databases/postgresql92-docs to 9.2.4 [adam 2013-04-04]
	Updated databases/postgresql92-adminpack to 9.2.4 [adam 2013-04-04]
	Updated databases/postgresql92-datatypes to 9.2.4 [adam 2013-04-04]
	Updated databases/postgresql92-dblink to 9.2.4 [adam 2013-04-04]
	Updated databases/postgresql92-fuzzystrmatch to 9.2.4 [adam 2013-04-04]
	Updated databases/postgresql92-monitoring to 9.2.4 [adam 2013-04-04]
	Updated databases/postgresql92-pgcrypto to 9.2.4 [adam 2013-04-04]
	Updated databases/postgresql92-plperl to 9.2.4 [adam 2013-04-04]
	Updated databases/postgresql92-plpython to 9.2.4 [adam 2013-04-04]
	Updated databases/postgresql92-pltcl to 9.2.4 [adam 2013-04-04]
	Updated databases/postgresql92-replicationtools to 9.2.4 [adam 2013-04-04]
	Updated databases/postgresql92-upgrade to 9.2.4 [adam 2013-04-04]
	Updated databases/postgresql91 to 9.1.9 [adam 2013-04-04]
	Updated databases/postgresql91-adminpack to 9.1.9 [adam 2013-04-04]
	Updated databases/postgresql91-client to 9.1.9 [adam 2013-04-04]
	Updated databases/postgresql91-datatypes to 9.1.9 [adam 2013-04-04]
	Updated databases/postgresql91-dblink to 9.1.9 [adam 2013-04-04]
	Updated databases/postgresql91-docs to 9.1.9 [adam 2013-04-04]
	Updated databases/postgresql91-fuzzystrmatch to 9.1.9 [adam 2013-04-04]
	Updated databases/postgresql91-monitoring to 9.1.9 [adam 2013-04-04]
	Updated databases/postgresql91-pgcrypto to 9.1.9 [adam 2013-04-04]
	Updated databases/postgresql91-plperl to 9.1.9 [adam 2013-04-04]
	Updated databases/postgresql91-plpython to 9.1.9 [adam 2013-04-04]
	Updated databases/postgresql91-pltcl to 9.1.9 [adam 2013-04-04]
	Updated databases/postgresql91-replicationtools to 9.1.9 [adam 2013-04-04]
	Updated databases/postgresql91-server to 9.1.9 [adam 2013-04-04]
	Updated databases/postgresql91-upgrade to 9.1.9 [adam 2013-04-04]
	Updated databases/postgresql90 to 9.0.13 [adam 2013-04-04]
	Updated databases/postgresql90-adminpack to 9.0.13 [adam 2013-04-04]
	Updated databases/postgresql90-client to 9.0.13 [adam 2013-04-04]
	Updated databases/postgresql90-datatypes to 9.0.13 [adam 2013-04-04]
	Updated databases/postgresql90-dblink to 9.0.13 [adam 2013-04-04]
	Updated databases/postgresql90-docs to 9.0.13 [adam 2013-04-04]
	Updated databases/postgresql90-fuzzystrmatch to 9.0.13 [adam 2013-04-04]
	Updated databases/postgresql90-monitoring to 9.0.13 [adam 2013-04-04]
	Updated databases/postgresql90-pgcrypto to 9.0.13 [adam 2013-04-04]
	Updated databases/postgresql90-plperl to 9.0.13 [adam 2013-04-04]
	Updated databases/postgresql90-plpython to 9.0.13 [adam 2013-04-04]
	Updated databases/postgresql90-pltcl to 9.0.13 [adam 2013-04-04]
	Updated databases/postgresql90-replicationtools to 9.0.13 [adam 2013-04-04]
	Updated databases/postgresql90-server to 9.0.13 [adam 2013-04-04]
	Updated databases/postgresql90-upgrade to 9.0.13 [adam 2013-04-04]
	Updated databases/postgresql84 to 8.4.17 [adam 2013-04-04]
	Updated databases/postgresql84-adminpack to 8.4.17 [adam 2013-04-04]
	Updated databases/postgresql84-client to 8.4.17 [adam 2013-04-04]
	Updated databases/postgresql84-dblink to 8.4.17 [adam 2013-04-04]
	Updated databases/postgresql84-pgcrypto to 8.4.17 [adam 2013-04-04]
	Updated databases/postgresql84-plperl to 8.4.17 [adam 2013-04-04]
	Updated databases/postgresql84-plpython to 8.4.17 [adam 2013-04-04]
	Updated databases/postgresql84-pltcl to 8.4.17 [adam 2013-04-04]
	Updated databases/postgresql84-server to 8.4.17 [adam 2013-04-04]
	Removed databases/postgresql83 [adam 2013-04-04]
	Removed databases/postgresql83-adminpack [adam 2013-04-04]
	Removed databases/postgresql83-client [adam 2013-04-04]
	Removed databases/postgresql83-plperl [adam 2013-04-04]
	Removed databases/postgresql83-pltcl [adam 2013-04-04]
	Removed databases/postgresql83-server [adam 2013-04-04]
	Updated x11/libXi to 1.7.1 [wiz 2013-04-05]
	Updated x11/libdrm to 2.4.43 [wiz 2013-04-05]
	Updated sysutils/py-notify to 0.2.1 [rodent 2013-04-05]
	Updated audio/exaile to 0.2.14nb23 [rodent 2013-04-05]
	Updated devel/xulrunner to 20.0 [ryoon 2013-04-05]
	Updated www/firefox to 20.0 [ryoon 2013-04-05]
	Updated devel/cppcheck to 1.59 [adam 2013-04-05]
	Updated www/opera to 12.15 [obache 2013-04-06]
	Updated x11/kde4-l10n-ar to 4.10.2 [markd 2013-04-06]
	Updated x11/kde4-l10n-bg to 4.10.2 [markd 2013-04-06]
	Updated x11/kde4-l10n-bs to 4.10.2 [markd 2013-04-06]
	Updated x11/kde4-l10n-ca to 4.10.2 [markd 2013-04-06]
	Updated x11/kde4-l10n-cat to 4.10.2 [markd 2013-04-06]
	Updated x11/kde4-l10n-cs to 4.10.2 [markd 2013-04-06]
	Updated x11/kde4-l10n-da to 4.10.2 [markd 2013-04-06]
	Updated graphics/kipi-plugins to 3.1.0 [markd 2013-04-06]
	Updated editors/kile to 2.1.3 [markd 2013-04-06]
	Updated devel/kdiff3 to 0.9.97 [markd 2013-04-06]
	Updated print/kbibtex to 0.4.1 [markd 2013-04-06]
	Updated sysutils/k4dirstat to 2.7.4 [markd 2013-04-06]
	Updated meta-pkgs/pulseaudio-tools to 1.0 [wiz 2013-04-06]
	Updated www/contao211 to 2.11.11 [taca 2013-04-06]
	Updated www/contao211-example to 2.11.11 [taca 2013-04-06]
	Updated www/drupal7 to 7.22 [taca 2013-04-06]
	Updated www/fengoffice to 2.2.4.1 [taca 2013-04-06]
	Updated devel/libffi to 3.0.13 [obache 2013-04-06]
	Updated converters/skf to 1.99.2 [obache 2013-04-07]
	Updated sysutils/ruby-notify to 0.5.1 [obache 2013-04-07]
	Updated www/ruby-multipart-post to 1.2.0 [obache 2013-04-07]
	Updated www/ruby-faraday to 0.8.7 [obache 2013-04-07]
	Updated textproc/ruby-tilt to 1.3.6 [obache 2013-04-07]
	Updated wm/afterstep to 2.2.11 [cheusov 2013-04-07]
	Updated devel/mercurial to 2.5.4 [wiz 2013-04-07]
	Updated www/seamonkey to 2.17 [ryoon 2013-04-07]
	Updated devel/binutils to 2.23.2 [mef 2013-04-08]
	Updated chat/riece to 9.0.0 [mef 2013-04-08]
	Updated devel/libmtp to 1.1.6 [markd 2013-04-08]
	Updated devel/scmgit to 1.8.2 [mef 2013-04-08]
	Updated graphics/libgexiv2 to 0.6.1 [drochner 2013-04-08]
	Updated graphics/shotwell-gtk3 to 0.14.1 [drochner 2013-04-08]
	Updated multimedia/gstreamer1 to 1.0.6 [drochner 2013-04-08]
	Updated graphics/veusz to 1.17 [drochner 2013-04-08]
	Updated databases/gramps3 to 3.4.3 [drochner 2013-04-08]
	Updated www/py-django-cms to 2.3.6 [adam 2013-04-08]
	Updated games/grhino to 0.16.1 [prlw1 2013-04-08]
	Renamed textproc/aspell-breton to textproc/aspell-br [rodent 2013-04-09]
	Renamed textproc/aspell-catalan to textproc/aspell-ca [rodent 2013-04-09]
	Renamed textproc/aspell-czech to textproc/aspell-cs [rodent 2013-04-09]
	Renamed textproc/aspell-danish to textproc/aspell-da [rodent 2013-04-09]
	Renamed textproc/aspell-dutch to textproc/aspell-nl [rodent 2013-04-09]
	Renamed textproc/aspell-english to textproc/aspell-en [rodent 2013-04-09]
	Renamed textproc/aspell-esperanto to textproc/aspell-eo [rodent 2013-04-09]
	Renamed textproc/aspell-faroese to textproc/aspell-fo [rodent 2013-04-09]
	Renamed textproc/aspell-francais to textproc/aspell-fr [rodent 2013-04-09]
	Renamed textproc/aspell-gaeilge to textproc/aspell-ga [rodent 2013-04-09]
	Renamed textproc/aspell-german to textproc/aspell-de [rodent 2013-04-09]
	Renamed textproc/aspell-greek to textproc/aspell-el [rodent 2013-04-09]
	Renamed textproc/aspell-italian to textproc/aspell-it [rodent 2013-04-09]
	Renamed textproc/aspell-norwegian to textproc/aspell-nb [rodent 2013-04-09]
	Renamed textproc/aspell-polish to textproc/aspell-pl [rodent 2013-04-09]
	Renamed textproc/aspell-portuguese to textproc/aspell-pt_PT [rodent 2013-04-09]
	Renamed textproc/aspell-romanian to textproc/aspell-ro [rodent 2013-04-09]
	Renamed textproc/aspell-russian to textproc/aspell-ru [rodent 2013-04-09]
	Renamed textproc/aspell-slovak to textproc/aspell-sk [rodent 2013-04-09]
	Renamed textproc/aspell-spanish to textproc/aspell-es [rodent 2013-04-09]
	Renamed textproc/aspell-svenska to textproc/aspell-sv [rodent 2013-04-09]
	Renamed textproc/aspell-ukrainian to textproc/aspell-uk [rodent 2013-04-09]
	Renamed textproc/aspell-welsh to textproc/aspell-cy [rodent 2013-04-09]
	Updated databases/phpmyadmin to 3.5.8 [tron 2013-04-09]
	Updated textproc/p5-Text-Aspell to 0.09nb5 [rodent 2013-04-09]
	Updated www/firefox-l10n to 20.0 [ryoon 2013-04-09]
	Updated www/seamonkey-l10n to 2.17 [ryoon 2013-04-09]
	Updated devel/hdf5 to 1.8.10.1 [adam 2013-04-09]
	Updated devel/hdf5-c++ to 1.8.10.1 [adam 2013-04-09]
	Updated www/p5-Mojolicious to 3.94 [wen 2013-04-09]
	Updated devel/netcdf to 4.2.1.1 [adam 2013-04-09]
	Updated geography/gdal-lib to 1.9.2 [adam 2013-04-09]
	Updated devel/xulrunner17 to 17.0.5 [ryoon 2013-04-09]
	Updated www/firefox17 to 17.0.5 [ryoon 2013-04-09]
	Updated www/firefox17-l10n to 17.0.5 [ryoon 2013-04-09]
	Updated mail/thunderbird to 17.0.5 [ryoon 2013-04-09]
	Updated mail/thunderbird-l10n to 17.0.5 [ryoon 2013-04-09]
	Updated comms/asterisk18 to 1.8.20.2 [jnemeth 2013-04-09]
	Updated comms/asterisk10 to 10.12.2 [jnemeth 2013-04-09]
	Updated comms/asterisk to 11.2.2 [jnemeth 2013-04-09]
	Added textproc/aspell-fi version 0.7.0 [rodent 2013-04-10]
	Added textproc/aspell-te version 0.01.2 [rodent 2013-04-10]
	Added devel/ruby-io-console version 0.4.2 [tonnerre 2013-04-10]
	Added devel/ruby-minitest version 4.7.0 [tonnerre 2013-04-10]
	Added security/ruby-shadow version 2.2.0 [tonnerre 2013-04-10]
	Updated sysutils/tree to 1.6.0 [wiz 2013-04-10]
	Updated devel/py-distribute to 0.6.36 [wiz 2013-04-10]
	Updated fonts/harfbuzz to 0.9.15 [wiz 2013-04-10]
	Updated converters/help2man to 1.41.1 [wiz 2013-04-10]
	Updated net/gupnp to 0.20.2 [wiz 2013-04-10]
	Updated www/webkit-gtk to 1.10.2 [drochner 2013-04-10]
	Updated devel/scintilla to 3.2.5 [drochner 2013-04-10]
	Updated editors/scite to 3.2.5 [drochner 2013-04-10]
	Updated devel/fossil to 1.25 [wiz 2013-04-10]
	Updated multimedia/adobe-flash-plugin10.1 to 10.3.183.75 [obache 2013-04-10]
	Updated multimedia/adobe-flash-plugin11 to 11.2.202.280 [obache 2013-04-10]
	Updated fonts/fontconfig to 2.10.92 [wiz 2013-04-10]
	Added textproc/aspell-af version 0.50.0 [rodent 2013-04-10]
	Added textproc/aspell-am version 0.03.1 [rodent 2013-04-10]
	Added textproc/aspell-ar version 1.2.0 [rodent 2013-04-10]
	Updated textproc/ruby-tilt to 1.3.7 [obache 2013-04-10]
	Updated meta-pkgs/ruby-gnome2 to 1.2.6 [obache 2013-04-10]
	Updated devel/ruby-gnome2-atk to 1.2.6 [obache 2013-04-10]
	Updated devel/ruby-gnome2-gio to 1.2.6 [obache 2013-04-10]
	Updated devel/ruby-gnome2-glib to 1.2.6 [obache 2013-04-10]
	Updated devel/ruby-gnome2-gobject-introspection to 1.2.6 [obache 2013-04-10]
	Updated devel/ruby-gnome2-pango to 1.2.6 [obache 2013-04-10]
	Updated graphics/ruby-gnome2-gdk3 to 1.2.6 [obache 2013-04-10]
	Updated graphics/ruby-gnome2-gdkpixbuf to 1.2.6 [obache 2013-04-10]
	Updated graphics/ruby-gnome2-goocanvas to 1.2.6 [obache 2013-04-10]
	Updated graphics/ruby-gnome2-rsvg to 1.2.6 [obache 2013-04-10]
	Updated multimedia/ruby-gnome2-gstreamer to 1.2.6 [obache 2013-04-10]
	Updated print/ruby-gnome2-poppler to 1.2.6 [obache 2013-04-10]
	Updated x11/ruby-gnome2-gtk to 1.2.6 [obache 2013-04-10]
	Updated x11/ruby-gnome2-gtk3 to 1.2.6 [obache 2013-04-10]
	Updated x11/ruby-gnome2-vte to 1.2.6 [obache 2013-04-10]
	Updated x11/ruby-gnome2-gtksourceview2 to 1.2.6 [obache 2013-04-10]
	Updated x11/ruby-gnome2-gtksourceview3 to 1.2.6 [obache 2013-04-10]
	Updated x11/py-sip to 4.14.5 [drochner 2013-04-10]
	Updated x11/py-qt4 to 4.9.6 [drochner 2013-04-10]
	Updated x11/qt4-qscintilla to 2.7.1 [drochner 2013-04-10]
	Updated security/gnutls to 3.0.29 [drochner 2013-04-10]
	Updated security/libgcrypt to 1.5.1 [drochner 2013-04-10]
	Updated print/foomatic4-filters to 4.0.17 [drochner 2013-04-10]
	Updated editors/TeXmacs-devel to 1.0.7.19 [drochner 2013-04-10]
	Updated audio/mp3check to 0.8.7 [drochner 2013-04-10]
	Updated net/grilo to 0.2.5 [drochner 2013-04-10]
	Updated net/grilo-plugins to 0.2.6 [drochner 2013-04-10]
	Added textproc/aspell-ast version 0.01 [rodent 2013-04-10]
	Added textproc/aspell-az version 0.02.0 [rodent 2013-04-10]
	Added textproc/aspell-be version 0.01 [rodent 2013-04-10]
	Added textproc/aspell-bg version 4.1.0 [rodent 2013-04-10]
	Added textproc/aspell-bn version 0.01.1.1 [rodent 2013-04-10]
	Added textproc/aspell-csb version 0.02.0 [rodent 2013-04-10]
	Updated archivers/lzip to 1.14 [shattered 2013-04-10]
	Updated databases/ruby-hiera to 1.1.2 [tonnerre 2013-04-10]
	Updated sysutils/puppet to 3.1.1 [tonnerre 2013-04-10]
	Added textproc/aspell-et version 0.1.21.1 [rodent 2013-04-11]
	Added textproc/aspell-fy version 0.12.0 [rodent 2013-04-11]
	Added textproc/aspell-gd version 0.1.1.1 [rodent 2013-04-11]
	Added textproc/aspell-gl version 0.5a.2 [rodent 2013-04-11]
	Added textproc/aspell-grc version 0.02.0 [rodent 2013-04-11]
	Added textproc/aspell-gu version 0.03.0 [rodent 2013-04-11]
	Added textproc/aspell-gv version 0.50.0 [rodent 2013-04-11]
	Added textproc/aspell-he version 1.0.0 [rodent 2013-04-11]
	Added textproc/aspell-hi version 0.02.0 [rodent 2013-04-11]
	Added textproc/aspell-hil version 0.11.0 [rodent 2013-04-11]
	Added textproc/aspell-hr version 0.51.0 [rodent 2013-04-11]
	Updated print/scribus-qt4 to 1.4.2 [drochner 2013-04-11]
	Updated multimedia/ffmpeg010 to 20130410.0.10.7 [drochner 2013-04-11]
	Added textproc/aspell-hsb version 0.02.0 [rodent 2013-04-11]
	Updated multimedia/gst-plugins1-libav to 1.0.6 [drochner 2013-04-11]
	Updated audio/rhythmbox-gtk3 to 2.99 [drochner 2013-04-11]
	Added textproc/aspell-hu version 0.99.4.2.0 [rodent 2013-04-11]
	Added textproc/aspell-hus version 0.03.1 [rodent 2013-04-11]
	Added textproc/aspell-hy version 0.10.0.0 [rodent 2013-04-11]
	Updated devel/scmgit to 1.8.2.1 [adam 2013-04-11]
	Updated devel/scmgit-base to 1.8.2.1 [adam 2013-04-11]
	Updated devel/scmgit-docs to 1.8.2.1 [adam 2013-04-11]
	Updated www/gitweb to 1.8.2.1 [adam 2013-04-11]
	Updated misc/getopt to 1.1.5 [adam 2013-04-11]
	Added textproc/aspell-ia version 0.50.1 [rodent 2013-04-11]
	Added textproc/aspell-id version 1.2.0 [rodent 2013-04-11]
	Added textproc/aspell-is version 0.51.1.0 [rodent 2013-04-11]
	Updated sysutils/duplicity to 0.6.21 [drochner 2013-04-11]
	Updated security/py-paramiko to 1.10.1 [drochner 2013-04-11]
	Added textproc/aspell-kn version 0.01.1 [rodent 2013-04-11]
	Added textproc/aspell-ku version 0.20.1 [rodent 2013-04-11]
	Added textproc/aspell-ky version 0.01.0 [rodent 2013-04-11]
	Added textproc/aspell-la version 20020503.0 [rodent 2013-04-11]
	Added textproc/aspell-lt version 1.3 [rodent 2013-04-11]
	Added textproc/aspell-lv version 0.5.5.1 [rodent 2013-04-11]
	Added textproc/aspell-mg version 0.03.0 [rodent 2013-04-11]
	Added textproc/aspell-mi version 0.50.0 [rodent 2013-04-11]
	Added textproc/aspell-mk version 0.50.0 [rodent 2013-04-11]
	Added textproc/aspell-ml version 0.03.1 [rodent 2013-04-11]
	Added textproc/aspell-mn version 0.06.2 [rodent 2013-04-12]
	Added textproc/aspell-mr version 0.10.0 [rodent 2013-04-12]
	Updated print/hplip to 3.13.4 [schnoebe 2013-04-12]
	Updated lang/python27 to 2.7.4 [adam 2013-04-12]
	Added textproc/aspell-mt version 0.50.0 [rodent 2013-04-12]
	Added textproc/aspell-nn version 0.50.1.1 [rodent 2013-04-12]
	Added textproc/aspell-ny version 0.01.0 [rodent 2013-04-12]
	Added textproc/aspell-or version 0.03.1 [rodent 2013-04-12]
	Added textproc/aspell-pa version 0.01.1 [rodent 2013-04-12]
	Added textproc/aspell-pt_BR version 20090702.0 [rodent 2013-04-12]
	Added textproc/aspell-qu version 0.02.0 [rodent 2013-04-12]
	Added textproc/aspell-rw version 0.50.0 [rodent 2013-04-12]
	Added textproc/aspell-sc version 1.0 [rodent 2013-04-12]
	Added textproc/aspell-sl version 0.50.0 [rodent 2013-04-12]
	Added textproc/aspell-sr version 0.02 [rodent 2013-04-12]
	Updated devel/libtool to 2.4.2 [joerg 2013-04-12]
	Updated devel/libtool-base to 2.4.2 [joerg 2013-04-12]
	Updated devel/libtool-info to 2.4.2 [joerg 2013-04-12]
	Updated devel/libltdl to 2.4.2 [joerg 2013-04-12]
	Updated devel/libebml to 1.3.0 [drochner 2013-04-12]
	Updated multimedia/libmatroska to 1.4.0 [drochner 2013-04-12]
	Updated multimedia/vlc2 to 2.0.6 [drochner 2013-04-12]
	Added devel/p5-Env-Path version 0.18 [schmonz 2013-04-12]
	Added devel/p5-Test-Dir version 1.014 [schmonz 2013-04-12]
	Added devel/p5-Test-File version 1.34 [schmonz 2013-04-12]
	Added devel/p5-Git-Wrapper version 0.028 [schmonz 2013-04-12]
	Added devel/p5-MouseX-NativeTraits version 1.09 [schmonz 2013-04-12]
	Added devel/p5-MouseX-Types-Path-Class version 0.07 [schmonz 2013-04-12]
	Added databases/p5-App-Sqitch version 0.961 [schmonz 2013-04-12]
	Updated lang/php53 to 5.3.24 [taca 2013-04-12]
	Updated lang/php54 to 5.4.14 [taca 2013-04-12]
	Updated x11/kde4-l10n-el to 4.10.2 [markd 2013-04-12]
	Updated x11/kde4-l10n-es to 4.10.2 [markd 2013-04-12]
	Updated x11/kde4-l10n-et to 4.10.2 [markd 2013-04-12]
	Updated x11/kde4-l10n-eu to 4.10.2 [markd 2013-04-12]
	Updated devel/tkdiff to 4.2 [shattered 2013-04-12]
	Updated lang/gcc-aux to 4.7.3 [marino 2013-04-12]
	Updated misc/libreoffice3-bin to 3.6.6 [ryoon 2013-04-13]
	Added misc/libreoffice4-bin version 4.0.2 [ryoon 2013-04-13]
	Updated lang/sun-jre7 to 7.0.17 [ryoon 2013-04-13]
	Updated lang/sun-jdk7 to 7.0.17 [ryoon 2013-04-13]
	Added textproc/aspell-lv version 0.5.5.1 [rodent 2013-04-13]
	Added textproc/aspell-sw version 0.50.0 [rodent 2013-04-13]
	Updated devel/nspr to 4.9.6 [ryoon 2013-04-13]
	Added textproc/aspell-ta version 20040424.1 [rodent 2013-04-13]
	Added textproc/aspell-tet version 0.1.1 [rodent 2013-04-13]
	Added textproc/aspell-tk version 0.01.0 [rodent 2013-04-13]
	Updated fonts/liberation-ttf to 2.00.1 [ryoon 2013-04-13]
	Added textproc/aspell-tl version 0.02.1 [rodent 2013-04-13]
	Added textproc/aspell-tn version 1.0.1.0 [rodent 2013-04-13]
	Updated databases/openldap to 2.4.35 [adam 2013-04-13]
	Updated databases/openldap-client to 2.4.35 [adam 2013-04-13]
	Updated databases/openldap-server to 2.4.35 [adam 2013-04-13]
	Updated databases/openldap-doc to 2.4.35 [adam 2013-04-13]
	Updated databases/openldap-cloak to 2.4.35 [adam 2013-04-13]
	Updated databases/openldap-nops to 2.4.35 [adam 2013-04-13]
	Updated databases/openldap-smbk5pwd to 2.4.35 [adam 2013-04-13]
	Added textproc/aspell-tr version 0.50.0 [rodent 2013-04-13]
	Added textproc/aspell-uz version 0.6.0 [rodent 2013-04-13]
	Added textproc/aspell-vi version 0.01.1.1 [rodent 2013-04-13]
	Added textproc/aspell-wa version 0.50.0 [rodent 2013-04-13]
	Added textproc/aspell-yi version 0.01.1.1 [rodent 2013-04-13]
	Updated devel/xulrunner to 20.0.1 [ryoon 2013-04-13]
	Updated www/firefox to 20.0.1 [ryoon 2013-04-13]
	Added textproc/aspell-zu version 0 [rodent 2013-04-13]
	Added textproc/aspell-de-alt version 2.1.1 [rodent 2013-04-13]
	Updated devel/subversion to 1.7.9 [ryoon 2013-04-13]
	Updated devel/subversion-base to 1.7.9 [ryoon 2013-04-13]
	Updated devel/p5-subversion to 1.7.9 [ryoon 2013-04-13]
	Updated devel/py-subversion to 1.7.9 [ryoon 2013-04-13]
	Updated devel/ruby-subversion to 1.7.9 [ryoon 2013-04-13]
	Updated devel/java-subversion to 1.7.9 [ryoon 2013-04-13]
	Updated www/ap2-subversion to 1.7.9 [ryoon 2013-04-13]
	Updated devel/subversion16 to 1.6.21 [ryoon 2013-04-13]
	Updated devel/subversion16-base to 1.6.21 [ryoon 2013-04-13]
	Updated net/youtube-dl to 20130411 [ryoon 2013-04-13]
	Updated textproc/aspell-fo to 0.4.2 [rodent 2013-04-13]
	Added databases/virtuoso version 6.1.6 [jaapb 2013-04-13]
	Updated devel/p5-Test-Class to 0.39 [wen 2013-04-13]
	Updated devel/p5-Moo to 1.001000 [wen 2013-04-13]
	Updated devel/py-pip to 1.3.1 [wen 2013-04-13]
	Added audio/vcf version 0.0.5 [rodent 2013-04-13]
	Updated x11/kde4-l10n-zh_TW to 4.10.2 [rodent 2013-04-13]
	Updated x11/kde4-l10n-zh_CN to 4.10.2 [rodent 2013-04-13]
	Updated x11/kde4-l10n-wa to 4.10.2 [rodent 2013-04-13]
	Updated x11/kde4-l10n-vi to 4.10.2 [rodent 2013-04-13]
	Updated x11/kde4-l10n-ug to 4.10.2 [rodent 2013-04-13]
	Updated misc/attica to 0.4.1 [markd 2013-04-13]
	Updated x11/kde4-l10n-fa to 4.10.2 [markd 2013-04-13]
	Updated x11/kde4-l10n-fi to 4.10.2 [markd 2013-04-13]
	Updated x11/kde4-l10n-fr to 4.10.2 [markd 2013-04-13]
	Updated x11/kde4-l10n-tr to 4.10.2 [rodent 2013-04-13]
	Updated x11/kde4-l10n-th to 4.10.2 [rodent 2013-04-13]
	Updated x11/kde4-l10n-tg to 4.10.2 [rodent 2013-04-13]
	Updated x11/kde4-l10n-sl to 4.10.2 [rodent 2013-04-13]
	Updated x11/kde4-l10n-uk to 4.10.2 [rodent 2013-04-14]
	Updated x11/kde4-l10n-si to 4.10.2 [rodent 2013-04-13]
	Updated x11/kde4-l10n-sk to 4.10.2 [rodent 2013-04-13]
	Updated x11/kde4-l10n-sr to 4.10.2 [rodent 2013-04-13]
	Updated x11/kde4-l10n-ro to 4.10.2 [rodent 2013-04-14]
	Updated x11/kde4-l10n-ru to 4.10.2 [rodent 2013-04-14]
	Updated math/py-scipy to 0.12.0 [markd 2013-04-14]
	Updated multimedia/libva to 1.1.0 [cheusov 2013-04-14]
	Added multimedia/libva-driver-vdpau version 0.7.4 [cheusov 2013-04-14]
	Updated x11/kde4-l10n-pt_BR to 4.10.2 [rodent 2013-04-14]
	Updated x11/kde4-l10n-pt to 4.10.2 [rodent 2013-04-14]
	Updated x11/kde4-l10n-pl to 4.10.2 [rodent 2013-04-14]
	Updated x11/kde4-l10n-pa to 4.10.2 [rodent 2013-04-14]
	Updated x11/kde4-l10n-nn to 4.10.2 [rodent 2013-04-14]
	Updated x11/kde4-l10n-nds to 4.10.2 [rodent 2013-04-14]
	Updated x11/kde4-l10n-nb to 4.10.2 [rodent 2013-04-14]
	Updated x11/kde4-l10n-lv to 4.10.2 [rodent 2013-04-14]
	Updated x11/kde4-l10n-lt to 4.10.2 [rodent 2013-04-14]
	Updated x11/kde4-l10n-km to 4.10.2 [rodent 2013-04-14]
	Updated x11/kde4-l10n-ko to 4.10.2 [rodent 2013-04-14]
	Updated x11/kde4-l10n-kk to 4.10.2 [rodent 2013-04-14]
	Updated x11/kde4-l10n-ja to 4.10.2 [rodent 2013-04-14]
	Updated x11/kde4-l10n-is to 4.10.2 [rodent 2013-04-14]
	Removed x11/kde4-l10n-id [rodent 2013-04-14]
	Updated x11/kde4-l10n-ia to 4.10.2 [rodent 2013-04-14]
	Added x11/kde4-l10n-mr version 4.10.2 [rodent 2013-04-14]
	Added x11/kde4-l10n-hi version 4.10.2 [rodent 2013-04-14]
	Updated x11/kde4-l10n-it to 4.10.2 [rodent 2013-04-14]
	Added x11/kde4-l10n-sv version 4.10.2 [rodent 2013-04-14]
	Updated x11/kde4-l10n-ga to 4.10.2 [markd 2013-04-14]
	Updated x11/kde4-l10n-gl to 4.10.2 [markd 2013-04-14]
	Updated x11/kde4-l10n-he to 4.10.2 [markd 2013-04-14]
	Updated x11/kde4-l10n-hr to 4.10.2 [markd 2013-04-14]
	Updated x11/kde4-l10n-hu to 4.10.2 [markd 2013-04-14]
	Added devel/p5-App-Prove-Plugin-ProgressBar version 0.01 [schmonz 2013-04-14]
	Updated www/curl to 7.30.0 [wiz 2013-04-14]
	Updated biology/py-mol to 1.5.0.1 [joerg 2013-04-14]
	Updated multimedia/farsight2 to 0.0.31 [wiz 2013-04-14]
	Added devel/p5-Term-ReadLine-TTYtter version 1.4 [obache 2013-04-15]
	Updated www/ap2-auth-mellon to 0.6.1 [manu 2013-04-15]
	Updated databases/sqlite3 to 3.7.16.2 [adam 2013-04-15]
	Updated databases/sqlite3-docs to 3.7.16.2 [adam 2013-04-15]
	Updated databases/sqlite3-tcl to 3.7.16.2 [adam 2013-04-15]
	Added fonts/ubuntu-fonts version 0.80 [uwe 2013-04-15]
	Updated databases/pgbuildfarm to 4.10 [gls 2013-04-15]
	Updated devel/bison to 2.7.1 [adam 2013-04-15]
	Updated parallel/hwloc to 1.7 [adam 2013-04-15]
	Updated parallel/mpi-ch to 3.0.3 [adam 2013-04-15]
	Updated graphics/png to 1.6.2beta01 [prlw1 2013-04-15]
	Updated geography/viking to 1.4.1 [gdt 2013-04-16]
	Updated math/isl to 0.11.2 [adam 2013-04-16]
	Updated converters/skf to 1.99.3 [obache 2013-04-16]
	Added games/pushover version 0.0.4 [wiz 2013-04-16]
	Updated math/glpk to 4.49 [adam 2013-04-16]
	Updated converters/help2man to 1.41.2 [adam 2013-04-16]
	Added devel/ucommon version 6.0.3 [rodent 2013-04-17]
	Added net/ccrtp version 2.0.5 [rodent 2013-04-17]
	Added net/libzrtpcpp version 2.3.2 [rodent 2013-04-17]
	Added converters/gbase version 0.5 [rodent 2013-04-17]
	Added misc/vimpager version 1.8.1 [obache 2013-04-17]
	Updated security/otptool to 1.1.6 [marino 2013-04-17]
	Updated multimedia/dvdauthor to 0.7.1 [drochner 2013-04-17]
	Updated multimedia/dvdstyler to 2.4.3 [drochner 2013-04-17]
	Updated multimedia/pitivi to 0.15.2 [drochner 2013-04-17]
	Updated www/nginx to 1.2.8 [imil 2013-04-17]
	Updated net/haproxy to 1.4.23 [morr 2013-04-17]
	Updated www/nginx-devel to 1.3.16 [imil 2013-04-17]
	Updated security/ipv6-toolkit to 1.3.4 [agc 2013-04-17]
	Updated devel/reposurgeon to 2.34 [wiz 2013-04-18]
	Updated www/p5-Net-HTTP to 6.06 [hiramatsu 2013-04-18]
	Updated pkgtools/x11-links to 0.74 [obache 2013-04-18]
	Updated www/mediawiki to 1.20.4 [wen 2013-04-18]
	Updated comms/asterisk18 to 1.8.21.0 [jnemeth 2013-04-18]
	Updated security/p5-Net-SSLeay to 1.54 [hiramatsu 2013-04-19]
	Updated www/nginx-devel to 1.3.16nb1 [imil 2013-04-19]
	Added sysutils/entr version 1.9 [wiz 2013-04-19]
	Updated devel/p5-FileHandle-Fmode to 0.13 [hiramatsu 2013-04-19]
	Updated security/p5-IO-Socket-SSL to 1.86 [hiramatsu 2013-04-19]
	Updated sysutils/xenkernel41 to 4.1.4nb2 [bouyer 2013-04-19]
	Updated sysutils/xentools41 to 4.1.4nb4 [bouyer 2013-04-19]
	Updated archivers/p5-Compress-Bzip2 to 2.15 [hiramatsu 2013-04-19]
	Updated devel/glib2 to 2.36.1 [prlw1 2013-04-19]
	Updated lang/sun-jre7 to 7.0.21 [ryoon 2013-04-20]
	Updated lang/sun-jdk7 to 7.0.21 [ryoon 2013-04-20]
	Updated databases/mysql55-client to 5.5.31 [adam 2013-04-20]
	Updated databases/mysql55-server to 5.5.31 [adam 2013-04-20]
	Updated databases/mysql56-client to 5.6.11 [adam 2013-04-20]
	Updated databases/mysql56-server to 5.6.11 [adam 2013-04-20]
	Updated lang/coq to 8.4pl2 [jaapb 2013-04-20]
	Added devel/cvs-fast-export version 0.3 [apb 2013-04-20]
	Updated devel/p5-Compress-Raw-Zlib to 2.060 [hiramatsu 2013-04-20]
	Updated textproc/p5-ack to 2.00 [wiz 2013-04-20]
	Updated www/php-owncloud to 5.0.5 [ryoon 2013-04-20]
	Added sysutils/libnotify07 version 0.7.5 [rodent 2013-04-21]
	Updated net/transmission-gtk to 2.77nb1 [rodent 2013-04-21]
	Updated net/avahi to 0.6.31nb7 [rodent 2013-04-21]
	Updated www/varnish to 3.0.3 [mspo 2013-04-21]
	Updated math/ruby-spreadsheet to 0.8.4 [obache 2013-04-21]
	Updated devel/p5-Module-Build to 0.40040 [hiramatsu 2013-04-21]
	Updated www/p5-CGI-Application to 4.50nb2 [hiramatsu 2013-04-21]
	Updated devel/ctemplate to 2.2 [rodent 2013-04-21]
	Updated security/p5-Mozilla-CA to 20130114 [ryoon 2013-04-21]
	Updated devel/p5-IPC-Run to 0.92 [ryoon 2013-04-21]
	Updated devel/p5-Getopt-Long to 2.39 [ryoon 2013-04-21]
	Added devel/p5-Pod-Usage version 1.61 [ryoon 2013-04-21]
	Added devel/p5-Log-Dispatch-Perl version 0.04 [ryoon 2013-04-21]
	Updated devel/reposurgeon to 2.35 [wiz 2013-04-21]
	Updated www/p5-libwww to 6.05 [ryoon 2013-04-21]
	Updated www/p5-Test-WWW-Mechanize to 1.44 [ryoon 2013-04-21]
	Updated www/p5-CGI-Emulate-PSGI to 0.15 [ryoon 2013-04-21]
	Updated www/p5-HTML-RewriteAttributes to 0.05 [ryoon 2013-04-21]
	Updated www/p5-Starlet to 0.18 [ryoon 2013-04-21]
	Updated devel/p5-CPAN-Meta to 2.130880 [ryoon 2013-04-21]
	Updated www/p5-Plack to 1.0023 [ryoon 2013-04-21]
	Added www/p5-Apache-LogFormat-Compiler version 0.12 [ryoon 2013-04-21]
	Added www/p5-HTML-Mason-PSGIHandler version 0.52 [ryoon 2013-04-21]
	Added www/p5-HTML-Quoted version 0.03 [ryoon 2013-04-21]
	Added textproc/ruby-text version 1.2.1 [obache 2013-04-21]
	Added www/p5-Plack-Middleware-Test-StashWarnings version 0.07 [ryoon 2013-04-21]
	Updated time/p5-Data-ICal to 0.19 [ryoon 2013-04-21]
	Updated mail/p5-MIME-tools to 5.504 [ryoon 2013-04-21]
	Added mail/p5-Test-Email version 0.07 [ryoon 2013-04-21]
	Updated databases/p5-DBD-mysql to 4.023 [ryoon 2013-04-21]
	Updated converters/p5-JSON to 2.57 [ryoon 2013-04-21]
	Updated textproc/p5-XML-RSS to 1.50 [ryoon 2013-04-21]
	Updated devel/ruby-gettext to 2.3.9 [obache 2013-04-21]
	Updated textproc/p5-Pod-Parser to 1.60 [ryoon 2013-04-21]
	Updated textproc/p5-Regexp-Common to 2013031301 [ryoon 2013-04-21]
	Added net/p5-Regexp-Common-net-CIDR version 0.02 [ryoon 2013-04-21]
	Added net/p5-Regexp-IPv6 version 0.03 [ryoon 2013-04-21]
	Updated converters/skf to 1.99.4 [obache 2013-04-21]
	Added devel/rt4 version 4.0.11 [ryoon 2013-04-21]
	Updated textproc/json-glib to 0.16.0 [rodent 2013-04-21]
	Updated graphics/darktable to 1.2 [wiz 2013-04-21]
	Updated net/flickcurl to 1.24 [wiz 2013-04-21]
	Updated x11/libdrm to 2.4.44 [wiz 2013-04-21]
	Updated games/gbrainy to 2.20 [wiz 2013-04-21]
	Updated fonts/harfbuzz to 0.9.16 [wiz 2013-04-21]
	Updated security/libgcrypt to 1.5.2 [wiz 2013-04-21]
	Updated devel/meld to 1.7.2 [wiz 2013-04-21]
	Updated mail/getmail to 4.40.0 [schmonz 2013-04-21]
	Added sysutils/cuisine version 0.5.8 [imil 2013-04-21]
	Updated devel/p5-Tree-DAG_Node to 1.11 [hiramatsu 2013-04-22]
	Removed multimedia/ns-flash [marino 2013-04-22]
	Added sysutils/monitoring version 0.9.5 [imil 2013-04-22]
	Updated editors/vim-share to 7.3.905 [morr 2013-04-22]
	Updated sysutils/libnotify07 to 0.7.5nb1 [obache 2013-04-22]
	Updated time/p5-DateTime-TimeZone to 1.59 [wen 2013-04-22]
	Added net/paris-traceroute version 0.92 [imil 2013-04-22]
	Updated multimedia/libdvbpsi to 1.1.0 [wiz 2013-04-23]
	Updated mail/getmail to 4.40.1 [schmonz 2013-04-23]
	Updated misc/py-anita to 1.30 [gson 2013-04-23]
	Updated security/clamav to 0.97.8 [adam 2013-04-23]
	Updated x11/xvidtune to 1.0.3 [shattered 2013-04-23]
	Updated security/mit-krb5 to 1.10.4nb1 [tez 2013-04-23]
	Updated textproc/hunspell-de to 20120607nb2 [rodent 2013-04-24]
	Moved textproc/ispell-base to textproc/ispell [rodent 2013-04-24]
	Moved textproc/ispell-british to ispell-en_GB [rodent 2013-04-24]
	Moved textproc/ispell-catalan to textproc/ispell-ca [rodent 2013-04-24]
	Updated textproc/ispell-emacs to 3.6nb4 [rodent 2013-04-24]
	Moved textproc/ispell-francais to ispell-fr [rodent 2013-04-24]
	Moved textproc/ispell-gaeilge to ispell-ga [rodent 2013-04-24]
	Moved textproc/ispell-german to ispell-de [rodent 2013-04-24]
	Moved textproc/ispell-polski to ispell-pl [rodent 2013-04-24]
	Moved textproc/ispell-romanian to ispell-ro [rodent 2013-04-24]
	Moved textproc/ispell-russian to ispell-ru [rodent 2013-04-24]
	Moved textproc/ispell-russian-io to ispell-ru-io [rodent 2013-04-24]
	Moved textproc/ispell-slovak to ispell-sk [rodent 2013-04-24]
	Moved textproc/ispell-spanish to ispell-es [rodent 2013-04-24]
	Moved textproc/ispell-svenska to ispell-sv [rodent 2013-04-24]
	Added textproc/ispell-lt version 1.3 [rodent 2013-04-24]
	Added textproc/ispell-ku version 0.20 [rodent 2013-04-24]
	Updated sysutils/cdrtools to 3.01alpha14 [wiz 2013-04-24]
	Updated print/ghostscript to 9.05nb4 [sbd 2013-04-24]