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

# Doug Goldstein <cardoe@gentoo.org> (08 Nov 2009)
# beta/experimental drivers
>=x11-drivers/nvidia-drivers-195.01

# 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.23_alpha1
>=x11-themes/mythtv-themes-0.23_alpha1
>=x11-themes/mythtv-themes-extra-0.23_alpha1
>=media-plugins/mytharchive-0.23_alpha1
>=media-plugins/mythbrowser-0.23_alpha1
>=media-plugins/mythcontrols-0.23_alpha1
>=media-plugins/mythflix-0.23_alpha1
>=media-plugins/mythgallery-0.23_alpha1
>=media-plugins/mythgame-0.23_alpha1
>=media-plugins/mythmovies-0.23_alpha1
>=media-plugins/mythmusic-0.23_alpha1
>=media-plugins/mythnews-0.23_alpha1
>=media-plugins/mythphone-0.23_alpha1
>=media-plugins/mythvideo-0.23_alpha1
>=media-plugins/mythweather-0.23_alpha1
>=www-apps/mythweb-0.23_alpha1
>=media-plugins/mythzoneminder-0.23_alpha1

# Gilles Dartiguelongue <eva@gentoo.org> (08 Nov 2009)
# Masked for removeal in 30 days. Discontinued upstream support, every user of
# this library should move to 2.4 slot, bug #280906.
<net-libs/libsoup-2.24

# Víctor Ostorga <vostorga@gentoo.org> (07 Nov 2009) 
# Beta package, qt3 app, dead upstream, last release 4 years ago 
# Bug #292143
net-ftp/easyftp

# Víctor Ostorga <vostorga@gentoo.org> (07 Nov 2009) 
# Upstream dead, URL in package description is offline
# security vulerability CVE-2008-5136 bug #247985
net-misc/tkusr

# Víctor Ostorga <vostorga@gentoo.org> (07 Nov 2009) 
# Added in 2007, never KEYWORDED, does not work with python-2.6.
# Masked for removal in 30 days, See bug #292289 for reference
app-text/doclifter

