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
|
####################################################################
# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.10054 2009/07/16 11:33:46 flameeyes 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> (16 Jul 2009)
# Obsolete. Replaced by media-sound/lash by upstream.
# Doesn't build wrt #277939. Upgrade timemachine
# to 0.3.1. Masked for removal.
media-libs/ladcca
=media-sound/timemachine-0.3.0
# Diego E. Pettenò <flameeyes@gentoo.org> (14 Jul 2009)
# on behalf of QA Team
#
# Fails to build with glibc 2.10 (bug #277833), doesn't respect
# CC (bug #244010) nor CFLAGS (bug #240281). Unmaintained in Gentoo
# and unneeded by in-tree packages.
#
# Removal on 2009-09-14
dev-util/jscalltree
# Diego E. Pettenò <flameeyes@gentoo.org> (14 Jul 2009)
# on behalf of QA Team
# Live ebuild, we cannot guarantee its working state
dev-embedded/sdcc-svn
# 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/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
# Nirbheek Chauhan <nirbheek@gentoo.org> (13 Jul 2009)
# Needs mozilla-firefox-3.5, which is masked
>=www-plugins/mozilla-weave-0.4
# 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)
# Fails to build, segfaults during testsuite, broken. Removed by treecleaners in
# ~30 days. bug 274956
media-sound/glame
# 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. QA violations, uses gtk1, no Gentoo
# maintainer interest. bug 248171
net-print/pnm2ppa
# 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
# Víctor Ostorga <vostorga@gentoo.org> (10 Jul 2009)
# media-video/mpeg4ip doesn't build wrt #274284
# mpeg4ip is obsolete, libmp4v2 got new upstream.
# Removal scheduled in 2009-09-10
media-video/mpeg4ip
# Samuli Suominen <ssuominen@gentoo.org> (10 Jul 2009)
# efence doesn't build wrt #262528, or work wrt #128814
# masked for removal. please use dev-util/duma instead.
dev-util/efence
# 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
# MATSUU Takuto <matsuu@gentoo.org> (8 Jul 2009)
# Masked broken ebuild, bug #276543.
=net-wireless/broadcom-sta-5.10.91.9-r2
# Diego E. Pettenò <flameeyes@gentoo.org> (6 Jul 2009)
# on behalf of QA Team
#
# Fetch restricted, download link broken, package never bumped,
# unmaintained, requires a maintainer with hardware.
#
# Removal scheduled for 2009-08-07
# Bug #276978
net-misc/cisco-aironet-client-utils
# 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
# Diego E. Pettenò <flameeyes@gentoo.org> (6 Jul 2009)
# on behalf of QA Team
#
# Fails to build with recent glibc (2.10, bug #276861); pointless
# (hexdump does more or less the same), unmaintained.
#
# Removal on 2009-09-07
sys-apps/hdump
# Rémi Cardona <remi@gentoo.org> (06 Jul 2009)
# snapshot of the upcoming 2.8, upstream repo is still in flux
=x11-drivers/xf86-video-intel-2.7.99.901
# 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
#
# Multiple failures:
# - bug #179100;
# - bug #239590;
# - bug #249282
#
# Removal on 2009-09-06 if nobody gets it to work.
dev-java/cacao
# 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-fs/gfs2
sys-fs/gfs
sys-fs/clvm
# Diego E. Pettenò <flameeyes@gentoo.org> (6 Jul 2009)
# on behalf of QA Team
#
# libiiimcf fails to build because of automake (1.4), see bug #239982.
# The package also already started failing back in 2006, and without
# that the rest of the dependencies don't install.
# Removal on 2009-08-06
dev-libs/libiiimcf
dev-libs/libiiimp
dev-libs/eimil
dev-libs/csconv
app-emacs/iiimecf
app-i18n/im-sdk
app-i18n/iiimf-canna
app-i18n/iiimf-skk
app-i18n/iiimcf
app-i18n/iiimgcf
app-i18n/iiimsf
app-i18n/iiimxcf
app-i18n/leif
=app-i18n/atokx2-17.0-r1
# Benedikt Böhm <hollow@gentoo.org> (5 Jul 2009)
# superseded by www-apache/mod_authn_pam, #222159
# removal: 31 Aug 2009
www-apache/mod_auth_pam
# Ben de Groot <yngwin@gentoo.org> (5 Jul 2009)
# Security issues (bug 276432) and 0.8.x has been abandoned upstream.
# Upgrade to 2.1.1 which is in the process of being marked stable.
# Older versions will be removed once that is complete.
#
# Breaking stable deps with package masking is never allowed.
# Uncomment again once dillo is keyworded properly. mr_bones_@gentoo.org
#<=www-client/dillo-2.1
# 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)
# Fails to build, no release since 2004. No Gentoo maintainer, bug 264174.
# Removal in 60 days.
app-editors/geresh
# 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)
# Old, no interest in keeping it up to date, dead upstream. Removed in 60 days.
# bug 183986
net-irc/xchat-systray
# 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
# Matthias Schwarzott <zzam@gentoo.org> (3 Jul 2009)
# It needs libblkid provided by util-linux-2.16 not yet released
>=sys-fs/udev-142
# Markos Chandras <hwoarang@gentoo.org> (2 Jul 2009)
# Beta releases should be masked
=media-video/griffith-0.10_beta*
# Christian Faulhammer <fauli@gentoo.org> (2 Jul 2009)
# Raúl Porcel <armin76@gentoo.org>
# Release candidates should be masked
~sys-kernel/vanilla-sources-2.6.30_rc1
~sys-kernel/vanilla-sources-2.6.30_rc3
~sys-kernel/vanilla-sources-2.6.30_rc4
~sys-kernel/vanilla-sources-2.6.30_rc5
~sys-kernel/vanilla-sources-2.6.30_rc6
~sys-kernel/vanilla-sources-2.6.30_rc7
~sys-kernel/vanilla-sources-2.6.30_rc8
~sys-kernel/vanilla-sources-2.6.31_rc1
# 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
# Diego E. Pettenò <flameeyes@gentoo.org> (30 Jun 2009)
# Fails with glibc 2.10 (bug #274122), has had enough problems in the
# past, and there is no upstream development. Use patchage or qjackctl
# if you need something similar.
# Pending removal on July 30th 2009
media-sound/alsa-patch-bay
# 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*
# Nirbheek Chauhan <nirbheek@gentoo.org> (24 Jun 2009)
# Xulrunner 1.9.1 breaks some packages, bug 268394
# nspr-4.8 has soname bump
=www-client/mozilla-firefox-3.5*
=net-libs/xulrunner-1.9.1*
=dev-libs/nspr-4.8*
# 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
# Arfrever <arfrever@gentoo.org> (22 Jun 2009)
# pyreverse doesn't work with current versions of dev-python/astng.
# Last release was over 4 years ago.
# Masked for removal in 30 days.
dev-python/pyreverse
# 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
# Ulrich Mueller <ulm@gentoo.org> (21 Jun 2009)
# Emacs 23 live CVS ebuilds and packages depending on them.
~app-editors/emacs-cvs-23.0.9999
~app-editors/emacs-cvs-23.1.9999
>=virtual/emacs-23
app-emacs/emacs-daemon
# Christian Faulhammer <fauli@gentoo.org> (01 Apr 2008)
# Masked for security reasons: bug 215699
#
# Diego E. Pettenò <flameeyes@gentoo.org> (21 Jun 2009)
# on behalf of QA Team
#
# Big files in FILESDIR, unmaintained, work pending on newer versions.
# Masked for removal on July 21st 2009; bug #274882
<net-misc/ltsp-5
# 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
# Alistair Bush <ali_bush@gentoo.org) (18 Jun 2009)
# Masked for testing, new slot and existing reverse deps
# need to be updated. Unmasking this may break those packages.
# Otherwise have fun.
~dev-java/jython-2.5.0
# Christian Faulhammer <fauli@gentoo.org> (13 Apr 2009)
# Release candidates should be masked
=net-misc/tor-0.2.1.16_rc
# Peter Volkov <pva@gentoo.org> (17 Jun 2009)
# Pending removal, use net-misc/l7-filter-userspace, bug #274341
# http://archives.gentoo.org/gentoo-dev-announce/msg_0d7c089ea38747a1dedfb2019e02d5a2.xml
net-misc/l7-filter
# Tony Vroon <chainsaw@gentoo.org> (16 Jun 2009)
# Alpha/beta releases, you are free to test but bugs go upstream.
# http://jira.atheme.org/
=media-sound/audacious-2.1_alpha*
=media-plugins/audacious-plugins-2.1_alpha*
=net-irc/conspire-1.0_beta*
# Diego E. Pettenò <flameeyes@gentoo.org> (16 Jun 2009)
# on behalf of QA Team
#
# Fails to build with gcc 4.2 and later.
# See bug #273275
#
# Removal pending 16 August 2009
app-text/kaspaliste
# 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
# Rémi Cardona <remi@gentoo.org> (16 Jun 2009)
# will be treecleaned in 30 days, it's just beyond useless
x11-libs/liboldX
# Diego E. Pettenò <flameeyes@gentoo.org> (15 Jun 2009)
# Live ebuild, we cannot guarantee its working state
~sys-fs/yaffs-utils-9999
# 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
# Stefan Briesenick <sbriesen@gentoo.org> (11 Jun 2009)
# media-gfx/digiKam 0.10.0-r1 crashes with SIGABRT with
# media-gfx/exiv2-0.18. media-gfx/exiv2-0.18.1 works fine,
# but is not stabilized yet. (bug #273577).
=media-gfx/exiv2-0.18
# 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*
# Michael Sterrett <mr_bones_@gentoo.org> (09 Jun 2009)
# masked for removal in 30 days.
# upstream sez: Due lack of time and motivation to continue, the
# development ended with the 0.18 release in summer 2005...
games-arcade/moagg
# Theo Chatzimichos <tampakrap@gentoo.org> (09 Jun 2009)
# Masked for removal in 30 days. Old and dead by upstream.
app-arch/karchiver
# Ulrich Mueller <ulm@gentoo.org> (09 Jun 2009)
# Masked for removal in 60 days. Doesn't build with glibc-2.10. Incompatible
# with current Emacs versions. No upstream release since more than five years.
# If you want us to keep this package, please contact <emacs@gentoo.org>, or
# leave a comment at bug 272593.
app-text/remem
# Diego E. Pettenò <flameeyes@gentoo.org> (05 Jun 2009)
# Broken PAM setup, causes sys-libs/pam to fail install because of
# pam_console requirements. See bug #210820. Fix it or punt it, it's
# not my problem.
# Jeremy Olexa <darkside@gentoo.org> (3 Jul 2009)
# Critical to fix before unmasking, no interest in fixing so removed in 30 days.
# bug 210820
media-tv/zapping
# Alexey Shvetsov <alexxy@gentoo.org> (04 Jun 2009)
# Mask kde4 printing stuff
>=kde-base/printer-applet-4.2.4
>=kde-base/system-config-printer-kde-4.2.4
# Steve Dibb <beandog@gentoo.org> (04 Jun 2009)
# Drop hacked support for optional MIDI in ALSA
# Keep masked until all reverse deps are fixed
# See bug 272659
>=media-libs/alsa-lib-1.0.20-r1
>=media-sound/alsa-utils-1.0.20-r1
>=media-sound/alsa-tools-1.0.20-r1
# Serkan Kaba <serkan@gentoo.org> (01 Jun 2009)
# Last-rited Bug #272117
# Hard depends on Java 1.4 (Bug #118291)
dev-java/adaptx
# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (30 May 2009)
# Development versions.
=net-libs/gnutls-2.9*
# Jeremy Olexa <darkside@gentoo.org> (30 May 2009)
# Masked for removal in 60 days, unmaintained. Binary package in /usr. bug
# 240029
app-misc/cbtracker
# Jeremy Olexa <darkside@gentoo.org> (30 May 2009)
# Masked for removal in 60 days. Multiple bugs, doesn't build, version bump
# pending, unmaintained. bug 265668
sys-libs/libuser
# These depend on libuser:
app-admin/firstboot
sys-apps/usermode
# These depend on usermode:
app-admin/authconfig
app-admin/hwbrowser
app-admin/system-config-date
app-admin/system-config-display
app-admin/system-config-httpd
app-admin/system-config-keyboard
app-admin/system-config-language
app-admin/system-config-nfs
app-admin/system-config-printer
app-admin/system-config-samba
app-admin/system-config-soundcard
app-admin/system-config-users
# Jeremy Olexa <darkside@gentoo.org> (30 May 2009)
# Masked for removal in 60 days. Multiple bugs, upstream is dead, crashes with
# stable gtk+ bug 271214
app-editors/nvu
# Jeremy Olexa <darkside@gentoo.org> (30 May 2009)
# Masked for removal in 60 days. Doesn't build, version bump pending. Designed
# for really old PDA hardware (circa '90s) - will need a maintainer that has
# hardware. bug 227601
app-pda/plptools
# Peter Volkov <pva@gentoo.org> (29 May 2009)
# Masked development version. Play with it, it works!
# Also mask psimedia as it was tested with net-im/psi-0.13 only.
=net-im/psi-0.13*
net-im/psimedia
# Alistair Bush <ali_bush@gentoo.org> (28 May 2009)
# Masked as a release candidate. Testing is needed,
# need to determine whether a new slot is required.
~dev-java/jruby-1.3.0_rc1
# Bernard Cafarelli <voyageur@gentoo.org> (27 May 2009)
# Live ebuild for bleeding-edge users
~www-client/chromium-bin-9999
# Torsten Veller <tove@gentoo.org> (27 May 2009)
# PDEPEND on more dual life modules that also install
# into scriptdir
# Masked until perl-5.8.8-r6 is stable for amd64 and x86
=dev-lang/perl-5.8.8-r7
perl-core/CPAN
virtual/perl-CPAN
perl-core/Encode
virtual/perl-Encode
perl-core/ExtUtils-MakeMaker
virtual/perl-ExtUtils-MakeMaker
# Federico Ferri <mescalinum@gentoo.org> (26 May 2009)
# Deprecated cause depending on unmaintained dev-tcltk/otcl.
# Everything being moved to 'abandonware' overlay.
# Possible replacement: net-misc/gns3 (sunrise overlay)
# Going for removal in ~30 days if no one objects.
# removal bug #271305
net-analyzer/ns
net-analyzer/nam
# Federico Ferri <mescalinum@gentoo.org> (26 May 2009)
# Unmaintained upstream.
# Going for removal in ~30 days.
# removal bug #271307
dev-tcltk/otcl
dev-tcltk/tclcl
# 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
# Jesus Rivero <neurogeek@gentoo.org> (24 May 2009)
# Masked for removal in 30 days. Upstream is dead.
dev-python/glewpy
dev-python/pycrash
# 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
# Serkan Kaba <serkan@gentoo.org> (17 May 2009)
# Masked to allow smoother upgrade. Safe to remove after 1.0 goes stable
=media-sound/jtagger-2008*
# Michał Januszewski <spock@gentoo.org> (15 May 2009)
# Masked until a compatible nvidia-drivers package is available in the tree.
>=dev-util/nvidia-cuda-sdk-2.2
>=dev-util/nvidia-cuda-toolkit-2.2
# 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
# Robin H. Johnson <robbat2@gentoo.org> (05 May 2009)
# Not ready for primetime, but worth testing still.
=dev-util/git-1.6.3_rc*
# Tomas Chvatal <scarabeus@gentoo.org> (03 May 2009)
# Breaks too many packages.
# See bug #268090 for discussion.
=app-crypt/qca-2.0.2
# Tomas Chvatal <scarabeus@gentoo.org> (1 May 2009)
# broke nepomuk and soprano in kde so mask for now
=dev-libs/redland-1.0.9
# 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
# Tomas Chvatal <scarabeus@gentoo.org> (27 Apr 2009)
# Masked due to broken iniparser patch
# per Jorges request
=x11-libs/libcompizconfig-0.8.2-r1
# 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*
# Federico Ferri <mescalinum@gentoo.org> (24 Apr 2009)
# Unmasking tcl/tk 8.5
>=dev-lang/tcl-8.5.9999
>=dev-lang/tk-8.5.9999
# 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-benchmark/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
# Lennart Kolmodin <kolmodin@gentoo.org> (17 Apr 2009)
# Add patched dev-lang/ghc for testing.
# It includes a bundled readline package to be able to use old bootstrapping
# binaries. See bug #259867.
# Only x86 and amd64 supported so far. This ebuild won't be very interesting
# once we add ghc 6.10.2.
=dev-lang/ghc-6.8.2-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
# Jeffrey Gardner <je_fro@gentoo.org> (27 Feb 2009)
# Masked for spring cleaning. Removal soon if there's no objections.
=x11-drivers/ati-drivers-8.471.3
=x11-drivers/ati-drivers-8.27.10-r1
=x11-drivers/ati-drivers-8.35.5
=x11-drivers/ati-drivers-8.36.5
=x11-drivers/ati-drivers-8.39.4
=x11-drivers/ati-drivers-8.40.4
=x11-drivers/ati-drivers-8.452
=x11-drivers/ati-drivers-8.471.3
=x11-apps/ati-drivers-extra-8.27.10
# 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
# Marijn Schouten <hkBst@gentoo.org> (22 Mar 2009)
# Masked for removal. Dead upstream, does not build anymore. Bug 152060.
dev-scheme/guile-pg
# Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> (21 Mar 2009)
# Masked because of the dep on =x11-libs/qt-4.3*:4. Waiting for jokey
# feedback to determine whether to remove it or fix the dep
=dev-util/qgit-2.0-r1
# 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
=dev-ruby/rubygems-1.3.1-r30
# 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*
>=media-libs/spandsp-0.0.6_pre7
# 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
# Matthias Schwarzott <zzam@gentoo.org> (25 Feb 2009)
# masked for removal in 30days
# Got replaced by media-plugins/vdr-streamdev
media-plugins/vdr-streamdev-client
media-plugins/vdr-streamdev-server
# Markus Meier <maekke@gentoo.org> (25 Feb 2009)
# mask beta releases of media-gfx/hugin-0.8.0
>=media-gfx/hugin-0.8.0_beta1
>=media-libs/libpano13-2.9.14_beta1
# Joe Sapp <nixphoeni@gentoo.org> (22 Feb 2009)
# The following have made their way into the upstream
# core package. Unless there's a reason to keep
# 0.35.4 around, I'd like them all gone in 30 days
# too. Masking for removal in 30 days (bug #259971).
x11-plugins/desklet-calendar
x11-plugins/desklet-clock
# Ben de Groot <yngwin@gentoo.org> (14 Feb 2009)
# Masking because of build failures, bug 258961
=x11-libs/qt-script-4.5.0_rc1-r1
# 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
# Santiago M. Mola <coldwind@gentoo.org> (03 Feb 2009)
# Masked for removal in 30 days,
# Pando for Linux is not a priority for upstream.
# No release since 2007, ebuild uses pre-compiled libs
# that are, probably, affected by security issues.
net-p2p/pandodl
# 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
# Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> (30 Jan 2009)
# Experiemntal printer support in KDE-4.2.0
# Masked until the deps are put in the tree
>=kde-base/printer-applet-4.1.96
>=kde-base/system-config-printer-kde-4.1.96
# Peter Volkov <pva@gentoo.org> (26 Jan 2009)
# Security vulnerabilities (one of them is critical), bug 236517
www-misc/zoneminder
# 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
# Ben de Groot <yngwin@gentoo.org> (19 Jan 2009)
# Masked because of bug 248038 which requires mask of qt-4.3*
# Newer versions of these do work with split Qt 4.4
<media-sound/qsynth-0.3.2
~sci-libs/vtk-5.0.3
# 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
# Paul Varner <fuzzyray@gentoo.org> (31 Dec 2008)
# Masked due to being broken with portage 2.1 and 2.2.
# Users can use either the unstable versions or switch to app-portage/eix
=app-portage/esearch-0.7.1
# 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 of Opera may delete kittens
=www-client/opera-10.00_pre43*
>www-client/opera-10.00_pre4402
# 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*
# Mike Doty <kingtaco@gentoo.org> (9 Nov 2008)
# Masked for testing
=app-emulation/emul-linux-x86-baselibs-20081109
=app-emulation/emul-linux-x86-gtklibs-20081109
=app-emulation/emul-linux-x86-qtlibs-20081109
=app-emulation/emul-linux-x86-soundlibs-20081109
=app-emulation/emul-linux-x86-compat-20081109
=app-emulation/emul-linux-x86-medialibs-20081109
=app-emulation/emul-linux-x86-sdl-20081109
=app-emulation/emul-linux-x86-xlibs-20081109
# Steve Dibb <beandog@gentoo.org> (5 Nov 2008)
# Mask realplayer, real codecs for security, upstream issues, bug 245662
# http://forums.gentoo.org/viewtopic-t-713051.html
media-video/realplayer
media-libs/amd64codecs
media-libs/realcodecs
# Markus Dittrich <markusle@gentoo.org> (28 Oct 2008)
# New upstream version is currently masked due to an interface
# glitch with Qt-4.4.2 that needs to be looked at (bug #243362)
# Qt-4.3 users should probably be fine.
=sci-visualization/paraview-3.4.0
# 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
# Robin H. Johnson <robbat2@gentoo.org> (25 Sep 2008)
# Mainly intended for BSD world. Has multiple interface support.
>=net-misc/dhcpcd-4.99
# 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*
## Daniel Black <dragonheart@gentoo.org> (31 Aug 2008)
## Masked for removal.
# old stuff suffering bit rot. old libs that nothing depends
# on.
app-crypt/cryptplug
dev-tcltk/tclgpgme
~app-crypt/gpgme-0.3.14
# 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
# Peter Alfredsen <loki_val@gentoo.org> (04 Jun 2008)
# o Fails its own tests in horrendous ways (buuh!)
=dev-libs/xmlrpc-c-1.15*
# Rémi Cardona <remi@gentoo.org> (27 Mai 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*
# Tiziano Müller <dev-zero@gentoo.org> (19 May 2008)
# Masked for removal in 30 days. Dead upstream.
dev-db/pgeasy
dev-db/pgst
# 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*
# Diego Pettenò <flameeyes@gentoo.org> (19 Apr 2008)
# Masked until we remove "children" .la files, or get better tools -
# like a revdep-rebuild that does not require an actual rebuild.
~dev-libs/popt-1.14
=media-libs/libogg-1.1.3-r1
# Matthias Schwarzott <zzam@gentoo.org> (15 Apr 2008)
# Superseded by vdr-dvdswitch and no longer maintained
media-plugins/vdr-dvdselect
# 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*
# Ben de Groot <yngwin@gentoo.org> (12 Apr 2008)
# Ebuild needs more work
media-sound/lastfmproxy
# 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
# Markus Ullmann <jokey@gentoo.org> (27 Mar 2008)
# mask beta version
=mail-filter/MailScanner-4.68.6.1
# 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
# Wolfram Schlich <wschlich@gentoo.org> (13 Mar 2008)
# mondo-rescue previously was a candidate for complete
# removal and is now a candidate for being proxy-maintained
# (see bug #106497)
app-backup/mondo-rescue
sys-apps/mindi
sys-apps/mindi-busybox
# 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
# Diego Pettenò <flameeyes@gentoo.org> (6 Mar 2008)
# Mask pending fix for new pambase, see bug #212452
=x11-apps/xdm-1.1.6-r1
# Chris Gianelloni <wolf31o2@gentoo.org> (3 Mar 2008)
# Masking due to security bug #194607 and security bug #204067
games-fps/doom3
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
# Peter Volkov <pva@gentoo.org> (28 Jan 2008)
# net-snmp and sussen are broken with it, bug #205280
=app-arch/rpm-4.4.7-r3
# 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
# Markus Ullmann <jokey@gentoo.org> (13 Jan 2008)
# contrib modules need to be added back and needs general testing
>=net-nds/openldap-2.4
# Mart Raudsepp <leio@gentoo.org> (28 Dec 2007)
# Live Subversion ebuild until pending first upstream release
=games-mud/wxmud-9999
# Christian Hoffmann <hoffie@gentoo.org> (27 Dec 2007)
# broken (leads to random segfaults); masked until someone steps up to
# maintain it or it will finally get removed
dev-php5/php-java-bridge
# 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
# Duncan Coutts <dcoutts@gentoo.otg> (05 Nov 2007)
# dev-lang/ghc-bin is going away, use dev-lang/ghc instead.
# You can USE=binary with dev-lang/ghc to get the effect of ghc-bin.
dev-lang/ghc-bin
# 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/zaptel-1.4.0
>=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
# Olivier Fisette <ribosome@gentoo.org> (17 Jul 2007)
# Software no longer available (redistribution not allowed).
sci-chemistry/nmrview
# 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
# Sven Wegener <swegener@gentoo.org> (07 Jul 2007)
# Development releases
=dev-db/opendbx-1.3*
# Jurek Bartuszek <jurek@gentoo.org> (23 Jun 2007)
# Beta versions, testing required
=app-emulation/ies4linux-2.5*
# Raúl Porcel <armin76@gentoo.org> (15 Jun 2007)
# Mask livesvn ebuild
=net-p2p/deluge-9999
# Seemant Kulleen <seemant@gentoo.org> (23 May 2007)
# Masked because 1.2.1 because it is broken
=net-wireless/ipw3945-1.2.1
# Ryan Hill <dirtyepic@gentoo.org> (13 May 2007)
# Mask for testing.
=net-fs/sfs-0.8.0_pre20070512
# Stefan Schweizer <genstef@gentoo.org> (11 Mar 2008)
# Please use kpowersave-0.7.3 with dbus instead of the powersave daemon
<sys-power/kpowersave-0.7.2
sys-power/powersave
# Ryan Hill <dirtyepic@gentoo.org> (29 Apr 2007)
# Has a hard dependency on wxGTK-2.4 (bug #121818)
# Masked until we can update it for 2.6.
app-pda/plucker
# 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
# Roy Marples <uberlord@gentoo.org> (15 Apr 2007)
# Masked as it segfaults and fails with our scripts, #174693.
=net-wireless/wireless-tools-29_pre17
# 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
# Piotr Jaroszyński <peper@gentoo.org> (28 Mar 2006)
# Unusable for now.
app-pda/libopensync-plugin-synce
# 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
<dev-tex/g-brief-4.0.2
# Alec Warner <antarus@gentoo.org> (05 Feb 2007)
# Masked to security problems, use 1.23-r1 until I fix it
>=app-admin/ulogd-1.24
# 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
# Mike Frysinger <vapier@gentoo.org> (28 Dec 2006)
# Build failure on big-endian #154294 and breaks non-default journals #154974
~sys-fs/reiserfsprogs-3.6.20
# 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*
# Donnie Berkholz <dberkholz@gentoo.org> (05 Sep 2006)
# Masked until it gets some testing
## Below here safe to unmask after testing
app-admin/firstboot
app-admin/system-config-keyboard
app-admin/system-config-bind
app-admin/system-config-httpd
# Available languages must be listed in SUPPORTED var in /etc/sysconfig/i18n
app-admin/system-config-language
# Seems to require already existing volumes to run
app-admin/system-config-lvm
app-admin/system-config-printer
dev-libs/alchemist
# for system-config-bind
net-dns/bind-dns-keygen
# Alastair Tse <liquidx@gentoo.org> (27 Jul 2006)
# Masking synce-0.9.2 because of breakages (#141466) (#141491)
=app-pda/synce-0.9.2
=app-pda/synce-librapi2-0.9.2
=app-pda/synce-libsynce-0.9.2
# Luca Longinotti <chtekk@gentoo.org> (24 May 2006)
# Masked for more testing, breaks with stealth mode.
=app-forensics/samhain-2.2.0
# 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
# Matthew Kennedy <mkennedy@gentoo.org> (31 Jul 2005)
# Upstream author requests official version ports only.
# Jeremy Olexa <darkside@gentoo.org> (3 Jul 2009)
# Removed in 30 days. bug 208658
dev-lisp/cl-blog
# 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
=mail-mta/nbsmtp-1.00-r3
# 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
|