summaryrefslogtreecommitdiff
blob: e43f705fe17d7d3d55a550b55764eb42ea70992c (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
#####################################################################
# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.5121 2006/03/22 22:23:07 wolf31o2 Exp $
# When you add an entry to this file, add your name, the date, and an
# explanation of why something is getting masked
#
# NOTE: Please add your entry at the top!
#

##
##  This is an example
##
# <bangert@gentoo.org> (28 Jun 2002)
# psypete says these are broken and i am using the
# opporturnity to test the masking style :)
# <bangert@gentoo.org> (28 Jun 2002)
# psypete says these are not really broken - its just
# the v4l stuff that does not work
#=media-video/mplayer-0.90_pre5
#=media-video/mplayer-0.90_pre5-r1
##
##   End example
##

# Tavis Ormandy <taviso@gentoo.org> (21 Mar 2006)
# masked pending unresolved security issues #122407
games-arcade/xkobo

# Tavis Ormandy <taviso@gentoo.org> (21 Mar 2006)
# masked pending unresolved security issues #125902
games-roguelike/nethack
games-util/hearse

# Jeremy Huddleston <eradicator@gentoo.org> (21 Mar 2006)
# Development version of squirrelmail
>=mail-client/squirrelmail-1.5

# Dan Armak <danarmak@gentoo.org> (21 Mar 2006)
# Masked KDE 3.5.2 ebuilds. Note that 3.5.2 is not released upstream at time of writing -
# this is just for the packagers. After an upstream release the mask will still remain in effect
# until all the wrinkles are gone.
=kde-base/akode-3.5.2*
=kde-base/akregator-3.5.2*
=kde-base/amor-3.5.2*
=kde-base/ark-3.5.2*
=kde-base/arts-3.5.2*
=kde-base/artsplugin-akode-3.5.2*
=kde-base/artsplugin-audiofile-3.5.2*
=kde-base/artsplugin-mpeglib-3.5.2*
=kde-base/artsplugin-mpg123-3.5.2*
=kde-base/artsplugin-xine-3.5.2*
=kde-base/atlantik-3.5.2*
=kde-base/atlantikdesigner-3.5.2*
=kde-base/blinken-3.5.2*
=kde-base/certmanager-3.5.2*
=kde-base/cervisia-3.5.2*
=kde-base/dcopc-3.5.2*
=kde-base/dcopjava-3.5.2*
=kde-base/dcopperl-3.5.2*
=kde-base/dcoppython-3.5.2*
=kde-base/dcoprss-3.5.2*
=kde-base/drkonqi-3.5.2*
=kde-base/eyesapplet-3.5.2*
=kde-base/fifteenapplet-3.5.2*
=kde-base/juk-3.5.2*
=kde-base/kaboodle-3.5.2*
=kde-base/kaddressbook-3.5.2*
=kde-base/kaddressbook-plugins-3.5.2*
=kde-base/kalarm-3.5.2*
=kde-base/kalyptus-3.5.2*
=kde-base/kalzium-3.5.2*
=kde-base/kamera-3.5.2*
=kde-base/kanagram-3.5.2*
=kde-base/kandy-3.5.2*
=kde-base/kappfinder-3.5.2*
=kde-base/kapptemplate-3.5.2*
=kde-base/karm-3.5.2*
=kde-base/kasteroids-3.5.2*
=kde-base/kate-3.5.2*
=kde-base/kate-plugins-3.5.2*
=kde-base/katomic-3.5.2*
=kde-base/kaudiocreator-3.5.2*
=kde-base/kbabel-3.5.2*
=kde-base/kbackgammon-3.5.2*
=kde-base/kbattleship-3.5.2*
=kde-base/kblackbox-3.5.2*
=kde-base/kbounce-3.5.2*
=kde-base/kbruch-3.5.2*
=kde-base/kbstateapplet-3.5.2*
=kde-base/kbugbuster-3.5.2*
=kde-base/kcachegrind-3.5.2*
=kde-base/kcalc-3.5.2*
=kde-base/kcharselect-3.5.2*
=kde-base/kcheckpass-3.5.2*
=kde-base/kcminit-3.5.2*
=kde-base/kcoloredit-3.5.2*
=kde-base/kcontrol-3.5.2*
=kde-base/kcron-3.5.2*
=kde-base/kdat-3.5.2*
=kde-base/kdcop-3.5.2*
=kde-base/kde-3.5.2*
=kde-base/kde-i18n-3.5.2*
=kde-base/kde-meta-3.5.2*
=kde-base/kdeaccessibility-3.5.2*
=kde-base/kdeaccessibility-iconthemes-3.5.2*
=kde-base/kdeaccessibility-meta-3.5.2*
=kde-base/kdeaddons-3.5.2*
=kde-base/kdeaddons-docs-konq-plugins-3.5.2*
=kde-base/kdeaddons-kfile-plugins-3.5.2*
=kde-base/kdeaddons-meta-3.5.2*
=kde-base/kdeadmin-3.5.2*
=kde-base/kdeadmin-kfile-plugins-3.5.2*
=kde-base/kdeadmin-meta-3.5.2*
=kde-base/kdeartwork-3.5.2*
=kde-base/kdeartwork-emoticons-3.5.2*
=kde-base/kdeartwork-icewm-themes-3.5.2*
=kde-base/kdeartwork-iconthemes-3.5.2*
=kde-base/kdeartwork-kscreensaver-3.5.2*
=kde-base/kdeartwork-kwin-styles-3.5.2*
=kde-base/kdeartwork-kworldclock-3.5.2*
=kde-base/kdeartwork-meta-3.5.2*
=kde-base/kdeartwork-sounds-3.5.2*
=kde-base/kdeartwork-styles-3.5.2*
=kde-base/kdeartwork-wallpapers-3.5.2*
=kde-base/kdebase-3.5.2*
=kde-base/kdebase-data-3.5.2*
=kde-base/kdebase-kioslaves-3.5.2*
=kde-base/kdebase-meta-3.5.2*
=kde-base/kdebase-pam-3.5.2*
=kde-base/kdebase-startkde-3.5.2*
=kde-base/kdebindings-meta-3.5.2*
=kde-base/kdebugdialog-3.5.2*
=kde-base/kdeedu-3.5.2*
=kde-base/kdeedu-applnk-3.5.2*
=kde-base/kdeedu-meta-3.5.2*
=kde-base/kdegames-3.5.2*
=kde-base/kdegames-meta-3.5.2*
=kde-base/kdegraphics-3.5.2*
=kde-base/kdegraphics-kfile-plugins-3.5.2*
=kde-base/kdegraphics-meta-3.5.2*
=kde-base/kdejava-3.5.2*
=kde-base/kdelibs-3.5.2*
=kde-base/kdelirc-3.5.2*
=kde-base/kdemultimedia-3.5.2*
=kde-base/kdemultimedia-arts-3.5.2*
=kde-base/kdemultimedia-kappfinder-data-3.5.2*
=kde-base/kdemultimedia-kfile-plugins-3.5.2*
=kde-base/kdemultimedia-kioslaves-3.5.2*
=kde-base/kdemultimedia-meta-3.5.2*
=kde-base/kdenetwork-3.5.2*
=kde-base/kdenetwork-filesharing-3.5.2*
=kde-base/kdenetwork-kfile-plugins-3.5.2*
=kde-base/kdenetwork-meta-3.5.2*
=kde-base/kdepasswd-3.5.2*
=kde-base/kdepim-3.5.2*
=kde-base/kdepim-kioslaves-3.5.2*
=kde-base/kdepim-kresources-3.5.2*
=kde-base/kdepim-meta-3.5.2*
=kde-base/kdepim-wizards-3.5.2*
=kde-base/kdeprint-3.5.2*
=kde-base/kdesdk-3.5.2*
=kde-base/kdesdk-kfile-plugins-3.5.2*
=kde-base/kdesdk-kioslaves-3.5.2*
=kde-base/kdesdk-meta-3.5.2*
=kde-base/kdesdk-misc-3.5.2*
=kde-base/kdesdk-scripts-3.5.2*
=kde-base/kdesktop-3.5.2*
=kde-base/kdesu-3.5.2*
=kde-base/kdetoys-3.5.2*
=kde-base/kdetoys-meta-3.5.2*
=kde-base/kdeutils-3.5.2*
=kde-base/kdeutils-meta-3.5.2*
=kde-base/kdewebdev-3.5.2*
=kde-base/kdewebdev-meta-3.5.2*
=kde-base/kdf-3.5.2*
=kde-base/kdialog-3.5.2*
=kde-base/kdict-3.5.2*
=kde-base/kdm-3.5.2*
=kde-base/kdnssd-3.5.2*
=kde-base/kdvi-3.5.2*
=kde-base/kedit-3.5.2*
=kde-base/keduca-3.5.2*
=kde-base/kenolaba-3.5.2*
=kde-base/kfax-3.5.2*
=kde-base/kfilereplace-3.5.2*
=kde-base/kfind-3.5.2*
=kde-base/kfloppy-3.5.2*
=kde-base/kfouleggs-3.5.2*
=kde-base/kgamma-3.5.2*
=kde-base/kgeography-3.5.2*
=kde-base/kget-3.5.2*
=kde-base/kghostview-3.5.2*
=kde-base/kgoldrunner-3.5.2*
=kde-base/kgpg-3.5.2*
=kde-base/khangman-3.5.2*
=kde-base/khelpcenter-3.5.2*
=kde-base/khexedit-3.5.2*
=kde-base/khotkeys-3.5.2*
=kde-base/kicker-3.5.2*
=kde-base/kicker-applets-3.5.2*
=kde-base/kiconedit-3.5.2*
=kde-base/kig-3.5.2*
=kde-base/kimagemapeditor-3.5.2*
=kde-base/kitchensync-3.5.2*
=kde-base/kiten-3.5.2*
=kde-base/kjots-3.5.2*
=kde-base/kjsembed-3.5.2*
=kde-base/kjumpingcube-3.5.2*
=kde-base/klaptopdaemon-3.5.2*
=kde-base/klatin-3.5.2*
=kde-base/klettres-3.5.2*
=kde-base/klickety-3.5.2*
=kde-base/klines-3.5.2*
=kde-base/klinkstatus-3.5.2*
=kde-base/klipper-3.5.2*
=kde-base/kmag-3.5.2*
=kde-base/kmahjongg-3.5.2*
=kde-base/kmail-3.5.2*
=kde-base/kmailcvt-3.5.2*
=kde-base/kmathtool-3.5.2*
=kde-base/kmenuedit-3.5.2*
=kde-base/kmessedwords-3.5.2*
=kde-base/kmid-3.5.2*
=kde-base/kmilo-3.5.2*
=kde-base/kmines-3.5.2*
=kde-base/kmix-3.5.2*
=kde-base/kmoon-3.5.2*
=kde-base/kmousetool-3.5.2*
=kde-base/kmouth-3.5.2*
=kde-base/kmplot-3.5.2*
=kde-base/kmrml-3.5.2*
=kde-base/kmtrace-3.5.2*
=kde-base/knetattach-3.5.2*
=kde-base/knewsticker-3.5.2*
=kde-base/knewsticker-scripts-3.5.2*
=kde-base/knode-3.5.2*
=kde-base/knotes-3.5.2*
=kde-base/kode-3.5.2*
=kde-base/kodo-3.5.2*
=kde-base/kolf-3.5.2*
=kde-base/kolourpaint-3.5.2*
=kde-base/kommander-3.5.2*
=kde-base/kompare-3.5.2*
=kde-base/konq-plugins-3.5.2*
=kde-base/konqueror-3.5.2*
=kde-base/konqueror-akregator-3.5.2*
=kde-base/konquest-3.5.2*
=kde-base/konsole-3.5.2*
=kde-base/konsolekalendar-3.5.2*
=kde-base/kontact-3.5.2*
=kde-base/kontact-specialdates-3.5.2*
=kde-base/kooka-3.5.2*
=kde-base/kopete-3.5.2*
=kde-base/korganizer-3.5.2*
=kde-base/korn-3.5.2*
=kde-base/korundum-3.5.2*
=kde-base/kpackage-3.5.2*
=kde-base/kpager-3.5.2*
=kde-base/kpat-3.5.2*
=kde-base/kpdf-3.5.2*
=kde-base/kpercentage-3.5.2*
=kde-base/kpersonalizer-3.5.2*
=kde-base/kpf-3.5.2*
=kde-base/kpilot-3.5.2*
=kde-base/kpoker-3.5.2*
=kde-base/kpovmodeler-3.5.2*
=kde-base/kppp-3.5.2*
=kde-base/krdc-3.5.2*
=kde-base/kreadconfig-3.5.2*
=kde-base/krec-3.5.2*
=kde-base/kregexpeditor-3.5.2*
=kde-base/kreversi-3.5.2*
=kde-base/krfb-3.5.2*
=kde-base/kruler-3.5.2*
=kde-base/ksame-3.5.2*
=kde-base/ksayit-3.5.2*
=kde-base/kscd-3.5.2*
=kde-base/kscreensaver-3.5.2*
=kde-base/kshisen-3.5.2*
=kde-base/ksig-3.5.2*
=kde-base/ksim-3.5.2*
=kde-base/ksirc-3.5.2*
=kde-base/ksirtet-3.5.2*
=kde-base/ksmiletris-3.5.2*
=kde-base/ksmserver-3.5.2*
=kde-base/ksnake-3.5.2*
=kde-base/ksnapshot-3.5.2*
=kde-base/ksokoban-3.5.2*
=kde-base/kspaceduel-3.5.2*
=kde-base/ksplashml-3.5.2*
=kde-base/kspy-3.5.2*
=kde-base/kstars-3.5.2*
=kde-base/kstart-3.5.2*
=kde-base/ksvg-3.5.2*
=kde-base/ksync-3.5.2*
=kde-base/ksysguard-3.5.2*
=kde-base/ksystraycmd-3.5.2*
=kde-base/ksysv-3.5.2*
=kde-base/ktalkd-3.5.2*
=kde-base/kteatime-3.5.2*
=kde-base/ktimer-3.5.2*
=kde-base/ktip-3.5.2*
=kde-base/ktnef-3.5.2*
=kde-base/ktouch-3.5.2*
=kde-base/ktron-3.5.2*
=kde-base/kttsd-3.5.2*
=kde-base/ktuberling-3.5.2*
=kde-base/kturtle-3.5.2*
=kde-base/ktux-3.5.2*
=kde-base/kuickshow-3.5.2*
=kde-base/kuiviewer-3.5.2*
=kde-base/kuser-3.5.2*
=kde-base/kverbos-3.5.2*
=kde-base/kview-3.5.2*
=kde-base/kviewshell-3.5.2*
=kde-base/kvoctrain-3.5.2*
=kde-base/kwalletmanager-3.5.2*
=kde-base/kweather-3.5.2*
=kde-base/kwifimanager-3.5.2*
=kde-base/kwin-3.5.2*
=kde-base/kwin4-3.5.2*
=kde-base/kwordquiz-3.5.2*
=kde-base/kworldwatch-3.5.2*
=kde-base/kxkb-3.5.2*
=kde-base/kxsldbg-3.5.2*
=kde-base/libkcal-3.5.2*
=kde-base/libkcddb-3.5.2*
=kde-base/libkdeedu-3.5.2*
=kde-base/libkdegames-3.5.2*
=kde-base/libkdenetwork-3.5.2*
=kde-base/libkdepim-3.5.2*
=kde-base/libkholidays-3.5.2*
=kde-base/libkmime-3.5.2*
=kde-base/libkonq-3.5.2*
=kde-base/libkpgp-3.5.2*
=kde-base/libkpimexchange-3.5.2*
=kde-base/libkpimidentities-3.5.2*
=kde-base/libkscan-3.5.2*
=kde-base/libksieve-3.5.2*
=kde-base/libksirtet-3.5.2*
=kde-base/librss-3.5.2*
=kde-base/lilo-config-3.5.2*
=kde-base/lisa-3.5.2*
=kde-base/lskat-3.5.2*
=kde-base/mimelib-3.5.2*
=kde-base/mpeglib-3.5.2*
=kde-base/networkstatus-3.5.2*
=kde-base/noatun-3.5.2*
=kde-base/noatun-plugins-3.5.2*
=kde-base/nsplugins-3.5.2*
=kde-base/pykde-3.5.2*
=kde-base/qtjava-3.5.2*
=kde-base/qtruby-3.5.2*
=kde-base/qtsharp-3.5.2*
=kde-base/quanta-3.5.2*
=kde-base/renamedlg-audio-3.5.2*
=kde-base/renamedlg-images-3.5.2*
=kde-base/secpolicy-3.5.2*
=kde-base/smoke-3.5.2*
=kde-base/superkaramba-3.5.2*
=kde-base/umbrello-3.5.2*
=kde-base/unsermake-3.5.2*
=kde-base/vimpart-3.5.2*
=kde-base/xparts-3.5.2*

# Diego Pettenò <flameeyes@gentoo.org>
# Beta version
>=app-cdr/k9copy-1.0.4_beta

# Donnie Berkholz <spyderous@gentoo.org> 
# Keeping masked so ~arch/arch users move from 6.8.2 to 7.0
=x11-base/xorg-x11-6.9*

# Doug Goldstein <cardoe@gentoo.org> (18 Mar 2006)
# Masked for testing
>=sys-apps/hal-0.5.7

# Diego Pettenò <flameeyes@gentoo.org> (18 Mar 2006)
# Masked as it requires C++ to build the bindings
>=dev-libs/libcdio-0.77

# Chris Gianelloni <wolf31o2@gentoo.org> (17 Mar 2006)
# This is masked until a supporting kernel sources is released.
>=sys-fs/squashfs-tools-3.0

# Stefan Schweizer <genstef@gentoo.org> (16 Mar 2006)
# Only compiles with gcc-4.1.0
=app-portage/eix-0.5.3

# Joerg Bornkessel <hd_brummy@gentoo.org> (15 Mar 2006)
# Masked for testing
=media-plugins/vdr-admin-0.4.0

# Marcelo Goes <vanquirius@gentoo.org> (15 Mar 2006)
# Masked for bug 126256 (broken?)
=net-print/hplip-0.9.9

# Michael Sterrett <mr_bones_@gentoo.org> (12 Mar 2006)
# masked due to security issues: bug #125990
net-libs/enet

# Gustavo Felisberto <humpback@gentoo.org> (12 Mar 2006)
# Dirty fix that needs testing, see Changelog
=net-libs/obby-0.3.0-r1

# Petteri Räty <betelgeuse@gentoo.org> (12 Mar 2006)
# Because of changes in ebay our current versions do not work
# See bug #125813 for details.
<=app-misc/jbidwatcher-0.9.9

# John N. Laliberte <allanonjl@gentoo.org> (12 Mar 2006)
# GNOME 2.14 mask. You must follow instructions here:
# http://d.g.o/~allanonjl/gnome/2.13/adding.from.overlay.txt
# for adding files from our overlay.
#Most of these packages will break/not compile because of eclass
#changes that won't be made until every package is in the tree.
#Don't unmask these and don't file bugs for them
# Start GNOME 2.14 mask
>=gnome-base/gnome-2.14.0
>=gnome-base/gconf-2.13
>=gnome-base/orbit-2.13
>=gnome-extra/at-spi-1.7
>=dev-libs/atk-1.11
>=gnome-base/gail-1.8.10
>=dev-libs/glib-2.10
>=gnome-base/gnome-vfs-2.13
gnome-base/gnome-mount
>=dev-python/gnome-python-extras-2.13
>=dev-python/gnome-python-desktop-2.13
>=x11-libs/gtk+-2.8.14
>=dev-util/gtk-doc-1.5
>=gnome-base/libbonobo-2.13
>=gnome-base/libbonoboui-2.13
>=gnome-base/libgnome-2.13
>=gnome-base/libgnomeui-2.13
>=gnome-base/libgnomecanvas-2.13
>=x11-libs/pango-1.11
>=gnome-extra/bug-buddy-2.13
>=gnome-base/control-center-2.13
>=app-accessibility/dasher-3.99
>=gnome-extra/deskbar-applet-2.13
>=gnome-base/eel-2.13
>=net-im/ekiga-1.99
>=media-gfx/eog-2.13
>=www-client/epiphany-1.9
# do not forget about -extensions.
>=www-client/epiphany-extensions-1.9
>=mail-client/evolution-2.5
>=gnome-extra/evolution-data-server-1.5
>=gnome-extra/evolution-exchange-2.5
>=gnome-extra/evolution-webcal-2.5
>=gnome-extra/fast-user-switch-applet-2.13
>=app-arch/file-roller-2.13
>=gnome-extra/gcalctool-5.7
>=gnome-extra/gconf-editor-2.13
>=gnome-base/gdm-2.13
>=app-editors/gedit-2.13
>=gnome-base/gnome-applets-2.13
>=x11-themes/gnome-backgrounds-2.13
>=gnome-base/gnome-desktop-2.13
>=app-text/gnome-doc-utils-0.5
>=gnome-extra/gnome-games-2.13
>=x11-themes/gnome-icon-theme-2.14
>=gnome-base/gnome-keyring-0.4.8
>=gnome-extra/gnome-keyring-manager-2.14
>=gnome-extra/gnome-media-2.13
>=gnome-base/gnome-menus-2.13
>=net-analyzer/gnome-nettool-2.13
>=gnome-base/gnome-panel-2.13
>=gnome-base/gnome-session-2.14.0
>=gnome-extra/gnome-screensaver-2.13
# speech-tools and festival do not compile with gcc 4.1
>=app-accessibility/gnome-speech-0.3.10
>=gnome-extra/gnome-system-monitor-2.13
>=app-admin/gnome-system-tools-2.13
>=x11-terms/gnome-terminal-2.13
>=x11-themes/gnome-themes-2.13
>=gnome-extra/gnome2-user-docs-2.13
>=gnome-extra/gnome-utils-2.13
>=gnome-base/gnome-volume-manager-1.5.14
>=app-accessibility/gnopernicus-1.0
>=app-accessibility/gok-1.0.6
>=app-accessibility/gnome-mag-0.12.4
# remember, they are using the 2.6 series for 2.14
# so don't put this in the tree.
>=x11-themes/gtk-engines-2.7
>=gnome-extra/gtkhtml-3.9
>=x11-libs/gtksourceview-1.5
>=gnome-extra/gucharmap-1.5
>=gnome-base/libgtop-2.13
>=gnome-base/librsvg-2.14
>=net-libs/libsoup-2.2.91
>=x11-libs/libwnck-2.13
>=x11-wm/metacity-2.13
>=gnome-base/nautilus-2.13
>=gnome-extra/nautilus-cd-burner-2.13
>=media-sound/sound-juicer-2.13
>=media-video/totem-1.3
>=net-misc/vino-2.13
>=x11-libs/vte-0.11.20
>=gnome-extra/yelp-2.13
>=gnome-extra/zenity-2.13
>=dev-cpp/glibmm-2.9
>=dev-cpp/libxmlpp-2.13
>=dev-python/pyorbit-2.13
# End GNOME 2.14 mask

# Robin H. Johnson <robbat2@gentoo.org> (11 Mar 2006)
# Work-in-progress to clean this up
# TODO
# - properly fix lazy bindings
# - fix read-only stuff
# - seperate data files from binaries
# - fix crappy state of runnable only in source tree.
# - provide log output to /var/log somewhere intelligently
app-benchmarks/ltp

# Christian Parpart <trapni@gentoo.org> (09 Mar 2006)
# These are about to be removed
=www-apps/mediawiki-1.3*

# Markus Ullmann <jokey@gentoo.org> (08 Mar 2006)
# Masked for testing
media-sound/radiomixer

# Matthew Kennedy <mkennedy@gentoo.org> (06 Mar 2006)
# Masked due to maintainability issues.  See bug 116631.
dev-scheme/bigloo-lib

# Michael Sterrett <mr_bones_@gentoo.org> (06 Mar 2006)
# masked due to security issues: bug #125289
# unmask locally at your own risk.
games-fps/cube

# Luis Medinas <metalgod@gentoo.org> (06 Mar 2006)
# Mask banshee-0.10.7_p1 because it builds only 
# with gstreamer 0.10 support. Please test.
=media-sound/banshee-0.10.7_p1

# Joseph Jezak <josejx@gentoo.org> (05 Mar 2006)
# Please use IBM's Java instead on PPC
# Masked because there are better options and security issues with this version
=dev-java/blackdown-jre-1.3.1-r9

# Joseph Jezak <josejx@gentoo.org> (05 Mar 2006)
# Please use IBM's Java instead on PPC
# Masked because there are better options and security issues with this version
=dev-java/blackdown-jdk-1.3.1-r10

# Michael Stewart <vericgar@gentoo.org> (05 Mar 2006)
# Package has unsatisfied dependencies that aren't in the tree.
# Masking pending removal unless someone adds the needed 
# dependencies. See bug 106421
www-apache/mod_csv

# Markus Dittrich <markusle@gentoo.org> (05 Mar 2006)
# masked version bumped sci-libs/vtk for further testing
=sci-libs/vtk-5.0.0

# Stuart Herbert <stuart@gentoo.org> (05 Mar 2006)
# Upstream have pulled the binaries
=net-misc/nxserver-personal-1.3*
=net-misc/nxserver-personal-1.4*
=net-misc/nxserver-business-1.3*
=net-misc/nxserver-business-1.4*
=net-misc/nxserver-enterprise-1.3*
=net-misc/nxserver-enterprise-1.4*

# Robin H. Johnson <robbat2@gentoo.org> (11 Feb 2006)
# zlib interaction is badly broken. See bug #124733.
=dev-util/cvs-1.12.13

# Mark Loeser <halcy0n@gentoo.org> (02 Mar 2006)
# Will be in flux for the next week or so while we get issues straightened out
>=sys-devel/gcc-4.1.0

# Tom Payne <twp@gentoo.org> (02 Mar 2006)
# lua-5.1's build system is very primitive (no shared libraries for example)
# so upgrading to it will probably break lots of things that rely on lua
# import it into the tree anyhow for testing and development
=dev-lang/lua-5.1

# Martin Schlemmer <azarah@gentoo.org (01 Mar 2006)
# Have multiple issues, and 0.13 release have segfaults (fixed in svn, but
# _only_ after 0.13 release although the fact was known before the 0.13
# release).  Either way, no bugfix release was made, and upstream was very
# agro about the fact that I did not still want to add the 0.13 with known
# issues.  I dont want to maintain this anymore as working with upstream
# needs a lot of patience and diplomacy, and I do not have the energy any
# longer.  I will remove it from the tree if nobody steps up shortly to
# take over.
media-sound/bmpx

# Jory A. Pratt <anarchy@gentoo.org> (27 Feb 2006)
# Initial Import to tree, testing needed
www-client/seamonkey

# Chris White <chriswhite@gentoo.org> (26 Feb 2006)
# Dead upstream, breaks with recent mono versions
# No maintainer
media-video/mvideo

# Alec Warner <antarus@gentoo.org> (27 Feb 2006)
# Maintainer did not respond and dead upstrea; bug # 20201
x11-misc/bbapm

# Mark Loeser <halcy0n@gentoo.org> (25 Feb 2006)
# No maintainer and dead upstream; bug #122336
net-nds/gq

# John N. Laliberte <allanonjl@gentoo.org> (24 Feb 2006)
# old gtk+-1 edit
dev-util/glimmer

# Zaheer Abbas Merali <zaheerm@gentoo.org> (24 Feb 2006)
# masked due to runtime instability
=dev-libs/liboil-0.3.7

# Patrick McLean <chutzpah@gentoo.org> (23 Feb 2006)
# gnumeric-1.6.1 breaks with goffice-0.2.0 and gnumeric-1.6.2
# needs goffice-0.2.0, so masking both for now
>=app-office/gnumeric-1.6.2
>=x11-libs/goffice-0.2.0

# Diego Pettenò <flameeyes@gentoo.org> (21 Feb 2006)
# Pre-releases outside of KDE release cycle
>=net-im/kopete-0.12_alpha1

# Tony Vroon <chainsaw@gentoo.org> (18 Feb 2006)
# Masked pending removal - upstream has discontinued this project
# Your upgrade path is media-sound/audacious; removal of this package is planned on 04/03/2006
media-sound/beep-media-player
media-plugins/bmp-arts
media-plugins/bmp-crossfade
media-plugins/bmp-docklet
media-plugins/bmp-find
media-plugins/bmp-infopipe
media-plugins/bmp-itouch
media-plugins/bmp-libvisual
media-plugins/bmp-lirc
media-plugins/bmp-midi
media-plugins/bmp-mp4
media-plugins/bmp-musepack
media-plugins/bmp-rootvis
media-plugins/bmp-scrobbler
media-plugins/bmp-songchange
media-plugins/bmp-wma
media-plugins/dumb-bmp
media-plugins/modplugbmp
x11-themes/bmp-themes

# Doug Goldstein <cardoe@gentoo.org> (16 Feb 2006)
# Working on the next cairo/glitz release
>=media-libs/glitz-0.5.3

# Marcelo Goes <vanquirius@gentoo.org> (16 Feb 2006)
# Lacks needed functionality - someone volunteered to fix it
# See bug 117898
net-libs/libpcap-ringbuffer

# Guillaume Destuynder <kang@gentoo.org> (16 Feb 2006)
# Masked SVN ebuilds
=sys-kernel/rsbac-sources-2.6.99
=sys-kernel/rsbac-sources-2.4.99
=sys-apps/rsbac-admin-1.2.99

# Sandro Bonazzola <sanchan@gentoo.org> (13 Feb 2006)
# Masked for java package freeze.
dev-tinyos/tos-getenv

# Diego Pettenò <flameeyes@gentoo.org> (12 Feb 2006)
# Beta releases
=media-sound/amarok-1.4_beta*

# Robin H. Johnson <robbat2@gentoo.org> (11 Feb 2006)
# pending mailer-config
=mail-mta/nullmailer-1.00-r2
>=mail-mta/nullmailer-1.02-r2

# Carsten Lohrke <carlo@gentoo.org> (09 Feb 2006)
# KOffice pre-releases
>=app-office/karbon-1.4.9
>=app-office/kchart-1.4.9
>=app-office/kexi-1.4.9
>=app-office/kformula-1.4.9
>=app-office/kivio-1.4.9
>=app-office/koffice-1.4.9
>=app-office/koffice-data-1.4.9
>=app-office/koffice-libs-1.4.9
>=app-office/koffice-meta-1.4.9
>=app-office/koshell-1.4.9
>=app-office/kplato-1.4.9
>=app-office/kpresenter-1.4.9
>=app-office/krita-1.4.9
>=app-office/kspread-1.4.9
>=app-office/kugar-1.4.9
>=app-office/kword-1.4.9

# Donnie Berkholz <spyderous@gentoo.org> (07 Feb 2006)
# Masking for netmon herd -- can't depend on masked db-4.3
# if you're not masked
net-analyzer/nessus-bin

# Renat Lumpau <rl03@gentoo.org> (06 Feb 2006)
# needs testing
=www-misc/zoneminder-1.22.0

# Tavis Ormandy <taviso@gentoo.org> (06 Feb 2006)
# deprecated in favour of app-shells/tcsh
app-shells/csh

# Stefan Schweizer <genstef@gentoo.org> (06 Feb 2006)
# deprecated - please use net-print/hplip now
net-print/hpoj

# Joe McCann <joem@gentoo.org> (06 Feb 2006)
#Mask version with optional gstreamer-0.10 support
#since gstreamer-0.10 is still masked
=media-sound/rhythmbox-0.9.3.1_p1

# Marcelo Goes <vanquirius@gentoo.org> (06 Feb 2006)
# Mask tcpreplay beta branch. If you want it, unmask it.
>=net-analyzer/tcpreplay-3.0_beta1

# Andrej Kacian <andrej@kacian.sk> (04 Feb 2006)
# Mask for testing, there has been a complete code layout change and at least
# latest obexftp doesn't build with this version.
# Added obexftp. 
# Bug #122262 has been opened for this openobex situation. (09 Feb 2006)
>=dev-libs/openobex-1.1
>=app-mobilephone/obexftp-0.19

# Michael Stewart <vericgar@gentoo.org> (03 Feb 2006)
# Mask for testing of new version
>=net-www/apache-2.2.0
>=dev-libs/apr-1.0.0
>=dev-libs/apr-util-1.0.0

# Michael Sterrett <mr_bones_@gentoo.org> (31 Jan 2006)
# multiplayer is broken
=games-strategy/glob-0.8.18

# Michael Sterrett <mr_bones_@gentoo.org> (28 Jan 2006)
# Unmaintainable.
games-rpg/vegastrike

# Robin H. Johnson <robbat2@gentoo.org> (25 Jan 2006)
# app-text/poppler is replacing pdftohtml because of security concerns. 
# Please unmerge app-text/pdftohtml and emerge app-text/poppler instead.
# app-text/poppler provides all of the same functionailty and more.
# See bugs #115789 and #117481.
app-text/pdftohtml

# Luca Barbato <lu_zero@gentoo.org> (25 Jan 2006)
# untested
=app-emulation/bochs-2.2.5-r1

# Mike Frysinger <vapier@gentoo.org> (25 Jan 2006)
# Added for fun, but incomplete atm
>=sys-apps/util-linux-2.13_pre0

# George Shapovalov (19 Jan 2006)
# older versions have problems, leaving only the last in series, 
# now that 3.45 is stable
<=dev-lang/gnat-3.15p-r4

# George Shapovalov (19 Jan 2006)
# Matching version of gcc is no longer in portage.
# New gpc I issued recently avoids this problem (no gcc dep anymore).
# Older versions will be removed upon stabilization of gpc-20051104
<=dev-lang/gpc-20050331

# Chris White <chriswhite@gentoo.org> (18 Jan 2006)
# Package depends on package.mask sys-libs/db
dev-libs/ice
dev-cpp/ice

# Thierry Carrez <koon@gentoo.org> (18 Jan 2006)
# Package contains insecure tmpfile handling, bug #108072
app-cdr/cdrx

# Michael Imhof <tantive@gentoo.org> (17 Jan 2006)
# masked pending removal - upstream discontinued this project
app-sci/zetagrid

# George Shapovalov <george@gentoo.org> (17 Jan 2006)
# masked for testing - initial commit of the eclass and split gnat
dev-lang/gnat-gcc
dev-lang/gnat-gpl

# Marius Mauch <genone@gentoo.org> (17 Jan 2006)
# Development version
>=dev-util/gambas-1.9

# Tom Payne <twp@gentoo.org> (15 Jan 2006)
# sys-fs/convertfs is broken. Masked pending likely removal. Bug # 107635.
sys-fs/convertfs

# Benjamin Smee <strerror@gentoo.org> (14 Jan 2006)
# Masking openldap 2.3.x for testing
>net-nds/openldap-2.3

# Matthew Kennedy <mkennedy@gentoo.org> (13 Jan 2006)
# OPEN ... :IF-EXISTS :APPEND causes data loss (see: 
# http://sourceforge.net/tracker/index.php?func=detail&aid=1399709&group_id=1355&atid=101355 
# and http://bugs.gentoo.org/show_bug.cgi?id=118849)
=dev-lisp/clisp-2.37

# Diego Pettenò <flameeyes@gentoo.org> (13 Jan 2006)
# Vulnerable to security issue. See bug #115760
media-video/xmovie

# Marcelo Goes <vanquirius@gentoo.org> (12 Jan 2006)
# Mask development version
=media-gfx/swftools-0.7.1.20051207

# Diego Pettenò <flameeyes@gentoo.org> (12 Jan 2006)
# Nightlie, masked while testing
=media-sound/mt-daapd-0.3.0_pre*

# Alexandre Buisse <nattfodd@gentoo.org> (12 Jan 2006)
# Masked for testing purposes
dev-tex/mpm

# Doug Goldstein <cardoe@gentoo.org> (10 Jan 2006)
# masked for testing of the snapshot
=media-tv/mythtv-0.19_pre8642
=www-apps/mythweb-0.19_pre8642
=media-plugins/mythdvd-0.19_pre8642
=media-plugins/mythvideo-0.19_pre8642

# Tuan Van <langthang@gentoo.org> (10 Jan 2006)
# Testing release.
>=net-mail/cyrus-imapd-2.3
>=net-mail/cyrus-imap-admin-2.3

# Brian Harring <ferringb@gentoo.org>
# Masking following packages due to ungif removal- bug 118386
# mainly masked due to broken dep, waiting for maintainer comments.
<gnustep-base/gnustep-gui-0.9.4-r2
<gnustep-base/gnustep-back-art-0.9.5

# John N. Laliberte <allanonjl@gentoo.org> (08 Jan 2006)
# mask until ia64 tests libgda
>=dev-python/gnome-python-extras-2.12.1

# Chris Gianelloni <wolf31o2@gentoo.org> (05 Jan 2006)
# Masked due to problems with vmware-nat.  This package is still safe to use if
# you do not use NAT, but rather use bridged networking.  This mask will be
# removed if/when a patch is made available to this code.  See bug #116238 for
# more information.
<=app-emulation/vmware-workstation-3.2.1.2242-r7

# Daniel Black <dragonheart@gentoo.org> (03 Jan 2006)
# masked due to bad dependencies and possible TEXTREL
=net-libs/gnutls-1.2.9-r1
=net-libs/gnutls-1.2.10-r1

# Luca Barbato <lu_zero@gentoo.org> (02 Jan 2006)
# masked for testing
=media-video/mplayer-1.0.20060102

# Stefan Schweizer <genstef@gentoo.org> (01 Jan 2006)
# misdn mqueue branch - experimental but with udev support
>=net-dialup/misdn-20051228
net-dialup/misdnuser
net-misc/asterisk-chan_misdn

# <plasmaroo@gentoo.org> (30 Dec 2005)
# Lots of outstanding security bugs, no updates from upstream yet.
sys-kernel/openblocks-sources

# <robbat2@gentoo.org> (26 Dec 2005)
# Fails HMAC test on Pentium-M systems
# HMAC-Test: Failed
# Expecting: 0x750c783e6ab0b503eaa86e310a5db738
# Got: 0x75 c783e6affffffb0ffffffb5 3ffffffeaffffffa86e31 a5dffffffb738
# FAIL: hmac_test
# Upstream bug filed:
# http://sourceforge.net/tracker/index.php?func=detail&aid=1390988&group_id=4286&atid=104286
=app-crypt/mhash-0.9.3*

# Chris Bainbridge <chrb@gentoo.org> (26 Dec 2005)
# Security problems. Tim Yamin provided a list of around 25-30 security related
# bugs affecting pre-2.6.14 kernel. Xen upstream is expected to move to 2.6.14
# soon.
<sys-kernel/xen-sources-2.6.14

# Chris Bainbridge <chrb@gentoo.org> (23 Feb 2006)
# This is a snapshot from the xen-unstable tree. If you find any bugs in Xen
# itself, please report them to bugzilla.xensource.com. Only report bugs to
# bugs.gentoo.org if they are related to the ebuild or otherwise Gentoo
# spefific. Any bug reports to the Gentoo bugzilla that are not Gentoo specific
# will be resolved as "UPSTREAM".
>=app-emulation/xen-8885

# Chris Bainbridge <chrb@gentoo.org> (23 Feb 2006)
# This is a snapshot from the xen-unstable tree. If you find any bugs in Xen
# itself, please report them to bugzilla.xensource.com. Only report bugs to
# bugs.gentoo.org if they are related to the ebuild or otherwise Gentoo
# spefific. Any bug reports to the Gentoo bugzilla that are not Gentoo specific
# will be resolved as "UPSTREAM".
>=sys-kernel/xen-sources-2.6.16_rc3-r1

# Paul Varner <fuzzyray@gentoo.org> (21 Dec 2005)
# porthole-0.5.0 being added to the tree for testing. 
=app-portage/porthole-0.5.0*

# Markus Dittrich <markusle@gentoo.org> (21 Dec 2005)
# mask mupad until fixed by upstream, since the binaries 
# contain insecure runpaths, bug #81745, #115892
sci-mathematics/mupad

# Luca Longinotti <chtekk@gentoo.org> (21 Dec 2005)
# Doesn't work reliably with new PDO 1.0.X and is
# in need of new upstream maintainers
dev-php5/pecl-pdo-firebird

# Tim Yamin <plasmaroo@gentoo.org> (20 Dec 2005)
# Probably broken and dangerous. Combustible if brought near PPC or PPC64
# machines so I don't recommend trying unless on those platforms unless
# you've got spare time to help me fix things.
>=sys-kernel/linux-headers-2.6.15_rc6

# Kathryn Kulick <gothgirl@gentoo.org> (20 Dec 2005)
# Gaim 2.0.0 beta1 plugins.
>=x11-plugins/gaim-encryption-3.0_beta1
>=x11-plugins/slashexec-1.1_beta1
>=x11-plugins/gaim-xmms-remote-1.9_beta1
>=x11-plugins/guifications-2.13_beta1

# Kathryn Kulick <gothgirl@gentoo.org> (19 Dec 2005)
# Gaim 2.0.0 beta1 added to tree for testing.
>=net-im/gaim-2.0.0_beta1

# Chris Gianelloni <wolf31o2@gentoo.org> (19 Dec 2005)
# This is the Gentoo Linux Installer.  This is currently masked because it can
# lead to some serious breakages on a machine.  If you are not developing on
# this package, I would strongly recommend against using it.  If you break your
# system with this, you're on your own.  You have been warned.
sys-apps/gli

# Chris Gianelloni <wolf31o2@gentoo.org> (19 Dec 2005)
# This version is looking for something that is not existing in older patch
# files, causing patching to fail.  I am currently masking this version and
# most likely will be removing it in the near future.
=games-util/loki_patch-20051209

# Luca Barbato <lu_zero@gentoo.org> (18 Dec 2005)
# avifile isn't mantained anymore and doesn't build with the
# current ffmpeg, removing it and packages alike

media-gfx/zphoto
media-tv/vcr
media-video/avifile

# Stefan Knoblich <stkn@gentoo.org> (17 Dec 2005)
# Bug #115798
>=net-misc/asterisk-1.2.0
>=net-libs/libpri-1.2.0
>=net-misc/zaptel-1.2.0

# Ryan Phillips <rphillips@gentoo.org> (12 Dec 2005)
# Luabind doesn't compile with the latest stable boost, and no updates
# for awhile.
dev-libs/luabind

# Roy Marples <uberlord@gentoo.org> (09 Dec 2005)
# Masked for testing
=net-misc/dhcp-3.0.4_beta*

# Markus Dittrich <markusle@gentoo.org> (07 Dec 2005)
# This revision has the TDHF code enabled; need to
# wait for g77 fix to propagate into new gcc patch set
# before unmasking this version (see bug #114367)
=sci-chemistry/gamess-05272005.3-r2

# Francesco Riosa <vivo@gentoo.org> (07 Dec 2005)
>=dev-db/mysql-5.1

# Donnie Berkholz <spyderous@gentoo.org> (04 Dec 2005)
# Testing -- particularly the reconfig script
# and reinstalling without destroying the configuration
sci-chemistry/webmo

# Marcelo Goes <vanquirius@gentoo.org> (03 Dec 2005)
# Seems to be broken - see bug #75681
=media-gfx/ufraw-0.6

# Michael Sterrett <mr_bones_@gentoo.org> (03 Dec 2005)
# Doesn't work with newer allegro, buggy, no release since '02
games-emulation/game-launcher

# Chris Gianelloni <wolf31o2@gentoo.org> (02 Dec 2005)
# Masked because it is completely broken
=dev-util/catalyst-2.0_rc3

# Diego Pettenò <flameeyes@gentoo.org> (02 Dec 2005)
# Masked because of bug #105378
net-wireless/kwirelessmonitor

# Diego Pettenò <flameeyes@gentoo.org> (02 Dec 2005)
# API/ABI changes, breaks at least latest amaroK.
>=media-libs/tunepimp-0.4.0

# J. Alberto Suarez <bass@gentoo.org> (27 Nov 2005)
# Pending removal, will be substituted by ebookmerge
app-doc/ebook-autoconf
app-doc/ebook-automake
app-doc/ebook-binutils
app-doc/ebook-bonobo
app-doc/ebook-cpp
app-doc/ebook-cvs
app-doc/ebook-diff
app-doc/ebook-find
app-doc/ebook-flex
app-doc/ebook-g77
app-doc/ebook-gawk
app-doc/ebook-gcc
app-doc/ebook-gconf
app-doc/ebook-gdk
app-doc/ebook-gdk-pixbuf
app-doc/ebook-ggad
app-doc/ebook-glibc
app-doc/ebook-gtk
app-doc/ebook-libglade
app-doc/ebook-libgnome
app-doc/ebook-libgnomeui
app-doc/ebook-make
app-doc/ebook-pango
app-doc/ebook-pygtk
app-doc/ebook-python
app-doc/ebook-sed
app-doc/ebook-zvt

# Wolfram Schlich <wschlich@gentoo.org> (26 Nov 2005)
# has security issues and will be removed from portage
# due to upstream behaviour, see bug #106497
app-backup/mondo-rescue

# Mark Loeser <halcy0n@gentoo.org> (25 Nov 2005)
# broken with boost >=1.32, no upstream release since 2003 (bug #113543)
dev-libs/luabind

# Marcin Kryczek <mkay@gentoo.org> (22 Nov 2005)
# This is for testing only. Do NOT report bugs against that version
# unless you're sure they're gentoo-specific or they're already
# fixed by upstream
=net-im/kadu-0.5*

# Stuart Herbert <stuart@gentoo.org> (20 Nov 2005)
# Masked pending removal from Portage
www-apps/phpgroupware

# Stefan Knoblich <stkn@gentoo.org> (18 Nov 2005)
# Asterisk-1.2.0 is up-to-date, mask packages that need testing
# or aren't ready yet, e.g. Sangoma Wanpipe drivers.
>=net-libs/osptoolkit-3.3.1
>=net-misc/wanpipe-2.3.2_p4
>=net-misc/asterisk-oh323-0.7.3
>=net-misc/asterisk-addons-1.2.0_beta1
>=net-misc/asterisk-sounds-1.2.0_beta1

# Chris Gianelloni <wolf31o2@gentoo.org> (16 Nov 2005)
# Masking this quake4-bin version because 1.0.5 is actually newer.  I am sure
# that this will cause some people some confusion, which is why this is here.
>=games-fps/quake4-bin-1.0.2147.12

# Saleem Abdulrasool <compnerd@gentoo.org> (07 Nov 2005)
# Masking Nini for initial import
=dev-dotnet/nini-1.0.0

# Alastair Tse <liquidx@gentoo.org> (06 Nov 2005)
# Development version of psycopg. Not compatible with other psycopg
# dependent libraries and applications unless ported.
>=dev-python/psycopg-1.99

# Michael Sterrett <mr_bones_@gentoo.org> (04 Nov 2005)
# Security masked due to remote exploitable bugs (bug #111421)
games-strategy/scorched3d

# Tom Payne <twp@gentoo.org> (18 Sep 2005)
# Previous SCons upgrade broke lots of packages, so latest version is getting some testing first!
=dev-util/scons-0.96.91

# Diego Pettenò <flameeyes@gentoo.org> (30 Oct 2005)
# Crashes on startup on my box, needs testing.
=media-sound/noteedit-2.8.0

# Tony Vroon <chainsaw@gentoo.org> (29 Oct 2005)
# This version of openal uses an external version of alut, as it is no longer
# bundled, bringing Linux more in line with other operating systems.  What this
# means is that this version of openal and alut need to remain masked until all
# packages that use alut are fixed for the split libraries.
>=media-libs/openal-20051024
media-libs/alut

# Thomas Matthijs <axxo@gentoo.org> (23 Oct 2005)
# Preview release
=www-client/opera-9*

# Aron Griffis <agriffis@gentoo.org> (20 Oct 2005)
# New version of NX stuff, masked for testing
>=net-misc/nx-x11-1.5
>=net-misc/nxclient-1.5
>=net-misc/nxcomp-1.5
>=net-misc/nxproxy-1.5
>=net-misc/nxserver-freenx-1.5
>=net-misc/nxssh-1.5

# Chris White <chriswhite@gentoo.org> (19 Oct 2005)
# masking swig 1.3.27 until it gets proper testing
# to compile with other packages.
=dev-lang/swig-1.3.27

# Damien Krotkine <dams@gentoo.org> (19 Oct 2005)
# broken versions, no install rul in Makefile
=app-portage/flagedit-0.0.3
=app-portage/flagedit-0.0.4

# Matthew Kennedy <mkennedy@gentoo.org> (18 Oct 2005)
# Preparation for removal
dev-lisp/cmucl-source

# Michael Sterrett <mr_bones_@gentoo.org> (17 Oct 2005)
# Buggy and seemingly not maintained upstream
# Using media-gfx/gqview is a much better choice.
media-gfx/gtksee

# Sven Wegener <swegener@gentoo.org> (13 Oct 2005)
# CVS Development Snapshot
=net-irc/xchat-2.5.0*

# Akinori Hattori <hattya@gentoo.org> (06 Oct 2005)
# development branch
=mail-client/sylpheed-2.1*

# Marcelo Goes <vanquirius@gentoo.org> (01 Oct 2005)
# Masking because of bug 107240 (exporting PDF/Latex)
=media-gfx/xfig-3.2.5_alpha5

# Saleem Abdulrasool <compnerd@gentoo.org> (01 Oct 2005)
# Adding partial eclipse builds for jface
dev-java/eclipse-osgi
dev-java/eclipse-core
dev-java/eclipse-jface

# Marcin Kryczek <mkay@gentoo.org> (25 Sep 2005)
# This project seems to be dead. The last "stable" (and broken) version
# was released 1,5 year ago and it's CVS is empty. I'll remove it from
# the tree soon
net-p2p/dc-gui

# Jeremy Huddleston <eradicator@gentoo.org> (24 Sep 2005)
# Still in development
app-admin/eselect-compiler
>=sys-devel/gcc-config-2.0.0_alpha1

# Jeremy Huddleston <eradicator@gentoo.org> (24 Sep 2005)
# Not quite ready for prime time...
www-apps/open-xchange

# Chris Gianelloni <wolf31o2@gentoo.org> (20 Sep 2005)
# This needs some testing before I unleash it on the world.
games-rpg/nwn-data
=games-rpg/nwn-1.66-r1

# Chris Gianelloni <wolf31o2@gentoo.org> (19 Sep 2005)
# Adding new GGZ ebuilds to portage.  I am masking them all
# here until they can all be added and will unmask them all
# at once since some of them need a little work.
>=dev-games/ggz-client-libs-0.0.11
>=dev-games/libggz-0.0.11
>=games-board/ggz-gnome-client-0.0.11
>=games-board/ggz-gtk-client-0.0.11
>=games-board/ggz-gtk-games-0.0.11
>=games-board/ggz-kde-client-0.0.11
>=games-board/ggz-kde-games-0.0.11
>=games-board/ggz-sdl-games-0.0.11
>=games-board/ggz-txt-client-0.0.11

# Gregorio Guidi <greg_g@gentoo.org> (19 Sep 2005)
# Qt-3.3.5 causes a lot of compilation failures.
# See bug #106402.
~x11-libs/qt-3.3.5
~x11-libs/qt-embedded-3.3.5
~dev-db/qt-unixODBC-3.3.5

# Tom Payne <twp@gentoo.org> (18 Sep 2005)
# Causes problems with several packages. See bug # 99243 and bug # 102301.
=dev-util/scons-0.96.90

# Bryan Østergaard <kloeri@gentoo.org> (12 Sep 2005)
# Masked for security reasons, bug 103524
dev-python/py2play
games-action/slune

# Joshua Baergen <joshuabaergen@gentoo.org> (9 Sep 2005)
# Masking for removal
x11-base/y-windows

# Joshua Baergen <joshuabaergen@gentoo.org> (8 Sep 2005)
# Only tested against modular x
# Note that version 0.9.0 should probably stay masked due to old
# translations.
x11-misc/driconf

# Gustavo Felisberto <humpback@gentoo.org> (03 Sep 2005)
# Beta code
=net-im/psi-0.10_rc2

# Christian Zoffoli <xmerlin@gentoo.org> (1 Sep 2005)
# Masked as this version has a bug
=sys-cluster/drbd-0.7.12
=sys-cluster/drbd-0.7.13

# Brandon Low <lostlogic@lostlogicx.com> (29 Aug 2005)
# Masked because it needs java 1.5
net-im/jive-messenger
net-im/wildfire

# Luis F. Araujo <araujo@gentoo.org> (24 Aug 2005)
# This is a binary package version.
# Masked for more testing.
=dev-lang/smalltalkx-5.2.6

# vapier@gentoo.org (23 Aug 2005)
# Mask since it breaks wings #97798
=dev-lang/erlang-10.2.6

# Diego Pettenò <flameeyes@gentoo.org> (22 Aug 2005)
# Pre-release heavy patched
=media-video/avidemux-2.1_pre*

# Diego Pettenò <flameeyes@gentoo.org> (18 August 2005)
# Toxine needs to be verified with upstream for a few issues.
media-video/toxine

# Donnie Berkholz <spyderous@gentoo.org> (07 Aug 2005)
# Modularized X, upstream release candidates
app-doc/xorg-docs
app-doc/xorg-sgml-doctools
media-fonts/encodings
media-fonts/font-adobe-100dpi
media-fonts/font-adobe-75dpi
media-fonts/font-adobe-utopia-100dpi
media-fonts/font-adobe-utopia-75dpi
media-fonts/font-adobe-utopia-type1
media-fonts/font-alias
media-fonts/font-arabic-misc
media-fonts/font-bh-100dpi
media-fonts/font-bh-75dpi
media-fonts/font-bh-lucidatypewriter-100dpi
media-fonts/font-bh-lucidatypewriter-75dpi
media-fonts/font-bh-ttf
media-fonts/font-bh-type1
media-fonts/font-bitstream-100dpi
media-fonts/font-bitstream-75dpi
media-fonts/font-bitstream-speedo
media-fonts/font-bitstream-type1
media-fonts/font-cronyx-cyrillic
media-fonts/font-cursor-misc
media-fonts/font-daewoo-misc
media-fonts/font-dec-misc
media-fonts/font-ibm-type1
media-fonts/font-isas-misc
media-fonts/font-jis-misc
media-fonts/font-micro-misc
media-fonts/font-misc-cyrillic
media-fonts/font-misc-ethiopic
media-fonts/font-misc-meltho
media-fonts/font-misc-misc
media-fonts/font-mutt-misc
media-fonts/font-schumacher-misc
media-fonts/font-screen-cyrillic
media-fonts/font-sony-misc
media-fonts/font-sun-misc
media-fonts/font-util
media-fonts/font-winitzki-cyrillic
media-fonts/font-xfree86-type1
media-libs/mesa
>=virtual/x11-7
x11-apps/appres
x11-apps/bdftopcf
x11-apps/beforelight
x11-apps/bitmap
x11-apps/editres
x11-apps/fonttosfnt
x11-apps/fslsfonts
x11-apps/fstobdf
x11-apps/iceauth
x11-apps/ico
x11-apps/lbxproxy
x11-apps/listres
x11-apps/luit
x11-apps/mesa-progs
x11-apps/mkcfm
x11-apps/mkfontdir
x11-apps/mkfontscale
x11-apps/oclock
x11-apps/proxymngr
x11-apps/rgb
x11-apps/rstart
x11-apps/scripts
x11-apps/sessreg
x11-apps/setxkbmap
x11-apps/showfont
x11-apps/smproxy
x11-wm/twm
x11-apps/viewres
x11-apps/x11perf
x11-apps/xauth
x11-apps/xbiff
x11-apps/xcalc
x11-apps/xclipboard
x11-apps/xclock
x11-apps/xcmsdb
x11-apps/xconsole
x11-apps/xcursorgen
x11-apps/xdbedizzy
x11-apps/xditview
x11-apps/xdm
x11-apps/xdpyinfo
x11-apps/xdriinfo
x11-apps/xedit
x11-apps/xev
x11-apps/xeyes
x11-apps/xf86dga
x11-apps/xfd
x11-apps/xfindproxy
x11-apps/xfontsel
x11-apps/xfs
x11-apps/xfsinfo
x11-apps/xfwp
x11-apps/xgamma
x11-apps/xgc
x11-apps/xhost
x11-apps/xinit
x11-apps/xkbcomp
x11-apps/xkbevd
x11-apps/xkbprint
x11-apps/xkbutils
x11-apps/xkill
x11-apps/xload
x11-apps/xlogo
x11-apps/xlsatoms
x11-apps/xlsclients
x11-apps/xlsfonts
x11-apps/xmag
x11-apps/xman
x11-apps/xmessage
x11-apps/xmh
x11-apps/xmodmap
x11-apps/xmore
x11-apps/xphelloworld
x11-apps/xplsprinters
x11-apps/xpr
x11-apps/xprehashprinterlist
x11-apps/xprop
x11-apps/xrandr
x11-apps/xrdb
x11-apps/xrefresh
x11-apps/xrx
x11-apps/xset
x11-apps/xsetmode
x11-apps/xsetpointer
x11-apps/xsetroot
x11-apps/xsm
x11-apps/xstdcmap
x11-apps/xtrap
x11-apps/xvidtune
x11-apps/xvinfo
x11-apps/xwd
x11-apps/xwininfo
x11-apps/xwud
>=x11-base/kdrive-6
x11-base/xorg-server
>=x11-base/xorg-x11-7.0.0_rc0
x11-drivers/xf86-input-acecad
x11-drivers/xf86-input-aiptek
x11-drivers/xf86-input-calcomp
x11-drivers/xf86-input-citron
x11-drivers/xf86-input-digitaledge
x11-drivers/xf86-input-dmc
x11-drivers/xf86-input-dynapro
x11-drivers/xf86-input-elo2300
x11-drivers/xf86-input-elographics
x11-drivers/xf86-input-evdev
x11-drivers/xf86-input-fpit
x11-drivers/xf86-input-hyperpen
x11-drivers/xf86-input-jamstudio
x11-drivers/xf86-input-joystick
x11-drivers/xf86-input-keyboard
x11-drivers/xf86-input-magellan
x11-drivers/xf86-input-magictouch
x11-drivers/xf86-input-microtouch
x11-drivers/xf86-input-mouse
x11-drivers/xf86-input-mutouch
x11-drivers/xf86-input-palmax
x11-drivers/xf86-input-penmount
x11-drivers/xf86-input-spaceorb
x11-drivers/xf86-input-summa
x11-drivers/xf86-input-tek4957
x11-drivers/xf86-input-ur98
x11-drivers/xf86-input-vmmouse
x11-drivers/xf86-input-void
x11-drivers/xf86-video-apm
x11-drivers/xf86-video-ark
x11-drivers/xf86-video-ati
x11-drivers/xf86-video-chips
x11-drivers/xf86-video-cirrus
x11-drivers/xf86-video-cyrix
x11-drivers/xf86-video-dummy
x11-drivers/xf86-video-fbdev
x11-drivers/xf86-video-glint
x11-drivers/xf86-video-i128
x11-drivers/xf86-video-i740
x11-drivers/xf86-video-i810
x11-drivers/xf86-video-imstt
x11-drivers/xf86-video-mga
x11-drivers/xf86-video-neomagic
x11-drivers/xf86-video-newport
x11-drivers/xf86-video-nsc
x11-drivers/xf86-video-nv
x11-drivers/xf86-video-rendition
x11-drivers/xf86-video-s3
x11-drivers/xf86-video-s3virge
x11-drivers/xf86-video-savage
x11-drivers/xf86-video-siliconmotion
x11-drivers/xf86-video-sis
x11-drivers/xf86-video-sisusb
x11-drivers/xf86-video-sunbw2
x11-drivers/xf86-video-suncg14
x11-drivers/xf86-video-suncg3
x11-drivers/xf86-video-suncg6
x11-drivers/xf86-video-sunffb
x11-drivers/xf86-video-sunleo
x11-drivers/xf86-video-suntcx
x11-drivers/xf86-video-tdfx
x11-drivers/xf86-video-tga
x11-drivers/xf86-video-trident
x11-drivers/xf86-video-tseng
x11-drivers/xf86-video-v4l
x11-drivers/xf86-video-vesa
x11-drivers/xf86-video-vga
x11-drivers/xf86-video-via
x11-drivers/xf86-video-vmware
x11-drivers/xf86-video-voodoo
x11-libs/libdmx
x11-libs/libdrm
x11-libs/libfontenc
x11-libs/libFS
x11-libs/libICE
x11-libs/liblbxutil
x11-libs/liboldX
x11-libs/libSM
x11-libs/libX11
x11-libs/libXau
x11-libs/libXaw
x11-libs/libXcomposite
x11-libs/libXcursor
x11-libs/libXdamage
x11-libs/libXdmcp
x11-libs/libXevie
x11-libs/libXext
x11-libs/libXfixes
x11-libs/libXfont
x11-libs/libXfontcache
x11-libs/libXft
x11-libs/libXi
x11-libs/libXinerama
x11-libs/libxkbfile
x11-libs/libxkbui
x11-libs/libXmu
x11-libs/libXp
x11-libs/libXpm
x11-libs/libXprintAppUtil
x11-libs/libXprintUtil
x11-libs/libXrandr
x11-libs/libXrender
x11-libs/libXres
x11-libs/libXScrnSaver
x11-libs/libXt
x11-libs/libXTrap
x11-libs/libXtst
x11-libs/libXv
x11-libs/libXvMC
x11-libs/libXxf86dga
x11-libs/libXxf86misc
x11-libs/libXxf86vm
x11-libs/xtrans
x11-misc/gccmakedep
x11-misc/imake
x11-misc/lndir
x11-misc/makedepend
x11-misc/util-macros
x11-misc/xbitmaps
x11-misc/xkbdata
x11-misc/xkeyboard-config
x11-misc/xorg-cf-files
x11-proto/bigreqsproto
x11-proto/compositeproto
x11-proto/damageproto
x11-proto/dmxproto
x11-proto/evieext
x11-proto/fixesproto
x11-proto/fontcacheproto
x11-proto/fontsproto
x11-proto/glproto
x11-proto/inputproto
x11-proto/kbproto
x11-proto/printproto
x11-proto/randrproto
x11-proto/recordproto
x11-proto/renderproto
x11-proto/resourceproto
x11-proto/scrnsaverproto
x11-proto/trapproto
x11-proto/videoproto
x11-proto/xcmiscproto
x11-proto/xextproto
x11-proto/xf86bigfontproto
x11-proto/xf86dgaproto
x11-proto/xf86driproto
x11-proto/xf86miscproto
x11-proto/xf86rushproto
x11-proto/xf86vidmodeproto
x11-proto/xineramaproto
x11-proto/xproto
x11-proto/xproxymanagementprotocol
x11-themes/gentoo-xcursors
x11-themes/xcursor-themes

# Rob Cakebread <pythonhead@gentoo.org> (04 Aug 2005)
# Needs testing, in particular svn, cvs and darcs control
dev-util/pida

# Luca Barbato <lu_zero@gentoo.org> (03 Aug 2005)
# First experimental ebuild with dlloader support, should be fixed
=media-video/ati-drivers-8.14.13-r3

# Matthew Kennedy <mkennedy@gentoo.org> (31 Jul 2005)
# Upstream author requests official version ports only.
dev-lisp/cl-blog

# Karl Trygve Kallebreg <karltk@gentoo.org> (30 Jul 2005)
# all version contains a static copy of zlib-1.2.1.1 which has security
# issues
net-misc/zsync

# Brian Jackson <iggy@gentoo.org> (29 Jul 2005)
# original maintainer dropped off the face of the planet and it has security
# issues, etc.
net-misc/powerd

# Karl Trygve Kalleberg <karltk@gentoo.org> (23 Jul 2005)
# Not available to the general public
=dev-lang/icc-9.0.023

# Armando Di Cianno <fafhrd@gentoo.org> (23 Jul 2005)
# Masked until upgrade path is established
=gnustep-base/gnustep-gui-0.10.0
=gnustep-base/gnustep-back-art-0.10.0
=gnustep-base/gnustep-back-xlib-0.10.0
=gnustep-base/gnustep-env-0.1.7

# <ka0ttic@gentoo.org> (21 Jul 2005)
# Masked for testing.
=dev-cpp/gtkglextmm-1.1.0

# Konstantin Arkhipov <voxus@gentoo.org> (14 Jul 2005)
# Masked for security reasons.
<=sys-kernel/openmosix-sources-2.4.30

# Chris White (chriswhite@gentoo.org) (08 Jul 2005)
# Masking initial import of ipodder as it has some issues
# with the episode cleanup window.  However, those that don't use
# it should be ok.
media-sound/ipodder

# Donnie Berkholz <spyderous@gentoo.org> (08 Jul 2005)
# Development versions
>=sci-libs/libghemical-1.90
>=sci-chemistry/ghemical-1.90

# Stefan Schweizer <genstef@gentoo.org> (08 Jul 2005)
# Masked because of "UnixAppOpenFilePerform() Buffer Overflow", #98101
<=app-text/acroread-5.10
=media-fonts/acroread-asianfonts-5.0.20020815

# Martin Schlemmer <azarah@gentoo.org> (05 Jul 2005)
# Masked for testing, as it breaks api
>=dev-libs/openssl-0.9.8

# Caleb Tennis <caleb@gentoo.org> (01 Jul 2005)
# Seems to not be compatible with kde 3.4 though
# the docs say it is
>=kde-base/unsermake-0.4.20050628

# Markus Nigbur <pYrania@gentoo.org> (01 Jul 2005)
# Masked due to a pretty big bug with crosscompile support.
=sys-devel/distcc-2.18.3-r8

# Colin Kingsley <tercel@gentoo.org> (30 Jun 2005)
# Major revisions. Masked for testing.
=sys-devel/distcc-2.18.3-r8

# Aaron Walker <ka0ttic@gentoo.org> (30 Jun 2005)
# Masked due to constant security bugs.
www-apps/phpBB

# Guillaume Destuynder <kang@gentoo.org> (27 Jun 2005)
# Masking for security reasons, pending removal, bug #89196
# use net-p2p/phxd instead
net-p2p/mhxd

# Carsten Lohrke <carlo@gentoo.org> (27 Jun 2005)
# Masking for security reasons, pending removal,
# use net-im/kpopup instead
net-im/kpopper

# Thierry Carrez <koon@gentoo.org> (27 Jun 2005)
# Package contains insecure tmpfile handling, bug #93792
dev-db/xmysqladmin

# John N. Laliberte <allanonjl@gentoo.org> (24 Jun 2005)
# old, unmaintained ebuilds with dead upstream
# pending removal
app-office/gnofin
gnome-extra/gnobog

# Aaron Walker <ka0ttic@gentoo.org> (20 Jun 2005)
# testing releases/cvs snaps
=net-analyzer/net-snmp-5.3*

# Jonathan Smith <smithj@gentoo.org> (15 Jun 2005)
# masked for testing
=x11-misc/xlockmore-5.19

# David Holm <dholm@gentoo.org> (11 Jun 2005)
# Masked since it is known to create broken partition
# tables on some configurations. Use parted instead.
sys-fs/amiga-fdisk

# Diego Pettenò <flameeyes@gentoo.org> (10 Jun 2005)
# Still no way to test this, waiting ofr upstream or someone to come up
# with a decent test suite.
media-video/dirac

# Thierry Carrez <koon@gentoo.org> (08 Jun 2005)
# Masked by request of the security team. bug 94473
net-im/everybuddy

# Armando Di Cianno <fafhrd@gentoo.org> (06 Jun 2005)
# Masking ebuilds that are incorrectly newer, but still ~arch key'd anyway;
# saving for a rainy day
=gnustep-base/gnustep-gui-0.9.5_pre20050312-r1
=gnustep-base/gnustep-back-xlib-0.9.5_pre20050312
=gnustep-base/gnustep-back-art-0.9.5_pre20050312

# Elfyn McBratney <beu@gentoo.org> (06 Jun 2005)
# 9/10 times, it'll work, the other time it'll either segfault,
# or emit a syntax error in /etc/auditd.rules .. *hrmph*
=sys-process/audit-0.9*

# Leonardo Boshell <leonardop@gentoo.org> (31 May 2005)
# Masked for testing, it includes an experimental patch to make Gtk+
# dependency optional. See bug #40453.
=media-libs/imlib-1.9.15

# Danny van Dyk <kugelfang@gentoo.org> (27 May 2005)
# Needs some testing and love before going gold
=dev-lang/ifc-8.1*

# Danny van Dyk <kugelfang@gentoo.org> (11 May 2005)
# Masked and scheduled for removal. Won't be removed before new versions hit
# the the tree
<dev-lang/icc-7.1.006
<dev-lang/ifc-7.0.064-r1

# Ryan Phillips <rphillips@gentoo.org> (07 May 2005)
# New fox layout.  In testing
=x11-libs/fox-1.0.53
=x11-libs/fox-1.2.15
=x11-libs/fox-1.4.12
=x11-libs/fox-1.5.4
=dev-ruby/fxruby-1.2.6
=dev-ruby/fxruby-1.2.5
=dev-ruby/fxruby-1.0.29-r1
>=x11-libs/fxscintilla-1.62-r1
>=dev-python/fxpy-1.0.5-r1
app-editors/adie
dev-util/reswrap
x11-libs/fox-wrapper
x11-misc/shutterbug
x11-misc/pathfinder
sci-calculators/calculator

# Sven Wegener <swegener@gentoo.org> (05 May 2005)
# Development versions, without this mask users will not get the upstream
# stable ~arch version by default, which means we can't mark it stable because
# it's not tested. If you want it, please unmask.
>=net-nntp/leafnode-2.0.0_alpha0

# Peter Johanson <latexer@gentoo.org> (02 May 2005)
# Masking as it is broken against newer wine versions,
# and completely abandoned upstream
dev-dotnet/winelib

# Fernando J. Pereda <ferdy@gentoo.org> (25 April 2005)
# mask these until the new mailwrapper/mailer-config scheme is ready
# it is secure to unmask them to test
net-mail/mailer-config
=net-mail/mailwrapper-0.2.1-r1
=mail-mta/nbsmtp-1.00-r3
=mail-mta/msmtp-1.4.5-r1
=mail-mta/ssmtp-2.61-r1
>=mail-mta/esmtp-0.5.0-r2
=mail-mta/postfix-2.2.4
=mail-mta/postfix-2.2.5-r1
=mail-mta/postfix-2.2.8-r1
=mail-mta/postfix-2.2.9-r1
=mail-mta/sendmail-8.13.4-r1
=mail-mta/sendmail-8.13.5
=mail-mta/exim-4.50-r999

# Rob Cakebread <pythonhead@gentoo.org> (22 Apr 2005)
# Versions in portage no longer supported. Abeni 1.0 will be in portage soon after wxGTK-2.6.0
app-portage/abeni

# Jan Brinkmann <luckyduck@gentoo.org> (21 Apr 2005)
# missing dependencies, see #89893
=app-misc/freemind-0.8.0_rc2

# Mamoru KOMACHI <usata@gentoo.org>
# No fix available for bug #87906
www-client/netscape

# Donnie Berkholz <spyderous@gentoo.org> 
# CVS HEAD snapshots
=x11-base/xorg-x11-6.8.99*

# Konstantin Arkhipov <voxus@gentoo.org> (15 Apr 2005)
# Masked until arrival of userland tools. At least.
>=sys-kernel/openmosix-sources-2.5

# Peter Johanson <latexer@gentoo.org> (11 Apr 2005)
# Masked as a new cairo innevitably breaks cairo using apps
=x11-libs/cairo-0.4.0
=media-libs/glitz-0.4.0

# Jon Portnoy <avenj@gentoo.org> (29 Mar 2005)
# 2.21 introduces more severe bugs than it fixes. See bug 87091.
=net-dns/dnsmasq-2.21

# Masatomo Nakano <nakano@gentoo.org> (27 Feb 2005)
# Tihs package is conflict with postgresql at the moment
# and waiting on implementing virtual/postgresql.
dev-db/pgcluster

# Matthew Kennedy <mkennedy@gentoo.org> (17 Feb 2005)
# moving to bese-2004@common-lisp.net/arnesi--dev--1.2 patch scheme
=dev-lisp/cl-arnesi-1.2.0
=dev-lisp/cl-arnesi-1.2.3*

# <robbat2@gentoo.org> (14 Feb 2005)
# progsreiserfs does bad things when modifying reiserfs partitions but is the
# only API with read operations, so we need to keep it.  the latest rc version
# is the most stable of the lot, but still don't trust it's write ops!
<sys-fs/progsreiserfs-0.3.1_rc8

# <pylon@gentoo.org> (13 Feb 2005)
# From website: "We know that 0.4.x is a bit buggy on trades :), for people who
# wish to play a stable game, please use 0.3.2"
=games-board/gtkatlantic-0.4.1

# Matthew Kennedy <mkennedy@gentoo.org> (10 Feb 2005)
# Masked while waiting on apache module refresh
dev-lisp/tbnl

# Tavis Ormandy <taviso@gentoo.org> (9 Feb 2005)
# Masked pending security audit.
www-client/prozilla

# Aron Griffis <agriffis@gentoo.org> (07 Feb 2005)
# Mask offlineimap testing versions
=net-irc/ctrlproxy-2.7*

# Christian Parpart <trapni@gentoo.org> (4 Feb 2005)
# Apache herd package refresh
# These ebuilds are incompatible with new apache and related ebuilds.
# See Meta-bug #76457.
net-www/mod_protection
net-www/mod_contribs

#Gustavo Felisberto <humpback@gentoo.org> (4 Feb 2005)
#Masked for user testing
net-im/mercury-bin

# Matthew Kennedy <mkennedy@gentoo.org> (2 Feb 2005)
# Uncertain upstream; Needs work for apache-modules eclass; mod_webapp needs to
# be broken out of it
dev-lisp/cl-imho

# Paul de Vrieze <pauldv@gentoo.org> (02 Feb 2005)
# Masked for testing dependend packages
>=sys-libs/db-4.3

# Sven Wegener <swegener@gentoo.org> (30 Jan 2005)
# Major changes, needs some more testing
>=net-irc/ultimate-3.0.0_rc2

# <dragonheart@gentoo.org> (25 Jan 2005)
# nagios-*2 is still beta
>=net-analyzer/nagios-core-2.0b_p1
>=net-analyzer/nagios-2.0b_p1

# <mkennedy@gentoo.org> (Jan 12 2005)
# no longer needed for the time being; use app-emacs/slime instead
# app-emacs/slime-cvs

# <ribosome@gentoo.org> (09 Jan 2005)
# Beta release
=sci-biology/vienna-rna-1.5_beta

# <chriswhite@gentoo.org> (30 Dec 2004)
# Junkie being masked per security bug #74696
net-ftp/junkie

# <mkennedy@gentoo.org> (14 Dec 2004)
# Masked pending removal
dev-lisp/cl-clx-sbcl

# <danarmak@gentoo.org> (11 Dec 2004)
# Considered broken by upstream; future to be decided
kde-base/qtsharp
kde-base/xparts
kde-base/dcopjava

# <dragonheart@gentoo.org> (04 Dec 2004)
# Bug #70529 indicates problems with configuration file reading
>=dev-libs/log4c-1.0.11

# <nakano@gentoo.org> (28 Nov 2004)
# bincima-1.3* are beta versions for testing purposes, 
# probably very unstable.
=net-mail/bincimap-1.3*

# <ciaranm@gentoo.org> (28 Nov 2004)
# vim7 is still under heavy development. Spell files need vim7.
=app-editors/vim-core-7*
=app-editors/vim-7*
=app-editors/gvim-7*
app-vim/vim-spell-en
app-vim/vim-spell-de
app-vim/vim-spell-es
app-vim/vim-spell-nl
app-vim/vim-spell-da
app-vim/vim-spell-ru
app-vim/vim-spell-fr
app-vim/vim-spell-pl

# <pythonhead@gentoo.org (13 Nov 2004)
# 2.6.0 is now in portage but will remove this soon as deps in other ebuilds are fixed
=x11-libs/wxGTK-2.5*

# Robert Coie <rac@gentoo.org> (28 Sep 2004)
# FEATURES=maketest is still dodgy, and even when I got the whole
# shebang to actually build and install, it was segfaulting on me, so
# there are some deep-seated issues here.  The Mason ebuild will go
# in, but without the apache2 USE.  Also must decide whether or not to
# depend on ApacheHandler2.
=www-apache/mod_perl-1.99.16
#www-apache/libapreq2

# <chriswhite@gentoo.org> (25 Aug 2004)
# alpha version, seems ok to ~arch, but just to be safe..
media-video/jahshaka

# <agriffis@gentoo.org> (19 Aug 2004)
# Masking because this package is not ready for prime, but want it in
# portage for better observation (and users are clamoring)
app-office/mozilla-sunbird-bin
#app-office/mozilla-sunbird

# <agriffis@gentoo.org> (18 Aug 2004)
# Masking due to security issues that will never be solved since there
# are no new versions forthcoming, bug 56109
www-client/netscape-navigator
www-client/netscape-communicator

# <pfeifer@gentoo.org> (12 Aug 2004)
# Masked for following ebuilds for testing:
=sys-apps/mindi-1.10
=app-backup/mondo-rescue-2.10

# <mkennedy@gentoo.org> (8 Aug 2004)
# won't build for now
dev-lisp/cl-rsm-gen-prog
dev-lisp/cl-rsm-genetic-alg

# <twp@gentoo.org> (6 Aug 2004)
# Masked until linking problems are solved
=dev-lang/lua-5.0.2-r1

# <esammer@gentoo.org> (18 July 2004)
# Mysql 4.1.3 changed the number of arguments to shutdown breaking
# this module. This version of the perl module should work, but is
# super-untested and is, therefore, masked.
=dev-perl/DBD-mysql-2.9004

# <usata@gentoo.org> (2 July 2004)
# emacs-unicode-2 branch is not stable and SLOT support for emacs
# is incomplete. info directory handling should be reconsidered.
=app-editors/emacs-cvs-22.0.0*
=app-editors/emacs-cvs-23.0.0*

# <squinky86@gentoo.org> (01 May 2004)
# accessibility testing for development purposes
app-accessibility/speechd-up

# <klasikahl@gentoo.org> (09 Apr 2004)
# Still in the testing phase.
# Just changed the package name, so I'm fixing the line up.
app-admin/mailmin

# <klieber@gentoo.org> (01 Apr 2004)
# The following packages contain a remotely-exploitable
# security vulnerability and have been hard masked accordingly.
#
# Please see http://bugs.gentoo.org/show_bug.cgi?id=44351 for more info
#
# You may unmask this package by placing an appropriate entry in your
# /etc/portage/package.unmask file
games-fps/unreal
games-fps/unreal-tournament
games-fps/unreal-tournament-goty
games-fps/unreal-tournament-infiltration
games-fps/unreal-tournament-strikeforce
games-fps/unreal-tournament-bonuspacks
games-fps/aaut

# <humpback@gentoo.org> (28 Mar 2004)
# Needs some more testing
>=net-im/jabberoo-1.9.3
>=net-im/gabber-1.9.3

# <raker@gentoo.org> (18 Mar 2004)
# The latest AfterStep beta is broken :(
=x11-wm/afterstep-2.0_beta4

# <rajiv@gentoo.org> (03 Mar 2004)
# security problems. see bug #43658.
<net-ftp/proftpd-1.2.9

# <weeve@gentoo.org> (02 Mar 2004)
# mask slib-3.1.1 until gnucash can get a fix for it
=dev-libs/slib-3.1.1

# <robbat2@gentoo.org> (10 Jan 2004)
# blocked for testing
# Update - 2006/02/25 - This is a possible removal.
=mail-mta/qmail-ldap-1.03-r3

# <nichoj@gentoo.org>
# Many things in the tree don't compile with 1.5 yet.
# 1.5 defaults to -target 1.5, which makes downgrading to a 1.4/1.3
# impossible. See bug #69970 and bug 65937 for more information.
# http://www.gentoo.org/proj/en/java/tiger-faq.xml
>=dev-java/sun-jdk-1.4.99
=dev-java/jrockit-jdk-bin-1.5*
>=dev-java/ibm-jdk-bin-1.5

# <taviso@gentoo.org> (06 Jan 2004)
# alpha branch of gnupg.
>=app-crypt/gnupg-1.9.0
# <dragonheart@gentoo.org> (27 Aug 2004)

# <robbat2@gentoo.org> (29 Nov 2003)
# Need external testing
# Update - 2006/02/25 - This is a possible removal.
>=mail-mta/qmail-mysql-1.03-r13

# <brad@gentoo.org> (22 Nov 2003)
# Mask mandrake-artwork-0.9.6 until it works with KDE
=x11-themes/mandrake-artwork-0.9.6

# <lu_zero@gentoo.org> (16 Mar 2003)
# to be tested, seems unstable
net-dialup/hcfusbmodem

# <liquidx@gentoo.org> (10 Mar 2003)
# not really stable enough for my tastes. needs testing.
dev-db/mergeant

# <phoenix@gentoo.org> (21 Nov 2002)
# The huge nsplugins mask. These plugins use
# the new layout (/usr/lib/nsbrowser/plugins)
# and should work in both mozilla and phoenix.
=net-www/netscape-plugger-4.0-r2

# Yuri Vasilevski yvasilev@gentoo.org (11 Mar 2006)
# Masked for testing
>=x11-libs/libmatchbox-1.7
>=x11-wm/matchbox-window-manager-0.9.5
>=x11-wm/matchbox-common-0.9.1
>=x11-wm/matchbox-panel-0.9.2
>=x11-wm/matchbox-desktop-0.9.1
>=x11-plugins/matchbox-applet-input-manager-0.6
>=x11-plugins/matchbox-applet-volume-0.1
>=x11-plugins/matchbox-applet-startup-monitor-0.1
>=x11-misc/matchbox-panel-manager-0.1
>=x11-themes/matchbox-themes-extra-0.3