# Samuli Suominen <ssuominen@gentoo.org> (07 Nov 2009)
#
# Mask KDE 3.5.10 for removal, excluding the dependencies
# required for stable koffice. Removed in 30 days.
#
=kde-base/kdenetwork-3.5*
=kde-base/mimelib-3.5*
=kde-base/superkaramba-3.5*
=kde-base/kdejava-3.5*
=kde-base/kcachegrind-3.5*
=kde-base/kdeedu-applnk-3.5*
=kde-base/noatun-plugins-3.5*
=kde-base/quanta-3.5*
=kde-base/nsplugins-3.5*
=kde-base/kollision-3.5*
=kde-base/thumbnailers-3.5*
=kde-base/libkdenetwork-3.5*
=kde-base/libkleo-3.5*
=kde-base/kommander-3.5*
=kde-base/kalarm-3.5*
=kde-base/libkworkspace-3.5*
=kde-base/knotify-3.5*
=kde-base/kdepimlibs-3.5*
=kde-base/kmplot-3.5*
=kde-base/kdenetwork-meta-3.5*
=kde-base/bovo-3.5*
=kde-base/kdm-3.5*
=kde-base/kabcclient-3.5*
=kde-base/kgeography-3.5*
=kde-base/kolourpaint-3.5*
=kde-base/kopete-3.5*
=kde-base/kdemultimedia-kappfinder-data-3.5*
=kde-base/kmahjongg-3.5*
=kde-base/konqueror-akregator-3.5*
=kde-base/killbots-3.5*
=kde-base/kdepim-strigi-analyzer-3.5*
=kde-base/certmanager-3.5*
=kde-base/ksmserver-3.5*
=kde-base/kdeadmin-meta-3.5*
=kde-base/kleopatra-3.5*
=kde-base/kppp-3.5*
=kde-base/klettres-3.5*
=kde-base/kdeplasma-addons-3.5*
=kde-base/kmrml-3.5*
=kde-base/kdesdk-scripts-3.5*
=kde-base/kdesdk-kioslaves-3.5*
=kde-base/kdeaccessibility-colorschemes-3.5*
=kde-base/konq-plugins-3.5*
=kde-base/parley-3.5*
=kde-base/kde-menu-3.5*
=kde-base/soliduiserver-3.5*
=kde-base/klinkstatus-3.5*
=kde-base/kdeartwork-colorschemes-3.5*
=kde-base/ksnapshot-3.5*
=kde-base/libkscan-3.5*
=kde-base/ark-3.5*
=kde-base/step-3.5*
=kde-base/kmousetool-3.5*
=kde-base/kget-3.5*
=kde-base/kdegames-meta-3.5*
=kde-base/ksnake-3.5*
=kde-base/kdvi-3.5*
=kde-base/kdeadmin-kfile-plugins-3.5*
=kde-base/kjsembed-3.5*
=kde-base/kjumpingcube-3.5*
=kde-base/kworldclock-3.5*
=kde-base/libkmahjongg-3.5*
=kde-base/kmilo-3.5*
=kde-base/cervisia-3.5*
=kde-base/knewsticker-scripts-3.5*
=kde-base/ksirc-3.5*
=kde-base/kdeartwork-sounds-3.5*
=kde-base/kmtrace-3.5*
=kde-base/kuser-3.5*
=kde-base/kdeartwork-kscreensaver-3.5*
=kde-base/keditfiletype-3.5*
=kde-base/libkpimexchange-3.5*
=kde-base/kdemultimedia-arts-3.5*
=kde-base/kamera-3.5*
=kde-base/ksvg-3.5*
=kde-base/kpersonalizer-3.5*
=kde-base/klickety-3.5*
=kde-base/nepomuk-3.5*
=kde-base/kglobalaccel-3.5*
=kde-base/kdeaddons-kfile-plugins-3.5*
=kde-base/kuiviewer-3.5*
=kde-base/kspy-3.5*
=kde-base/kdebase-startkde-3.5*
=kde-base/kcolorchooser-3.5*
=kde-base/renamedlg-images-3.5*
=kde-base/kfourinline-3.5*
=kde-base/kcron-3.5*
=kde-base/kmoon-3.5*
=kde-base/kapptemplate-3.5*
=kde-base/kiconfinder-3.5*
=kde-base/kdeaccessibility-iconthemes-3.5*
=kde-base/kdebindings-csharp-3.5*
=kde-base/kdebase-menu-icons-3.5*
=kde-base/kshisen-3.5*
=kde-base/kbruch-3.5*
=kde-base/kbstateapplet-3.5*
=kde-base/kbreakout-3.5*
=kde-base/kquitapp-3.5*
=kde-base/lskat-3.5*
=kde-base/kruler-3.5*
=kde-base/okteta-3.5*
=kde-base/atlantik-3.5*
=kde-base/knewsticker-3.5*
=kde-base/kwalletd-3.5*
=kde-base/kenolaba-3.5*
=kde-base/kicker-applets-3.5*
=kde-base/klines-3.5*
=kde-base/kstyles-3.5*
=kde-base/automoc-3.5*
=kde-base/kreadconfig-3.5*
=kde-base/libkcompactdisc-3.5*
=kde-base/konsole-3.5*
=kde-base/kfind-3.5*
=kde-base/kwifimanager-3.5*
=kde-base/kdepim-icons-3.5*
=kde-base/artsplugin-xine-3.5*
=kde-base/kmail-3.5*
=kde-base/kdetoys-3.5*
=kde-base/kalyptus-3.5*
=kde-base/kdewebdev-3.5*
=kde-base/kspaceduel-3.5*
=kde-base/kdepim-kresources-3.5*
=kde-base/kpf-3.5*
=kde-base/kde-meta-3.5*
=kde-base/libkpgp-3.5*
=kde-base/artsplugin-audiofile-3.5*
=kde-base/kitchensync-3.5*
=kde-base/kdeutils-3.5*
=kde-base/kmix-3.5*
=kde-base/kolf-3.5*
=kde-base/eyesapplet-3.5*
=kde-base/kdebugdialog-3.5*
=kde-base/kdeadmin-3.5*
=kde-base/libkdcraw-3.5*
=kde-base/ksaneplugin-3.5*
=kde-base/kodo-3.5*
=kde-base/knotes-3.5*
=kde-base/kblocks-3.5*
=kde-base/kde-3.5*
=kde-base/krunner-3.5*
=kde-base/kooka-3.5*
=kde-base/kalzium-3.5*
=kde-base/kdesdk-misc-3.5*
=kde-base/kdepim-kioslaves-3.5*
=kde-base/knewstuff-3.5*
=kde-base/ksayit-3.5*
=kde-base/svgpart-3.5*
=kde-base/libkcddb-3.5*
=kde-base/kdegraphics-strigi-analyzer-3.5*
=kde-base/krossruby-3.5*
=kde-base/dolphin-3.5*
=kde-base/kdeedu-3.5*
=kde-base/ksystraycmd-3.5*
=kde-base/kjots-3.5*
=kde-base/libkcal-3.5*
=kde-base/libkdepim-3.5*
=kde-base/systemsettings-3.5*
=kde-base/kaudiocreator-3.5*
=kde-base/sweeper-3.5*
=kde-base/kdesdk-meta-3.5*
=kde-base/kaddressbook-3.5*
=kde-base/ksame-3.5*
=kde-base/korn-3.5*
=kde-base/kstars-3.5*
=kde-base/kdedglobalaccel-3.5*
=kde-base/kcmshell-3.5*
=kde-base/kwin4-3.5*
=kde-base/amor-3.5*
=kde-base/korundum-3.5*
=kde-base/kfouleggs-3.5*
=kde-base/solid-hardware-3.5*
=kde-base/blinken-3.5*
=kde-base/kdelirc-3.5*
=kde-base/kmines-3.5*
=kde-base/keditbookmarks-3.5*
=kde-base/kpat-3.5*
=kde-base/gwenview-3.5*
=kde-base/kpoker-3.5*
=kde-base/kfax-3.5*
=kde-base/libkdeedu-3.5*
=kde-base/kde-menu-icons-3.5*
=kde-base/kdeartwork-3.5*
=kde-base/kdesdk-strigi-analyzer-3.5*
=kde-base/kvoctrain-3.5*
=kde-base/kdegames-3.5*
=kde-base/kview-3.5*
=kde-base/kdebase-pam-3.5*
=kde-base/kdcop-3.5*
=kde-base/kwrited-3.5*
=kde-base/drkonqi-3.5*
=kde-base/kmouth-3.5*
=kde-base/kcalc-3.5*
=kde-base/kdeartwork-desktopthemes-3.5*
=kde-base/noatun-3.5*
=kde-base/ksystemlog-3.5*
=kde-base/libkholidays-3.5*
=kde-base/ksysv-3.5*
=kde-base/lilo-config-3.5*
=kde-base/kaddressbook-plugins-3.5*
=kde-base/kode-3.5*
=kde-base/kdebase-desktoptheme-3.5*
=kde-base/kscd-3.5*
=kde-base/krosspython-3.5*
=kde-base/dcopc-3.5*
=kde-base/konquest-3.5*
=kde-base/phonon-kde-3.5*
=kde-base/kalgebra-3.5*
=kde-base/kturtle-3.5*
=kde-base/kdeaccessibility-meta-3.5*
=kde-base/renamedlg-plugins-3.5*
=kde-base/libkipi-3.5*
=kde-base/kuiserver-3.5*
=kde-base/keduca-3.5*
=kde-base/kapman-3.5*
=kde-base/kontactinterfaces-3.5*
=kde-base/kig-3.5*
=kde-base/kdegraphics-3.5*
=kde-base/libksane-3.5*
=kde-base/kimagemapeditor-3.5*
=kde-base/kdeaddons-meta-3.5*
=kde-base/umbrello-3.5*
=kde-base/khangman-3.5*
=kde-base/kttsd-3.5*
=kde-base/networkstatus-3.5*
=kde-base/kstart-3.5*
=kde-base/kdeutils-meta-3.5*
=kde-base/kinfocenter-3.5*
=kde-base/libplasmaclock-3.5*
=kde-base/kpilot-3.5*
=kde-base/kmimetypefinder-3.5*
=kde-base/kdesdk-3.5*
=kde-base/kbounce-3.5*
=kde-base/kdebase-menu-3.5*
=kde-base/kdeartwork-iconthemes-3.5*
=kde-base/kde-wallpapers-3.5*
=kde-base/libknotificationitem-3.5*
=kde-base/kcheckpass-3.5*
=kde-base/kdf-3.5*
=kde-base/ksmiletris-3.5*
=kde-base/ktraderclient-3.5*
=kde-base/kbattleship-3.5*
=kde-base/libksieve-3.5*
=kde-base/ktux-3.5*
=kde-base/kfloppy-3.5*
=kde-base/ktuberling-3.5*
=kde-base/kdebase-3.5*
=kde-base/kstartupconfig-3.5*
=kde-base/kdeaddons-docs-konq-plugins-3.5*
=kde-base/system-config-printer-kde-3.5*
=kde-base/kdeaccessibility-3.5*
=kde-base/marble-3.5*
=kde-base/kanagram-3.5*
=kde-base/khexedit-3.5*
=kde-base/kdict-3.5*
=kde-base/kfile-3.5*
=kde-base/krdc-3.5*
=kde-base/kontact-3.5*
=kde-base/ktouch-3.5*
=kde-base/kfmclient-3.5*
=kde-base/kontact-specialdates-3.5*
=kde-base/plasma-workspace-3.5*
=kde-base/knode-3.5*
=kde-base/ksplashml-3.5*
=kde-base/qtjava-3.5*
=kde-base/kdeartwork-emoticons-3.5*
=kde-base/kdepim-meta-3.5*
=kde-base/qtruby-3.5*
=kde-base/kcoloredit-3.5*
=kde-base/smoke-3.5*
=kde-base/kdnssd-3.5*
=kde-base/klaptopdaemon-3.5*
=kde-base/kdepim-wizards-3.5*
=kde-base/kdemaildir-3.5*
=kde-base/kbugbuster-3.5*
=kde-base/kfilereplace-3.5*
=kde-base/kate-plugins-3.5*
=kde-base/kpercentage-3.5*
=kde-base/kde-l10n-3.5*
=kde-base/kxkb-3.5*
=kde-base/kdebase-wallpapers-3.5*
=kde-base/korganizer-3.5*
=kde-base/ksysguard-3.5*
=kde-base/kcharselect-3.5*
=kde-base/kdewebdev-meta-3.5*
=kde-base/kandy-3.5*
=kde-base/kteatime-3.5*
=kde-base/solid-3.5*
=kde-base/kdebase-meta-3.5*
=kde-base/kwrite-3.5*
=kde-base/kbabel-3.5*
=kde-base/kweather-3.5*
=kde-base/kedit-3.5*
=kde-base/kmid-3.5*
=kde-base/ksig-3.5*
=kde-base/dragonplayer-3.5*
=kde-base/kurifilter-plugins-3.5*
=kde-base/dcopperl-3.5*
=kde-base/ksirtet-3.5*
=kde-base/kwordquiz-3.5*
=kde-base/kpager-3.5*
=kde-base/kate-3.5*
=kde-base/kaboodle-3.5*
=kde-base/plasma-apps-3.5*
=kde-base/ksirk-3.5*
=kde-base/kde-env-3.5*
=kde-base/kwallet-3.5*
=kde-base/kdemultimedia-kfile-plugins-3.5*
=kde-base/konqueror-3.5*
=kde-base/ktalkd-3.5*
=kde-base/ktron-3.5*
=kde-base/kompare-3.5*
=kde-base/ksplash-3.5*
=kde-base/kwalletmanager-3.5*
=kde-base/kviewshell-3.5*
=kde-base/akonadi-3.5*
=kde-base/kwin-3.5*
=kde-base/kdeartwork-meta-3.5*
=kde-base/kdesktop-3.5*
=kde-base/kdebindings-meta-3.5*
=kde-base/kiriki-3.5*
=kde-base/libkpimidentities-3.5*
=kde-base/kdeprint-3.5*
=kde-base/lokalize-3.5*
=kde-base/policykit-kde-3.5*
=kde-base/kdat-3.5*
=kde-base/kdebase-cursors-3.5*
=kde-base/fifteenapplet-3.5*
=kde-base/katomic-3.5*
=kde-base/knetworkconf-3.5*
=kde-base/kdenetwork-kfile-plugins-3.5*
=kde-base/kstartperf-3.5*
=kde-base/kioclient-3.5*
=kde-base/kdiamond-3.5*
=kde-base/kgamma-3.5*
=kde-base/kdemultimedia-kioslaves-3.5*
=kde-base/bomber-3.5*
=kde-base/kuickshow-3.5*
=kde-base/kdeaddons-3.5*
=kde-base/kdeartwork-kworldclock-3.5*
=kde-base/kgpg-3.5*
=kde-base/lisa-3.5*
=kde-base/dcoprss-3.5*
=kde-base/kverbos-3.5*
=kde-base/okular-3.5*
=kde-base/ktip-3.5*
=kde-base/kdeartwork-wallpapers-3.5*
=kde-base/solidautoeject-3.5*
=kde-base/dcopjava-3.5*
=kde-base/kreversi-3.5*
=kde-base/konsolekalendar-3.5*
=kde-base/klipper-3.5*
=kde-base/klatin-3.5*
=kde-base/libkmime-3.5*
=kde-base/kpovmodeler-3.5*
=kde-base/artsplugin-akode-3.5*
=kde-base/plasma-runtime-3.5*
=kde-base/ksudoku-3.5*
=kde-base/kiconedit-3.5*
=kde-base/kblackbox-3.5*
=kde-base/knetwalk-3.5*
=kde-base/libkexiv2-3.5*
=kde-base/ktimezoned-3.5*
=kde-base/ksokoban-3.5*
=kde-base/kdesdk-kfile-plugins-3.5*
=kde-base/librss-3.5*
=kde-base/kpasswdserver-3.5*
=kde-base/kephal-3.5*
=kde-base/kdeartwork-icewm-themes-3.5*
=kde-base/kregexpeditor-3.5*
=kde-base/atlantikdesigner-3.5*
=kde-base/knetattach-3.5*
=kde-base/akregator-3.5*
=kde-base/karm-3.5*
=kde-base/kpackage-3.5*
=kde-base/kdeartwork-weatherwallpapers-3.5*
=kde-base/kdegraphics-kfile-plugins-3.5*
=kde-base/ktimer-3.5*
=kde-base/ksquares-3.5*
=kde-base/kbackgammon-3.5*
=kde-base/kasteroids-3.5*
=kde-base/kdeedu-meta-3.5*
=kde-base/kubrick-3.5*
=kde-base/ktimetracker-3.5*
=kde-base/kscreensaver-3.5*
=kde-base/kdepasswd-3.5*
=kde-base/ktnef-3.5*
=kde-base/ksim-3.5*
=kde-base/renamedlg-audio-3.5*
=kde-base/libtaskmanager-3.5*
=kde-base/kdeartwork-styles-3.5*
=kde-base/kdeaccounts-plugin-3.5*
=kde-base/kmag-3.5*
=kde-base/kdetoys-meta-3.5*
=kde-base/krossjava-3.5*
=kde-base/oxygen-icons-3.5*
=kde-base/kdemultimedia-3.5*
=kde-base/kiten-3.5*
=kde-base/kdeartwork-kwin-styles-3.5*
=kde-base/krec-3.5*
=kde-base/krfb-3.5*
=kde-base/kdepim-3.5*
=kde-base/kdemultimedia-meta-3.5*
=kde-base/kmailcvt-3.5*
=kde-base/secpolicy-3.5*
=kde-base/juk-3.5*
=kde-base/kgoldrunner-3.5*
=kde-base/kdessh-3.5*
=kde-base/libkdegames-3.5*
=kde-base/kxsldbg-3.5*
=kde-base/kappfinder-3.5*
=kde-base/kdegraphics-meta-3.5*
=kde-base/dcoppython-3.5*
=kde-base/powerdevil-3.5*

