summaryrefslogtreecommitdiff
blob: 5b010900c00d45c9a59b83996dc5948edccad750 (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
####################################################################
# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.9754 2009/05/04 23:28:50 eva 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 ---

# Gilles Dartiguelongue <eva@gentoo.org> (05 May 2009)
# Requires net-wireless/gnome-bluetooth-2.27
>=app-mobilephone/gnome-phone-manager-0.65

# Nirbheek Chauhan <nirbheek@gentoo.org> (05 May 2009)
# Requires net-wireless/bluez-4
# Needs KEYWORDS on dev-libs/libunique, bug 268487
=net-wireless/gnome-bluetooth-2.27*

# Theo Chatzimichos <tampakrap@gentoo.org> (04 May 2009)
# Masked for removal
# It shouldn't be in kde-base and it can't go back to games-puzzle
# Also the KDE 4 version is better
=kde-base/ksudoku-0.4

# Tomas Chvatal <scarabeus@gentoo.org> (03 May 2009)
# Breaks too many packages.
# See bug #268090 for discussion.
=app-crypt/qca-2.0.2

# Ryan Hill <dirtyepic@gentoo.org> (03 May 2009)
# mask for removal - Jun 1 09
# bug #268507
app-doc/afsdoc

# Joerg Bornkessel <hd_brummy@gentoo.org> (02 May 2009)
# need >=sys-kernel/linux-headers-2.6.29 with s2api header changes
=media-tv/w_scan-20090502

# Tomas Chvatal <scarabeus@gentoo.org> (1 May 2009)
# broke nepomuk and soprano in kde so mask for now
=dev-libs/redland-1.0.9

# Vlastimil Babka <caster@gentoo.org> (30 Apr 2009)
# masked for removal, bug #261563
=dev-java/ant-core-1.7.0*
=dev-java/ant-antlr-1.7.0*
=dev-java/ant-apache-bcel-1.7.0*
=dev-java/ant-apache-bsf-1.7.0*
=dev-java/ant-apache-log4j-1.7.0*
=dev-java/ant-apache-oro-1.7.0*
=dev-java/ant-apache-regexp-1.7.0*
=dev-java/ant-apache-resolver-1.7.0*
=dev-java/ant-commons-logging-1.7.0*
=dev-java/ant-commons-net-1.7.0*
=dev-java/ant-jai-1.7.0*
=dev-java/ant-javamail-1.7.0*
=dev-java/ant-jdepend-1.7.0*
=dev-java/ant-jmf-1.7.0*
=dev-java/ant-jsch-1.7.0*
=dev-java/ant-junit-1.7.0*
=dev-java/ant-junit4-1.7.0*
=dev-java/ant-nodeps-1.7.0*
=dev-java/ant-swing-1.7.0*
=dev-java/ant-trax-1.7.0*
dev-java/ant-tasks
=dev-java/ant-1.7.0*

# Tomas Chvatal <scarabeus@gentoo.org> (30 Apr 2009)
# mask the koffice2 (notetoself dont use slot blocks)
>=app-office/kword-1.9.99.0
>=app-office/kplato-1.9.99.0
>=app-office/kpresenter-1.9.99.0
>=app-office/kchart-1.9.99.0
>=app-office/karbon-1.9.99.0
>=app-office/krita-1.9.99.0
>=app-office/koffice-data-1.9.99.0
>=app-office/koffice-libs-1.9.99.0
>=app-office/kspread-1.9.99.0
>=app-office/koffice-l10n-1.9.99.0
>=app-office/koffice-meta-1.9.99.0

# Rémi Cardona <remi@gentoo.org> (29 Apr 2009)
# packages currently in the x11 overlay which will soon be moved to portage
# see bug #260582 for xorg-server 1.6.1 issues
# see bug #174434 for xcb-related issues (not all are blocker)
>=x11-base/xorg-server-1.6.1
>=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

# Jeroen Roovers <jer@gentoo.org> (27 Apr 2009)
# Masked because echangelog ommits ".ebuild" in ChangeLog entries (bug #267665)
=app-portage/gentoolkit-dev-0.2.6.9

# 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

# Joe Sapp <nixphoeni@gentoo.org> (26 Apr 2009)
# Doesn't seem to work any more
# Masking for removal in 30 days
x11-plugins/desklet-wirelessmonitor

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

# MATSUU Takuto <matsuu@gentoo.org> (25 Apr 2009)
# Masked for testing, bug #267365.
>=x11-libs/xcb-util-0.3.4

# 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

# Mounir Lamouri <volkmar@gentoo.org> (22 Apr 2009)
# Masked for removal in 60 days. See bug 248008.
# Tapioca is unmaintained and they are officially abandoned subprojects.
# In addition, tapioca-xmpp has been superseeded by telepathy-gabble.
net-im/tapiocad
net-im/tapioca-xmpp
net-im/tapiocaui

# 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

# Ulrich Mueller <ulm@gentoo.org> (18 Apr 2009)
# Live ebuild for testing and debugging.
~app-admin/eselect-9999

# Torsten Veller <tove@gentoo.org> (17 Apr 2009)
# Masks for new IO-Compress which includes
# Compress-Zlib, IO-Compress-Zlib, IO-Compress-Bzip2, IO-Compress-Base
perl-core/IO-Compress
virtual/perl-IO-Compress
>=virtual/perl-Compress-Zlib-2.017
>=virtual/perl-IO-Compress-Zlib-2.017
>=virtual/perl-IO-Compress-Bzip2-2.017
>=virtual/perl-IO-Compress-Base-2.017
# new versions
>=perl-core/Compress-Raw-Zlib-2.017
>=virtual/perl-Compress-Raw-Zlib-2.017
>=perl-core/Compress-Raw-Bzip2-2.017
>=virtual/perl-Compress-Raw-Bzip2-2.017

# Justin Bronder <jsbronder@gentoo.org> (17 Apr 2009)
# Mask sys-cluster/mpich for removal. (#266565)
# No release since 2005, multiple bugs, easily replaced with
# openmpi, mpich2 or lam-mpi
#
# commented out since it still being used by sci-visualization/paraview-2.6.2
# -- mr_bones@gentoo.org
#sys-cluster/mpich

# 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

# Doug Goldstein <cardoe@gentoo.org> (17 Apr 2009)
# Added for testing.These ebuilds fix the following
# bugs #256904, #256913, #257687, #249029, #260340, #254747.
# For me however, I am unable to create new images using virt-manager
# patches for this welcome
=app-emulation/libvirt-0.6.2
=app-emulation/virt-manager-0.7.0
=app-emulation/virtinst-0.400.3

# Tony Vroon <chainsaw@gentoo.org> (17 Apr 2009)
# Alpha-quality developer preview. Feel free to give it a go, but bugs go upstream.
# Use this tracker: http://www.atheme.org/projects/audacious/issues
=media-sound/audacious-2.0_alpha*
=media-plugins/audacious-plugins-2.0_alpha*

# Mounir Lamouri <volkmar@gentoo.org> (15 Apr 2009)
# >www-plugins/mozilla-weaver-0.2.104 needs masked versions of ff (ie. 3.1_beta)
>www-plugins/mozilla-weaver-0.2.104

# Torsten Veller <tove@gentoo.org> (15 Apr 2009)
# Mask net-mail/gotmail for removal (#266204)
net-mail/gotmail

# Christoph Mende <angelos@unkreativ.org> (14 Apr 2009)
# Masked media-sound/mpd pre-releases
=media-sound/mpd-0.15*

# Jeremy Olexa <darkside@gentoo.org> (14 Apr 2009)
# Masked for removal in 60 days. Broken with gcc-4.3, doesn't work after gcc
# patches, no maintainer, dead upstream. bug 228227
x11-misc/temperature-app

# Jeremy Olexa <darkside@gentoo.org> (14 Apr 2009)
# Masked for removal in 60 days. Does not compile, no maintainer, dead upstream.
# bug 247946
net-dialup/ivcall

# Jeremy Olexa <darkside@gentoo.org> (14 Apr 2009)
# Masked for removal in 60 days. Security issues that warrant removal.
# Non-vulnerable version exist, just needs a maintainer. bug 261507
net-firewall/arno-iptables-firewall

# Jeremy Olexa <darkside@gentoo.org> (14 Apr 2009)
# Masked for removal in 60 days. Causes issues with other packages. Old port
# that is not very useful and lacks a maintainer. bug 249080
dev-util/ctmkit

# 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

# Christian Hoffmann <hoffie@gentoo.org> (12 Apr 2009)
# Masked for security (bug 265756), unmaintained upstream (last release two
# years ago), will be removed in 30 days. Use dev-lang/php with USE=zip as a
# replacement, which is actively maintained and has more features.
dev-php5/pecl-zip

# Ulrich Mueller <ulm@gentoo.org> (12 Apr 2009)
# Discontinued by upstream, see http://www.adobe.com/svg/eol.html
# Masked for removal in 30 days, bug 265066.
net-www/adobesvg

# Alin Năstac <mrness@gentoo.org> (10 Apr 2009)
# Homepage no longer available (#264785)
# To be removed by the tree cleaners after 30 days.
net-dialup/qlcr

# 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

# Mounir Lamouri <volkmar@gentoo.org> (08 Apr 2009)
# This lib is not used by any package and it doesn't work on amd64
# Upstream doesn't maintain this package anymore
# See bug 180757. Masked for removal in 30 days
net-libs/zapata

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

# Andreas Proschofsky <suka@gentoo.org> (08 Apr 2009)
# pre-releases, mask for testing
>=app-office/openoffice-3.1.0_beta3
>=app-office/openoffice-bin-3.1.0_rc1

# Jeremy Olexa <darkside@gentoo.org> (07 Apr 2009)
# Not supported in Gentoo anymore, use 'eselect bashcomp' now
# Comments on bug 253878 - removed in 30 days.
app-shells/bash-completion-config

# Michael Sterrett <mr_bones_@gentoo.org> (06 Apr 2009)
# Masked for removal in 30 days.
# Doesn't work with the latest versions of dev-util/scons.
# Last release in 2006.  Removal approved by Gentoo KDE team.
kde-misc/kleansweep

# 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

# Markus Ullmann <jokey@gentoo.org> (5 Apr 2009)
# mask until gnome 2.26 is in-tree (needs libsoup 2.26)
>=www-client/midori-0.1.5
>=net-libs/webkit-gtk-0_p42000

# Ulrich Mueller <ulm@gentoo.org> (2 Apr 2009)
# De-supported by upstream since three years, see http://tug.org/teTeX/
# Please use app-text/texlive as a replacement. A migration guide is at
# http://www.gentoo.org/proj/en/tex/texlive-migration-guide.xml
# Package has open security issues in bug 264598.
# Masked for removal in 60 days, bug 227443.
app-text/tetex

# 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

# Ben de Groot <yngwin@gentoo.org> (27 Mar 2009)
# Scheduled for removal in 30 days. Does not build: bug 207324.
# Upstream inactive, last release over 6 years ago.
media-sound/ermixer

# Ben de Groot <yngwin@gentoo.org> (27 Mar 2009)
# Scheduled for removal. Just masking now, to make sure there are no problems
# Everyone should be using qt-3.3.8b-r1 by now
=x11-libs/qt-3.3.8-r4
=dev-db/qt-unixODBC-3.3.8
=x11-libs/qt-embedded-3.3.8

# Peter Alfredsen <loki_val@gentoo.org> (27 Mar 2009)
# Breaks compilation of KDE4 packages - bug 263823
=x11-proto/renderproto-0.9.3-r1

# Steve Dibb <beandog@gentoo.org> (24 Mar 2009)
# Live ebuild for testing / debugging
~media-video/mplayer-9999

# Jeremy Olexa <darkside@gentoo.org> (23 Mar 2009)
# Masked for removal in 60 days. Broken with gcc-4.3, other issue, unmaintained.
# bug 227743
x11-misc/lavaps

# Marijn Schouten <hkBst@gentoo.org> (22 Mar 2009)
# Masked for removal. Dead upstream, does not build anymore. Bug 152060.
dev-scheme/guile-pg

# Jeremy Olexa <darkside@gentoo.org> (21 Mar 2009)
# Masked for removal in 60 days because of security issues. Comment on
# bug 251612 if desired.
sci-astronomy/maestro
sci-astronomy/maestro-data

# Jeremy Olexa <darkside@gentoo.org> (21 Mar 2009)
# Masked for removal in 60 days. Broken with gcc-4.3, unmaintained & nothing
# depends on it. bug 251747
x11-libs/xclass

# Jeremy Olexa <darkside@gentoo.org> (21 Mar 2009)
# Masked for removal in 60 days. Broken with gcc-4.3, not much interest in
# fixing. bug 251553
net-p2p/knapster2

# Jeremy Olexa <darkside@gentoo.org> (21 Mar 2009)
# Masked for removal in 60 days. Broken with gcc-4.3, not much interest in
# fixing. bug 250786
dev-embedded/gezel

# Jeremy Olexa <darkside@gentoo.org> (21 Mar 2009)
# Masked for removal in 60 days. Dead upstream (since 2001), file collisions,
# ebuild needs love. bug 248305
sys-devel/subterfugue

# Jeremy Olexa <darkside@gentoo.org> (21 Mar 2009)
# Masked for removal in 30 days. Dead upstream, many alternatives exist (eg.
# abcde) - bug 116747
media-sound/cdmp3

# Jeremy Olexa <darkside@gentoo.org> (21 Mar 2009)
# Masked for removal in 60 days. Dead upstream (vanished), broken with gcc-4.3 &
# wxGTK-2.8, many alternatives exist, bug 251781
x11-misc/jaffm

# Jeremy Olexa <darkside@gentoo.org> (21 Mar 2009)
# Masked for removal in 60 days. Dead upstream, broken with gcc-4.3, maybe use
# kde-misc/filelight instead. bug 251145
kde-misc/kgraphspace

# 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

# Peter Alfredsen <loki_val@gentoo.org> (21 Mar 2009)
# Masked till Gnome-2.26 makes it into the tree.
# A public service for the crazy gnome-overlay people
# in the meantime. Bug 262863.
=dev-dotnet/gnome-desktop-sharp-2.26*

# Diego E. Pettenò <flameeyes@gentoo.org> (20 mar 2009)
# New version with net-wireless/bluez instead of bluez-lib
# as dependency. Good luck if you want to test.
~app-pda/libsyncml-0.5.2

# 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

# Ulrich Mueller <ulm@gentoo.org> (18 Mar 2009)
# Depends on teTeX. Fails to build.
# Newer version is included in app-text/texlive-core.
# Masked for removal in 60 days, bug 227593.
app-text/xetex

# Ulrich Mueller <ulm@gentoo.org> (18 Mar 2009)
# Depends on teTeX. Newer version is included
# in dev-texlive/texlive-latexrecommended.
# Masked for removal in 60 days, bug 262897.
dev-tex/xkeyval

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

# Robin H. Johnson <robbat2@gentoo.org> (11 Mar 2009)
# HPN patch contains some breakages with port forwarding.
=net-misc/openssh-5.2_p1-r2

# Nirbheek Chauhan <nirbheek@gentoo.org> (11 Mar 2009)
# Needs net-wireless/bluez-gnome-1.8 and net-wireless/bluez-4
=gnome-extra/nautilus-sendto-1.1*

# 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

# Peter Volkov <pva@gentoo.org> (7 Mar 2009)
# Masked for removal, please use app-text/ghostscript-gpl #261434
app-text/ghostscript-esp

# Thomas Sachau <tommy@gentoo.org> (2 Mar 2009)
# Mask for removal, was merged into dev-java/fec
net-libs/fec

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

# Theo Chatzimichos <tampakrap@gentoo.org> (1 Mar 2009)
# Mask Beta versions of KDevelop 4 and KDevplatform
>=dev-util/kdevelop-3.9.91
>=dev-util/kdevplatform-0.9.91

# 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

# Alexis Ballier <aballier@gentoo.org> (27 Feb 2009)
# release candidate
>=media-video/vlc-1.0.0_alpha

# Timothy Redaelli <drizzt@gentoo.org> (26 Feb 2009)
# Masked for testing
~dev-libs/libedit-20090111.3.0

# 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)
# These packages don't live on gdesklets.de any more,
# which can be taken to mean they aren't supported
# by anybody upstream.  Masking for removal in
# 30 days (bug #259971).
x11-plugins/desklet-discreetclock
x11-plugins/desklet-regexp
x11-plugins/desklet-rssgrab
x11-plugins/desklet-rsstickerbar
x11-plugins/desklet-scweather
x11-plugins/desklet-sidecandy
x11-plugins/desklet-sidecandygmail
x11-plugins/desklet-sidecandyrhythmbox

# 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
=gnome-extra/gdesklets-core-0.35.4

# 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

# Diego E. Pettenò <flameeyes@gentoo.org> (13 Feb 2009)
# Masked because of bug 237887, fails to fetch (git repository moved).
dev-lang/rubinius

# 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

# Ulrich Mueller <ulm@gentoo.org> (02 Feb 2009)
# Emacs 23 live CVS ebuild and packages depending on it.
~app-editors/emacs-cvs-23.0.9999
>=virtual/emacs-23
app-emacs/emacs-daemon

# 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

# Torsten Veller <tove@gentoo.org> (28 Jan 2009)
# Masked for testing (#249629)
# https://bugs.gentoo.org/show_bug.cgi?id=79685#c14
=dev-lang/perl-5.8.8-r6

# Peter Volkov <pva@gentoo.org> (26 Jan 2009)
# Security vulnerabilities (one of them is critical), bug 236517
www-misc/zoneminder

# Ulrich Mueller <ulm@gentoo.org> (25 Jan 2009)
# Masked for removal in 60 days. Produces segfaults and doesn't work
# with recent X server due to API changes. Upstream dead. Bug 242462.
# If you run xorg-server-1.3* then this may still work for you.
x11-misc/hotkeys

# 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

# Donnie Berkholz <dberkholz@gentoo.org> (12 Jan 2009)
# Masked pending unmasking of guile-gnome-platform 2.16
>=sci-chemistry/burrow-owl-1.4

# Daniel Black <dragonheart@gentoo.org> (10 Jan 2009)
# package masking to allow dependant packages to resolve
# bug #253709
>=net-libs/gnutls-2.7.0

# 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

# Tomas Chvatal <scarabeus@gentoo.org> (07 Jan 2009)
# Mask kde-base/pykde-3.5* for removal
# REASON:
# broken and nobody seems to care for fix, also replacement as
# dev-python/pykde can be used
=kde-base/pykde-3.5*

# 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

# Samuli Suominen <ssuominen@gentoo.org> (24 Dec 2008)
# - drop .la files (and static libs)
# - monolithic version, EAPI=2, commented versions for new devs
# Talk with the actual gstreamer team before unmasking these -
# we are completely against the notion of monolithic versions, these
# here should be considered an experimentation
=media-libs/gstreamer-0.10.21-r10
=media-libs/gst-plugins-good-0.10.11-r1
=media-libs/gst-plugins-bad-0.10.9-r1
=media-libs/gst-plugins-ugly-0.10.10-r1
=media-libs/gst-plugins-base-0.10.21-r1

# Diego Pettenò <flameeyes@gentoo.org> (23 Dec 2008)
# Mask these for removal, busybox provides those already, and are
# unmaintained. As requested by solar.
net-misc/udhcp
sys-apps/tinylogin

# Jeremy Olexa <darkside@gentoo.org> (20 Dec 2008)
# Removed in 60 days, multiple bugs - does not compile with recent kernels.
# bug 251795
# Update, user is working on this in stated bug.
sys-fs/cloop

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

# Tiziano Müller <dev-zero@gentoo.org> (16 Dec 2008)
# Mask for testing
app-admin/eselect-boost
>=dev-util/boost-build-1.35.0-r2
>=dev-libs/boost-1.35.0-r3

# Alin Năstac <mrness@gentoo.org> (14 Dec 2008)
# Dead upstream, masked for removal in ~60 days.
net-proxy/squirm

# 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, alphas and betas of Opera may delete kittens
=www-client/opera-10*

# Tiziano Müller <dev-zero@gentoo.org> (28 Nov 2008)
# mask for testing/transition
# blueman needs policykit-gnome
net-wireless/bluez
>=net-wireless/bluez-gnome-1.8
>=app-mobilephone/obex-data-server-0.4
>=gnome-extra/gnome-user-share-0.41
=media-video/totem-2.24.4-r1
=gnome-base/gvfs-1.0.3-r12
=gnome-base/gvfs-1.0.3-r13
>=net-wireless/libbtctl-0.11.0
>=app-mobilephone/obexftp-0.23
net-wireless/blueman

# 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

# Daniel Black <dragonheart@gentoo.org> (4 Nov 2008)
# Legal problems #241650 causing distribution problems #245322 and build problems #237493
app-crypt/truecrypt

# 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)
# Breaks ocamlduce
>=dev-lang/ocaml-3.11.0_beta1

# Rémi Cardona <remi@gentoo.org> (11 Oct 2008)
# Old versions, those are no longer maintained and
# should not be used, use 2.x instead
<x11-drivers/xf86-video-intel-2.0.0

# Alexis Ballier <aballier@gentoo.org> (06 Oct 2008)
# API changes, the only reverse dep fails to build against it.
>=media-libs/libspiff-1.0.0

# 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

# Peter Volkov <pva@gentoo.org> (17 Sep 2008)
# Development version, but yet nice :)
=net-analyzer/wireshark-1.1*

# 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

# Samuli Suominen <ssuominen@gentoo.org> (3 Aug 2008)
# Unmaintained. Masked for removal wrt #233394.
# Open security bugs  #208566, #215006 and #231836.
media-video/mplayer-bin

# Raúl Porcel <armin76@gentoo.org> (1 Aug 2008)
# This is just for preview
>=www-client/mozilla-firefox-bin-3.1_alpha1
>=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

# Raúl Porcel <armin76@gentoo.org> (6 Jul 2008)
# >0.13 breaks a lot of stuff, only qbittorrent works fine
>=net-libs/rb_libtorrent-0.13_p2335
>=net-p2p/qbittorrent-1.1.0_beta1

# 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

# Tiziano Müller <dev-zero@gentoo.org> (07 Jun 2008)
# Live SVN Ebuild
=dev-python/django-9999

# Maintainer Needed <maintainer-needed@gentoo.org> (05 Jun 2008)
# Masked for testing wrt #163724
dev-libs/libffi
x11-libs/gtk-server
virtual/libffi
>=dev-libs/g-wrap-1.9.11
>=dev-scheme/guile-gnome-platform-2.16.0

# 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

# Ulrich Mueller <ulm@gentoo.org> (10 May 2008)
# LessTif is unsupported since it has open issues with several packages.
# See bug 193505 and bug 204249. You are on your own here.
x11-libs/lesstif

# 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

# Christian Faulhammer <fauli@gentoo.org> (01 Apr 2008)
# Masked for security reasons: bug 215699
<net-misc/ltsp-5

# 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

# Colin Morey <peitolm@gentoo.org> (20 Mar 2008)
# Masked for testing, closing lots of little bugs
=mail-mta/exim-4.69-r1

# 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

# Tiziano Müller <dev-zero@gentoo.org> (8 Mar 2008)
# Mask pre-version
=net-fs/samba-3.2*

# 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

# Stefaan De Roeck <stefaan@gentoo.org> (24 Jan 2008)
# mask cvs-pulled version as it may not be ready for public use
# see bug #205829
>sys-libs/libraw1394-1.3.0

# 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

# Peter Volkov <pva@gentoo.org> (06 Jan 2008)
# Masked development sources
>=sys-kernel/openvz-sources-2.6.22

# 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, bug #185106
=app-emacs/emacs-w3m-1.4.4_p*
=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

# Robert Buchholz <rbu@gentoo.org> (29 Aug 2007)
# PPTP Plugin doesn't work on amd64
net-misc/networkmanager-pptp

# 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

# Diego Pettenò <flameeyes@gentoo.org> (25 Jan 2007)
# Live Subversion version for Amarok.
# Use this in place of the broken amarok-svn ebuilds.
# Please note that you need >=sys-apps/portage-2.1.2-r3 to be able to actually
# use these versions by adding "**" for them in package.keywords.
~media-sound/amarok-1.4.9999

# Diego Pettenò <flameeyes@gentoo.org> (25 Jan 2007)
# Live Mercurial versions of ALSA packages.
# These are needed for the people wanting to try newer kernel versions
# when the support is broken in-kernel.
# Please note that you need >=sys-apps/portage-2.1.2-r3 to be able to actually
# use these versions by adding "**" for them in package.keywords.
~media-sound/alsa-driver-9999
~media-sound/alsa-headers-9999

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

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

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

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