summaryrefslogtreecommitdiff
blob: be19b10e00c22ffff275ca5e70480357541f3254 (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
####################################################################
# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.12107 2010/10/27 13:15:17 ssuominen Exp $
#
# When you add an entry to the top of this file, add your name, the date, and
# an explanation of why something is getting masked. Please be extremely
# careful not to commit atoms that are not valid, as it can cause large-scale
# breakage, especially if it ends up in the daily snapshot.
#
## Example:
##
## # Dev E. Loper <developer@gentoo.org> (28 Jun 2012)
## # Masking  these versions until we can get the
## # v4l stuff to work properly again
## =media-video/mplayer-0.90_pre5
## =media-video/mplayer-0.90_pre5-r1
#
# - Best last rites (removal) practices -
# Include the following info:
# a) reason for masking
# b) bug # for the removal (and yes you should have one)
# c) date of removal (either the date or "in x days")
# d) the word "removal"
#
## Example:
##
## Dev E. Loper <developer@gentoo.org> (25 Jan 2012)
## Masked for removal in 30 days.  Doesn't work
## with new libfoo. Upstream dead, gtk-1, smells
## funny. (bug #987654)
## app-misc/some-package

#--- END OF EXAMPLES ---

# Tony Vroon <chainsaw@gentoo.org> (27 Oct 2010)
# This is very new, very exciting and quite probably not ready for your 
# production kit yet. Bug reports? Sure, if they have patches!
>=net-misc/asterisk-1.8.0

# Markos Chandras <hwoarang@gentoo.org> (26 Oct 2010)
# master branch is heavily broken at the moment. Use 
# 2.0.9999 instead if you want a kmess 
# that actually builds
=net-im/kmess-9999

# Samuli Suominen <ssuominen@gentoo.org> (26 Oct 2010)
# Orphaned library and bindings. Bugs 149150, 193595 and 239569
# Masked for removal in 30 days
dev-python/PyAmanith
media-libs/amanith

# Samuli Suominen <ssuominen@gentoo.org> (26 Oct 2010)
# Broken -C switch, see bug 342735.  For instance, nothing from kde-base/ can
# be installed, bug 342785. Also known to break binpkgs created with portage.
=app-arch/tar-1.24

# Arun Raghavan <ford_prefect@gentoo.org> (26 Oct 2010)
# Mask development versions of Rygel
>=net-misc/rygel-0.9.1

# Nirbheek Chauhan <nirbheek@gentoo.org> (26 Oct 2010)
# Breaks ABI/API, mask till we figure out what all is affected
# Needed for gnome-shell, which is masked (in the gnome overlay) anyway
=media-libs/clutter-1.4*

# Jeroen Roovers <jer@gentoo.org> (25 Oct 2010)
# Masked until reverse dependencies are sorted out (bug #342461)
=dev-libs/libnl-2*

# Alexis Ballier <aballier@gentoo.org> (24 Oct 2010)
# Mask TeX Live 2010 for testing and keywording
>=app-text/texlive-2010
>=app-text/texlive-core-2010
>=dev-texlive/texlive-basic-2010
>=dev-texlive/texlive-bibtexextra-2010
>=dev-texlive/texlive-context-2010
>=dev-texlive/texlive-documentation-arabic-2010
>=dev-texlive/texlive-documentation-base-2010
>=dev-texlive/texlive-documentation-bulgarian-2010
>=dev-texlive/texlive-documentation-chinese-2010
>=dev-texlive/texlive-documentation-czechslovak-2010
>=dev-texlive/texlive-documentation-dutch-2010
>=dev-texlive/texlive-documentation-english-2010
>=dev-texlive/texlive-documentation-finnish-2010
>=dev-texlive/texlive-documentation-french-2010
>=dev-texlive/texlive-documentation-german-2010
>=dev-texlive/texlive-documentation-greek-2010
>=dev-texlive/texlive-documentation-italian-2010
>=dev-texlive/texlive-documentation-japanese-2010
>=dev-texlive/texlive-documentation-korean-2010
>=dev-texlive/texlive-documentation-mongolian-2010
>=dev-texlive/texlive-documentation-polish-2010
>=dev-texlive/texlive-documentation-portuguese-2010
>=dev-texlive/texlive-documentation-russian-2010
>=dev-texlive/texlive-documentation-serbian-2010
>=dev-texlive/texlive-documentation-slovenian-2010
>=dev-texlive/texlive-documentation-spanish-2010
>=dev-texlive/texlive-documentation-thai-2010
>=dev-texlive/texlive-documentation-turkish-2010
>=dev-texlive/texlive-documentation-ukrainian-2010
>=dev-texlive/texlive-documentation-vietnamese-2010
>=dev-texlive/texlive-fontsextra-2010
>=dev-texlive/texlive-fontsrecommended-2010
>=dev-texlive/texlive-fontutils-2010
>=dev-texlive/texlive-formatsextra-2010
>=dev-texlive/texlive-games-2010
>=dev-texlive/texlive-genericextra-2010
>=dev-texlive/texlive-genericrecommended-2010
>=dev-texlive/texlive-htmlxml-2010
>=dev-texlive/texlive-humanities-2010
>=dev-texlive/texlive-langafrican-2010
>=dev-texlive/texlive-langarab-2010
>=dev-texlive/texlive-langarabic-2010
>=dev-texlive/texlive-langarmenian-2010
>=dev-texlive/texlive-langcjk-2010
>=dev-texlive/texlive-langcroatian-2010
>=dev-texlive/texlive-langcyrillic-2010
>=dev-texlive/texlive-langczechslovak-2010
>=dev-texlive/texlive-langdanish-2010
>=dev-texlive/texlive-langdutch-2010
>=dev-texlive/texlive-langenglish-2010
>=dev-texlive/texlive-langfinnish-2010
>=dev-texlive/texlive-langfrench-2010
>=dev-texlive/texlive-langgerman-2010
>=dev-texlive/texlive-langgreek-2010
>=dev-texlive/texlive-langhebrew-2010
>=dev-texlive/texlive-langhungarian-2010
>=dev-texlive/texlive-langindic-2010
>=dev-texlive/texlive-langitalian-2010
>=dev-texlive/texlive-langlatin-2010
>=dev-texlive/texlive-langlatvian-2010
>=dev-texlive/texlive-langlithuanian-2010
>=dev-texlive/texlive-langmongolian-2010
>=dev-texlive/texlive-langnorwegian-2010
>=dev-texlive/texlive-langother-2010
>=dev-texlive/texlive-langpolish-2010
>=dev-texlive/texlive-langportuguese-2010
>=dev-texlive/texlive-langspanish-2010
>=dev-texlive/texlive-langswedish-2010
>=dev-texlive/texlive-langtibetan-2010
>=dev-texlive/texlive-langturkmen-2010
>=dev-texlive/texlive-langukenglish-2010
>=dev-texlive/texlive-langvietnamese-2010
>=dev-texlive/texlive-latex-2010
>=dev-texlive/texlive-latex3-2010
>=dev-texlive/texlive-latexextra-2010
>=dev-texlive/texlive-latexrecommended-2010
>=dev-texlive/texlive-luatex-2010
>=dev-texlive/texlive-mathextra-2010
>=dev-texlive/texlive-metapost-2010
>=dev-texlive/texlive-music-2010
>=dev-texlive/texlive-omega-2010
>=dev-texlive/texlive-pictures-2010
>=dev-texlive/texlive-plainextra-2010
>=dev-texlive/texlive-pstricks-2010
>=dev-texlive/texlive-psutils-2010
>=dev-texlive/texlive-publishers-2010
>=dev-texlive/texlive-science-2010
>=dev-texlive/texlive-texinfo-2010
>=dev-texlive/texlive-xetex-2010

# Samuli Suominen <ssuominen@gentoo.ogr> (23 Oct 2010)
# Replaced by media-tv/v4l-utils, bug 333291
# Removal in about 30 days
media-tv/ivtv-utils
media-tv/v4l2-ctl

# Markos Chandras <hwoarang@gentoo.org> (23 Oct 2010)
#  on behalf of QA team
#
# Does not work with recent versions of ffmpeg.
# Does not work with youtube anymore due to API changes.
# Dead upstream.
# Removal in 30 days.
# Alternatives:
# media-video/minitube
# media-video/xvideoservicethief
media-video/elltube

# Diego E. Pettenò <flameeyes@gentoo.org> (23 Oct 2010)
#  on behalf of QA team
#
# Ebuilds are in very sorry state; they all try to workaround
# distcc/ccache which an ebuild should never do; they
# are ready to call autogen.sh and not use the autotools
# eclass; USE=debug tinkers with flags; don't call econf and
# don't use elog. See bugs #213197; #255872 and #293931 at
# least. Maintainer is unresponsive, the ebuilds should all
# be rewritten at the very least.
#
# Removal on 2010-12-22
media-libs/capseo
media-libs/libcaptury
media-video/captury

# Torsten Veller <tove@gentoo.org> (23 Oct 2010)
# yamcha and tinysvm fail to built the Perl extension (#299983).
# Removal on 2010-12-23 if not fixed
app-text/yamcha
sci-misc/tinysvm
app-text/cabocha

# Diego E. Pettenò <flameeyes@gentoo.org> (22 Oct 2010)
#  on behalf of QA team
#
# Obsolete even by upstream standard, since version 0.1.2
# is out since 2007 (and has a version bump request in bug
# #223299 since May 2008); uses obsolete tail/head
# syntax (bug #159606, the warning has since been removed
# from coreutils); more importantly autotools are rebuilt by
# a maintainer-mode-triggered check, but no dependency over
# autotools, with or without the correct version is present
# (bug #318487; automake 1.8 is nowadays not that common to
# find installed).
# Use sys-fs/ddrescue as replacement
#
# Removal on 2010-12-21
sys-fs/dd-rhelp

# Diego E. Pettenò <flameeyes@gentoo.org> (22 Oct 2010)
#  on behalf of QA team
#
# Fails to work properly, upstream doesn't seem to care. As
# maintainer I'm going to remove this, and eventually package
# something for mod_security to query it.
#
# Removal on 2010-11-21
www-apache/mod_httpbl

# Michael Sterrett <mr_bones_@gentoo.org> (21 Oct 2010)
# Dead upstream
# masked for removal on 20101120
games-arcade/emergence-bin

# Diego E. Pettenò <flameeyes@gentoo.org> (21 Oct 2010)
#  on behalf of QA team
#
# Fails build since at least July 2009 (bug #277577).
#
# Removal on 2010-12-20
media-plugins/vdr-audiorecorder

# Samuli Suominen <ssuominen@gentoo.org> (18 Oct 2010)
# Fix your package to depend on media-libs/freeglut
# or emerge -C virtual/glut
# This mask entry will go away in about 30 days
virtual/glut

# Diego E. Pettenò <flameeyes@gentoo.org> (18 Oct 2010)
#  on behalf of QA team
#
# Another package that originally failed to work with Perl
# 5.12 (bug #330087) and that shown itself as not working
# right. Additionally, it currently bundles an enormous
# amount of Perl modules (bug #335396).
#
# Removal on 2010-12-17
net-analyzer/sara

# Diego E. Pettenò <flameeyes@gentoo.org> (18 Oct 2010)
#  on behalf of QA team
#
# TCT has been retired upstream for a while, the site
# pointing to sleuthkit as its successor. Within Gentoo
# there hasn't been a committed maintainer since 2004 and the
# latest bumps have been done blindly. Bug #336254 was opened
# for a build failure with Perl 5.12, and reports a number
# of other issues making the package useless. Furthermore,
# it fails to respect LDFLAGS.
#
# Removal on 2010-12-17
app-forensics/tct

# Markos Chandras <hwoarang@gentoo.org> (17 Oct 2010)
# Masking beta releases
=net-p2p/qbittorrent-2.5.0_beta*

# Markos Chandras <hwoarang@gentoo.org> (17 Oct 2010)
# Masking experimental releases
=x11-libs/libfm-0.1.14
=x11-misc/pcmanfm-0.9.8

# Samuli Suominen <ssuominen@gentoo.org> (16 Oct 2010)
# dev-libs/soprano with USE redland is unported to raptor2 API
# see bug 341237
>=dev-libs/rasqal-0.9.20
>=dev-libs/redland-1.0.12

# Diego E. Pettenò <flameeyes@gentoo.org> (15 Oct 2010)
#  on behalf of QA team
#
# gkrellm needs more maintainers, but these packages
# in particular are gong to cause trouble, as they have
# either obsolete gtk+ API calls (bug #340959, #340137,
# #339910, #339908, #339907, #339905), have been failing
# for a while because of their dependencies (bug #338307)
# or have overflows (bug #338971).
#
# Further broken packages may be added in the future as
# they are discovered, removal date will be the same for
# all of them.
#
# Removal on 2010-12-14
x11-plugins/gkrellm-timers
x11-plugins/gkrellm-reminder
x11-plugins/gkrellmitime
x11-plugins/gkrellm-gkfreq
x11-plugins/gkrellm-gamma
x11-plugins/gkrellmbups
x11-plugins/gkrellmms
x11-plugins/gkrellm-bgchanger
x11-plugins/gkrellmwho2
x11-plugins/gkrellm-mailwatch

# Christian Faulhammer <fauli@gentoo.org> (15 Oct 2010)
# Mask for removal in 30 days
# Has lots of bundled libraries for ages (bug 250049), even as so
# files, upstream does not care, even with security vulnerable expat
# library, about that
# No real use in the last couple of years
dev-tex/mpm

# Bernard Cafarelli <voyageur@gentoo.org> (13 Oct 2010)
# New Objective-C Runtime for GNUstep
# Masked until I add proper support for it in gnustep-base
gnustep-base/libobjc2

# Ulrich Mueller <ulm@gentoo.org> (12 Oct 2010)
# Compatibility library for out-of-tree binaries, moved from
# separate openmotif-compat package to SLOT 2.2 of openmotif.
# Emerge x11-libs/openmotif:2.2 as a substitute.
# Masked for removal in 60 days, bug 340673.
x11-libs/openmotif-compat

# Pacho Ramos <pacho@gentoo.org> (09 Oct 2010)
# This is Gnome 2.32 mask (#339225) , here will appear 
# packages depending on our available time for bumping them.
# Then, *don't report bugs* requesting version bumps
# or blaming due missing dependencies in the tree. 
# The mask will be dropped when all pieces are in the tree
# and working and, then, you will finally able to report
# missing dependencies and so ;-)
# BEGIN GNOME 2.32 mask
>=gnome-base/gnome-desktop-2.32
>=dev-libs/atk-1.32
>=x11-libs/vte-0.26
>=x11-terms/gnome-terminal-2.32
>=net-libs/libsoup-gnome-2.32
>=net-libs/libsoup-2.32
>=dev-libs/totem-pl-parser-2.32
>=gnome-base/gnome-keyring-2.32
>=gnome-base/libgnome-keyring-2.32
>=gnome-extra/gtkhtml-3.32
>=x11-themes/gnome-backgrounds-2.32
>=x11-themes/gnome-themes-2.32
>=app-accessibility/accerciser-1.12
>=gnome-extra/at-spi-1.32
>=app-accessibility/orca-2.32
>=gnome-base/libbonobo-2.32
>=gnome-base/libgnome-2.32
>=gnome-base/libgnomekbd-2.32
>=gnome-base/gconf-2.32
>=sys-apps/gnome-disk-utility-2.32
>=gnome-extra/zenity-2.32
>=gnome-base/nautilus-2.32
>=gnome-base/gnome-panel-2.32
>=gnome-base/gnome-session-2.32
>=gnome-base/gnome-settings-daemon-2.32
>=gnome-base/gnome-applets-2.32
>=gnome-extra/bug-buddy-2.32
>=gnome-extra/gnome-media-2.32
>=gnome-extra/gnome-power-manager-2.32
>=app-arch/file-roller-2.32
>=app-cdr/brasero-2.32
>=app-crypt/seahorse-2.32
>=app-text/evince-2.32
>=gnome-base/gnome-control-center-2.32
>=gnome-extra/gcalctool-5.32
gnome-base/dconf
>=gnome-extra/gucharmap-2.32
>=gnome-extra/mousetweaks-2.32
>=media-gfx/eog-2.32
>=media-sound/sound-juicer-2.32
>=net-misc/vino-2.32
>=net-wireless/gnome-bluetooth-2.32
>=gnome-extra/nautilus-sendto-2.32
>=gnome-extra/gconf-editor-2.32
>=dev-util/devhelp-2.32
>=x11-themes/gnome-icon-theme-2.31
>=net-analyzer/gnome-nettool-2.32
>=gnome-extra/gnome-utils-2.32
# END GNOME 2.32 mask

# Pacho Ramos <pacho@gentoo.org> (09 Oct 2010)
# Removal of app-text/gnome-spell as it's no used by
# anything in the tree and its functionality is in
# gtkhtml through enchant (bug #339771)
# Removal on 2010-11-09
app-text/gnome-spell

# Robin H. Johnson <robbat2@gentoo.org> (08 Oct 2010)
# Masked for testing, and some testsuite failures.
>=sys-libs/db-5.1

# Samuli Suominen <ssuominen@gentoo.org> (07 Oct 2010)
# Packages using obsolete policykit:
#
# kde-base/policykit-kde replaced by sys-auth/polkit-kde
# sys-auth/policykit-qt replaced by sys-auth/polkit-qt
#
# Masked for removal in 30 days or sooner
kde-base/policykit-kde
sys-auth/policykit-qt

# Pacho Ramos <pacho@gentoo.org> (07 Oct 2010)
# Unmaintained since 2006 by upstream, no required by
# any package in the tree (bug #340039) and most
# distributions have already dropped it.
#
# Removal on 2010-11-07
dev-dotnet/ant-dotnet

# Ole Markus With <olemarkus@gentoo.org> (05 Oct 2010)
# PHP and PHP-related ebuilds supporting minor version 
# slotting are masked for testing
=dev-lang/php-5.2.14-r1
=dev-lang/php-5.3.3-r2
app-admin/eselect-php
=dev-php5/pecl-oauth-0.99.9
=dev-php5/pecl-memcache-3.0.5-r1
=dev-php5/pecl-oauth-0.99.9
=dev-php5/pecl-apc-3.1.4-r1
=dev-php5/xdebug-2.1.0-r1
=dev-php5/pecl-gearman-0.7.0-r1
=dev-php5/pecl-cairo-0.2.0-r1
=dev-php5/pecl-bbcode-1.0.2-r1

# Ricardo Mendoza <ricmm@gentoo.org> (04 Oct 2010)
# Dead upstream, project no longer exists and doesn't work.
# Masked for removal in 30 days.
net-misc/metacafe-dl

# Diego E. Pettenò <flameeyes@gentoo.org> (04 Oct 2010)
#  on behalf of QA team
#
# Ironically, it is misusing autotools (bug #255831). It was
# added in 2004 and never version bumped since; autotools
# have since evolved a fair amount, while this is based
# still on automake 1.6. Avoid keeping it around.
#
# Removal on 2010-12-03
dev-util/autotoolset

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (02 Oct 2010)
# Included in >=dev-libs/Ice-3.3. Masked for deletion in 30 days.
dev-python/IcePy

# Andreas K. Huettel <dilfridge@gentoo.org> (02 Oct 2010)
# Masking for removal in 30 days
# Upstream is dead, does not build, would need massive work for current
# gcc. Seems like nobody has missed it for some time. Bug 296651.
# Also mask maxit as it depends on validation - halcy0n
sci-chemistry/validation
sci-chemistry/maxit

# Diego E. Pettenò <flameeyes@gentoo.org> (02 Oct 2010)
#  on behalf of QA team
#
# Violate sandbox at least since July 2009 (bug #279090)
# thus cannot install; ignores flags (bug #241090).
#
# Removal on 2010-12-01
net-nntp/nntpswitch

# Rafael G. Martins <rafaelmartins@gentoo.org> (01 Oct 2010)
# Upstream moved the source control from SVN to BZR.
# The live ebuild will be masked until fix bug #339374
=sci-electronics/kicad-99999999

# Diego E. Pettenò <flameeyes@gentoo.org> (01 Oct 2010)
#  on behalf of QA team
#
# Upstream seems to be dead, and keeping importing it from
# OpenSolaris unlikely; too many man pages installed by our
# packages are not compatible with it.
#
# Removal on 2010-11-30
app-doc/heirloom-doctools

# Luca Barbato <lu_zero@gentoo.org> (01 Oct 2010)
# beta version, has known issues
=x11-drivers/ati-drivers-8.780*


# Diego E. Pettenò <flameeyes@gentoo.org> (01 Oct 2010)
#  on behalf of QA team
#
# Overflows during build (bug #301795); need a new maintainer
# at least, but there are a number of alternative IMEs that
# shouldn't have these problems.
#
# Removal on 2010-11-30
app-i18n/fcitx

# Andreas K. Huettel <dilfridge@gentoo.org> (30 Sep 2010)
# Masking for removal in 30 days
# This package is obsolete, texlive contains a way newer version
dev-tex/algorithms

# Diego E. Pettenò <flameeyes@gentoo.org> (30 Sep 2010)
#  on behalf of QA team
#
# Requires edonkey/overnet that are also masked; minor QA
# annoyances (bug #295835; #333829) and doesn't properly
# set depends.
#
# Removal on 2010-11-26
net-p2p/ed2k-gtk-gui

# Pacho Ramos <pacho@gentoo.org> (30 Sep 2010)
# Unmaintained since a lot of time by upstream, it's
# replaced by net-libs/telepathy-glib (bug #338681) and
# masked with Tester's approval.
#
# Removal on 2010-10-30
net-libs/libtelepathy

# Pacho Ramos <pacho@gentoo.org> (29 Sep 2010)
# Unmaintained since a lot of time by upstream also suffers
# some bugs like bug #339096 and upstream discourages its
# usage. Masked with Tester's approval.
#
# Removal on 2010-10-29
net-voip/cohoba

# Diego E. Pettenò <flameeyes@gentoo.org> (27 Sep 2010)
#  on behalf of QA team
#
# Last bump in 2004; minor QA annoyances (bug #241028 and
# #241310); website seems dead; LICENSE seems fishy (as-is,
# but it's actually binary package); package is binary so
# we have no way to assure safety for it at all.
#
# Removal on 2010-11-26
net-p2p/edonkey
net-p2p/overnet

# Diego E. Pettenò <flameeyes@gentoo.org> (27 Sep 2010)
#  on behalf of QA team
#
# Unmaintained; creates subdirectory in /usr/bin rather than
# /usr/(lib|libexec) (bug #248160 open since November 2008),
# contains binary x86 applications (but KEYWORDS are not
# set -*  and for a while it was keyworded ~ppc without
# good reason to be so); last ebuild bump (and release) in
# 2004; last fix (without revbump) in 2007. Binaries make
# the reported LICENSE (GPL-2) sound fishy.
#
# Removal on 2010-11-26
app-benchmarks/xfbsuite

# Andreas K. Huettel <dilfridge@gentoo.org> (26 Sep 2010)
# Masking for removal in 30 days
# This package is obsolete, texlive contains a way newer version
dev-tex/achemso

# Markos Chandras <hwoarang@gentoo.org> ( 26 Sep 2010 )
# Masking because of masked Qt-4.7
=dev-util/qt-creator-2.0.1

# Joerg Bornkessel <hd_brummy@gentoo.org> ( 26 Sep 2010 )
# masked for removel in 30 days,
# bug 335785
# ttf-bitstream-vera issues
=media-plugins/vdr-graphtft-0.1.21_alpha-r1

# Nirbheek Chauhan <nirbheek@gentoo.org> (25 Sep 2010)
# Mask new versions of glib, polkit, gtk+, etc
# Will be unmasked after proper testing
>=dev-libs/glib-2.25
>=x11-libs/gdk-pixbuf-2.21
>=gnome-base/librsvg-2.31
>=sys-auth/polkit-0.99
>=gnome-extra/polkit-gnome-0.99
>=x11-libs/gtk+-2.21
>=dev-lang/vala-0.11
>=sys-power/upower-0.9.6

# Pacho Ramos <pacho@gentoo.org> (24 Sep 2010)
# Broken since more than a year when using nvidia-drivers (bug #260433),
# upstream no longer develops neither maintains it, most common
# distributions have already dropped it.
# Please use net-wireless/gnome-bluetooth:2 instead. Will be removed at 24 Nov 2010.
net-wireless/bluez-gnome

# Samuli Suominen <ssuominen@gentoo.org> (22 Sep 2010)
# Package is masked because of missing exo-0.5 and garcon support.
# exo-0.3 and libxfce4menu is deprecated, no reason to provide vala bindings to them anymore
# Also missing vala-0.10.0 support, pulls in old slot of vala
# Unless 4.7.0 is out in 60 days, the package will be removed
xfce-extra/xfce4-vala

# Nirbheek Chauhan <nirbheek@gentoo.org> (22 Sep 2010)
# Dead upstream, doesn't work anymore
# Masked for removal in 30 days
# Replacement is net-wireless/gnome-bluetooth:2
net-wireless/libbtctl
=net-wireless/gnome-bluetooth-0*

# Rémi Cardona <remi@gentoo.org> (21 Sep 2010)
# Dead upstream, ebuild does more work than its Makefiles,
# Xorg folks told me its output looked very unsafe for hareware.
# Masked for removal in 30 days.
# Users should use cvt or gtf, both provided by xorg-server.
x11-misc/videogen

# Rémi Cardona <remi@gentoo.org> (21 Sep 2010)
# transset was never meant to be a proper tool, is dead upstream, has a
# maintained fork (x11-misc/transset-df) and doesn't respect LDFLAGS
# (see bug #338150). Masked for removal in 30 days.
x11-misc/transset

# Theo Chatzimichos <tampakrap@gentoo.org> (21 Sep 2010)
# Mask Qt 4.7.0, it will be unmasked as soon as it is tinderboxed
~x11-libs/qt-assistant-4.7.0
~x11-libs/qt-core-4.7.0
~x11-libs/qt-dbus-4.7.0
~x11-libs/qt-declarative-4.7.0
~x11-libs/qt-demo-4.7.0
~x11-libs/qt-gui-4.7.0
~x11-libs/qt-multimedia-4.7.0
~x11-libs/qt-opengl-4.7.0
~x11-libs/qt-phonon-4.7.0
~x11-libs/qt-qt3support-4.7.0
~x11-libs/qt-script-4.7.0
~x11-libs/qt-sql-4.7.0
~x11-libs/qt-svg-4.7.0
~x11-libs/qt-test-4.7.0
~x11-libs/qt-webkit-4.7.0
~x11-libs/qt-xmlpatterns-4.7.0

# Panagiotis Christopoulos <pchrist@gentoo.org> (17 Sep 2010)
# Masked for removal in 30 days. Most of them are too old/
# problematic. They will be moved to a temporary overlay
# after their removal until we (the lisp team) decide if/how we will
# handle/update them. For more information, please see bug #337963
dev-lisp/cl-acclaim
dev-lisp/cl-acl-compat
dev-lisp/cl-aim
=dev-lisp/cl-aima-1.0.4
dev-lisp/cl-anaphora
dev-lisp/cl-ansi-tests-cvs
dev-lisp/cl-araneida
dev-lisp/cl-archive
dev-lisp/cl-arnesi-darcs
dev-lisp/cl-asdf-system-connections
dev-lisp/cl-aserve
dev-lisp/cl-aspectl
dev-lisp/cl-awk
=dev-lisp/cl-base64-3.3.2
=dev-lisp/cl-base64-3.3.1
dev-lisp/cl-bayescl
dev-lisp/cl-binary-types
dev-lisp/cl-bind
dev-lisp/cl-blowfish
dev-lisp/cl-bouquet
dev-lisp/cl-cclan
dev-lisp/cl-cells
dev-lisp/cl-cffi
dev-lisp/cl-cgi-utils
dev-lisp/cl-ch-util
dev-lisp/cl-chemical-compounds
dev-lisp/cl-chunga
dev-lisp/cl-clem
dev-lisp/cl-closer-mop
dev-lisp/cl-colorize
dev-lisp/cl-common-idioms
dev-lisp/cl-contextl
dev-lisp/cl-csv
dev-lisp/cl-curl
dev-lisp/cl-cxml
dev-lisp/cl-defpatt
dev-lisp/cl-defsystem3
dev-lisp/cl-diff
=dev-lisp/cl-difflib-0.1
dev-lisp/cl-dot
dev-lisp/cl-drakma
dev-lisp/cl-elephant
=dev-lisp/cl-emb-0.4.2
=dev-lisp/cl-emb-0.4.1
=dev-lisp/cl-emb-0.4.3
dev-lisp/cl-environment
=dev-lisp/cl-fad-0.4.1
=dev-lisp/cl-fad-0.4.0
=dev-lisp/cl-fad-0.5.0
=dev-lisp/cl-fad-0.5.1
=dev-lisp/cl-fad-0.4.2
=dev-lisp/cl-fad-0.4.3
dev-lisp/cl-fare-matcher
dev-lisp/cl-fiveam-darcs
dev-lisp/cl-flexi-streams
=dev-lisp/cl-ftp-1.3.3
dev-lisp/cl-fucc
dev-lisp/cl-gcc-xml-ffi
=dev-lisp/cl-gd-0.4.6
=dev-lisp/cl-gd-0.5.1
=dev-lisp/cl-gd-0.5.0
=dev-lisp/cl-gd-0.4.7
dev-lisp/cl-genhash
dev-lisp/cl-getopt
dev-lisp/cl-gordon
dev-lisp/cl-hello
=dev-lisp/cl-html-diff-0.1
dev-lisp/cl-html-encode
=dev-lisp/cl-html-parse-1.0
dev-lisp/cl-html-template
dev-lisp/cl-htmlgen
dev-lisp/cl-hunchentoot
dev-lisp/cl-hyperobject
dev-lisp/cl-inflate
=dev-lisp/cl-interpol-0.1.2
=dev-lisp/cl-irc-0.7
dev-lisp/cl-irc-logger
dev-lisp/cl-ironclad
dev-lisp/cl-isbn
dev-lisp/cl-iterate
=dev-lisp/cl-jpeg-1.033-r1
dev-lisp/cl-kmrcl
dev-lisp/cl-kr
dev-lisp/cl-lambda-gtk
=dev-lisp/cl-launch-2.02
=dev-lisp/cl-launch-1.88
=dev-lisp/cl-launch-2.03
dev-lisp/cl-lexer
dev-lisp/cl-linedit
dev-lisp/cl-lisp2wish
dev-lisp/cl-lml
dev-lisp/cl-lml2
dev-lisp/cl-log4cl
dev-lisp/cl-ltk
dev-lisp/cl-lw-compat
dev-lisp/cl-mcclim
dev-lisp/cl-md5
dev-lisp/cl-mel-base
dev-lisp/cl-memoization
dev-lisp/cl-menusystem
dev-lisp/cl-meta
dev-lisp/cl-mop-features
dev-lisp/cl-mpd
dev-lisp/cl-mt19937
dev-lisp/cl-ncurses
dev-lisp/cl-net-telent-date
dev-lisp/cl-odcl
dev-lisp/cl-org-davep-cldict
dev-lisp/cl-org-davep-dict
dev-lisp/cl-org-davep-dictrepl
dev-lisp/cl-org-davep-newsrc
dev-lisp/cl-org-davep-nntp
dev-lisp/cl-osicat
dev-lisp/cl-packer
dev-lisp/cl-paip
dev-lisp/cl-parenscript-darcs
dev-lisp/cl-parse-number
=dev-lisp/cl-pdf-110
dev-lisp/cl-periodic-table
dev-lisp/cl-pg
dev-lisp/cl-pipes
=dev-lisp/cl-plus-1.0
=dev-lisp/cl-plus-ssl-20051204
dev-lisp/cl-png
dev-lisp/cl-poly-pen
dev-lisp/cl-pop
dev-lisp/cl-port
dev-lisp/cl-postoffice
=dev-lisp/cl-prevalence-20040709
=dev-lisp/cl-prevalence-20060521
dev-lisp/cl-psgraph
dev-lisp/cl-ptester
dev-lisp/cl-puri
dev-lisp/cl-pxmlutils
dev-lisp/cl-quick-arrays
dev-lisp/cl-regex
dev-lisp/cl-resolver
dev-lisp/cl-rfc2109-darcs
dev-lisp/cl-rfc2388
dev-lisp/cl-rfc2388-darcs
dev-lisp/cl-rsm-bitcomp
dev-lisp/cl-rsm-bool-comp
dev-lisp/cl-rsm-cache
dev-lisp/cl-rsm-delayed
dev-lisp/cl-rsm-filter
dev-lisp/cl-rsm-finance
dev-lisp/cl-rsm-fuzzy
dev-lisp/cl-rsm-memo
dev-lisp/cl-rsm-mod
dev-lisp/cl-rsm-modal
dev-lisp/cl-rsm-mpoly
dev-lisp/cl-rsm-queue
dev-lisp/cl-rsm-rand
dev-lisp/cl-rsm-random
dev-lisp/cl-rsm-rsa
dev-lisp/cl-rsm-string
dev-lisp/cl-rss
dev-lisp/cl-rt
dev-lisp/cl-s-base64
dev-lisp/cl-s-sysdeps
dev-lisp/cl-s-xml
dev-lisp/cl-s-xml-rpc
dev-lisp/cl-salza
dev-lisp/cl-sapaclisp
=dev-lisp/cl-sasl-0.2
dev-lisp/cl-sb-readline
dev-lisp/cl-scribble
dev-lisp/cl-sdl
dev-lisp/cl-series
dev-lisp/cl-sha1
dev-lisp/cl-spatial-trees
dev-lisp/cl-split-sequence
dev-lisp/cl-sql
dev-lisp/cl-ssl
dev-lisp/cl-statistics
=dev-lisp/cl-store-0.6
dev-lisp/cl-syslog
dev-lisp/cl-tbnl
dev-lisp/cl-tclink
dev-lisp/cl-terminfo
dev-lisp/cl-torta
dev-lisp/cl-trivial-configuration-parser
dev-lisp/cl-trivial-gray-streams
dev-lisp/cl-trivial-http
dev-lisp/cl-trivial-sockets
=dev-lisp/cl-typesetting-110
dev-lisp/cl-ubf
dev-lisp/cl-uffi
dev-lisp/cl-unit
dev-lisp/cl-url-rewrite
=dev-lisp/cl-utilities-1.2.3
=dev-lisp/cl-utilities-1.0.2
dev-lisp/cl-utils-kt
dev-lisp/cl-webactions
=dev-lisp/cl-who-0.6.1
=dev-lisp/cl-who-0.6.0
=dev-lisp/cl-who-0.5.0
dev-lisp/cl-with
dev-lisp/cl-xlunit
dev-lisp/cl-xml-emitter
dev-lisp/cl-xml-psychiatrist
dev-lisp/cl-xmls
dev-lisp/cl-xmls-valid
dev-lisp/cl-xptest
=dev-lisp/cl-yacc-0.1
=dev-lisp/cl-yacc-0.2
dev-lisp/cl-yaclml-darcs
=dev-lisp/cl-yahoo-0.4
=dev-lisp/cl-yahoo-0.5
dev-lisp/cl-z80
dev-lisp/cl-zebu
dev-lisp/cl-zip
dev-lisp/cl-zpb-ttf
dev-lisp/hedgehog
dev-lisp/lush
dev-lisp/xlispstat
dev-vcs/mcvs
media-sound/rip-l

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (13 Sep 2010)
# Masked before final release.
=net-zope/zope-2.13*

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (13 Sep 2010)
# Unmaintained. Masked so that Zope 2.12/2.13 is preferred.
=net-zope/zope-3*

# Pacho Ramos <pacho@gentoo.org> (13 Sep 2010)
# Nothing in the tree requires this, unable to see
# any major distribution still shipping this, unable to find any
# upstream update since a lot of time, does not respect LDFLAGS
# (bug 333957) and doesn't have an autotools based build system.
x11-libs/gtkscintilla2

# Doug Goldstein <cardoe@gentoo.org> (8 Sep 2010)
# masked live version
=x11-libs/cairo-9999*

# Doug Goldstein <cardoe@gentoo.org> (7 Sep 2010)
# beta series mask
>=x11-drivers/nvidia-drivers-260

# Kacper Kowalik <xarthisius@gentoo.org> (7 Sep 2010)
# Mask until fully tested
x11-misc/lightdm

# Sebastian Pipping <sping@gentoo.org> (1 Sep 2010)
# Mask upcoming bumps, potentially too hot to push to everyone
=media-libs/libdvdread-4.1.3_p1217
=media-video/dvdbackup-0.4.1

# Markos Chandras <hwoarang@gentoo.org> (31 Aug 2010)
# Several QA issues listed on bug #272200. Masked until
# I clean this up
net-analyzer/w3af

# Diego E. Pettenò <flameeyes@gentoo.org> (31 Aug 2010)
#  on behalf of QA team
#
# Last update in 2004; does not respect LDFLAGS; hacky
# ebuild; missing toolset to use it; basically abandoned
# upstream.
#
# Removal on 2010-10-30
sys-auth/pam_pwdfile

# Diego E. Pettenò <flameeyes@gentoo.org> (30 Aug 2010)
#  on behalf of QA team
#
# Initial import in 2005 and never bumped; no users in tree;
# since revision 1.2 it has been installing the conf.d file
# over the init.d (so it never really worked).
#
# Removal on 2010-10-29
net-misc/omnievents

# Diego E. Pettenò <flameeyes@gentoo.org> (30 Aug 2010)
#  on behalf of QA team
#
# Package was added in 2004 and never bumped; the installed
# "init script" is not compatible with Gentoo's init system.
#
# Removal on 2010-10-29
net-mail/ixbiff

# Diego E. Pettenò <flameeyes@gentoo.org> (30 Aug 2010)
#  on behalf of QA team
#
# Last version bump in 2003; GNU coreutils has stat(1)
# already; BusyBox has its own applet; *BSD have their own
# stat command.
#
# Removal on 2010-10-29
sys-apps/stat

# Doug Goldstein <cardoe@gentoo.org> (28 Aug 2010)
# Need to investigate build errors on some kernels
=app-emulation/kvm-kmod-2.6.35

# Diego E. Pettenò <flameeyes@gentoo.org> (28 Aug 2010)
#  on behalf of QA team
#
# Broken ebuild (dosed rather than sed during unpack); bug
# #175327; maintainer needed; last revision bump in 2005,
# last version bump in 2003; no user in tree.
#
# Removal on 2010-10-27
sys-devel/omni

# Diego E. Pettenò <flameeyes@gentoo.org> (27 Aug 2010)
#  on behalf of QA team
#
# Bumped this year after seven years, but no users in the
# tree, and the license status seems to be uncertain.
#
# Removal on 2010-10-26
dev-libs/pcl

# Diego E. Pettenò <flameeyes@gentoo.org> (25 Aug 2010)
#  on behalf of QA team
#
# Fails to build since July 2009 (bug #277554).
#
# Removal on 2010-10-24
app-i18n/imhangul-status-applet

# Jonathan Callen <abcd@gentoo.org> (24 Aug 2010)
# Breaks API and ABI, not all packages fixed yet
>=dev-libs/gobject-introspection-0.9.3

# Alex Legler <a3li@gentoo.org> (18 Aug 2010)
# Fails to install with the latest stable versions of OpenSSL and Tk.
# The 1.8.6 packages will be removed in 60 days. Reference: Bug 332597.
=dev-lang/ruby-1.8.6*

# Pawel Hajdan jr <phajdan.jr@gentoo.org> (16 Aug 2010)
# Experimental binary package compiled on Gentoo.
~www-client/chromium-bin-5.0.375.125
~www-client/chromium-bin-5.0.375.127
~www-client/chromium-bin-6.0.472.51

# Tiziano Müller <dev-zero@gentoo.org> (11 Aug 2010)
# Mask until prime time
# For celt-0.8.1: just happened to bump it while doing 0.5.1.3
app-emulation/opennebula
app-emulation/spice
app-emulation/spice-protocol
app-emulation/qemu-kvm-spice
=media-libs/celt-0.5.1.3
=media-libs/celt-0.8.1

# Diego E. Pettenò <flameeyes@gentoo.org> (10 Aug 2010)
#  on behalf of QA team
#
# The ebuild breaks about any QA policy regarding not touching
# live filesystem as it writes to LVM configuration,
# cron configuration, current-running kernel modules, RPM
# library, ...
#
# Removal on 2010-10-09
app-admin/webmin

# Jeroen Roovers <jer@gentoo.org> (03 Aug 2010)
# Alphas and snapshots are not for everyday use
# <http://my.opera.com/desktopteam/blog>
=www-client/opera-10.70*
=www-client/opera-11*

# Sergei Trofimovich <slyfox@gentoo.org> (1 Aug 2010)
# Masked for removal in 30 days. Bunch of serious
# bugs (bug #303665), and minor ones (bug #240036).
# Dead upstream.
dev-lang/hugs98

# Pawel Hajdan jr <phajdan.jr@gentoo.org> (25 Jul 2010)
# The v8 package is still very experimental and not ready for general use.
# All comments, feedback, and patches are welcome, see the project page:
# http://www.gentoo.org/proj/en/desktop/chromium/index.xml
dev-lang/v8

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (22 Jul 2010)
# Development versions.
=net-libs/gnutls-2.11*

# Luca Barbato <lu_zero@gentoo.org> (21 Jul 2010)
# Not ready for public consumption, clashes with current mesa-git
media-libs/shivavg

# Jeroen Roovers <jer@gentoo.org> (21 Jul 2010)
# Development snapshot
=net-ftp/lftp-4.0.9.1

# Stefan Briesenick <sbriesen@gentoo.org> (21 Jul 2010)
# doesn't compile against latest media-libs/spandsp.
# not needed anymore for Asterisk 1.6.
net-misc/asterisk-spandsp_codec_g726

# Stefan Briesenick <sbriesen@gentoo.org> (21 Jul 2010)
# Abandoned upstream. Won't work with current kernels.
net-dialup/e2220pc
net-dialup/e5520pc
net-dialup/fcclassic
net-dialup/fcdsl
net-dialup/fcdsl2
net-dialup/fcdslsl
net-dialup/fcdslslusb
net-dialup/fcdslusb
net-dialup/fcdslusba
net-dialup/fcpci
net-dialup/fcpcmcia
net-dialup/fcpnp
net-dialup/fcusb
net-dialup/fcusb2
net-dialup/fritzcapi
net-dialup/fxusb
net-dialup/fxusb_CZ
net-wireless/fwlanusb

# Daniel Black <dragonheart@gentoo.org> (18 Jul 2010)
# Abandoned upstream.
# Difficulties transitioning to python3 as per bug 308271
# Performs same functionality as kwallet
app-admin/kedpm

# Daniel Black <dragonheart@gentoo.org> (18 Jul 2010)
# Abandoned upstream.
# Difficulties transitioning to python3 as per bug 308331
app-cdr/sync2cd

# Jeroen Roovers <jer@gentoo.org> (13 Jul 2010)
# The ebuild still needs work, but if you can help testing
# it, then please unmask (bug #317325)
=net-analyzer/net-snmp-5.5*

# Patrick Lauer <patrick@gentoo.org> (11 Jul 2010)
# Upstream has EOL'ed 7.4 and 8.0. EOL for 8.1 is November.
# Migration to supported / new versions recommended.
=dev-db/postgresql-base-7.4*
=dev-db/postgresql-base-8.0*
=dev-db/postgresql-server-7.4*
=dev-db/postgresql-server-8.0*
=dev-db/postgresql-docs-7.4*
=dev-db/postgresql-docs-8.0*

# Doug Goldstein <cardoe@gentoo.org> (07 Jul 2010)
# No actual Gentoo support yet. If you're interested, please see bug #295993
net-misc/netcf

# Markos Chandras <hwoarang@gentoo.org> (06 Jul 2010)
# Masking development releases
=x11-misc/treeline-1.3.3

# Tobias Heinlein <keytoaster@gentoo.org> (05 Jul 2010)
# Severe security issues (bug #322855)
=www-plugins/adobe-flash-10.0*

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (04 Jul 2010)
# Python 2.7 masked until sufficient number of reverse dependencies is fixed.
~dev-lang/python-2.7

# Nirbheek Chauhan <nirbheek@gentoo.org> (29 Jun 2010)
# Mask dev-libs/seed; several ebuild issues, and missing pure-runtime deps
# Also needs USE=introspection to be unmasked
dev-libs/seed

# Christian Faulhammer <fauli@gentoo.org> (28 Jun 2010)
# Beta version
~dev-lang/erlang-14.1

# Pawel Hajdan jr <phajdan.jr@gentoo.org> (22 Jun 2010)
# Masked for testing. It's quite "challenging" to package.
>=sci-mathematics/nusmv-2.5.0

# Kacper Kowalik <xarthisius@gentoo.org> (21 Jun 2010)
# New version modular version of heartbeat
# Waiting for migration guide and extensive set of tests
#
>=sys-cluster/heartbeat-3.0.3

# Alexis Ballier <aballier@gentoo.org> (17 Jun 2010)
# New major release, some packages fail to build
# Mask until they are fixed
# Also mask packages _requiring_ ocaml 3.12
>=dev-lang/ocaml-3.12.0_beta
>=dev-ml/type-conv-2.0.0

# Justin Lecher <jlec@gentoo.org> (16 Jun 10)
# Just working with the masked experimental version of refmac
>=sci-libs/monomer-db-5.16

# Peter Volkov <pva@gentoo.org> (13 Jun 2010)
# Mask release candidate
=net-analyzer/wireshark-1.4.0*

# Jeremy Olexa <darkside@gentoo.org> (12 Jun 2010)
# Dead upstream, last update from 2005, no maintainer.
# Removed in 60 days by treecleaners, bug 311533
app-misc/mved

# Robin H. Johnson <robbat2@gentoo.org> (09 Jun 2010)
# Fails to self-verify/sign in FIPS mode, pending upstream response before
# usage for GSoC project.
app-crypt/hmaccalc

# Luca Barbato <lu_zero@gentoo.org> (21 May 2010)
# development release
=dev-db/mongodb-1.5*

# Alex Alexander <wired@gentoo.org> (20 May 2010)
# development releases
=www-client/uget-1.5.9*

# Justin Lecher <jlec@gentoo.org> (16 May 2010)
# Upstreams testing version
# Added on request
>=sci-chemistry/refmac-5.6

# Robin H. Johnson <robbat2@gentoo.org> (11 May 2010)
# Masked for testing, and some testsuite failures.
# Bug 313769
=sys-libs/db-5.0*

# Peter Volkov <pva@gentoo.org> (09 May 2010)
# Fails to build/work, bug #319085
net-analyzer/ipac-ng

# Stanislav Ochotnicky <sochotnicky@gentoo.org> (05 May 2010)
# Masked for testing.
=app-arch/rpm-4.8.0

# Tony Vroon <chainsaw@gentoo.org> (02 May 2010)
# Fails to build, 1.6.1/1.6.2 patched to provide equivalent functionality.
# Removal at end of May.
net-misc/asterisk-app_nv_faxdetect

# Tomáš Chvátal <scarabeus@gentoo.org> (27 Apr 2010)
# Replaced by >sci-libs/netcdf-4.0
sci-libs/libnc-dap

# Mark Loeser <halcy0n@gentoo.org> (24 Apr 2010)
# Masked for testing.  Only use this version of gcc if you know what you are
# doing
=sys-devel/gcc-4.5*
=dev-java/gcj-jdk-4.5*

# Peter Volkov <pva@gentoo.org> (22 Apr 2010)
# Masking development kernels. Test it and report bugs upstream.
=sys-kernel/openvz-sources-2.6.32*

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (16 Apr 2010)
# Masked to enforce upgrade which looks like downgrade.
>=dev-python/drpython-160

# Michael Sterrett <mr_bones_@gentoo.org> (14 Apr 2010)
# gtk+-1 is old and nasty.
# Start transitioning away from these packages.
# Read man 5 portage about package.unmask to unmask the package locally.
games-arcade/cervi
games-emulation/darcnes
games-emulation/epsxe
games-emulation/gtuxnes
games-emulation/infones
games-emulation/pcsx
games-emulation/pcsx2
games-emulation/ps2emu-cddvdlinuz
games-emulation/ps2emu-cdvdiso
games-emulation/ps2emu-dev9null
games-emulation/ps2emu-gssoft
games-emulation/ps2emu-padxwin
games-emulation/ps2emu-spu2null
games-emulation/ps2emu-usbnull
games-emulation/psemu-cdriso
games-emulation/psemu-padjoy
games-emulation/psemu-padxwin
games-emulation/psemu-peopssoftgpu
games-emulation/psemu-peopsspu
games-fps/wmquake
games-kids/gtans
games-kids/stickers
games-mud/gMOO
games-puzzle/codebreaker
games-puzzle/glickomania
games-puzzle/xphotohunter
games-puzzle/xpuyopuyo
games-simulation/corewars
games-strategy/xscorch

# Bernard Cafarelli <voyageur@gentoo.org> (12 Apr 2010)
# Mask until bug #314833 is fixed
=net-ftp/filezilla-3.3.2.1-r1
=net-ftp/filezilla-3.3.3-r1

# Pacho Ramos <pacho@gentoo.org> (10 Apr 2010)
# This version provides packages from testing to let people using
# latest Xorg (from ~arch or overlay) have 3D support. If you don't need it,
# keep with unmasked versions.
#
# Please don't ask for including testing packages in other emul
# packages, this is an exception to current policy because some people
# from X11 team needed 3D support even with bleeding edge Xorg.
=app-emulation/emul-linux-x86-opengl-20100915-r99

# Robert Piasek <dagger@gentoo.org> (09 Apr 2010)
# Mask as it does have some regressions comparing to version 3
=net-misc/modemmanager-0.3_p20100401

# Patrick Lauer <patrick@gentoo.org> (07 Apr 2010)
# Migrating back to unsplit samba ebuilds. Keeping samba-4 masked until release.
net-fs/samba-libs
net-fs/samba-server
net-fs/samba-client
>net-fs/samba-4

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (05 Apr 2010)
# Mask misversioned ebuilds.
=dev-python/visual-5.12
=dev-python/visual-5.13

# Mounir Lamouri <volkmar@gentoo.org> (24 Mar 2010)
# Masked because breaking backward compatibility and still not needed.
>dev-util/bam-0.2.0

# Alistair Bush <ali_bush@gentoo.org> (22 Mar 2010)
# Masked due to producing build failures in stable
# lucene and possibly others. see #309961
=dev-java/javacc-5.0

# Torsten Veller <tove@gentoo.org> (14 Mar 2010)
# Mask "End Of Life" versions
<www-apps/bugzilla-3.2

# Ulrich Mueller <ulm@gentoo.org> (10 Mar 2010)
# Emacs live ebuilds. Use at your own risk.
~app-editors/emacs-vcs-23.2.9999
~app-editors/emacs-vcs-24.0.9999
~virtual/emacs-24

# Mike Frysinger <vapier@gentoo.org> (07 Mar 2010)
# Very old packages that people should have upgraded away from
# long ago.  Courtesy mask ... time to upgrade.
# Added <sys-fs/e2fsprogs as well (halcy0n)
sys-libs/com_err
sys-libs/ss
<sys-libs/e2fsprogs-libs-1.41.8
<sys-fs/e2fsprogs-1.41.9

# Jeroen Roovers <jer@gentoo.org> (28 Feb 2010)
# Development release
=app-admin/sysstat-9.1*

# Robert Piasek <dagger@gentoo.org> (23 Feb 2010)
# Masking libmapi as it depends on masked samba4
=net-libs/libmapi-0.9

# Robin H. Johnson <robbat2@gentoo.org> (01 Feb 2010)
# Mask 5.4 series that is nearly a release candidate upstream (expected within the next 6 months)
# Mask 5.5/6.0 series that are alpha and and crazy experimental.
=dev-db/mysql-5.4*
=virtual/mysql-5.4*
>=dev-db/mysql-5.5
>=virtual/mysql-5.5

# Lennart Kolmodin <kolmodin@gentoo.org> (26 Jan 2010)
# Masked earlier releases of dev-lang/ghc-6.12*.
# We want to use ghc-6.12.3, not the older versions.
=dev-lang/ghc-6.12.1*
=dev-lang/ghc-6.12.2*

# Nirbheek Chauhan <nirbheek@gentoo.org> (25 Jan 2010)
# Final rc of networkmanager-0.8 and friends
# Mask for testing
=net-misc/networkmanager-pptp-0.7.999*
=net-misc/networkmanager-vpnc-0.7.999*
=net-misc/networkmanager-openvpn-0.7.999*
=gnome-extra/nm-applet-0.7.999*

# Matthias Schwarzott <zzam@gentoo.org> (22 Jan 2010)
# since long time included in media-tv/gentoo-vdr-scripts
media-tv/vdr-dvd-scripts
media-tv/vdrplugin-rebuild

# Pawel Hajdan jr <phajdan.jr@gentoo.org> (07 Jan 2010)
# Dev channel releases are only for people who are developers or want more
# experimental features and accept a more unstable release.
~www-client/chromium-8.0.552.0
~www-client/chromium-8.0.552.11
~www-client/chromium-8.0.552.18

# Christian Parpart <trapni@gentoo.org> (23 Dec 2009)
# Masked for testing/feedback.
media-sound/teamspeak-server-bin

# Joerg Bornkessel <hd_brummy@gentoo.org> (02 Dec 2009)
# cvs ebuild vdr-xineliboutput-9999 masked for lifetime
=media-plugins/vdr-xineliboutput-9999

# Krzysztof Pawlik <nelchael@gentoo.org> (23 Nov 2009)
# Borken TPM patch, see bug #294119
=sys-apps/rng-tools-2-r2

# Alexis Ballier <aballier@gentoo.org> (14 Nov 2009)
# beta release
>=dev-ml/ocamlnet-3.0_beta

# Doug Goldstein <cardoe@gentoo.org> (07 Nov 2009)
# upstream MythTV development versions
# complain upstream if something is broken
# or if it's specific to the ebuild, any bugs that get
# filed require a patch. i.e. if you can't patch it
# you shouldn't be running this version
>=media-tv/mythtv-0.24_alpha1
>=x11-themes/mythtv-themes-0.24_alpha1
>=x11-themes/mythtv-themes-extra-0.24_alpha1
>=media-plugins/mytharchive-0.24_alpha1
>=media-plugins/mythbrowser-0.24_alpha1
>=media-plugins/mythcontrols-0.24_alpha1
>=media-plugins/mythgallery-0.24_alpha1
>=media-plugins/mythgame-0.24_alpha1
>=media-plugins/mythmovies-0.24_alpha1
>=media-plugins/mythmusic-0.24_alpha1
>=media-plugins/mythnetvision-0.24_alpha1
>=media-plugins/mythnews-0.24_alpha1
>=media-plugins/mythphone-0.24_alpha1
>=media-plugins/mythvideo-0.24_alpha1
>=media-plugins/mythweather-0.24_alpha1
>=www-apps/mythweb-0.24_alpha1
>=media-plugins/mythzoneminder-0.24_alpha1

# Rémi Cardona <remi@gentoo.org> (05 Nov 2009)
# Broken, will stay masked until fixed.
# see bug #290086 for more info
=x11-apps/xdm-1.1.9

# Samuli Suominen <ssuominen@gentoo.org> (24 Oct 2009)
# Mask pre-4.8 Xfce4 for testing.
#
# Don't use xfdesktop-4.7.0 yet, wait for garcon-0.1.2 because
# menu files are moved around.
#
>=xfce-base/xfwm4-4.7.0
>=xfce-base/xfdesktop-4.7.0
>=xfce-base/xfce4-session-4.7.0
>=xfce-base/xfce-utils-4.7.0
>=xfce-base/exo-0.5.1
>=xfce-base/xfce4-settings-4.7.0
>=xfce-base/thunar-1.1.0
>=xfce-extra/thunar-volman-0.5
>=xfce-extra/thunar-media-tags-plugin-0.1.2-r1
>=xfce-base/xfce4-panel-4.7.0
xfce-extra/thunar-vfs
>=xfce-extra/xfce4-xkb-plugin-0.5.3.3-r9
>=xfce-base/libxfce4util-4.7.2
>=xfce-extra/thunar-thumbnailers-4.7.0

# Peter Alfredsen <loki_val@gentoo.org> (21 Oct 2009)
# Masked because this needs a patch to be applied to portage
# to not install the kitchensink and everything else
# into /usr/src/debug with FEATURES=installsources
=dev-util/debugedit-4.4.6-r2

# Diego E. Pettenò <flameeyes@gmail.com> (9 Oct 2009)
# Untested yet; documented only in Russian, help is appreciated.
sys-auth/pam_keystore

# Peter Alfredsen <loki_val@gentoo.org> (09 Sep 2009)
# Fails to build with newest mono, causing dependency
# conflicts (#259700).
dev-lang/nemerle

# Diego E. Pettenò <flameeyes@gentoo.org> (8 Aug 2009)
#  on behalf of QA Team
#
# Mass-masking of live ebuilds; we cannot guarantee working state of
# live ebuilds, nor the availability of the server hosting them. As
# per QA team policy, all these need to be kept masked by default, if
# available in the tree.
dev-lisp/cl-arnesi-darcs
dev-lisp/cl-fiveam-darcs
dev-lisp/cl-parenscript-darcs
dev-lisp/cl-rfc2109-darcs
dev-lisp/cl-rfc2388-darcs
dev-lisp/cl-yaclml-darcs
media-tv/v4l-dvb-hg
dev-embedded/sdcc-svn
net-irc/irssi-svn
~app-doc/repodoc-9999
~app-i18n/skk-jisyo-9999
~net-wireless/wpa_supplicant-9999
net-misc/netcomics-cvs
dev-lisp/cl-ansi-tests-cvs
app-portage/layman-dbtools

# Federico Ferri <mescalinum@gentoo.org> (08 Aug 2009)
# Doesn't build with Tcl 8.5, has several bugs open
=dev-tcltk/tcl-debug-2.0

# Steve Dibb <beandog@gentoo.org> (31 Jul 2009)
# Unsupported, but popular.  No plans for removal.
media-sound/alsa-driver

# Marijn Schouten <hkBst@gentoo.org> (29 Jul 2009)
# Masked for increasingly many problems. Upstream is flaky and hasn't released since 2005.
# Maxima is the only consumer and can be built with sbcl or clisp.
# Hopefully upstream will do a release that we can add to revive this package.
dev-lisp/gcl

# Jeremy Olexa <darkside@gentoo.org> (28 Jul 2009)
# On behalf of Robin H. Johnson <robbat2@gentoo.org>.
# These versions are vulnerable to GLSA's and should not be used. They will stay
# in the tree because they are useful to tracking down bugs. You have been
# warned. bug 271686
<dev-db/mysql-5.0.60-r1
<virtual/mysql-5.0

# Ben de Groot <yngwin@gentoo.org> (25 Jun 2009)
# Mask the Qt4 meta ebuild, to prevent devs from being silly and depend on
# the meta ebuild instead of on the specific split Qt ebuilds needed. See
# bug 217161 comment 11. Users may unmask this if they want to pull in all
# Qt modules, but packages in portage (or overlays) will pull in the split
# modules they need as dependency. Unmasking this will most likely pull in
# more than you need. This meta ebuild will be removed when we can add sets
# to the portage tree.
=x11-libs/qt-4*

# Nirbheek Chauhan <nirbheek@gentoo.org> (10 Jun 2009)
# Several feature regressions that will make our users
# go on a witchhunt if unmasked
# * No XDMCP connection UI
# * No configuration/theming support
# * No support for auth backends other than PAM
# * Many more...
>=gnome-base/gdm-2.26

# Torsten Veller <tove@gentoo.org> (10 Jun 2009)
# Mask unstable releases. Read the warning!
=app-office/gnucash-2.3*

# Jeroen Roovers <jer@gentoo.org> (21 Apr 2009)
# Masked until out of beta
=dev-libs/libevent-2*

# Benedikt Böhm <hollow@gentoo.org> (19 Apr 2009)
# masked for testing
=net-analyzer/centreon-1.4.2.7

# Tiziano Müller <dev-zero@gentoo.org> (08 Apr 2009)
# pre-releases
net-libs/libinfinity
>=app-editors/gobby-0.4.91

# Paul Varner <fuzzyray@gentoo.org> (06 Apr 2009)
# Dead upstream and has issues with newer portages.
# Due to popular demand and no suitable replacement, it will stay in the tree
# in a masked status until it completely breaks or is replaced.
app-portage/udept

# Tony Vroon <chainsaw@gentoo.org> (30 Mar 2009)
# The v4 branch of DHCP has a new build system and a "minimal" dhclient-only
# build is not yet supported. The IPv6 support seems a bit rough at the edges
# as well. As such, this is for the adventurous only.
# Bug reports are welcome if they carry patches.
>=net-misc/dhcp-4.0.0

# Alex Legler <a3li@gentoo.org> (20 Mar 2009)
# Ruby 1.9 for preliminary testing of libraries depending on it, bug 203706.
# Expect (some) breakages and incompatibilities.
# Want to help testing? #gentoo-ruby on Freenode
>=dev-lang/ruby-1.9.1
~virtual/ruby-ssl-1
~virtual/ruby-rdoc-1

# Matti Bickel <mabi@gentoo.org> (1 Mar 2009)
# Mask testing branch
=x11-libs/fox-1.7*

# mask pending removal
# Benedikt Böhm <hollow@gentoo.org> (10 Jan 2009)
# baselayout-vserver is unmaintained and obsoleted by baselayout-2/openrc.
# Please, upgrade to openrc. removal after openrc goes stable, bug #254519
sys-apps/baselayout-vserver

# Zac Medico <zmedico@gentoo.org> (05 Jan 2009)
# Portage 2.2 is masked due to known bugs in the
# package sets and preserve-libs features. See
# bug #253802 for details.
>=sys-apps/portage-2.2_pre

# Diego E. Pettenò <flameeyes@gentoo.org> (03 Jan 2009)
# These packages are not supposed to be merged directly, instead
# please use sys-devel/crossdev to install them.
dev-libs/cygwin
dev-util/mingw-runtime
dev-util/mingw64-runtime
dev-util/w32api

# Mike Pagano <mpagano@gentoo.org> (17 Dec 2008)
# Masked waiting on >=portage-2.2* to be unmasked
>=app-portage/portpeek-2

# Robin H. Johnson <robbat2@gentoo.org> (06 Dec 2008)
# The init.d scripts and default rules need updating and serious testing.
# Do not use the old ones with the new versions of audit, you will get weird
# crashes.
>sys-process/audit-1.7.4

# Peter Volkov <pva@gentoo.org> (16 Nov 2008)
# The development branch, to be unmasked when out of beta by upstream.
=net-misc/socat-2.0.0*

# Steve Dibb <beandog@gentoo.org> (5 Nov 2008)
# Mask realplayer codecs for security bug 245662
# http://forums.gentoo.org/viewtopic-t-713051.html
media-libs/amd64codecs
media-libs/realcodecs

# Doug Goldstein <cardoe@gentoo.org> (17 Sep 2008)
# under development
gnome-extra/gnome-lirc-properties

# Markus Ullmann <jokey@gentoo.org> (7 Jul 2008)
# mask for security bug #190667
net-irc/bitchx

# Vlastimil Babka <caster@gentoo.org> (20 May 2008)
# Masked for testing
=app-arch/rpm-5*

# Rémi Cardona <remi@gentoo.org> (16 Apr 2008)
# Masked until somebody picks it up
dev-cpp/bakery

# Chris Gianelloni <wolf31o2@gentoo.org> (3 Mar 2008)
# Masking due to security bug #194607 and security bug #204067
games-fps/doom3
games-fps/doom3-cdoom
games-fps/doom3-chextrek
games-fps/doom3-data
games-fps/doom3-demo
games-fps/doom3-ducttape
games-fps/doom3-eventhorizon
games-fps/doom3-hellcampaign
games-fps/doom3-inhell
games-fps/doom3-lms
games-fps/doom3-mitm
games-fps/doom3-phantasm
games-fps/doom3-roe
games-fps/quake4-bin
games-fps/quake4-data
games-fps/quake4-demo

# Alon Bar-Lev <alonbl@gentoo.org> (23 Feb 2008)
# These are not yet stable.
sys-fs/redirfs

# Raúl Porcel <armin76@gentoo.org> (18 Feb 2008)
# Probably breaks a lot of stuff, needs testing
=net-wireless/wireless-tools-30_pre*

# Sebastien Fabbro <bicatali@gentoo.org> (05 Feb 2008)
# sci-libs/metis-5.* still experimental
>=sci-libs/metis-4.99

# Raúl Porcel <armin76@gentoo.org> (12 Dec 2007)
# Segfaults with IMAP
=x11-plugins/replytolist-0.3.0

# Piotr Jaroszyński <peper@gentoo.org> (26 Nov 2007)
# opensync live ebuilds
=app-pda/libsyncml-9999
=app-pda/libopensync-9999
=app-pda/osynctool-9999
=app-pda/libopensync-plugin-evolution2-9999
=app-pda/libopensync-plugin-file-9999
=app-pda/libopensync-plugin-gnokii-9999
=app-pda/libopensync-plugin-google-calendar-9999
=app-pda/libopensync-plugin-gpe-9999
=app-pda/libopensync-plugin-irmc-9999
=app-pda/libopensync-plugin-palm-9999
=app-pda/libopensync-plugin-python-9999
=app-pda/libopensync-plugin-syncml-9999
=app-pda/libopensync-plugin-vformat-9999

# MATSUU Takuto <matsuu@gentoo.org> (5 Apr 2007)
# to be tested, seems unstable
>=app-i18n/scim-anthy-1.3.0

# Marcelo Goes <vanquirius@gentoo.org> (3 Apr 2007)
# Nessus 2.3.x was discontinued
# 2.3.x users, please migrate to 2.2.9
# See bug 169466 for more information
>=net-analyzer/nessus-libraries-2.3.1
>=net-analyzer/libnasl-2.3.1
>=net-analyzer/nessus-core-2.3.1
>=net-analyzer/nessus-plugins-2.3.1
>=net-analyzer/nessus-2.3.1

# Stefaan De Roeck <stefaan@gentoo.org> (09 Sep 2006)
# 1.5.x is a development branch, people should test 1.4.x by default
=net-fs/openafs-1.5*
=net-fs/openafs-kernel-1.5*

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

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

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

# 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

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

# 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

# <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
#
games-fps/unreal-tournament-goty
games-fps/unreal-tournament-strikeforce
games-fps/unreal-tournament-bonuspacks
games-fps/aaut