# Samuli Suominen <ssuominen@gentoo.org> (07 Nov 2009)
# Produces invalid files for Autoconf 2.64, bug 279482.
# Has KDE3 dependencies. Masked for removal in 30 days.
<dev-util/kdevelop-3.9

# Ben de Groot <yngwin@gentoo.org> (06 Nov 2009)
# Masked since 01 Feb 2009 because it's broken.
# Now scheduled for removal by treecleaners in 30 days.
# Several issues, see tracker bug 224951
dev-ruby/qt4-qtruby

# Samuli Suominen <ssuominen@gentoo.org> (06 Nov 2009)
# Cleaning out packages with KDE3 dependencies.
# Masked for removal in 30 days.
app-portage/kelogviewer
dev-python/pykde
x11-themes/qinx
kde-misc/kopete-antispam-kde3
kde-misc/koppermine
www-client/kita
sci-mathematics/koctave
<dev-util/kdesvn-1.4
x11-terms/kuake
app-cdr/koverartist
net-misc/kbandwidth
net-irc/vyqchat
<net-irc/konversation-1.2
net-im/kopete-otr
<dev-util/kscope-1.9
<net-p2p/kmldonkey-2
app-backup/keep
media-sound/musicman
app-antivirus/klamav
<net-p2p/ktorrent-3
<net-misc/smb4k-0.10
<net-im/kmess-2
x11-themes/domino
<x11-themes/crystal-2
x11-themes/comix
x11-themes/baghira
x11-themes/alloy
x11-themes/activeheart
x11-themes/fahrenheit
x11-themes/fusionx-aqua
x11-themes/knifty
x11-themes/kwin-neos
x11-themes/liquid
<x11-themes/polyester-2
x11-themes/qtcurve
<x11-themes/gtk-engines-qt-1.1
x11-themes/reinhardtstyle
x11-themes/ridge
x11-themes/thinkeramik
x11-misc/karamba
x11-misc/dekorator
app-pda/libopensync-plugin-kdepim

