summaryrefslogtreecommitdiff
blob: 2ae174638d2c58a627df2a855c3b28401905c283 (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
####################################################################
# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.10324 2009/08/13 11:20:10 jer 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 ---

# Samuli Suominen <ssuominen@gentoo.org> (13 Aug 2009)
# Temp. mask since the installed headers include private
# ones or wrong path.
=dev-games/kyra-2.1.3_p20090813

# Timo Gurr <tgurr@gentoo.org> (13 Aug 2009)
# Mask Mumble 1.2.0 snapshots for testing.
=media-sound/mumble-1.2.0_pre*
=media-sound/murmur-1.2.0_pre*

# Alex Alexander <wired@gentoo.org> (12 Aug 2009)
# Masked beta versions for testing
=net-p2p/ktorrent-3.3_beta*

# Samuli Suominen <ssuominen@gentoo.org> (11 Aug 2009)
# Moved inside actual gst-plugins-bad. Masked for removal.
# Bug 281083.
media-plugins/gst-plugins-fluendo-mpegdemux

# Samuli Suominen <ssuominen@gentoo.org> (11 Aug 2009)
# Segmentation faults. Doesn't compile with -Wl,--as-needed.
# Doesn't pass configure with Autoconf 2.64. Bugs 281080,
# 247823 and 281076. Masked for removal.
media-sound/beast
media-sound/beast-data

# Diego E. Pettenò <flameeyes@gentoo.org> (11 Aug 2009)
#  on behalf of QA team
#
# Fails to build (bug #277245), last release in 2004,
# unmaintained in Gentoo.
#
# Removal on 2009-10-10
app-i18n/canuum

# Federico Ferri <mescalinum@gentoo.org> (10 Aug 2009)
# Unmaintained. Masked for removal, bug #249468. (2009-10-11)
net-irc/quirc

# Samuli Suominen <ssuominen@gentoo.org> (10 Aug 2009)
# Needs a internet service which isn't available anymore.
# Masked for removal for bug 280820.
media-plugins/gmpc-lyricwiki

# Samuli Suominen <ssuominen@gentoo.org> (10 Aug 2009)
# Doesn't compile wrt #277660. Doesn't install wrt #211336.
# Masked for removal.
net-mail/lurker

# Alexis Ballier <aballier@gentoo.org> (10 Aug 2009)
# Breaks vlc, fixed in git.
# Leave it masked until vlc 1.0.2 is released
>=media-libs/libass-0.9.7

# Samuli Suominen <ssuominen@gentoo.org> (10 Aug 2009)
# Orphaned library which doesn't compile wrt #278071.
# Masked for removal.
media-libs/ufo

# Diego E. Pettenò <flameeyes@gentoo.org> (10 Aug 2009)
#  on behalf of QA team
#
# Package install a net.aol that does not work with OpenRC,
# and if I'm not mistaken, is now useless as CompuServe was
# shut down on June 30th.
#
# Removal on 2009-10-09
net-dialup/penggy

# Diego E. Pettenò <flameeyes@gentoo.org> (10 Aug 2009)
#  on behalf of QA team
#
# Latest version fails with current Linux headers (bug
# #247970), and has multiple issues; masked version is in
# package.mask since 2007, since then, never touched. It
# also uses the old net-nds/portmap package.
#
# Removal on 2009-10-09
net-fs/sfs

# Diego E. Pettenò <flameeyes@gentoo.org> (10 Aug 2009)
#  on behalf of QA team
#
# Lack Gentoo maintainership as testified by the current
# open bugs (bug #187889 - gcc-4.2, bug #240216 - prestripped
# fiels, bug #91601, bug #125995, bug #140587). Last release
# in tree is 2.2, last release upstream is 2.3 from 2007.
#
# Removal on 2009-10-09
dev-lang/smarteiffel

# Diego E. Pettenò <flameeyes@gentoo.org> (10 Aug 2009)
#  on behalf of QA team
#
# Fails to build with both gcc 4.3 (bug #246095) and
# something else (bug #248365).
#
# Removal on 2009-10-09
sci-mathematics/Macaulay2

# Diego E. Pettenò <flameeyes@gentoo.org> (10 Aug 2009)
#  on behalf of QA team
#
# Fails to build with gcc 4.3 (bug #250922).
#
# Removal on 2009-10-09
dev-php/phpdbg-client

# Diego E. Pettenò <flameeyes@gentoo.org> (10 Aug 2009)
#  on behalf of QA team
#
# Fails to build with gcc 4.3 (bug #252633), has an internal
# copy of openbabel (bug #253068), has broken dependendencies
# (bug #219217).
#
# Removal on 2009-10-09
sci-chemistry/kemistry

# Diego E. Pettenò <flameeyes@gentoo.org> (10 Aug 2009)
#  on behalf of QA team
#
# Fail to build with glibc 2.8 (bug #239935).
#
# Removal on 2009-10-09
app-backup/afbackup-client
app-backup/afbackup-server

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Lacks a Gentoo maintainer (needs a Japanese
# speaker). Incompatible with current dev-libs/eb (bug
# #269526), QA issues (bug #258754), needs a check for
# pango (bug #246874) and has bad autotools handling (bug
# #226679). Last release in 2004.
#
# Removal on 2009-10-08
app-dicts/ebview

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# isdn4k-utils required a complete rewrite more than
# an year ago (see bug #221427), there are multiple QA
# issues with autotools in old packages (bug #226591),
# use of gnuconfig_update (bug #160186), runtime depends
# on builtime-only tools (the already noted bug #221427),
# unused dependencies (bug #249311) and syntax errors with
# baselayout2/openrc (bug #199356).
#
# Follow dependencies.
#
# Removal on 2009-10-08
net-dialup/isdn4k-utils
net-dialup/isdndump
net-dialup/kisdndial
net-dialup/vbox3
net-dialup/raccess4vbox3

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Uses gtk+ 1.2, older versions have bad autotools handling
# (bug #226573), last update in Gentoo in 2005.
#
# Removal on 2009-10-08
dev-util/pilrc

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Bad autotools handling in ncc (bug #206227) and tos-uisp
# (bug #206229). Further failure in tos-uisp due to -Werror
# (bug #227861). The rest are dependencies. The rest
# of dev-tinyos might be added if it doesn't make sense
# without these.
#
# Removal on 2009-10-08
dev-tinyos/ncc
dev-tinyos/tos-make
dev-tinyos/tos-scripts
dev-tinyos/tos-uisp
dev-tinyos/tos-apps

# Samuli Suominen <ssuominen@gentoo.org> (10 Aug 2009)
# Mirror restricted and distfile isn't available anymore.
# Bug 280879. Masked for removal.
dev-lang/realbasic

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Fails to build depending on CFLAGS (bug #239860), lacks
# a Gentoo maintainer, upstream arrived at version 2.13
# (and then seems to have abandoned it in 2007).
#
# Removal on 2009-10-08
app-admin/killproc

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# pnet bundles, conflicts, collides and remove boehm-gc (bugs
# #189806 and #222171). The rest are reverse dependencies.
#
# Removal on 2009-10-08
dev-dotnet/pnet
dev-dotnet/pnetlib
dev-dotnet/pnetc
dev-dotnet/ml-pnet

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Fails to build with gcc 4.3 or later (bug #280919); last
# release in 2003.
#
# Removal on 2009-10-08
app-i18n/minichinput

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Older versions fail to build with modern libraries,
# multiple issues with ebuild as well. The new tsclient-2
# series looks like a fork so will be handled as a new
# package rather than an update.
#
# Removal on 2009-10-08
<net-misc/tsclient-2

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Removal of dev-libs/libowfat because it fails to build (bug
# #272507) and lacks a proper Gentoo maintainer. Dependencies
# follow the mask.
#
# sys-process/minit is already masked for removal
#
# net-misc/slidentd also links statically (bug #273326).
#
# Removal on 2009-10-08
dev-libs/libowfat
net-misc/slidentd
www-servers/gatling

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Fails to build (bug #274384); upstream doesn't look
# extremely active.
#
# Removal on 2009-10-08
dev-dotnet/monouml

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Builds wrong bytecode version (bug #264290) and bundles
# both jars and libhunspell (bug #258358).
#
# Removal on 2009-10-08
app-text/omegat

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Fails to build with _FORTIFY_SOURCE=2 (bug #264094) and
# gcc 4.4 (bug #280824). Upstream disappeared.
#
# Removal on 2009-10-08
net-fs/fex

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Requires a kernel option gone since 2.6.25 (December 2007),
# see bug #256028.
#
# Removal on 2009-10-08
net-firewall/tuxfrw

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Fails parallel make (bug #258130), lacks a Gentoo
# maintainer, replaced by texlive-core.
#
# Removal on 2009-10-08
dev-util/cweb

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Pollutes enviornment (bug #252333) with broken env.d file.
#
# Removal on 2009-10-08
dev-java/rjava

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Fails to build with gcc 4.3 (bug #251621).
#
# Removal on 2009-10-08
sci-chemistry/maid

# Samuli Suominen <ssuominen@gentoo.org> (09 Aug 2009)
# Doesn't compile wrt #274116. Masked for removal.
www-client/ochusha

# Samuli Suominen <ssuominen@gentoo.org> (09 Aug 2009)
# Internal copies of faad2 and mpeg4ip. Doesn't compile
# wrt #277801. Masked by treecleaners.
media-sound/aacgain

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Fails to build with gcc 4.3+ (bug #251486), bo2k_plugins
# also masked. Not touched since 2004.
#
# Removal on 2009-10-08
net-misc/bo2k_console

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Multiple failures (a new one for each tinderbox type,
# bug #249290 and #26073), accesses kernel sources badly
# (bug #241956), uses -Werror (bug #260870).
#
# Removal on 2009-10-08
app-crypt/tpm-emulator

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Fails to build (bug #248443), missing Gentoo maintainer.
#
# Removal on 2009-10-08
sys-process/minit

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# dev-util/sgb: fails with parallel make, without stopping
# ebuild (installing broken data).
#
# sci-misc/gt-itm: depend on sgb, fails to build because of
# the bug above (bug #248373).
#
# Removal on 2009-10-08
dev-util/sgb
sci-misc/gt-itm

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (09 Aug 2009)
# Masked for removal in 30 days due to security vulnerability (bug #280494).
# Manually keyword >=dev-util/subversion-1.6.4.
<dev-util/subversion-1.6.4

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Broken ebuild (bug #240942), website only in Japanese,
# lacking Gentoo maintainer, replaed by ebnetd (also, only
# in Japanese).
#
# Removal on 2009-10-08
net-misc/ndtpd

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Fails to build with GCC 4.1 or later (bug #248080). Gentoo
# maintainer appear uninterested.
#
# Removal on 2009-10-08
net-misc/bo2k_plugins

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Multiple failures with GCC 4.3 and 4.4 (bug #248022)
# and other issues.
#
# Removal on 2009-10-08
net-irc/mistbot

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Fails to build with recent libpcap (bug #247939).
#
# Removal on 2009-10-08
net-analyzer/trafd

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Fails to build since at least November 2008, no interest
# from current Gentoo maintainers, nothing depending on it.
#
# Removal on 2009-10-08
media-libs/libmovtar

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Missing Gentoo maintainers; fails to build since at least
# October 2008 (bug #247065).
#
# Removal on 2009-10-08
dev-libs/libredblack

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Fails to build with recent linux-headers (bug #241484,
# October 2008).
#
# Removal on 2009-10-08
x11-misc/xac

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Fails to build with glibc 2.8 (bug #241416, October 2008,
# now stable). Abuses $ROOT (bug #258122). Lacks maintainers.
#
# Removal on 2009-10-08
sys-fs/ocfs2-tools

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Fails aclocal (bug #220177, May 2008) and needs some
# cleanup. Only user is/was net-fs/shfs that is scheduled
# for removal on August 14th 2009.
#
# Removal on 2009-10-08
net-fs/am-utils

# Samuli Suominen <ssuominen@gentoo.org> (09 Aug 2009)
# Needs Xfce 4.4 style xfce-mcs-manager. Masked for removal.
dev-python/pyxfce

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Unmaintained in Gentoo, fails to build (linux-headers,
# bug #240212, and glibc 2.9 after that). Ebuild does not
# conform to current QA standards.
#
# Removal on 2009-10-08
dev-libs/libexploit

# Diego E. Pettenò <flameeyes@gentoo.org> (09 Aug 2009)
#  on behalf of QA team
#
# Fails to build, see bug #239592 (October 2008, no response
# from maintainer).
#
# Removal on 2009-10-08
dev-db/sqsh

# Samuli Suominen <ssuominen@gentoo.org> (09 Aug 2009)
# Outdated virtual for Xfce 4.4. Use eix to search for
# xfce plugins you want to install. This meta only covered
# old ones. Unnecessary maintaince burden for minor arches
# if we wanted to keep this up to date. Masked for removal.
xfce-base/xfce4-extras

# Michał Januszewski <spock@gentoo.org> (08 Aug 2009)
# Live git ebuilds for pycuda/pytools. Use at your own risk, do not
# report Gentoo bugs if stuff breaks after you install them.
=dev-python/pytools-9999
=dev-python/pycuda-9999

# Ulrich Mueller <ulm@gentoo.org> (08 Aug 2009)
# Emacs live CVS ebuilds. Use at your own risk.
app-editors/emacs-cvs

# Federico Ferri <mescalinum@gentoo.org> (08 Aug 2009)
# Doesn't build with Tcl 8.5, no updates since 1/18/06
games-mud/mmucl

# Diego E. Pettenò <flameeyes@gentoo.org> (8 Aug 2009)
#  on behalf of QA Team
#
# libzzub: fails to build (bug #247149), lacking maintainer.
# others: need libzzub
# Removal on 2009-10-08
media-libs/libzzub
media-sound/aldrin
dev-python/pyzzub

# 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
~sys-fs/yaffs-utils-9999
games-emulation/dosbox-cvs
net-irc/irssi-svn

# Samuli Suominen <ssuominen@gentoo.org> (08 Aug 2009)
# Masked by treecleaners for removal. Doesn't compile wrt #215252.
net-im/naim
net-im/naim-modules

# Samuli Suominen <ssuominen@gentoo.org> (08 Aug 2009)
# Masked by treecleaners for removal. Doesn't compile wrt #277673.
media-video/ksubtitleripper

# Samuli Suominen <ssuominen@gentoo.org> (08 Aug 2009)
# Masked by treecleaners for removal. Doesn't compile wrt #223115.
net-wireless/wlassistant

# Samuli Suominen <ssuominen@gentoo.org> (08 Aug 2009)
# Masked by treecleaners for removal. Doesn't compile wrt #277941.
dev-util/cccc

# Samuli Suominen <ssuominen@gentoo.org> (08 Aug 2009)
# Masked by treecleaners for removal. Doesn't compile wrt #277571.
dev-util/diasce

# Samuli Suominen <ssuominen@gentoo.org> (08 Aug 2009)
# Masked by treecleaners for removal. Doesn't compile wrt #272270.
dev-util/motor

# Samuli Suominen <ssuominen@gentoo.org> (08 Aug 2009)
# Masked by treecleaners for removal. Doesn't compile wrt #248563.
x11-misc/glsof

# Samuli Suominen <ssuominen@gentoo.org> (08 Aug 2009)
# Masked by treecleaners for removal. Doesn't compile wrt #240257.
dev-util/hxd

# Samuli Suominen <ssuominen@gentoo.org> (08 Aug 2009)
# Masked by treecleaners for removal. Doesn't compile wrt #239776.
net-misc/cgterm

# Samuli Suominen <ssuominen@gentoo.org> (08 Aug 2009)
# Masked by treecleaners for removal. Doesn't compile wrt #239588.
app-misc/nomadii-utils

# Samuli Suominen <ssuominen@gentoo.org> (08 Aug 2009)
# Masked by treecleaners for removal. Doesn't compile wrt #273274.
x11-themes/baghira

# Samuli Suominen <ssuominen@gentoo.org> (08 Aug 2009)
# Masked by treecleaners for removal. Doesn't compile wrt #274215.
x11-misc/stripclub

# 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

# Marijn Schouten <hkBst@gentoo.org> (08 Aug 2009)
# unmask 4.3 version. Apparently the older versions are
# "Defective By Design" as scarabeus put it.
# Jorge Manuel B. S. Vicetto <jmbsvicett@gentoo.org> (07 Aug 2009)
# Update the mask to match only system-config-printer-kde-4.2.4
# and not later versions. Mask left as-is for printer-applet for
# the moment.
# Alexey Shvetsov <alexxy@gentoo.org> (04 Jun 2009)
# Mask kde4 printing stuff
<kde-base/printer-applet-4.3.0
<kde-base/system-config-printer-kde-4.3.0

# Rémi Cardona <remi@gentoo.org> (06 Aug 2009)
# Big Xorg 1.3/1.4 mask. Masked for removal Real Soon Now (tm)
# xf86-input-evtouch going out completely, switch to evdev
=x11-base/xorg-server-1.3.0.0-r6
=x11-base/xorg-server-1.4.2
x11-drivers/xf86-input-evtouch
<x11-drivers/xf86-input-keyboard-1.3.2
<media-libs/mesa-7.1

# Andreas Proschofsky <suka@gentoo.org> (04 Aug 2009)
# Beta release, needs more testing
>=app-office/openoffice-3.1.1_beta1

# Samuli Suominen <ssuominen@gentoo.org> (03 Aug 2009)
# USE gmplayer in mplayer is deprecated. Use smplayer or
# gnome-mplayer as replacement. Also, this theme pack
# is outdated and is causing problems wrt #224563.
x11-themes/mplayer-skins

# Chris PeBenito <pebenito@gentoo.org> (02 Aug 2009)
# Masked for removal.  These policies have been
# in selinux-base-policy for a long time.
sec-policy/selinux-lvm
sec-policy/selinux-mdadm

# Steve Dibb <beandog@gentoo.org> (01 Aug 2009)
# Mask for removal, name change to app-text/xiphos
# bug 278973
app-text/gnomesword

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

# Diego E. Pettenò <flameeyes@gentoo.org> (30 Jul 2009)
#  on behalf of QA Team
#
# Fails reconfiguration, needs automake 1.6 (bug #259222)
#
# Removal on 2009-09-30
media-tv/ktvschedule

# Samuli Suominen <ssuominen@gentoo.org> (30 Jul 2009)
# Masked for testing.
=sys-kernel/vanilla-sources-2.6.31_rc*

# Samuli Suomienn <ssuominen@gentoo.org> (30 Jul 2009)
# Needs =net-libs/xulrunner-1.8* to compile.
# Replaced by gecko-mediaplayer, see bug #273121.
# Masked for removal in 60 days.
www-plugins/mplayerplug-in

# Samuli Suominen <ssuominen@gentoo.org> (30 Jul 2009)
# Masked for removal wrt bug #276758. Upstream moved to developing Canorus,
# see bug #157501. Or try media-sound/musescore as replacement.
media-sound/noteedit

# Mounir Lamouri <volkmar@gentoo.org> (30 Jul 2009)
# Masked for removal in 60 days.
# Upstream's unactive since 2005. Do not support asterisk versions in tree.
# bug 279383
net-misc/asterisk-chan_bluetooth

# Diego E. Pettenò <flameeyes@gentoo.org> (29 Jul 2009)
#  on behalf of QA Team
#
# Fails to build with gcc 4.3 (bug #240614), 4.4 (bug #278432) and mixes
# compiler flags (bug #199585).
#
# Removal on 2009-09-29
media-video/mmsv2

# Víctor Ostorga <vostorga@gentoo.org> (29 Jul 2009)
# Masked for removal in 60 days. Latest release in 2005, 
# upstream no longer maintains it , Gnome-Art NextGen is a replacement
# bug 245145
gnome-extra/gnome-art

# Marijn Schouten <hkBst@gentoo.org> (29 Jul 2009)
# Masked for removal. Upstream renamed to Clozure CL which can be found in lisp overlay.
dev-lisp/openmcl

# Diego E. Pettenò <flameeyes@gentoo.org> (29 Jul 2009)
#  on behalf of QA Team
#
# Fails to build with glibc 2.10 (bug #276240), and with _FORTIFY_SOURCE
# (bug #274379), bundles libSDL and libSDL_Image (bug #252513). Ebuild
# needs an overhaul for QA standards.
#
# Removal on 2009-09-29
x11-misc/xnc

# 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

# Michal Januszewski <spock@gentoo.org> (29 Jul 2009)
# Masked until an official, non-beta NVIDIA driver supporting CUDA 2.3
# is released.
>=dev-util/nvidia-cuda-sdk-2.3
>=dev-util/nvidia-cuda-toolkit-2.3

# Jeremy Olexa <darkside@gentoo.org> (29 Jul 2009)
# Masked for removal in 60 days. Depends on a vulnerable package that was
# removed (=net-im/silc-toolkit-1.0).
# Maybe can port to new silc-toolkit?? bug 279547
net-im/silky

# 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

# Tomáš Chvátal <scarabeus@gentoo.org> (28 Jul 2009)
# Upstream decided to support only r600 and newer.
# We should no longer use them or depend on them.
# For more info:
#  http://dev.gentoo.org/~scarabeus/ati-mask-reason.txt
<x11-drivers/ati-drivers-9.6
x11-apps/ati-drivers-extra

# Ryan Hill <dirtyepic@gentoo.org> (27 Jul 2009)
# Masked for removal 20090927
# - upstream dead since 2006
# - invalid homepage
# - many other typing tutors in the tree (ktouch, tuxtype, gtypist, klavaro)
# - doesn't work with wxGTK-2.8
# Bug #279431
app-misc/tipptrainer

# Samuli Suominen <ssuominen@gentoo.org> (27 Jul 2009)
# Doesn't compile. Doesn't respect environment.
# Segmentation faults. Bugs #252675, #273405, #276560
media-sound/gnusound

# Michał Januszewski <spock@gentoo.org> (26 Jul 2009)
# Mask for beta versions of the NVIDIA drivers.
>=x11-drivers/nvidia-drivers-190.18
>=media-video/nvidia-settings-190.18

# Samuli Suominen <ssuominen@gentoo.org> (26 Jul 2009)
# Deprecated musepack-tools (SV7). Masked for removal.
# Replaced by >=media-sound/musepack-tools-444 (SV8).
media-sound/mppenc
=media-sound/musepack-tools-1*

# Jeroen Roovers <jer@gentoo.org> (25 Jul 2009)
# Mask new betas with bittorrent support
>net-ftp/lftp-3.99

# Torsten Veller <tove@gentoo.org> (25 Jul 2009)
# breaks tests of POE-XS-Loop-Poll and POE-XS-Loop-EPoll
=dev-perl/POE-Test-Loops-1.020

# Jim Ramsay <lack@gentoo.org> (1 Feb 2008)
# Weird boost dependencies, need to solve this in a different way: Probably by
# actually doing 'amazonmp3-libcompat' for both x86 and amd64. (bug #272699)
net-misc/amazonmp3

# Samuli Suominen <ssuominen@gentoo.org> (22 Jul 2009)
# Orphaned library. Moved to samba and samba-libs.
# Masked for removal.
dev-libs/tdb

# Rémi Cardona <remi@gentoo.org> (22 Jul 2009)
# superceded by x11-libs/pixman, nothing deps on it
# masked for removal in 30 days
media-libs/libpixman

# Lennart Kolmodin <kolmodin@gentoo.org> (22 Jul 2009)
# Mark ghc-6.10.4 and the haskell updater.
~dev-lang/ghc-6.10.4
app-admin/haskell-updater

# Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> (22 Jul 2009)
# The attempts to unbundle iniparser from libcompizconfig are still
# unsuccessful as it causes ccp to break
=x11-libs/libcompizconfig-0.8.2-r2

# Markus Ullmann <jokey@gentoo.org> (21 Jul 2009)
# mask until libsoap 2.27 or higher is in-tree
=net-libs/webkit-gtk-0_p46*

# Romain Perier <mrpouet@gentoo.org> (21 Jul 2009)
# Builds only with >=sys-apps/lm_sensors-3 which is masked
>=gnome-extra/hardware-monitor-1.4.2

# Markos Chandras <hwoarang@gentoo.org> (21 Jul 2009)
# Rc releases should be masked
=media-video/griffith-0.10_rc*

# Maintainer Needed <maintainer-needed@gentoo.org> (21 Jul 2009)
# Security issues with bundled libraries.
# See, http://bugs.gentoo.org/show_bug.cgi?id=251492
# Waiting for TeamSpeak 3 to be released.
media-sound/teamspeak2-server-bin
media-sound/teamspeak2-client-bin

# Torsten Veller <tove@gentoo.org> (19 Jul 2009)
# Fix your dependencies:
# IO-Compress replaces
# - Compress-Zlib
# - IO-Compress-Zlib
# - IO-Compress-Bzip2
# - IO-Compress-Base
# bug #278542
perl-core/Compress-Zlib
perl-core/IO-Compress-Zlib
perl-core/IO-Compress-Bzip2
perl-core/IO-Compress-Base
virtual/perl-Compress-Zlib
virtual/perl-IO-Compress-Zlib
virtual/perl-IO-Compress-Bzip2
virtual/perl-IO-Compress-Base

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (19 Jul 2009)
# cjkcodecs modules are included in Python >=2.4. Separate dev-python/cjkcodecs package
# isn't needed anymore and fails tests (bug #277773). Masked for deletion in 30 days.
dev-python/cjkcodecs

# Rémi Cardona <remi@gentoo.org> (13 Jul 2009)
# broken and unmaintained by upstream, masked for removal in 30 days
# see bug #277521 for more info
x11-drivers/synaptics
x11-drivers/xf86-input-calcomp
x11-drivers/xf86-input-digitaledge
x11-drivers/xf86-input-dmc
x11-drivers/xf86-input-dynapro
x11-drivers/xf86-input-elo2300
x11-drivers/xf86-input-jamstudio
x11-drivers/xf86-input-magellan
x11-drivers/xf86-input-magictouch
x11-drivers/xf86-input-microtouch
x11-drivers/xf86-input-palmax
x11-drivers/xf86-input-spaceorb
x11-drivers/xf86-input-summa
x11-drivers/xf86-input-tek4957
x11-drivers/xf86-input-ur98

# Diego E. Pettenò <flameeyes@gentoo.org> (13 Jul 2009)
#  on behalf of QA Team
#
# Fails to install since 2007, not touched afterwards but for a fix I
# did today.
#
# Removal scheduled for 2009-08-13
# bug #164016
app-backup/bobs

# Hans de Graaff <graaff@gentoo.org> (13 Jul 2009)
# Will be removed in 60 days. No release since 2003, deprecation
# of ruby features has caught up. If you want this to stay
# then please fix bug 276980.
dev-ruby/misen
dev-ruby/dpklib

# Jeremy Olexa <darkside@gentoo.org> (11 Jul 2009)
# * last gentoo bumps in 2007
# * some are stable, some are not
# * remote root security issues
# * external kernel module
# * modules are moved into kernel
# * upstream abandoned external modules
# * do not compile against 2.6.22/24 or later
# Removed by treecleaners in 60 days, bug 277232
net-wireless/rt2400
net-wireless/rt2500
net-wireless/rt2570

# Jeremy Olexa <darkside@gentoo.org> (11 Jul 2009)
# QA removal, ebuild needs work, SSL support is dlopened instead of more
# favorable ways. Project dead, now called mongoose instead. removal bug: 248484
# mongoose bug: 173888
# Removed in ~60 days by treecleaners
www-servers/shttpd

# Jeremy Olexa <darkside@gentoo.org> (11 Jul 2009)
# Removed in 60 days by treecleaners, old glib, last release in 2005, no Gentoo
# maintainer. bug 248391
sys-apps/lkcp

# Jeremy Olexa <darkside@gentoo.org> (11 Jul 2009)
# Removed in ~60 days by treecleaners. Nothing uses it. Upstream doesn't care
# about it, unmaintained. Comment on bug 246960
app-text/dgs

# Diego E. Pettenò <flameeyes@gentoo.org> (9 Jul 2009)
#  on behalf of QA Team
#
# Fails to build; dead upstream as far as I can see.
#
# Removal scheduled for 2009-09-09
# bug #274384
dev-dotnet/monouml

# Víctor Ostorga <vostorga@gentoo.org> (9 Jul 2009)
# Fails to build, dead upstream. 
#
# Removal scheduled for 2009-09-09
# bug #227721
x11-misc/e-fancylauncher

# Diego E. Pettenò <flameeyes@gentoo.org> (9 Jul 2009)
#  on behalf of QA Team
#
# Fails to build; mirror-restricted; unmaintained in Gentoo (but
# active upstream); not used by anything in-tree.
#
# Removal scheduled for 2009-09-09
# bug #277214
x11-libs/ViewKlass

# Diego E. Pettenò <flameeyes@gentoo.org> (9 Jul 2009)
#  on behalf of QA Team
#
# Doesn't build with GCC 4 or later; dead upstream (broken HOMEPAGE
# link too); never bumped.
#
# Removal scheduled for 2009-09-09
# bug #277153
net-p2p/entropy_rsa

# Diego E. Pettenò <flameeyes@gentoo.org> (9 Jul 2009)
#  on behalf of QA Team
#
# Still uses gtk 1.2, fails to build, fails with --as-needed,
# unmaintained
#
# Removal scheduled for 2009-09-09
# Bug #240286
net-misc/sambasentinel

# Diego E. Pettenò <flameeyes@gentoo.org> (6 Jul 2009)
#  on behalf of QA Team
#
# Multiple QA issues, unmaintained, see bug #252017
#
# Removal on 2009-09-07
net-misc/netgo

# Diego E. Pettenò <flameeyes@gentoo.org> (6 Jul 2009)
#  on behalf of QA Team
#
# Multiple QA issues, unmaintained, see bug #248384
#
# Removal on 2009-09-07
sci-visualization/qmatplot

# Ulrich Mueller <ulm@gentoo.org> (06 Jul 2009)
# Masked for removal in 60 days. Last upstream version is from 2003.
# Distfile is gone. Long obsolete with current Emacs versions. Bug 276702.
app-emacs/mule-ucs

# Diego E. Pettenò <flameeyes@gentoo.org> (6 Jul 2009)
#  on behalf of QA Team
#
# openais: Multiple issues, not installable on stable glibc
# systems. ha-cluster team seems to be MIA, as well as wschlich who's
# listed as maintainer.
#
# rest: deps; check also out the cman USE flag masking
#
# Check bug #274922
# Removal on 2009-10-06
sys-cluster/openais
sys-cluster/fence
sys-cluster/cman
sys-cluster/gnbd
sys-cluster/gnbd-kernel
sys-fs/gfs2
sys-fs/gfs
sys-fs/clvm

# Robin H. Johnson <robbat2@gentoo.org> (4 Jul 2009)
# Bug #275291 - New GnuPG release broke seahorse, enigmail, mutt (uncommon
# setup, not in tree).
# Pending release of new versions of enigmail/seahorse.
>=app-crypt/gnupg-2.0.12

# Jeremy Olexa <darkside@gentoo.org> (3 Jul 2009)
# Security issue, dead upstream. Removal in 60 days, bug 273105
media-gfx/megapov

# Jeremy Olexa <darkside@gentoo.org> (3 Jul 2009)
# QA issues with build system, no Gentoo maintainer. Removed in 60 days,
# bug 251426
net-ftp/glftpd

# Jeremy Olexa <darkside@gentoo.org> (3 Jul 2009)
# Fails to build on a stable system (glibc-2.8). Removed in 60 days. bug 249299
app-i18n/jmcce

# Jeremy Olexa <darkside@gentoo.org> (3 Jul 2009)
# Fails to build, no interest in fixing, old bugs. removed in 60 days.
# bug 247945
net-dialup/ivam2

# Jeremy Olexa <darkside@gentoo.org> (3 Jul 2009)
# binpkg that installs into /usr, no Gentoo maintainer, QA removal in 60 days
# unless someone properly packages this one. bug 240768
net-dns/dns2go

# Jeremy Olexa <darkside@gentoo.org> (3 Jul 2009)
# Broken, non-relevant, old. Removal in 60 days. bug 177920
net-wireless/zd1211

# Jeremy Olexa <darkside@gentoo.org> (3 Jul 2009)
# Broken, old, before 2.6.20 kernels. Removal in 60 days. bug 180008
net-wireless/rtl8187

# Jeremy Olexa <darkside@gentoo.org> (3 Jul 2009)
# Currently broken, security issue, no maintainer, 3rd party kernel module.
# Removal in 60 days, bug 183085
net-wireless/ralink-rt61

# Jeremy Olexa <darkside@gentoo.org> (3 Jul 2009)
# Currently broken, 3rd party kernel module, no maintainer to keep it updated.
# Removal in 60 days, bug 190718
net-wireless/rt61

# Theo Chatzimichos <tampakrap@gentoo.org> (1 Jul 2009)
# koffice monolithic masked, latest koffice version
# 1.6.3_p20090204 provides only split ebuilds, please
# refer to the KDE guide for more info
# http://kde.gentoo.org/kde4-guide.xml
app-office/koffice

# Patrick Lauer <patrick@gentoo.org> (26 Jun 2009)
# Samba-3.3 ebuilds aren't ready for primetime yet.
# Test and a few other bits are failing.
# Use at your own risk!
>=net-fs/samba-3.3
net-fs/samba-client
net-fs/samba-libs
net-fs/samba-server

# 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*

# Diego E. Pettenò <flameeyes@gentoo.org> (24 Jun 2009)
# Masked for testing, beta version
=media-sound/pulseaudio-0.9.16*

# Rémi Cardona <remi@gentoo.org> (23 Jun 2009)
# broken opengl support, forces gcc's objc for no reason
# masked until fixed (see bug #274092)
=media-libs/tiff-3.8.2-r6

# Diego E. Pettenò <flameeyes@gentoo.org> (22 Jun 2009)
# Unusable with kernel >= 2.6.24, pointess.
#
# Tracking with bug #199011.
#
# Pending removal 22 August 2009
sys-apps/realtime-lsm

# Diego E. Pettenò <flameeyes@gentoo.org> (21 Jun 2009)
#  on behalf of QA Team
#
# mp1e fails to build with recent compilers (still requires gcc 3.x!)
# and even with recent assemblers. The older analogtv ebuilds will
# follow it for a mandatory dependency, newer ones don't have the
# dependency.
#
# See bug #274715
#
# Removal pending 21 August 2009
media-video/mp1e
<media-plugins/vdr-analogtv-1.0.00-r2

# Diego E. Pettenò <flameeyes@gentoo.org> (21 Jun 2009)
#  on behalf of QA Team
#
# Dead homepage, binary file in $FILESDIR
# See bug #274859
#
# Removal pending 21 August 2009
net-misc/whoischk

# Alin Năstac <mrness@gentoo.org> (20 Jun 2009)
# Masked for removal in 60 days (#273316).
# SpeedTouch modems are supported by modern Linux kernels (>=2.6.10),
# the firmware files being available under Gentoo as package
# net-dialup/speedtouch-usb.
net-dialup/speedtouch

# Romain Perier <mrpouet@gentoo.org> (20 Jun 2009)
# A lot of changes into sources code
# (re-structured, modules renamed and so on)
# It may break some packages.
=sys-auth/policykit-0.92

# Diego E. Pettenò <flameeyes@gentoo.org> (16 Jun 2009)
#  on behalf of QA Team
#
# Fails to build with not even recent Linux headers.
# See bug #248388
#
# Removal pending 16 August 2009
sys-apps/ddcxinfo-knoppix

# Diego E. Pettenò <flameeyes@gentoo.org> (12 Jun 2009)
#  on behalf of QA Team
#
# Multiple issue, external kernel module unmaintained since 2005.
# See bug #274105
#
# Removal pending 14 August 2009
net-fs/shfs

# Theo Chatzimichos <tampakrap@gentoo.org> (14 Jun 2009)
# Masked for removal in 30 days. Old and dead by upstream.
app-dicts/kannadic

# Diego E. Pettenò <flameeyes@gentoo.org> (12 Jun 2009)
#  on behalf of QA Team
#
# Fails to build with gcc 4.4, bitrotting package and not updated to
# latest release (from 2005).
#
# Removal pending 13 August 2009
dev-db/framerd

# Diego E. Pettenò <flameeyes@gentoo.org> (12 Jun 2009)
#  on behalf of QA Team
#
# Fails to build with newer glibc versions, see bug #241008
#
# Removal pending 13 August 2009
net-misc/wso2-wsf-c

# Hans de Graaff <graaff@gentoo.org> (13 Jun 2009)
# dev-util/freeride ships broken elf shared object files
# that we cannot rebuild properly, see bug #251935
dev-util/freeride

# Markus Meier <maekke@gentoo.org> (13 Jun 2009)
# mask pre releases of media-gfx/inkscape-0.47
>=media-gfx/inkscape-0.47_pre0

# Diego E. Pettenò <flameeyes@gentoo.org> (12 Jun 2009)
#  on behalf of QA Team
#
# Multiple QA issues, see bug #273313
#
# Removal pending 12 August 2009
net-p2p/ed2k_recovermet

# Diego E. Pettenò <flameeyes@gentoo.org> (12 Jun 2009)
#  on behalf of QA Team
#
# Multiple QA issues, see bug #273872
#
# Removal pending 12 August 2009
app-laptop/toshiba-utils

# Tristan Heaven <nyhm@gentoo.org> (12 Jun 2009)
# https://bugs.gentoo.org/show_bug.cgi?id=269516
# Contains many vulnerable image libraries.
media-libs/freeimage

# 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*

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (30 May 2009)
# Development versions.
=net-libs/gnutls-2.9*

# Bernard Cafarelli <voyageur@gentoo.org> (27 May 2009)
# Live ebuild for bleeding-edge users
~www-client/chromium-bin-9999

# MATSUU Takuto <matsuu@gentoo.org> (26 May 2009)
# Masked for testing, bug #267365.
>=x11-libs/xcb-util-0.3.4
=x11-wm/awesome-3.3*

# Peter Alfredsen <loki_val@gentoo.org> (01 June 2009)
# Development version, Work-In-Progress
=app-misc/tomboy-0.15*
=media-sound/banshee-1.5*

# Peter Volkov <pva@gentoo.org> (26 May 2009)
# Force people to downgrade and use better version
=net-libs/libssh-0.11

# Michael Sterrett <mr_bones_@gentoo.org> (25 May 2009)
# Masked for testing.
=app-admin/syslog-ng-3.0.2
=app-admin/syslog-ng-3.0.4

# Peter Volkov <pva@gentoo.org> (17 May 2009)
# Masked development/git sources
=sys-kernel/openvz-sources-2.6.24*
=sys-kernel/openvz-sources-2.6.27.9999

# Mike Pagano <mpagano@gentoo.org> (13 May 2009)
# Masked for testing of ~ (tilde) unmasked packages
>=app-portage/portpeek-1.8

# Peter Alfredsen <loki_val@gentoo.org> (12 May 2009)
# Masked because of API changes. Development version.
#
# Packages known to break:
# app-text/xpdf
# dev-tex/pdftex
# dev-tex/luatex
#
# Highlights:
# Colour management support
# PNG support for pdftohtml
# Annotations support got better
=app-text/poppler-utils-0.11*
=dev-libs/poppler-qt3-0.11*
=dev-libs/poppler-qt4-0.11*
=dev-libs/poppler-0.11*
=dev-libs/poppler-glib-0.11*
=virtual/poppler-utils-0.11*
=virtual/poppler-qt3-0.11*
=virtual/poppler-qt4-0.11*
=virtual/poppler-0.11*
=virtual/poppler-glib-0.11*

# Lennart Kolmodin <kolmodin@gentoo.org> (10 May 2009)
# Mark the haskell-platform, depends on other things masked for testing.
dev-haskell/haskell-platform

# Lennart Kolmodin <kolmodin@gentoo.org> (10 May 2009)
# Mark ghc-6.10.3 for testing.
~dev-lang/ghc-6.10.3

# Mark Loeser <halcy0n@gentoo.org> (6 May 2009)
# Masked for testing
>=sys-devel/gcc-4.4

# Rémi Cardona <remi@gentoo.org> (29 Apr 2009)
# All the following packages should be unmasked at the same time
# see bug #174434 for xcb-related issues (not all are blocker)
>=x11-libs/libXext-1.0.5
>=x11-libs/libX11-1.2
>=x11-libs/libxcb-1.2
>=x11-proto/xcb-proto-1.4
>=x11-proto/xproto-7.0.15
>=x11-proto/xextproto-7.0.5

# Diego E. Pettenò <flameeyes@gentoo.org> (27 Apr 2009)
# Mask libopensync 0.38 since no plugin was fixed for this
~app-pda/libopensync-0.38

# Federico Ferri <mescalinum@gentoo.org> (27 Apr 2009)
# Sandbox violations, QA issues.
# Masking before it hits more people.
~dev-tcltk/tls-1.6

# Alin Năstac <mrness@gentoo.org> (26 Apr 2009)
# Beta version
=net-proxy/squid-3.1*

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

# Doug Goldstein <cardoe@gentoo.org> (19 Apr 2009)
# developing ebuild for phoronix-test-suite
app-benchmarks/phoronix-test-suite

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

# Lennart Kolmodin <kolmodin@gentoo.org> (19 Apr 2009)
# Mark ghc-6.10.2 and related packages for testing.
~dev-lang/ghc-6.10.2
~dev-haskell/parallel-1.1.0.1
~dev-haskell/haddock-2.4.2

# Torsten Veller <tove@gentoo.org> (19 Apr 2009)
# Uses pari-2.3* now.
# Should fix a number of bug: 143763, 200293, 261357, 265466.
# It "mostly works with 2.3.* too". Is "mostly" good enough?
=dev-perl/math-pari-2.010801-r1

# Christian Faulhammer <fauli@gentoo.org> (13 Apr 2009)
# Ulrich Mueller <ulm@gentoo.org>
# Thomas Anderson <gentoofan23@gentoo.org>
# Live version
~app-doc/pms-99999999

# Jeremy Olexa <darkside@gentoo.org> (10 Apr 2009)
# The bash-completion upstream naming scheme has drastically changed. As such,
# I have renamed the 20081219-r1 to 0.20081219-r1 to allow for ~arch testing of
# 1.0. v0.20081219-r1 is the stable version, v1.0* is the ~arch version. It will
# seem like a downgrade for stable and ~arch users, but it is not.
>=app-shells/bash-completion-20000000

# 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

# Gilles Dartiguelongue <eva@gentoo.org> (28 Mar 2009)
# this release is badly broken, does not install locales
# See bug #264114
=dev-util/intltool-0.40.6

# Jeremy Olexa <darkside@gentoo.org> (28 Mar 2009)
# Upstream is very unresponsive and we had to guess at which kernel patch was
# needed. May not work and/or may be harmful. You have been warned.
sys-apps/sreadahead

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

# Nirbheek Chauhan <nirbheek@gentoo.org> (17 Mar 2009)
# Session saving isn't implemented in >=gnome-session-2.24
# And other stuff listed here needs gnome-session-2.24
# GNOME bug #552387
=gnome-base/gnome-session-2.24*
=gnome-base/gnome-keyring-2.24*
=app-crypt/seahorse-2.24*
=app-crypt/seahorse-plugins-2.24*

# Tony Vroon <chainsaw@gentoo.org> (10 Mar 2009)
# This is *very* new and will require an extensive rewrite of your
# configuration before it will work. If you are not ready to dedicate
# at least a day towards testing and another day towards configuring
# you simply do not want this yet. If you do have this amount of time
# on your hands please join #gentoo-voip and help us document the
# migration path. Thank you.
net-misc/dahdi
net-misc/dahdi-tools
=net-misc/asterisk-1.6*
=net-libs/libpri-1.4*

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

# Jeffrey Gardner <je_fro@gentoo.org> (27 Feb 2009)
# Masked while we switch to sci-chemistry/gchemutils
# which now provides this package.
sci-chemistry/gchempaint

# René Nussbaumer <killerfox@gentoo.org> (10 Feb 2009)
# I gave away maintainership a while ago nobody took it on. Prepare for remove.
app-emulation/ganeti
app-emulation/ganeti-instance-debian-etch

# Ben de Groot <yngwin@gentoo.org> (1 Feb 2009)
# Masked because it's broken in current form. Several issues, see
# tracker bug 224951
dev-ruby/qt4-qtruby

# Jim Ramsay <lack@gentoo.org> (1 Feb 2008)
# This isn't actually used by anyone, but hopefully will be soon to allow
# net-misc/amazonmp3 to be used by amd64 users.  Once I get around to it.
# Until then, mask it.
net-misc/amazonmp3-libcompat

# Thomas Anderson <gentoofan23@gentoo.org> (30 Jan 2009)
# Depends on security-vulnerable zoneminder. Leave masked
# until security issues are resolved.
media-plugins/mythzoneminder

# Hanno Boeck <hanno@gentoo.org (22 Jan 2009)
# This has been included in kernel 2.6.27 and shouldn't be used
# any more. Will remove within a month, please contact me if you
# think it should stay.
app-misc/sdricoh_cs

# 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.
>=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/w32api

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

# Jim Ramsay <lack@gentoo.org> (11 Dec 2008)
# Live ebuild, for advanced users only
=x11-wm/fluxbox-9999

# Luca Barbato <lu_zero@gentoo.org> (07 Dec 2008)
# Live sources to be used with other live source applications
~media-video/ffmpeg-9999

# 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

# Jeroen Roovers <jer@gentoo.org> (5 Dec 2008)
# Snapshots and alphas but not betas of Opera 10
=www-client/opera-10.00_pre4493
=www-client/opera-10.00_pre4502
=www-client/opera-10.00_pre452*
>=www-client/opera-10.00_pre4538

# MATSUU Takuto <matsuu@gentoo.org> (19 Nov 2008)
# Masked for bug #196340
=media-fonts/ja-ipafonts-0.0.20040715

# 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

# Alexis Ballier <aballier@gentoo.org> (15 Oct 2008)
# Needs testing
# Updated 21 Jun 2009
# Mask aslo packages requiring 3.11
>=dev-lang/ocaml-3.11.0_beta1
>=dev-ml/ocamlduce-3.11
>=dev-ml/ocaml-sqlite3-1.5.1
>=dev-ml/postgresql-ocaml-1.11.1

# Christian Parpart <trapni@gentoo.org> (04 Oct 2008)
# for testing/experienced users only
>=games-rpg/mangos-9999

# Christian Parpart <trapni@gentoo.org> (25 Sep 2008)
# for testing/experienced users only
>=sys-fs/zfs-fuse-9999

# Ben de Groot <yngwin@gentoo.org> (23 Sep 2008)
# Mask for testing, possible ABI breakage (see bug 219227)
>=media-libs/libdvdnav-4.1.3
>=media-libs/libdvdread-4.1.3

# Alin Năstac <mrness@gentoo.org> (21 Sep 2008)
# Breaks L2TP connections (see http://bugs.xelerance.com/view.php?id=1004)
=net-misc/openswan-2.6*

# Keri Harris <keri@gentoo.org> (21 Sep 2008)
# Development version
=dev-lang/swi-prolog-5.7*

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

# Michael Marineau <marineam@gentoo.org> (03 Sep 2008)
# Unmaintained and out of date security wise,
# Please use 2.6.18 instead if it supports your hardware.
=sys-kernel/xen-sources-2.6.20*
=sys-kernel/xen-sources-2.6.21*

# Tiziano Müller <dev-zero@gentoo.org> (15 Aug 2008)
# Masked for testing (works with >=dev-libs/xerces-c-3.0.0)
=dev-libs/xqilla-9999

# Mike Doty <kingtaco@gentoo.org> (11 Aug 2008)
# Masked due to build failure, bug 234448
=app-emulation/emul-linux-x86-gtklibs-20080810

# Raúl Porcel <armin76@gentoo.org> (1 Aug 2008)
# This is just for preview
>=www-client/seamonkey-bin-2.0_alpha1

# Chris Gianelloni <wolf31o2@gentoo.org> (28 Jul 2008)
# These are masked for removal.  Please leave this mask in place, even after the
# packages have been removed, until at least December 2008.  These packages have
# been replaced by the Gentoo Release Engineering repository, available via
# http://sources.gentoo.org/viewcvs.py/releng/
dev-util/livecd-kconfigs
dev-util/livecd-specs

# Tiziano Müller <dev-zero@gentoo.org> (26 Jul 2008)
# Masking live version
=dev-db/ctdb-9999

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

# Jeroen Roovers <jer@gentoo.org> (17 Jun 2008)
# Masked for security bug #226079.
<=www-client/opera-9.27

# Krzysiek Pawlik <nelchael@gentoo.org> (12 Jun 2008)
# Testing new version.
>=dev-java/hessian-3.0.20
=dev-java/mx4j-core-3.0.2
=dev-java/mx4j-tools-3.0.2
=dev-java/mx4j-3.0.2

# Joe Peterson <lavajoe@gentoo.org> (09 Jun 2008)
# Live ebuilds too volatile for normal use.
# User's who need to test these should unmask explicitly.
=sys-fs/btrfs-9999
=sys-fs/btrfs-progs-9999

# Rémi Cardona <remi@gentoo.org> (27 May 2008)
# mildly broken, see bug #156583
=app-text/gtranslator-1.1.7

# 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

# Markus Ullmann <jokey@gentoo.org> (21 Apr 2008)
# mask beta version
=net-libs/gloox-1.0_beta*

# Gilles Dartiguelongue <eva@gentoo.org> (12 Apr 2008)
# Masking gnome-system-tools because it is broken,
# to help fix it, see bug #214265
=app-admin/gnome-system-tools-2.14*
=app-admin/system-tools-backends-1.4*

# Raúl Porcel <armin76@gentoo.org> (8 Apr 2008)
# Masked for testing
#>=mail-client/mozilla-thunderbird-3.0_alpha1
>=mail-client/mozilla-thunderbird-bin-3.0_alpha1

# Denis Dupeyron <calchan@gentoo.org> (31 Mar 2008)
# New versions using guile-1.8 and gtk-2 used to build and run at some point,
# but not anymore. If you know how or want to fix this feel free to contact
# me. Warning: dependency hell.
=sci-electronics/gwave-20070514

# Hanno Boeck <hanno@gentoo.org> (31 Mar 2008)
# As 1.3.3.x became a stable series and 1.3.4 has crash issues, mask it for now.
=app-office/scribus-1.3.4-r1

# Joerg Bornkessel <hd_brummy@gentoo.org (26 Mar 2008)
# initial ebuild masked for testing
=app-misc/iguanaIR-0.93

# William L. Thomson Jr. <wltjr@gentoo.org> (25 Mar 2008)
# Masked due to bugs and availability of forked alternative Frostwire.
# Which is more equivalent to Limewire Pro and has been added to portage.
# This ebuild will be moved to the java junkyard overlay when Frostwire
# is unmasked or stabilized.
net-p2p/limewire

# Donnie Berkholz <dberkholz@gentoo.org> (17 Mar 2008)
# Most apps that use lm_sensors aren't compatible with the new version
>=sys-apps/lm_sensors-3

# Christian Faulhammer <fauli@gentoo.org> (11 Mar 2008)
# Live SVN ebuild
=app-portage/gatt-9999

# Doug Goldstein <cardoe@gentoo.org> (10 Mar 2008)
# 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.22_alpha1
>=x11-themes/mythtv-themes-0.22_alpha1
>=media-plugins/mytharchive-0.22_alpha1
>=media-plugins/mythbrowser-0.22_alpha1
>=media-plugins/mythcontrols-0.22_alpha1
>=media-plugins/mythflix-0.22_alpha1
>=media-plugins/mythgallery-0.22_alpha1
>=media-plugins/mythgame-0.22_alpha1
>=media-plugins/mythmovies-0.22_alpha1
>=media-plugins/mythmusic-0.22_alpha1
>=media-plugins/mythnews-0.22_alpha1
>=media-plugins/mythphone-0.22_alpha1
>=media-plugins/mythvideo-0.22_alpha1
>=media-plugins/mythweather-0.22_alpha1
>=www-apps/mythweb-0.22_alpha1
>=media-plugins/mythzoneminder-0.22_alpha1

# MATSUU Takuto <matsuu@gentoo.org> (8 Mar 2008)
# Masked for Bug 173467
>=net-im/coccinella-0.96.10

# 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-dungeon
games-fps/doom3-eventhorizon
games-fps/doom3-hellcampaign
games-fps/doom3-inhell
games-fps/doom3-lms
games-fps/doom3-mitm
games-fps/doom3-opencoop
games-fps/doom3-phantasm
games-fps/doom3-roe
games-fps/quake4-bin
games-fps/quake4-data
games-fps/quake4-deltactf
games-fps/quake4-demo

# Benedikt Böhm <hollow@gentoo.org> (23 Feb 2008)
# Masked due to security issues.
# https://bugs.gentoo.org/show_bug.cgi?id=211166
www-apps/joomla
www-apps/mambo
www-apps/xoops

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

# Chris Gianelloni <wolf31o2@gentoo.org> (20 Feb 2008)
# Masking these so people will quit installing them on their systems.  These
# packages are designed for use on the LiveCD only and will do unspeakably
# horrible and unexpected things on a normal system.  YOU HAVE BEEN WARNED!!!
=app-misc/livecd-tools-1.2
#sys-apps/hwsetup
#x11-misc/mkxf86config

# 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

# Luca Barbato <lu_zero@gentoo.org> (28 Jan 2008)
# linking broken
=app-emulation/qemu-user-0.9.1

# Gilles Dartiguelongue <eva@gentoo.org> (24 Jan 2008)
# add masked gnome-system-tools-2.20 and dependencies
# for testing purpose
dev-libs/liboobs
>=app-admin/system-tools-backends-2
>=app-admin/gnome-system-tools-2.20

# Michael Sterrett <mr_bones_@gentoo.org> (15 Jan 2008)
# Security mask (bug #190835)
# https://bugs.gentoo.org/show_bug.cgi?id=190835
games-fps/doomsday
games-fps/doomsday-resources

# Mart Raudsepp <leio@gentoo.org> (28 Dec 2007)
# Live Subversion ebuild until pending first upstream release
=games-mud/wxmud-9999

# Ulrich Mueller <ulm@gentoo.org> (21 Dec 2007)
# Christian Faulhammer <fauli@gentoo.org>
# CVS snapshots.
=app-emacs/wanderlust-2.15.5_pre*

# Ulrich Mueller <ulm@gentoo.org> (21 Dec 2007)
# Christian Faulhammer <fauli@gentoo.org>
# Live SVN ebuilds
~app-emacs/gentoo-syntax-9999
~app-emacs/ngnus-9999

# Peter Volkov <pva@gentoo.org> (13 Dec 2007)
# Live svn ebuild... 0.9.4 branch is not supported atm.
=net-im/sim-9999

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

# Raúl Porcel <armin76@gentoo.org> (04 Dec 2007)
# Mozilla stopped supporting 1.5 series in October 2007
# Will be removed when mips keywords 2.0
=mail-client/mozilla-thunderbird-1.5*

# Piotr Jaroszyński <peper@gentoo.org> (26 Nov 2007)
# opensync svn ebuilds
=app-pda/libsyncml-9999
=app-pda/libopensync-9999
=app-pda/msynctool-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-kdepim-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

# Stefan Schweizer <genstef@gentoo.org> (14 Oct 2007)
# Development release
>=net-libs/openslp-1.3.0

# Doug Goldstein <cardoe@gentoo.org> (10 Oct 2007)
# the Asterisk is coming! the Asterisk is coming!
>=net-misc/asterisk-1.4.0

# Sven Wegener <swegener@gentoo.org> (07 Aug 2007)
# CVS snapshot, needs some more testing
~app-misc/screen-4.0.3_p20070403

# Gustavo Zacarias <gustavoz@gentoo.org> (16 Jul 2007)
# Mask zaptel-1.2.18-r1 since it seems to have some issues and is experimental
# See bug #185268
=net-misc/zaptel-1.2.18-r1

# Raúl Porcel <armin76@gentoo.org> (15 Jun 2007)
# Mask livesvn ebuild
=net-p2p/deluge-9999

# Ryan Hill <dirtyepic@gentoo.org> (13 May 2007)
#   Mask for testing.
=net-fs/sfs-0.8.0_pre20070512

# Tristan Heaven <nyhm@gentoo.org> (25 Apr 2007)
# Masked until it's updated to use >=wxpython-2.6
# https://bugs.gentoo.org/show_bug.cgi?id=115079
games-rpg/openrpg

# Benedikt Böhm <hollow@gentoo.org> (07 Apr 2007)
# masked for testing
>=sys-kernel/vserver-sources-2.3

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

# Mike Doty <kingtaco@gentoo.org> (24 Mar 2007)
# Sorting out media-video/{spca5xx,gspca{,v1}} bug 159176
media-video/spca5xx
media-video/gspca

# Stefan Cornelius <dercorny@gentoo.org> (7 Mar 2007)
# Masking net-misc/xsupplicant due to security bug 154995
net-misc/xsupplicant

# Stefan Cornelius <dercorny@gentoo.org> (2 Mar 2007)
# Masked because it's affected by 7 GLSAs or so, nobody should use it
# However, keep around for data migration purposes.
<=dev-db/mysql-3.23.58-r1

# Alexandre Buisse <nattfodd@gentoo.org> (21 Feb 2007)
# All of those are provided by tetex-3 which is now stabilized everywhere.
# The current TeX setup doesn't yet allow for single package updates so
# those are masked for the time being.
dev-tex/lineno
dev-tex/SIunits
dev-tex/floatflt

# Michael Sterrett <mr_bones_@gentoo.org> (28 Jan 2007)
# masked pending new beta due to bug #164186
games-strategy/ufo2000

# Raúl Porcel <armin76@gentoo.org> (24 Jan 2007)
# Mask cvs version of net-p2p/linuxdcpp
=net-p2p/linuxdcpp-9999

# Chris Gianelloni <wolf31o2@gentoo.org> (15 Jan 2007)
# The Armagetron Advanced packages in Gentoo's repository are obsolete and will
# likely remain masked until they can be revisted to be maintainable.  Until
# that time, the upstream team has created their own overlay:
#     emerge -a layman
#     layman -ka armagetron
games-action/armagetronad

# 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*

# Brent Baude <ranger@gentoo.org> (18 Apr 2006)
# Masked pending removal. This package had been deprecated
# in favor of sys-apps/ibm-powerpc-utils and an optional
# package called sys-apps/ibm-powerpc-utils-papr.  Please
# unmerge ppc64-utils and emerge ibm-powerpc-utils. And if you
# if you are running on IBM hardware, emerge ibm-powerpc-utils-papr
# as well.
sys-apps/ppc64-utils

# 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 #122407
games-arcade/xkobo

# 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-util/cvs-1.12.13*

# Luca Longinotti <chtekk@gentoo.org> (12 Jan 2007)
# Mask MySQL 5.1.* and the alpha versions
>=dev-db/mysql-5.1
>=dev-db/mysql-community-5.1
>=virtual/mysql-5.1

# 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

# 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

# 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

# <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