# Vlastimil Babka <caster@gentoo.org> (06 Nov 2009)
# Removal for EOL and security, bug #287615
=app-emulation/emul-linux-x86-java-1.4*
=dev-java/sun-jre-bin-1.4*
=dev-java/ibm-jre-bin-1.4*
dev-java/blackdown-jre

# 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

# Tristan Heaven <nyhm@gentoo.org> (05 Nov 2009)
# Broken. Will be replaced by games-fps/urbanterror when it's ready.
# Follow progress on bug #203296
games-fps/quake3-urbanterror

# Samuli Suominen <ssuominen@gentoo.org> (04 Nov 2009)
# media-video/mplayerthumbs replaced by kde-base/mplayerthumbs
# <net-misc/knemo-0.5.2 replaced by >=net-misc/knemo-0.5.2
# Removed in 30 days.
media-video/mplayerthumbs
<net-misc/knemo-0.5.2

# Alex Alexander <wired@gentoo.org> (04 Nov 2009)
# keeping rc and live ebuilds masked
~sys-kernel/zen-sources-9999
=sys-kernel/zen-sources-2.6.32_rc*

# Vlastimil Babka <caster@gentoo.org> (03 Nov 2009)
# Obsolete, needs 1.4 JDK, nothing uses it.
dev-java/jessie

# Michael Sterrett <mr_bones_@gentoo.org> (02 Nov 2009)
# Upstream seems dead; segfaults; unplayable on modern systems
games-rpg/tux_aqfh

# Víctor Ostorga <vostorga@gentoo.org> (02 Nov 2009)
# If you use a kernel >= 2.6.29 it is needed >=linux-headers-2.6.29
# as well, otherwise net-firewall/ipsec-tools won't compile.
# See bug #264233 for reference
=net-firewall/ipsec-tools-0.7.2

# Gilles Dartiguelongue <eva@gentoo.org> (01 Nov 2009)
# Broken on so many setups it is just insane.
# 0.7 is API/ABI incompatible but is the way to go.
# Masking to lower maintainance headache, bug #291501.
=app-misc/tracker-0.6*

# Gilles Dartiguelongue <eva@gentoo.org> (01 Nov 2009)
# Old gnome component superseeded by seahorse.
# See bug #291456 for details.
gnome-extra/gnome-keyring-manager

# Samuli Suominen <ssuominen@gentoo.org> (31 Oct 2009)
# Unported to KDE4 wrt #251992. Masked for removal in 30 days.
net-firewall/knetfilter

# Samuli Suominen <ssuominen@gentoo.org> (31 Oct 2009)
# Unported to KDE4 wrt #260166. Removed in 30 days.
mail-client/kcheckgmail

# Samuli Suominen <ssuominen@gentoo.org> (31 Oct 2009)
# KDE3-only. Replaced by kde-misc/qalculate-applet
# and sci-calculators/qalculate-gtk. Masked for removal
# in 30 days.
sci-calculators/qalculate-kde

# Samuli Suominen <ssuominen@gentoo.org> (31 Oct 2009)
# Moved to kde-base/kdeplasma-addons. Masked for removal.
kde-misc/systemloadviewer

# Samuli Suominen <ssuominen@gentoo.org> (28 Oct 2009)
# KDE3-only applications.
#
# Removed in 30 days.
#
# If you find a KDE4 replacement, please open a
# request at http://bugs.gentoo.org/
kde-misc/basket
kde-misc/dolphin
kde-misc/kalbum
kde-misc/kaptain
kde-misc/katapult
kde-misc/kate-symbolviewer-plugin
kde-misc/kerry
kde-misc/kexchange
kde-misc/kima
kde-misc/kio-sword
kde-misc/kkbswitch
kde-misc/kleds
kde-misc/knetdockapp
kde-misc/knetstats
kde-misc/komparator
kde-misc/kompose
kde-misc/kooldock
kde-misc/kopete-ktts
<kde-misc/krusader-2
kde-misc/ksensors
kde-misc/ksmoothdock
kde-misc/kvdrmon
kde-misc/mtaskbar
kde-misc/pwmanager
kde-misc/quadkonsole
<kde-misc/rsibreak-0.10
kde-misc/strigiapplet
<kde-misc/yakuake-2.9.6

# Samuli Suominen <ssuominen@gentoo.org> (27 Oct 2009)
# KDE3-only. Doesn't compile.
#
# kde-misc/katalog, bug 278031
# kde-misc/kblogger, bugs 260989 and 277820
# kde-misc/kbeam, bugs 276961 and 279788
#
# Masked for removal in 30 days.
kde-misc/kbeam
kde-misc/katalog
kde-misc/kblogger

# Joe Sapp <nixphoeni@gentoo.org> (27 Oct 2009)
# Uses old, deprecated Sensors.
# Replaced by x11-plugins/desklet-Genesis.
# Masked for removal on 26 Nov 2009.
x11-plugins/desklet-starterbar

# Joe Sapp <nixphoeni@gentoo.org> (27 Oct 2009)
# Doesn't work any more and uses the old package format.
# Masked for removal on 26 Nov 2009.
x11-plugins/desklet-newsgrab

# Samuli Suominen <ssuominen@gentoo.org> (26 Oct 2009)
# Doesn't work with new xfce-base/exo API, bug #289867.
# Replaced by media-video/parole.
# Masked for removal in 30 days.
media-video/xfmedia

# Jonathan Callen <abcd@gentoo.org> (26 Oct 2009)
# Old monolithic ebuild. Replaced by app-office/koffice-meta
# Will be removed in 30 days
# Also affected by security bug 290470
#
# 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

# Olivier Crête <tester@gentoo.org> (25 Oct 2009)
# Has been replaced by its fork dev-python/papyon
# Will be removed in 30 days
dev-python/pymsn

# Samuli Suominen <ssuominen@gentoo.org> (25 Oct 2009)
# Masked for security. CVE-2009-{3603,3604,3606,3608,3609}.
#
# http://bugs.gentoo.org/290470
#
# Replaced by kde-base/okular. Removed in 30 days.
kde-base/kpdf

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (25 Oct 2009)
# Documentation for removed versions of dev-python/twisted. Masked for deletion in 30 days.
dev-python/twisted-docs

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (25 Oct 2009)
# Replaced by dev-libs/cryptlib[python]. Masked for deletion in 30 days.
dev-python/cryptlib_py

# Samuli Suominen <ssuominen@gentoo.org> (25 Oct 2009)
# KDE3-only. Replaced by >=kshutdown-2.0_beta6.
# Masked for removal in 30 days.
<kde-misc/kshutdown-1.9999

# Samuli Suominen <ssuominen@gentoo.org> (25 Oct 2009)
# KDE3-only. Replaced by >=kde-misc/kdiff3-0.9.95.
# Masked for removal in 30 days.
<kde-misc/kdiff3-0.9.95

# Samuli Suominen <ssuominen@gentoo.org> (25 Oct 2009)
# KDE3-only. Replaced by app-cdr/acetoneiso.
# Masked for removal in 30 days.
app-cdr/kiso

# Samuli Suominen <ssuominen@gentoo.org> (25 Oct 2009)
# KDE3 support. aRts support. Doesn't compile, install or work
# wrt bugs 178072, 280808, 234385, 117247, 191557, and 253231.
# Masked for removal in 30 days.
app-office/taskjuggler

# Samuli Suominen <ssuominen@gentoo.org> (25 Oct 2009)
# KDE3-only. Replaced by >=kmplayer-0.11.1a.
# Masked for removal in 30 days.
<media-video/kmplayer-0.11.1a

# Samuli Suominen <ssuominen@gentoo.org> (25 Oct 2009)
# Replaced by KDE4 menu. For KDE3-only and is using
# cmake directly wrt bug #287593.
# Masked for removal in 30 days.
kde-misc/kbfx

# Samuli Suominen <ssuominen@gentoo.org> (25 Oct 2009)
# Replaced by:
#
# >=media-gfx/digikam-0.10
# kde-base/gwenview
# >=media-gfx/kphotoalbum-4
# >=media-plugins/kipi-plugins-0.6
#
# Masked for removal in 30 days.
media-libs/libkdcraw
=media-gfx/digikam-0.9*
=media-gfx/kphotoalbum-3*
media-gfx/gwenview
=media-plugins/kipi-plugins-0.1*
media-libs/libkipi
media-libs/libkexiv2

# Samuli Suominen <ssuominen@gentoo.org> (25 Oct 2009)
# Replaced by kde-base/dragonplayer.
# http://www.dragonplayer.net/
# Masked for removal in 30 days.
media-video/codeine

# Samuli Suominen <ssuominen@gentoo.org> (24 Oct 2009)
# Replaced by >=kde-misc/filelight-1.9_rc3.
# Masked for removal in 30 days.
kde-misc/filelight-i18n
=kde-misc/filelight-1.0*

# Samuli Suominen <ssuominen@gentoo.org> (24 Oct 2009)
# Deprecated aRts support wrt bug #270575
# Masked for removal in 30 days.
kde-base/noatun
kde-base/noatun-plugins
media-plugins/hayes
media-plugins/jefferson

# Samuli Suominen <ssuominen@gentoo.org> (24 Oct 2009)
# KDE3-only packages with QA issues.
#
# sci-calculators/fung-calc, bug #248340
# kde-misc/krd, bug #276266
# kde-misc/kadslwatch, bug #276809
# x11-themes/thinkeramik, bug #276898
# app-admin/klogview, bug #277182
# app-admin/kiosktool, bug #277411
# net-ftp/kcmpureftpd, bug #277581
# x11-themes/lipstik, bug #277737
# kde-misc/styleclock, bug #277767
# net-im/kpopup, bug #278425
#
# Masked for removal in 30 days.
sci-calculators/fung-calc
kde-misc/krd
kde-misc/kadslwatch
x11-themes/thinkeramik
app-admin/klogview
app-admin/kiosktool
net-ftp/kcmpureftpd
x11-themes/lipstik
kde-misc/styleclock
net-im/kpopup

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (24 Oct 2009)
# Replaced by app-mobilephone/gammu[python]. Masked for deletion in 30 days.
dev-python/python-gammu

# Samuli Suominen <ssuominen@gentoo.org> (24 Oct 2009)
# KDE3-only. Doesn't work with stable mplayer wrt bug #208786.
# Masked for removal in 30 days.
=media-video/kplayer-0.6*

# Samuli Suominen <ssuominen@gentoo.org> (24 Oct 2009)
# KDE3-only. Doesn't compile wrt bug #262318.
# Masked for removal in 30 days.
kde-misc/kio-locate

# Samuli Suominen <ssuominen@gentoo.org> (24 Oct 2009)
# Masked for testing. Doesn't work with current Thunar.
# See, http://bugs.gentoo.org/show_bug.cgi?id=289867
>=xfce-base/exo-0.5
>=xfce-base/thunar-1.0.1-r1

# Diego E. Pettenò <flameeyes@gentoo.org> (23 Oct 2009)
#
# Starting work toward supporting Linux Containers in Gentoo.
# Currently, it's a tentative ebuild based upon Tiziano Müller
# (dev-zero)'s overlay, with some differences from the upstream paths
# and handling.
#
# Will be unmasked when felt ready (and openrc'll support it as
# guest).
app-emulation/lxc

# Samuli Suominen <ssuominen@gentoo.org> (23 Oct 2009)
# KDE3-only. Doesn't work with stable sqlite, wrt bug #224503.
# Masked for removal in 30 days.
<kde-misc/krecipes-1.9999

# Samuli Suominen <ssuominen@gentoo.org> (23 Oct 2009)
# KDE3-only. Doesn't work with unicode, which is Gentoo
# default. Masked for removal in 30 days. Bug #221115.
app-mobilephone/kmobiletools

# Samuli Suominen <ssuominen@gentoo.org> (23 Oct 2009)
# KDE3-only. Doesn't compile with KDE4 installed, bugs
# 245543, 258791, 248508, 275733 and security bug 282891.
# Masked for removal in 30 days.
=net-irc/kvirc-3*

# Samuli Suominen <ssuominen@gentoo.org> (23 Oct 2009)
# KDE3-only. Doesn't compile wrt bug #237966.
# Masked for removal in 30 days.
games-board/knights

# Raúl Porcel <armin76@gentoo.org> (22 Oct 2009)
# Not needed anymore, vanilla kernel works
# pretty well on SH nowadays.
# Removal in 30 days
sys-kernel/sh-sources

# Doug Goldstein <cardoe@gentoo.org> (21 Oct 2009)
# Work in progress
=x11-misc/synergy-plus-1.3.4

# Dirkjan Ochtman <djc@gentoo.org> (21 Oct 2009)
# Needs some more testing before unleashing on the masses.
=dev-libs/boost-1.40.0

# Diego E. Pettenò <flameeyes@gmail.com> (21 Oct 2009)
# Deprecated upstream, use pavucontrol to move streams around, and
# paprefs for settings. Masked for remoal in 30 days.
media-sound/paman

# Samuli Suominen <ssuominen@gentoo.org> (21 Oct 2009)
# KDE3-only. Doesn't work wrt #210034. Internal copy
# of readline wrt #206953. Masked for removal in 30 days.
kde-misc/tork

# Samuli Suominen <ssuominen@gentoo.org> (21 Oct 2009)
# KDE3-only. Doesn't compile wrt bug #276290.
# Masked for removal in 30 days.
net-dialup/trayimonc

# 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

# Samuli Suominen <ssuominen@gentoo.org> (20 Oct 2009)
# KDE3-only. Doesn't compile with stable networkmanager wrt bug 253788.
# Other issues in bugs #197488, #217209, #255864, and #268732.
# Masked for removal in 30 days.
=kde-misc/knetworkmanager-0.2*

# Samuli Suominen <ssuominen@gentoo.org> (20 Oct 2009)
# KDE3-only. Doesn't compile wrt #274206. Bundles internal
# copies of sqlite wrt #252546.
# Masked for removal in 30 days.
media-gfx/showimg
media-libs/libkexif

# Samuli Suominen <ssuominen@gentoo.org> (20 Oct 2009)
# Doesn't compile with KDE4 installed wrt #244882.
# Masked for removal in 30 days.
dev-embedded/pikdev

# Samuli Suominen <ssuominen@gentoo.org> (20 Oct 2009)
# KDE3-only and doesn't work anymore wrt #237320.
# Masked for removal in 30 days.
kde-misc/kdmtheme

# Peter Volkov <pva@gentoo.org> (20 Oct 2009)
# Masked development versions
=dev-util/bzr-2.1.0_beta1*
=dev-util/bzrtools-2.1.0_beta1*

# Samuli Suominen <ssuominen@gentoo.org> (20 Oct 2009)
# Doesn't compile with KDE4 installed wrt bug #279297.
# Masked for removal in 30 days.
games-board/kwappen

# Samuli Suominen <ssuominen@gentoo.org> (20 Oct 2009)
# Doesn't compile with KDE4 installed wrt bug #279659.
# Masked for removal in 30 days.
kde-misc/ksystemlog

# Samuli Suominen <ssuominen@gentoo.org> (20 Oct 2009)
# Doesn't compile with KDE4 installed wrt bug #279486.
# Masked for removal in 30 days.
media-tv/mtvg

# Michael Sterrett <mr_bones_@gentoo.org> (19 Oct 2009)
# Homepage is gone; requires dev-python/numeric; last released in 2006
games-rpg/galaxymage

# Samuli Suominen <ssuominen@gentoo.org> (19 Oct 2009)
# KDE3-only and doesn't compile, bug #246783.
# Removed in 30 days.
kde-misc/kdissert

# Samuli Suominen <ssuominen@gentoo.org> (19 Oct 2009)
# No new x264 support.
media-plugins/gst-plugins-x264

# Samuli Suominen <ssuominen@gentoo.org> (18 Oct 2009)
# Fails to build with KDE4 installed wrt bug #279485.
# Masked for removal in 30 days.
kde-misc/metamonitor

# Samuli Suominen <ssuominen@gentoo.org> (18 Oct 2009)
# Fails to build with KDE4 installed wrt bug #279716.
# Masked for removal in 30 days.
kde-misc/ksplash-engine-moodin

# Samuli Suominen <ssuominen@gentoo.org> (18 Oct 2009)
# Fails to build with KDE4 installed wrt bug #277575.
# Masked for removal in 30 days.
games-board/schafkopf

# Samuli Suominen <ssuominen@gentoo.org> (18 Oct 2009)
# Fails to build with KDE4 installed wrt bug #277575.
# Masked for removal in 30 days.
kde-misc/kkeyled

# Samuli Suominen <ssuominen@gentoo.org> (17 Oct 2009)
# Obsolete Musepack SV7 format support. Install
# media-sound/musepack-tools for libs and tools to convert
# your audio files to SV8 format.
media-libs/libmpcdec

# Samuli Suominen <ssuominen@gentoo.org> (16 Oct 2009)
# Fails to build with KDE4 installed wrt bug #277427.
# Masked for removal in 30 days.
net-news/eventwatcher

# Samuli Suominen <ssuominen@gentoo.org> (16 Oct 2009)
# Fails to build with KDE4 installed wrt bug #277417.
# Masked for removal in 30 days.
kde-misc/kisdnwatch

# Samuli Suominen <ssuominen@gentoo.org> (16 Oct 2009)
# Fails to build with KDE4 installed wrt bug #277415.
# Masked for removal in 30 days.
net-ftp/kasablanca

# Samuli Suominen <ssuominen@gentoo.org> (16 Oct 2009)
# Fails to build with KDE4 installed wrt bug #277172.
# Masked for removal in 30 days.
net-misc/ktraynetworker

# Samuli Suominen <ssuominen@gentoo.org> (16 Oct 2009)
# Fails to build with KDE4 installed wrt bug #276891.
# Masked for removal in 30 days.
x11-themes/activeheart-kwin

# Samuli Suominen <ssuominen@gentoo.org> (16 Oct 2009)
# Fails to build with KDE4 installed wrt bug #276876.
# Masked for removal in 30 days.
app-office/kbudget

# Samuli Suominen <ssuominen@gentoo.org> (16 Oct 2009)
# Fails to build with KDE4 installed wrt bug #276851.
# Masked for removal in 30 days.
app-backup/konserve

# Samuli Suominen <ssuominen@gentoo.org> (16 Oct 2009)
# Fails to build with KDE4 installed wrt bug #276205.
# Masked for removal in 30 days.
x11-themes/comix

# Samuli Suominen <ssuominen@gentoo.org> (16 Oct 2009)
# Fails to build with KDE4 installed wrt bug #248883.
# Masked for removal in 30 days.
kde-misc/kdirstat

# Samuli Suominen <ssuominen@gentoo.org> (16 Oct 2009)
# Fails to build with KDE4 installed wrt bug #278628.
# Masked for removal in 30 days.
media-sound/krecord

# Alex Alexander <wired@gentoo.org> (16 Oct 2009)
# Qt 4.6.0 beta - masking before adding for testing
=x11-libs/qt-4.6.0_beta*
=x11-libs/qt-assistant-4.6.0_beta*
=x11-libs/qt-core-4.6.0_beta*
=x11-libs/qt-dbus-4.6.0_beta*
=x11-libs/qt-demo-4.6.0_beta*
=x11-libs/qt-gui-4.6.0_beta*
=x11-libs/qt-multimedia-4.6.0_beta*
=x11-libs/qt-opengl-4.6.0_beta*
=x11-libs/qt-phonon-4.6.0_beta*
=x11-libs/qt-qt3support-4.6.0_beta*
=x11-libs/qt-script-4.6.0_beta*
=x11-libs/qt-sql-4.6.0_beta*
=x11-libs/qt-svg-4.6.0_beta*
=x11-libs/qt-test-4.6.0_beta*
=x11-libs/qt-webkit-4.6.0_beta*
=x11-libs/qt-xmlpatterns-4.6.0_beta*

# Dominik Kapusta <ayoy@gentoo.org> (15 Oct 2009)
# Masked for testing
=dev-embedded/scratchbox-2*

# Samuli Suominen <ssuominen@gentoo.org> (15 Oct 2009)
# ksynaptics is replaced by x11-misc/touchfreeze
# gsynaptics is replaced by gnome-extra/gpointing-device-settings
# libsynaptics is orphaned library
# bug 289170
gnome-extra/gsynaptics
x11-libs/libsynaptics
kde-misc/ksynaptics

# Michael Sterrett <mr_bones_@gentoo.org> (14 Oct 2009)
# Requires aRTs and last released in 2007
games-engines/kwest

# Ulrich Mueller <ulm@gentoo.org> (11 Oct 2009)
# Blocked by its own dependency, therefore no longer installable.
# Use the news module of app-admin/eselect-1.2* as replacement.
# Masked for removal in 30 days, bug 288560.
app-admin/eselect-news

# Markus Meier <maekke@gentoo.org> (11 Oct 2009)
# mask media-gfx/autopano-sift for removal in 30 days
# use media-gfx/autopano-sift-C instead
media-gfx/autopano-sift

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

# Gilles Dartiguelongue <eva@gentoo.org> (8 Oct 2009)
# Obsolete. Supported by in-kernel driver qspca_stv06xx.
# Masked for removal, see bug #286818.
media-video/qc-usb

# Samuli Suominen <ssuominen@gentoo.org> (05 Oct 2009)
# Masked for testing.
=dev-libs/libffi-3.0.9_rc*

# Jeremy Olexa <darkside@gentoo.org> (5 Oct 2009)
# Dead project, missing deps, no maintainer. Removed in 60 days by treecleaners.
# bug 205190
sys-apps/qtparted

# Jeremy Olexa <darkside@gentoo.org> (5 Oct 2009)
# Obsolete and produces bad isos. Upstream recommends app-cdr/iat.
# Removed in 60 days (or sooner based on lack of usefullness), bug 281149
app-cdr/mdf2iso

# Jeremy Olexa <darkside@gentoo.org> (5 Oct 2009)
# QA standards are seriously missing on this package. It was marked stable
# without applying a patch, even. No maintainer, remove in 60 days. bug 282388
net-misc/rdist

# Jeremy Olexa <darkside@gentoo.org> (5 Oct 2009)
# Dead, broken software. Upstream themselves requested the removal from Gentoo.
# bug 282820. Removed in 60 days.
net-im/curphoo
net-im/magnesium

# Jeremy Olexa <darkside@gentoo.org> (5 Oct 2009)
# Depends on gtk-1, orphaned library. Nothing uses it. Removed in 60 days. bug
# 284494
media-libs/SoGtk

# Jeremy Olexa <darkside@gentoo.org> (5 Oct 2009)
# Does not compile properly and hence does not install any of the tools it
# offers. No maintainer. Removed in 60 days. bug 284623
# (Depends on dev-libs/skalibs (below)
sys-apps/minutils

# Jeremy Olexa <darkside@gentoo.org> (5 Oct 2009)
# QA!!? Installs to /package! No maintainer in Gentoo. Removed in 60 days.
# bug 284618
dev-libs/skalibs

# Mike Doty <kingtaco@gentoo.org> (04 Oct 2009)
# alpha packages, kills puppies.
=app-emulation/emul-linux-x86-baselibs-20091004_rc1
=app-emulation/emul-linux-x86-compat-20091004_rc1
=app-emulation/emul-linux-x86-gtklibs-20091004_rc1
=app-emulation/emul-linux-x86-medialibs-20091004_rc1
=app-emulation/emul-linux-x86-qtlibs-20091004_rc1
=app-emulation/emul-linux-x86-sdl-20091004_rc1
=app-emulation/emul-linux-x86-soundlibs-20091004_rc1
=app-emulation/emul-linux-x86-xlibs-20091004_rc1

# Mike Doty <kingtaco@gentoo.org> (03 Oct 2009)
# alpha packages, kills puppies.
=app-emulation/emul-linux-x86-baselibs-20091003_rc1

# Markus Meier <maekke@gentoo.org> (03 Oct 2009)
# mask hugin and deps beta/rc versions for testing
>=media-gfx/hugin-2009.4.0_rc1
>=media-libs/libpano13-2.9.15_beta3

# Marcus D. Hanwell <cryos@gentoo.org> (01 Oct 2009)
# Release candidates for the new CMake release
>=dev-util/cmake-2.8.0_rc1

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

# Torsten Veller <tove@gentoo.org> (01 Oct 2009)
# Old. Replaced. Or just unmaintained.
# - added as dep for a package that never made it into the tree (#21549)
#   nothing depends on it, broken, no releases for years
#   bug #280497 (12 Oct 2009)
dev-perl/Net-FTPServer

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (29 Sep 2009)
# wsgiref module is included in Python >=2.5. Masked for deletion in 30 days.
dev-python/wsgiref

# Samuli Suominen <ssuominen@gentoo.org> (28 Sep 2009)
# Obsolete. Supported by in-kernel drivers. Masked for removal,
# see bug 277605.
media-video/qc-usb-messenger

# Steve Arnold <nerdboy@gentoo.org> (25 Sep 2009)
# Masking only this version due to eigen breakage; fixed in 1.6.1 but
# we probably don't want this version being pulled from anywhere...
=app-doc/doxygen-1.6.0

# Jory A. Pratt <anarchy@gentoo.org> (24 Sep 2009)
# Much testing needed, not ready for mainline by any means.
>=www-client/seamonkey-2.0_beta2

# Sebastien Fabbro <bicatali@gentoo.org> (23 Sep 2009)
# Masked for more testing, especially with cint7, afs and xrootd
# on amd64 with gcc-4.4. See bug #280925
=sci-physics/root-5.24.00

# Jesus Rivero <neurogeek@gentoo.org> (20 Sep 2009)
# Masked for removal in 30 days.
# Not needed for Python versions higher then 2.4
dev-python/optik

# Torsten Veller <tove@gentoo.org> (20 Sep 2009)
# Add perl-5.10 masks (#280724)
~dev-lang/perl-5.10.1
~sys-devel/libperl-5.10.1
=app-admin/perl-cleaner-2*

# Rémi Cardona <remi@gentoo.org> (19 Sep 2009)
# Outdated and useless X doc packages
# Masked for removal in 30 days
app-doc/opengl-manpages
app-doc/xorg-sgml-doctools
app-doc/xorg-docs

# Tony Vroon <chainsaw@gentoo.org> (14 Sep 2009)
# Alpha releases. Unmask at your own risk, bugs
# go upstream to http://jira.atheme.org/
=media-sound/audacious-2.2_alpha*
=media-plugins/audacious-plugins-2.2_alpha*

# Joe Sapp <nixphoeni@gentoo.org> (14 Sep 2009)
# Package has new name (x11-plugins/desklet-WeeklyCalendar) to reflect
# new gDesklets naming system within Gentoo and new gDesklets packaging
# guidelines. Masked for removal on 14 Nov 2009 (bug #285034).
x11-plugins/desklet-weeklycalendar

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (14 Sep 2009)
# dev-python/omniorbpy installs __init__.py in illegal location (bug #247851)
# and isn't properly maintained in Gentoo. Masked for deletion in 30 days.
dev-python/omniorbpy

# Diego E. Pettenò <flameeyes@gentoo.org> (14 Sep 2009)
#  on behalf of QA team
#
# Fails to build for over an year, see bug #233089 opened
# in July 2008.
#
# Removal on 2009-11-13
app-forensics/pyflag

# Diego E. Pettenò <flameeyes@gentoo.org> (14 Sep 2009)
#  on behalf of QA team
#
# Replaced by app-i18n/skk-jisyo (with cdb USE flag); old
# and stale.
#
# Removal on 2009-11-13
<app-i18n/dbskkd-cdb-2
app-i18n/skk-jisyo-cdb
app-i18n/skk-jisyo-extra

# Konstantin V. Arkhipov <voxus@gentoo.org> (13 Sep 2009)
# Upstream no longer supports it, removal in 30 days.
dev-php5/onphp-module

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (13 Sep 2009)
# Masked to enforce upgrade which looks like downgrade.
=dev-python/fabric-0.9a_p3

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

# Torsten Veller <tove@gentoo.org> (09 Sep 2009)
# Convert-UUlib-1.30 breaks amavisd-new (#283797)
=dev-perl/Convert-UUlib-1.30

# Alex Legler <a3li@gentoo.org> (1 Sep 2009)
# Masked for security, has no maintainer. Bug 283434.
# Will be proposed for treecleaning if noone steps up in let's say two weeks.
app-office/tinyerp-client
app-office/tinyerp-server

# Diego E. Pettenò <flameeyes@gentoo.org> (30 Aug 2009)
#  on behalf of QA team
#
# Old version of synce framework; 0.13 and 0.14 are in the
# tree and don't need these packages. synce-rra was just
# fixed after almost an year (at least) of build failure.
#
# Removal on 2009-10-29
<app-pda/synce-0.10
app-pda/synce-rra
app-pda/synce-kde
app-pda/synce-multisync_plugin

# Diego E. Pettenò <flameeyes@gentoo.org> (30 Aug 2009)
#  on behalf of QA team
#
# Unmaintained upstream, unneeded in tree, collides with
# dev-libs/mini-xml (bug #247405) which is actually used.
#
# Removal on 2009-10-29
dev-cpp/libmxmlplus

# Diego E. Pettenò <flameeyes@gentoo.org> (30 Aug 2009)
#  on behalf of QA team
#
# Blocks iputils since 2007 (and iputils is a system
# package); lacks a Gentoo maintainer, and upstream seems
# to be gone. The same code has been used and patched since
# 2002 at least.
#
# Removal on 2009-10-29
net-misc/rarpd

# Diego E. Pettenò <flameeyes@gentoo.org> (30 Aug 2009)
#  on behalf of QA team
#
# Uses serial make (and can't build in parallel, bug
# #283170); last release in 2004, declared dead upstream,
# uses Qt 3.
#
# Removal on 2009-10-29
dev-util/qtunit

# Diego E. Pettenò <flameeyes@gentoo.org> (30 Aug 2009)
#  on behalf of QA team
#
# Fails to build since at least November 2007, bug #199164.
#
# Removal on 2009-10-29
sys-process/acctail

# Diego E. Pettenò <flameeyes@gentoo.org> (27 Aug 2009)
#  on behalf of QA team
#
# Fails to patch, bug #214719, since March 2008.
#
# Package need a new maintainer, possibly someone actually
# using this stuff.
#
# Removal on 2009-10-26
app-emulation/parallels-workstation

# Christian Faulhammer <fauli@gentoo.org> (24 Aug 2009)
# Has bundled security-vulnerable expat library, see bug 250049
dev-tex/mpm

# Christian Faulhammer <fauli@gentoo.org> (24 Aug 2009)
# Masking for removal: Has bundled security-vulnerable expat library
# and is discontinued.  See bug 248427
sys-apps/einit
sys-apps/einit-modules-scheme
sys-apps/einit-modules-xml

# Robert Piasek <dagger@gentoo.org> (24 Aug 2009)
# Development snapshots of NetworkManager. Masked
# for testing.
>=net-misc/networkmanager-0.8.0_pre20090824
>=gnome-extra/nm-applet-0.8.0_pre20090824

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

# 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

# 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
#
# Fail to build with glibc 2.8 (bug #239935).
#
# Removal on 2009-10-09
app-backup/afbackup-client
app-backup/afbackup-server

# 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

# 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

# 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

# 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

# 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

# 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

# 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

# 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

# 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

# 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

# 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

# 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

# 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

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

# 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

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

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

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

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

# Peter Volkov <pva@gentoo.org> (17 May 2009)
# Masked development/git sources
=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

# 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

# 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

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

# 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


# 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

# 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.10
=www-client/opera-10.10_pre4678
=www-client/opera-10.10_pre4685

# 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

# 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
>=media-plugins/gst-plugins-resindvd-0.10.14

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

# 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

# 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 ebuild too volatile for normal use.
# Users who need to test this should unmask explicitly.
=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

# 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

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

# 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

# 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

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