summaryrefslogtreecommitdiff
blob: c76898566f41b4271f3cfce6cca4f2c84ef88f34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
#####################################################################
# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.6263 2006/11/14 21:16:47 george Exp $
# When you add an entry to this file, add your name, the date, and an
# explanation of why something is getting masked
#
# NOTE: Please add your entry at the top!
#

##
##  This is an example
##
# <bangert@gentoo.org> (28 Jun 2002)
# psypete says these are broken and i am using the
# opporturnity to test the masking style :)
# <bangert@gentoo.org> (28 Jun 2002)
# psypete says these are not really broken - its just
# the v4l stuff that does not work
#=media-video/mplayer-0.90_pre5
#=media-video/mplayer-0.90_pre5-r1
##
##   End example
## 

# George Shapovalov <george@gentoo.org> (13 Nov 2006)
# Masked "old style" lib versions for removal 
<dev-ada/gtkada-2.4
<=dev-ada/xmlada-1.0
=dev-ada/adadoc-2.01
<dev-ada/gps-bin-2.1
=dev-ada/aunit-1.01
=dev-ada/cbind-6

# Luca Barbato <lu_zero@gentoo.org> (13 Nov 2006)
# Cell stuff, not for consumption yet.
# 
sys-kernel/cell-sources
sys-libs/libspe
=sys-libs/newlib-20061113

# Joseph Jezak <josejx@gentoo.org> (13 Nov 2006)
# Masked for removal, depends on pmud (bug #153197)
# Please use gkrellm-pmu, or the KDE/gnome battery panels instead
app-laptop/wmbatppc

# Joseph Jezak <josejx@gentoo.org> (13 Nov 2006)
# Masked for removal, upstream is dead (bug #153197)
# Please use pbbuttonsd instead
app-laptop/pmud

# Peter Volkov <pva@gentoo.org> (12 Nov 2006)
# app-emulation/uae for bug(s) 153191, 112675, 140707, 137018
# Upstream is going to help and fix bugs in 0.8.25... Until use e-uae.
app-emulation/uae

# Robin H. Johnson <robbat2@gentoo.org> (11 Nov 2006)
# Temporarily block while testing
=app-crypt/gnupg-2.0.0

# Chris Gianelloni <wolf31o2@gentoo.org> (10 Nov 2006)
# Masked pending removal on Dec 10. This game has been broken for quite some
# time, and upstream is completely dead.  Sorry, folks.
games-fps/ut2004-domain2049

# Tiziano Müller <dev-zero@gentoo.org> (09 Nov 2006)
# masked pending unresolved bugs #154320, #93316 et.al.
# plus upstream bugs & unmaintained since 2002,
# alternatives are: pgpool, pgpool2
dev-db/dbbalancer

# Caleb Tennis <caleb@gentoo.org> (09 Nov 2006)
# Readding dbus support, and masking until dbus goes stable
=x11-libs/qt-4.2.1-r1

# Kris Kersey <augustus@gentoo.org> (08 Nov 2006)
# The below BETA adds support for GeForce 8800 GTX and GeForce 8800 GTS GPUs.
~x11-drivers/nvidia-drivers-1.0.9742

# Bryan Østergaard <kloeri@gentoo.org> (08 Nov 2006)
# Masked waiting for thunderbird-2.0 to get unmasked.
x11-plugins/replytolist

# Zac Medico <zmedico@gentoo.org> (08 Nov 2006)
# Masked due to change in implicit RDEPEND behavior or bug #153591.
=sys-apps/portage-2.1.1-r2

# Alexis Ballier <aballier@gentoo.org< (07 Nov 2006)
# Needs some testing
=media-libs/openexr-1.4.0a

# Stefan Schweizer <genstef@gentoo.org> (07 Nov 2006)
# This has many bugs, find rc5 in the overlay: layman -a voip
# #154329, #154324, #14991, #145345, #150878
~net-im/wengophone-2.0_rc2

# Michael Sterrett <mr_bones_@gentoo.org> (06 Nov 2006)
# masked pending unresolved security bug #150290
games-server/hlstats

# David Shakaryan <omp@gentoo.org> (05 Nov 2006)
# Masking several packages for removal on 05 Dec 2006.
# See bug #153388 and bugs listed in its description.
x11-libs/nucleo
x11-wm/aewm++
x11-wm/aewm++-goodies
x11-wm/golem
x11-wm/integrity
x11-wm/lwm
x11-wm/metisse
x11-wm/papuawm
x11-wm/pawm
x11-wm/pwm
x11-wm/trswm
x11-wm/wmi
x11-wm/xpde

# Mike Frysinger <vapier@gentoo.org> (05 Nov 2006)
# Upstream wants it dead, we want it dead, it's time to die.
media-libs/jpeg-mmx

# Christian Heim <phreak@gentoo.org> (04 Nov 2006)
# masking the following packages for treecleaners and bugs
# Pending removal Dec 04th 2006:
# #72585 - x11-wm/qvwm
# #117662 - media-libs/janus
# #125491 - net-analyzer/tcpick
media-libs/janus
net-analyzer/tcpick
x11-wm/qvwm

# Christian Heim <phreak@gentoo.org> (04 Nov 2006)
# Masking for further testing
=net-wireless/ipw3945-1.1.1
=net-wireless/ipw3945-1.1.2

# Joseph Jezak <josejx@gentoo.org> (03 Nov 2006)
# Please use the in kernel snd-aoa instead
media-sound/snd-aoa

# Marcus D. Hanwell <cryos@gentoo.org> (03 Nov 2006)
# Masking beta versions of boinc - may not work with all projects.
>=sci-misc/boinc-5.5.6

# Joshua Baergen <joshuabaergen@gentoo.org> (02 Nov 2006)
# X input hotplug and related packages
# Some of these may already be covered by other masks - please leave them
# anyway
>=media-libs/mesa-6.5.2_pre0
>=x11-base/xorg-server-1.2.99
>=x11-drivers/xf86-input-keyboard-1.2

# Michael Sterrett <mr_bones_@gentoo.org> (01 Nov 2006)
# Brand new code base and deps.  Masked for testing.
>=app-admin/syslog-ng-2

# Diego Pettenò <flameeyes@gentoo.org> (1 Nov 2006)
# Fails to build, mask till I can find why
=sys-freebsd/boot0-6.2_beta3

# Andrew Ross <aross@gentoo.org> (31 Oct 2006)
# pre-testing of new xen release (bug #151764)
# they really should have called it 3.1 instead of 3.0.3
~app-emulation/xen-tools-3.0.3
~app-emulation/xen-3.0.3
~sys-kernel/xen-sources-2.6.16.29

# Olivier Fisette <ribosome@gentoo.org> (30 Oct 2006)
# Masked until bugs #153325 and #54607 are fixed.
sci-biology/generic-genome-browser

# Diego Pettenò <flameeyes@gentoo.org> (30 Oct 2006)
# Multiple bugs, not active maintainer in Gentoo.
media-sound/bpmdj

# Michael Sterrett <mr_bones_@gentoo.org> (29 Oct 2006)
# Masked pending removal on 2006-11-28.
# Doesn't work with latest libvorbis and occasionally segfaults
# even with the work-around for the libvorbis issue.  Binary game
# so there's not much to do about it either.
# see http://bugs.gentoo.org/show_bug.cgi?id=150431
games-action/phobiaiii

# Michael Sterrett <mr_bones_@gentoo.org> (29 Oct 2006)
# Masked pending removal on 2006-11-28.
# Doesn't work with latest build environment and unused
# by any package in portage.
# see http://bugs.gentoo.org/show_bug.cgi?id=136513
media-libs/allegttf

# Michael Sterrett <mr_bones_@gentoo.org> (29 Oct 2006)
# Masked pending removal on 2006-11-28.
# Doesn't work with stratagus-2.1 which is the only version in portage
# see http://bugs.gentoo.org/show_bug.cgi?id=110542
games-strategy/magnant

# David Shakaryan <omp@gentoo.org> (29 Oct 2006)
# Masking x11-misc/commonbox-utils as upstream is dead
# and many alternative *box configuration tools exist.
# Pending removal on 29 Nov 2006.
x11-misc/commonbox-utils

# Alec Warner <antarus@gentoo.org> (28 Oct 2006)
# Mask the following packages for removal by treecleaners:
# app-laptop/xpmumon for bug(s) 153198, 112675, 117782
# media-gfx/radiance for bug(s) 106158, 112675
# net-mail/cvm-vmailmgr for bug(s) 113245
# app-cdr/cdrx for bug(s) 108072 
# app-emacs/liece for bug(s) 152911, use riece
# net-analyzer/tptest for bug(s) 152549
# net-wireless/aircrack for bug(s) 152806 Use aircrack-ng
# net-misc/aesop for bug(s) 152505 
# app-crypt/outguess for bug(s) 143897
# dev-util/sashxb for bug(s) 138848
# app-editors/cute for bug(s) 128270, 117482
# x11-plugins/gkrellm-newsticker for bug(s) 102695
# app-misc/pms for bug(s) 102314
# app-misc/largorecipes for bug(s) 101536
# x11-plugins/gkrellm-giFT for bug(s) 97869
# media-video/winki for bug(s) 94902
# net-misc/qadsl for bug(s) 94295
app-laptop/xpmumon
media-gfx/radiance
net-mail/cvm-vmailmgr
app-cdr/cdrx
app-emacs/liece
net-analyzer/tptest
net-wireless/aircrack
net-misc/aesop
app-crypt/outguess
dev-util/sashxb
app-editors/cute
x11-plugins/gkrellm-newsticker
app-misc/pms
app-misc/largorecipes
media-video/winki
x11-plugins/gkrellm-giFT
net-misc/qadsl

# Luis Medinas <metalgod@gentoo.org> (28 Oct 2006)
# Mask dhcdbd and NetworkManager for testing
# Steev Klimaszewski <steev@gentoo.org> (04 Nov 2006)
# Rename NetworkManager to networkmanager for consistency.
net-misc/dhcdbd
net-misc/networkmanager

# Diego Pettenò <flameeyes@gentoo.org> (27 Oct 2006)
# Masked pending removal, bug #149007
media-libs/libaudiooss

# Diego Pettenò <flameeyes@gentoo.org> (27 Oct 2006)
# Masked pending removal, bug #153050
media-libs/daaplib

# Gustavo Zacarias <gustavoz@gentoo.org> (27 Oct 2006)
# Masked for removal, bugs #101983, #150032 and almost dead upstream
net-misc/minisip
net-misc/libmutil
net-misc/libmnetutil
net-misc/libmikey
net-misc/libmsip

# Donnie Berkholz <dberkholz@gentoo.org> (26 Oct 2006)
# Only works on 2.4, masked for removal
x11-drivers/kyro-drivers

# Steve Dibb <beandog@gentoo.org> (26 Oct 2006)
# Masked for removal (treecleaner), see bug #65923
# remove on 2006-11-26
dev-java/bluej-bin

# George Shapovalov <george@gentoo.org> (26 Oct 2006)
# Masked for removal - "proper" versions have been added under 
# asis-gcc and asis-gpl. Please consider switching!
=dev-ada/asis-3.4.6
=dev-ada/asis-3.4.6.2006
# Masked for removal as old style gnat is going to be masked soon. 
dev-ada/asis

# Doug Goldstein <cardoe@gentoo.org> (25 Oct 2006)
# Masked pending removal on 25 Nov 2006. See bug #134621
net-www/netscape-plugger

# Markus Ullmann <jokey@gentoo.org> (24 Oct 2006)
# package doesn't compile currently, upstream is going to
# provide a patch soonish
>=app-misc/lcd4linux-0.10

# Piotr Jaroszyński <peper@gentoo.org> (23 Oct 2006)
# Masking alpha version of mozilla-thunderbird-2.0 and enigmail for it.
=x11-plugins/enigmail-0.94.1-r1
>=mail-client/mozilla-thunderbird-2.0_alpha1

# Chris Gianelloni <wolf31o2@gentoo.org> (23 Oct 2006)
# Masked pending removal on Nov 23. Use games-fps/tremulous instead.
games-fps/quake3-tremulous

# Michael Cummings <mcummings@gentoo.org> (23 Oct 2006)
# Masking dev-perl/RPM since the app-arch/rpm package it depended on has been
# removed from the tree anyway.
dev-perl/RPM

# Chris Gianelloni <wolf31o2@gentoo.org> (23 Oct 2006)
# I am masking all of this so it can all be unmasked at once.  All of the new
# revisions of quake3-based mods will be added here first,until I get them all
# ported to the new eclass.
>=games-fps/quake3-bin-1.32c-r1
>=games-fps/quake3-alliance-3.3-r1
>=games-fps/quake3-alternatefire-2.0-r1
>=games-fps/quake3-bfp-1.2-r1
>=games-fps/quake3-brainworks-0.91-r1
>=games-fps/quake3-cpma-1.38-r1
>=games-fps/quake3-defrag-1.91.08-r1
games-fps/quake3-excessiveplus
games-fps/quake3-lrctf
>=games-fps/quake3-matrix-2.4_beta-r1
>=games-fps/quake3-nsco-1.93-r1
>=games-fps/quake3-osp-1.03a-r1
>=games-fps/quake3-ra3-1.76-r1
games-fps/quake3-rally
games-fps/quake3-reaction
>=games-fps/quake3-ruinhunters-1.0a-r1
>=games-fps/quake3-threewave-1.7-r1
>=games-fps/quake3-urbanterror-3.7-r1
>=games-fps/quake3-wop-1.0_beta1-r2

# Fabian Groffen <grobian@gentoo.org> (23 Oct 2006)
# MonetDB doesn't compile any more.  Waiting for next release (soon) 
# hopefully with better luck.
dev-db/monetdb

# Diego Pettenò <flameeyes@gentoo.org> (23 Oct 2006)
# Pending removal 23 November for multiple bugs
# Use anything but this, like media-sound/audacious
# media-sound/amarok media-sound/mpd media-sound/rhythmbox
# media-sound/muine media-sound/banshee
dev-perl/Xmms-Perl
dev-python/pyxmms
gnome-extra/gxmms
media-plugins/dumb-xmms
media-plugins/efxmms
media-plugins/eq-xmms
media-plugins/modplugxmms
media-plugins/xalbumlist
media-plugins/xmmplayer
media-plugins/xmms-adplug
media-plugins/xmms-alarm
media-plugins/xmms-arts
media-plugins/xmms-blursk
media-plugins/xmms-btexmms
media-plugins/xmms-cdcover
media-plugins/xmms-cdread
media-plugins/xmms-coverviewer
media-plugins/xmms-crossfade
media-plugins/xmms-crystality
media-plugins/xmms-dflowers
media-plugins/xmms-dscope
media-plugins/xmms-dspectogram
media-plugins/xmms-dspectral
media-plugins/xmms-extra
media-plugins/xmms-fc
media-plugins/xmms-find
media-plugins/xmms-finespectrum
media-plugins/xmms-fmradio
media-plugins/xmms-gdancer
media-plugins/xmms-goom
media-plugins/xmms-idcin
media-plugins/xmms-imms
media-plugins/xmms-infinity
media-plugins/xmms-infopipe
media-plugins/xmms-iris
media-plugins/xmms-itouch
media-plugins/xmms-jack
media-plugins/xmms-jess
media-plugins/xmms-kde
media-plugins/xmms-kjofol
media-plugins/xmms-ladspa
media-plugins/xmms-libvisual
media-plugins/xmms-lirc
media-plugins/xmms-liveice
media-plugins/xmms-liveplugin
media-plugins/xmms-lyrc
media-plugins/xmms-mad
media-plugins/xmms-midi
media-plugins/xmms-morestate
media-plugins/xmms-mp3cue
media-plugins/xmms-musepack
media-plugins/xmms-nas
media-plugins/xmms-nebulus
media-plugins/xmms-null
media-plugins/xmms-oggre
media-plugins/xmms-outpost
media-plugins/xmms-pipe
media-plugins/xmms-realrandom
media-plugins/xmms-repeatit
media-plugins/xmms-scrobbler
media-plugins/xmms-shell
media-plugins/xmms-shn
media-plugins/xmms-sid
media-plugins/xmms-smpeg
media-plugins/xmms-sndfile
media-plugins/xmms-spc
media-plugins/xmms-speex
media-plugins/xmms-tfmx
media-plugins/xmms-volnorm
media-plugins/xmms-wakeup
media-plugins/xmms-wma
media-plugins/xmms-wmdiscotux
media-plugins/xmms-xf86audio
media-plugins/xmms-xmmsd
media-plugins/xmms-xmmsmplayer
media-sound/ctrlxmms
media-sound/longplayer
media-sound/madman
media-sound/xmms
x11-plugins/gaim-xmms-remote
x11-themes/xmms-themes
# These weren't rdepending on xmms at all
media-plugins/xmms-synaesthesia
media-plugins/xmms-ir
x11-plugins/desklet-cornerxmms
media-plugins/xmms-mpg123
media-plugins/xmms-crossfade
media-plugins/xmms-nsf
media-plugins/xmms-status-plugin
media-sound/xmmsctrl
x11-plugins/gkrellmms
x11-plugins/wmalbum
x11-plugins/wmusic
x11-plugins/wmxmms
rox-extra/roxmms
media-plugins/xmms-cdaudio
media-plugins/xmms-mpg123
media-plugins/xmms-opengl-spectrum
media-plugins/xmms-vorbis
media-plugins/xmms-alsa
media-plugins/xmms-blur-scope
media-plugins/xmms-disk-writer
media-plugins/xmms-echo
media-plugins/xmms-esd
media-plugins/xmms-joystick
media-plugins/xmms-mikmod
media-plugins/xmms-oss
media-plugins/xmms-sanalyzer
media-plugins/xmms-song-change
media-plugins/xmms-stereo
media-plugins/xmms-tonegen
media-plugins/xmms-voice
media-plugins/xmms-wav
app-misc/livetools
xfce-extra/xfce4-xmms
xfce-extra/xfce4-xmms-controller
# This is an extra one
media-sound/noxmms

# Piotr Jaroszyński <peper@gentoo.org> (22 Oct 2006)
# telepathy-gabble has masked dep(net-libs/loudmouth)
net-voip/telepathy-gabble

# Sven Wegener <swegener@gentoo.org> (22 Oct 2006)
# Needs =dev-cpp/glibmm-2.12* and =dev-cpp/gtkmm-2.10*
dev-db/mysql-gui-tools

# Mike Doty <kingtaco@gentoo.org> (22 Oct 2006)
# gspca is beta
media-video/gspcav1

# Keri Harris <keri@gentoo.org> (22 Oct 2006)
# Masked for removal 22 Nov 2006.
# swi-prolog-lite is deprecated in favour of dev-lang/swi-prolog
dev-lang/swi-prolog-lite

# Stefan Schweizer <genstef@gentoo.org> (21 Aug 2006)
# beta psi, with jingle support
>=net-im/psi-0.11_pre20061020

# Matthias Schwarzott <zzam@gentoo.org> (20 Oct 2006)
# General cleanup of vdr-ebuils
# Will be removed after 2006/11/20
=media-video/vdr-1.3.27
=media-video/vdr-1.3.34
=media-video/vdr-1.3.34-r1
=media-video/vdr-1.3.34-r2
=media-video/vdr-1.3.36
=media-video/vdr-1.3.36-r1
=media-video/vdr-1.3.36-r2
=media-video/vdr-1.3.41
=media-video/vdr-1.3.41-r1
=media-video/vdr-1.3.41-r2
=media-video/vdr-1.3.44
=media-video/vdr-1.3.45
=media-video/vdr-1.3.45-r1
=media-video/vdr-1.4.0
=media-video/vdr-1.4.0-r1
=media-video/vdr-1.4.1
=media-video/vdr-1.4.1-r1

# Diego Pettenò <flameeyes@gentoo.org> (20 Oct 2006)
# Does not compile with GCC4, no package depending on it, last release 2 years
# ago.  Scheduled for removal in a month.
dev-ruby/rudl

# Alec Warner <antarus@gentoo.org> (19 Oct 2006)
# Masked app-editors/xwpe for treecleaners, bug # 124298
app-editors/xwpe

# Renat Lumpau <rl03@gentoo.org> (19 Oct 2006)
# dead upstream, bug #152024
www-apps/back-end

# Renat Lumpau <rl03@gentoo.org> (19 Oct 2006)
# maintainer missing, bug #134759
www-apps/issue-tracker

# Diego Pettenò <flameeyes@gentoo.org> (19 Oct 2006)
# beta version, breaks API badly with other software.
>=media-libs/flac-1.1.3_beta2

# Olivier Crete <tester@gentoo.org> (18 Oct 2006)
# Beta versions
=net-www/netscape-flash-9*

# Markus Dittrich <markusle@gentoo.org> (18 Oct 2006)
# paraview is a new package and needs to be tested 
# a bit more before we unleash it (see bug #118130)
sci-visualization/paraview

# Olivier Crete <tester@tester.ca> (16 Oct 2006)
# Has been broken for a long time (see bug #67273)
sys-devel/odinmp

# Andrej Kacian <ticho@gentoo.org> (16 Oct 2006)
# Release candidates, no unsuspecting users should use these.
=app-antivirus/clamav-0.90_rc*

# J. Alberto Suárez López <bass@gentoo.org> (15 Oct 2006)
# masking net-misc/klapjack dead stream
# pending removal 15 Oct 2006
net-misc/klapjack

# Christian Heim <phreak@gentoo.org> (14 Oct 2006)
# masking app-misc/gpsdrive for treecleaners, bug(s) 142710
# Pending removal 14th November 2006
app-misc/gpsdrive

# Christian Heim <phreak@gentoo.org> (14 Oct 2006)
# masking media-radio/xastir for treecleaners, bug(s) 109695
# Pending removal 14th November 2006
media-radio/xastir

# Christian Heim <phreak@gentoo.org> (14 Oct 2006)
# masking media-libs/gltt for treecleaners, bug(s) 145969
# Pending removal 14th November 2006
media-libs/gltt

# Christian Heim <phreak@gentoo.org> (14 Oct 2006)
# masking app-misc/linup for treecleaners, bug(s) 150740
# Pending removal 14th November 2006
app-misc/linup

# Christian Heim <phreak@gentoo.org> (14 Oct 2006)
# masking app-admin/sus for treecleaners, bug(s) 148901
# Pending removal 14th November 2006
app-admin/sus

# J. Alberto Suárez López <bass@gentoo.org> (13 Oct 2006)
# Masked pending removal for 13 Nov 2006.
# netraverse don't support gentoo more, and users can 
# use the w4l installer.
app-emulation/win4lin

# Grant Goodyear <g2boojum@gentoo.org> (10 Oct 2006)
# mask gnuplot rc
=sci-visualization/gnuplot-4.2*

# Alexis Ballier <aballier@gentoo.org> (10 Oct 2006)
# Masking newest version 
# Breaks some packages depending on it
=media-libs/libmpeg3-1.7

# Donnie Berkholz <dberkholz@gentoo.org> (8 Oct 2006)
# XCB testing
=media-libs/mesa-6.5.1-r2
x11-proto/xcb-proto
x11-libs/libxcb
=x11-libs/libX11-1.1*
=x11-libs/libX11-1.0.99*

# Luis Araujo <araujo@gentoo.org> (5 Oct 2006)
# This is a release candidate version for testing
# purpose mainly.
=dev-haskell/hs-plugins-1.0_rc0

# Christian Heim <phreak@gentoo.org> (5 Oct 2006)
# masking sys-apps/sal-client for treecleaners, bug(s) 67364
# Pending removal Nov 5th. Please use sys-process/audit instead!
sys-apps/sal-client

# Michael Sterrett <mr_bones_@gentoo.org> (05 Oct 2006)
# Masked pending removal on Oct 30. No longer developed upstream
# and doesn't build.  Will be eventually replaced by qmc2.
games-emulation/qmamecat

# Robin H. Johnson <robbat2@gentoo.org> (3 Oct 2006)
# Bug 144560
# Upstream discontinued perfctr last year, in favour of perfmon:
# http://www.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.13/2.6.13-mm3/announce.txt
# http://sourceforge.net/mailarchive/forum.php?thread_id=8102899&forum_id=2237
# It was only available in mm kernels, up to 2.6.13-mm2.
# Scheduled for removal on 2006/11/03
sys-apps/perfctr

# Roy Marples <uberlord@gentoo.org> (02 Oct 2006)
# masked for testing due to major ebuild and installation changes
>=sys-apps/baselayout-1.13.0_alpha1

# Christian Heim <phreak@gentoo.org> (01 Oct 2006)
# masking media-radio/ax25-tools for treecleaners, bug(s) 97275
# Pending removal Oct 29th
# Still used by media-radio/xastir so commented for now.
#media-radio/ax25-tools

# Tiziano Müller <dev-zero@gentoo.org> (01 Nov 2006)
# preparing for new versions, masking snapshot
=dev-libs/boost-1.34*
=dev-python/pythonmagick-0.6

# Ioannis Aslanidis <deathwing00@gentoo.org> (29 Sep 2006)
# Preview version: Needs to be tested, has known crashes.
=kde-misc/katalog-0.4_pre1

# Patrick McLean <chutzpah@gentoo.org> (25 Sep 2006)
# This depends on dev-cpp/cairomm which is in the Gnome 2.16 mask, so masking
# until Gnome 2.16 is unmasked
=media-sound/bmpx-0.3*

# Seemant Kulleen <seemant@gentoo.org> (26 Oct 2006)
# swfdec is stale, according to upstream as well, and these need to follow
# mozilla out of the door.
media-libs/swfdec
media-plugins/gst-plugins-swfdec

# Markus Ullmann <jokey@gentoo.org> (24.09.2006)
# masking kvirc cvs ebuild
=net-irc/kvirc-9999

# Mike Frysinger <vapier@gentoo.org> (23 Sep 2006)
# Use `emerge crossdev && crossdev mingw32`
dev-libs/wx-xmingw
dev-util/xmingw-binutils
dev-util/xmingw-gcc
dev-util/xmingw-runtime
dev-util/xmingw-w32api
dev-libs/wxactivex

# Alastair Tse <liquidx@gentoo.org> (19 Sep 2006)
# Not interested in maintaining this any more.
net-im/ohphone

# Alastair Tse <liquidx@gentoo.org> (19 Sep 2006)
# You must run python-updater for this, masking until we 
# get the word out. Also see bug 148333 for packages that still needs to fixed
>=dev-lang/python-2.5
>=dev-python/python-docs-2.5

# Alexandre Buisse <nattfodd@gentoo.org> (16 Sep 2006)
# Too buggy
media-gfx/alg

# Elfyn McBratney <beu@gentoo.org> (16 Sep 2006)
# Long-awaited update for AxKit; requires testing, and may steal your
# sheep and/or goats.
>=dev-perl/AxKit-1.7

# Michael Sterrett <mr_bones_@gentoo.org> (14 Sep 2006)
# All versions in portage need <net-misc/upnp-1.1 which was removed
net-misc/linux-igd

# Donnie Berkholz <dberkholz@gentoo.org> (13 Sep 2006)
# Monolithic X.Org is no longer supported and is subject
# to multiple security vulnerabilities.
<x11-base/xorg-x11-7
<virtual/glu-7
<virtual/opengl-7
<virtual/x11-7
<virtual/xft-7

# Matthias Schwarzott <zzam@gentoo.org> (13 Sep 2006)
# Masked for removal. It has open gcc-4 Bug (#146692),
# does unconditionally depend on virtual/x11,
# and upstream has done no newer releases.
# Sources seem to be tarred in Oct 1999.
media-video/mpeg-movie

# Olivier Fisette <ribosome@gentoo.org> (12 Sept 2006)
# Do not compile with GCC4.
sci-biology/cbcanalyzer
sci-biology/ecell

# Olivier Fisette <ribosome@gentoo.org> (11 Sep 2006)
# A number of issues remain with PHYLIP programs and
# at least a few others (emma, for instance). Masking
# until those bugs are fixed.
sci-biology/emboss-kaptain

# Daniel Gryniewicz <dang@gentoo.org> (11 Sep 2006)
# orbit 2.14.3 is broken.  bug #146929
=gnome-base/orbit-2.14.3

# Markus Dittrich <markusle@gentoo.org> (10 Sep 2006)
# masked new snapshot for further testing (see bug #144314)
>=sci-libs/blas-atlas-3.7.17
>=sci-libs/lapack-atlas-3.7.17

# Christel Dahlskjaer <christel@gentoo.org> (09 Sep 2006)
# Serious QA issues; see bug #98524
www-apps/drupal

# Mike Kelly <pioto@gentoo.org> (09 Sep 2006)
# The 2.x branch changes how it interacts with vim and other plugins. Masking
# this for now until I'm sure all current plugins work with it.
>=app-vim/genutils-2

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

# Roy Marples <uberlord@gentoo.org> (07 Sep 2006)
# Mask dhcp alpha version
=net-misc/dhcp-3.1.0_alpha*

# Daniel Gryniewicz <dang@gentoo.org> (06 Sep 2006)
# GNOME 2.16 mask for testing
>=dev-cpp/glibmm-2.9.1
>=dev-cpp/gconfmm-2.16.0
>=dev-cpp/gnome-vfsmm-2.16.0
>=dev-cpp/gtkmm-2.10.1
dev-cpp/cairomm
>=dev-cpp/libgnomecanvasmm-2.16.0
>=dev-cpp/libgnomemm-2.16.0
>=dev-cpp/libgnomeuimm-2.16.0
>=dev-cpp/libglademm-2.6.3
>=dev-cpp/libxmlpp-2.13.1

# Saleem Abdulrasool <compnerd@gentoo.org> (07 Aug 2006)
# New Galago Release
>=x11-plugins/gaim-galago-0.5.0

# Luis Medinas <metalgod@gentoo.org> (06 Sep 2006)
# Mask Brasero development releases until 0.5.0
# stable is out
>=app-cdr/brasero-0.4.90

# 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
dev-python/pycups
# for system-config-bind
net-dns/bind-dns-keygen

# Luis Medinas <metalgod@gentoo.org> (05 Sep 2006)
# Mask cdrkit to get some testing first
# before add a virtual like cdrtools
app-cdr/cdrkit

# Kevin F. Quinn <kevquinn@gentoo.org> (01 Sep 2006)
# New version masked for ebuild testing
=app-text/info2html-2.0

# Emanuele Giaquinta <exg@gentoo.org> (01 Sep 2006)
# Masked for testing
=app-crypt/mit-krb5-1.5*

# Diego Pettenò <flameeyes@gentoo.org> (31 Aug 2006)
# Still to be tested if it's safe security-wise (and see why we should
# leave it in tree).
media-libs/tunepimp

# Daniel Drake <dsd@gentoo.org> (29 Aug 2006)
# pending removal, obsoleted by in-kernel driver (bug #145525)
# if you have any reason to use this package over the in-kernel version,
# speak up now!
net-misc/bcm4400

# Luca Longinotti <chtekk@gentoo.org> (29 Aug 2006)
# Masking media-libs/ming-0.3.0, breaks PHP compilation and ships its own
# PHP bindings the wrong way
=media-libs/ming-0.3.0

# Matthew Kennedy <mkennedy@gentoo.org> (24 Aug 2006)
# Removing these bese project ebuilds in favour of darcs ebuilds.
# Upstream does not make releases.
dev-lisp/cl-arnesi
dev-lisp/cl-yaclml
dev-lisp/cl-icu
dev-lisp/cl-fiveam
dev-lisp/cl-ucw
dev-lisp/cl-rfc2109

# Michael Sterrett <mr_bones_@gentoo.org> (20 Aug 2006)
# Don't even think of filing bugs about these versions.
>=games-strategy/wesnoth-1.1

# Matthew Kennedy <mkennedy@gentoo.org> (20 Aug 2006)
# Unmaintained upstream, problems with recent Emacs.
app-emacs/w3
app-emacs/weather

# Carsten Lohrke <carlo@gentoo.org> (19 Aug 2006)
# Development versions of FWbuilder.
>=net-libs/libfwbuilder-2.1.5
>=net-firewall/fwbuilder-2.1.5

# Steev Klimaszewski <steev@gentoo.org> (18 Aug 2006)
# waiting for new mono bindings and some testing
>=sys-apps/dbus-0.91
>=sys-apps/dbus-core-0.92
>=dev-libs/dbus-glib-0.71
>=dev-python/dbus-python-0.71
dev-libs/dbus-qt3-old

# Ned Ludd <solar/gentoo.org> (Aug 14 2006)
# This pkg breaks working systems and eradicator
# has gone MIA yet again. 
# Bugs 143697, 108398, 112156, 135702, 137917, 
# 138296, 139016, 139629, 143684
>=sys-devel/gcc-config-2.0.0_rc1
app-admin/eselect-compiler

# Petteri Räty <betelgeuse@gentoo.org> (13 Aug 2006)
# Masked because of bug #132578 
# http://bugs.gentoo.org/show_bug.cgi?id=132578
#
# The from source version net-p2p/azureus has various
# improvements and will replace the -bin version as
# soon as it is marked stable. Please migrate to 
# that version if you want to continue using the ~arch
# version of Azureus.
=net-p2p/azureus-bin-2.4*

# Ioannis Aslanidis <deathwing00@gentoo.org> (11 Aug 2006)
# k3b pre-release versions. Apart from being pre-release,
# i18n support and encoders/decoders are missing.
>=app-cdr/k3b-1.0_pre1

# Tuấn Văn <langthang@gentoo.org> (10 Aug 2006)
# Security mask
# Bug #132821
mail-filter/libspf

# Luis Medinas <metalgod@gentoo.org> (08 Aug 2006)
# Mask gaim-libnotify because it only works with gaim-2.0.0
x11-plugins/gaim-libnotify

# Tim Yamin <plasmaroo@gentoo.org> (07 Aug 2006)
# Security mask
# Bug #138617
<sys-kernel/xbox-sources-2.6

# Tim Yamin <plasmaroo@gentoo.org> (07 Aug 2006)
# Security mask
# Bugs #135167, #137623, #137626, #138617, #139321,
# #139475, #139641, #140444, #141503, #142616, #142617 
sys-kernel/openmosix-sources
sys-cluster/openmosixview
sys-cluster/openmosixtest
sys-cluster/openmosix-user
sys-cluster/openmosixwebview
sys-cluster/openmosix-3dmon-stats

# Jonathan Smith <smithj@gentoo.org> (07 Aug 2006)
# pending removal
# https://bugs.gentoo.org/show_bug.cgi?id=140498
media-gfx/xzgv

# Tuấn Văn <langthang@gentoo.org> (04 Aug 2006)
# Incomplete patch.
=net-mail/cyrus-imapd-2.2.12-r5

# Alec Warner <antarus@gentoo.org> (03 Aug 2006)
# sys-fs/dmraid masked for bug(s) 139860,103912, 
# 134050, 138823 Waiting on new maintainer.
sys-fs/dmraid

# Diego Pettenò <flameeyes@gentoo.org> (28 Jul 2006)
# Masking till all dependencies are fixed, bug #141947
=sys-libs/slang-2*
=app-editors/jed-0.99.18*

# 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

# Luis Medinas <metalgod@gentoo.org> (23 Jul 2006)
# Marked for removal see bug #132449
=media-plugins/xmms-xmmsd-0.3

# Christian Andreetta <satya@gentoo.org> (20 Jul 2006)
# Masked due to authentication and wins name mapping
#   bug #140332, upstream bug #3548
=net-fs/samba-3.0.23

# Tuấn Văn <langthang@gentoo.org> (15 Jul 2006)
# Initial import. Masked for testing
mail-filter/sid-milter

# Philip Walls <malverian@gentoo.org> (18 Jul 2006)
# Package is a maintenance nightmare, it has depended
# on unreleased versions of several other packages
# for a very long time. This doesn't appear to be
# changing any time in the near future.
# Candidate for treecleaners
games-rpg/planeshift

# Marc Hildebrand <zypher@gentoo.org> (17 Jul 2006)
# media-video/piave, media-video/kdenlive-0.2.4
# Masking broken versions, pending removal
media-video/piave
=media-video/kdenlive-0.2.4

# Marc Hildebrand <zypher@gentoo.org> (17 Jul 2006)
# masking snapshot version, official release is out
=media-libs/mlt-20051209

# Alastair Tse <liquidx@gentoo.org> (15 Jul 2006)
# Python 2.1 and 2.2 have reported vunerabilities. Masked pending
# removal, along with net-zope/zope-2.6. (GLSA: 200509-08, 200502-09,
# 200510-20)
<dev-lang/python-2.3
=net-zope/zope-2.6*
mail-client/mahogany

# Tuấn Văn <langthang@gentoo.org> (15 Jul 2006)
# Initial import. Masked for testing
#mail-filter/libmilter
#mail-filter/dk-milter

# Marcelo Goes <vanquirius@gentoo.org> (15 Jul 2006)
# Masked for testing
# See bug 140207
>=dev-libs/libnl-1.0_pre5

# Matthew Kennedy <mkennedy@gentoo.org>
# libecl.so linking problem
=dev-lisp/ecls-0.9i

# Luis Medinas <metalgod@gentoo.org> (08 Jul 2006)
# Dead upstream it needs to be removed.
# There's lot's of another applications like this.
app-cdr/simplecdrx

# Krzysiek Pawlik <nelchael@gentoo.org> (08 Jul 2006)
# Masked, because there's no compatible eclipse-sdk in tree,
# please use builtin update manager to install plugins for now.
=dev-util/ecletex-0.0.3
=dev-util/eclipse-cdt-2.0-r2

# Lars Weiler <pylon@gentoo.org> (08 Jul 2006)
# Use app-cdr/cdrtools for DVD burning (yes, it can do it now).
app-cdr/cdrecord-prodvd
app-cdr/dvdrtools

# Marcelo Goes <vanquirius@gentoo.org> (07 Jul 2006)
# Masked for testing
# Please see bug 136250 for more details
>=net-analyzer/snort-2.6.0

# Marcelo Goes <vanquirius@gentoo.org> (07 Jul 2006)
# Pending removal
# Please migrate to net-wireless/aircrack-ng
net-wireless/aircrack

# Martin Schlemmer <azarah@gentoo.org> (07 Jul 2006)
# Testing release to get some feedback.  New features include:
# - more detailed log format
# - non-hardcoded default config
# - stacked per-package config support
# In general it should behave for intended purposes as expected (except for the
# log format change), but feedback on config system, etc would be appreciated.
# Fairly limited comments about it in /etc/sandbox.conf and
# /etc/sandbox.d/00default.
>=sys-apps/sandbox-1.2.20_alpha1

# Michael Sterrett <mr_bones_@gentoo.org> (07 Jul 2006)
# Added back mask for dev-util/netbeans-4 until tomcat is fixed up
>=dev-util/netbeans-4.0

# Diego Pettenò <flameeyes@gentoo.org> (5 Jul 2006)
# Beta version
>=app-cdr/k9copy-1.1.0_beta

# Saleem Abdulrasool <compnerd@gentoo.org> (4 Jul 2006)
# Initial import mask
>=gnome-extra/gsynaptics-0.9.7

# Gustavo Felisberto <humpback@gentoo.org> (4 Jul 2006)
# Still masked wildfire because needs testing of new Java systemJava 2. If you unmask and have problems building please file a bug to me and add java@gentoo.org to the CC list
net-im/wildfire

# Diego Pettenò <flameeyes@gentoo.org> (30 Jun 2006)
# beta versions.
>=dev-util/kdevelop-3.3.90

# Stefan Schweizer <genstef@gentoo.org> (29 Jun 2006)
# 1.0.* is the stable version, we do not want to break any users
>=net-libs/loudmouth-1.1.0

# Colin Kingsley <tercel@gentoo.org> (24 Jun 2006)
# Masked for testing
=dev-python/visual-4*

# Diego Pettenò <flameeyes@gentoo.org> (23 Jun 2006)
# 0.2 Beta version of Kerry
>=kde-misc/kerry-0.1.90

# Marinus Schraal <foser@gentoo.org> (19 Jun 2006)
# removes internal API headers, breaks stuff that depends on internals
>=media-libs/freetype-2.2

# Michael Sterrett <mr_bones_@gentoo.org> (17 Jun 2006)
# Needs newer linux-headers.  masked until then
=sys-process/audit-1.1*
=sys-process/audit-1.2.1*
=sys-process/audit-1.2.3*
=sys-process/audit-1.2.5*

# Mike Frysinger <games@gentoo.org> (17 Jun 2006)
# Use quakeforge or another quake1 client
games-fps/quake1

# Gustavo Zacarias <gustavoz@gentoo.org> (15 Jun 2006)
# Masked because of crash issues bug #131686
=app-text/wv-1.2.1

# Joshua Baergen <joshuabaergen@gentoo.org> (03 Jun 2006)
# X.Org development snapshots
>=x11-base/xorg-server-1.1.99

# Markus Ullmann <jokey@gentoo.org> (01 Jun 2006)
# masking older versions due to security bug #134010 and bug #133898
# commented out, as it breaks the whole tree - carlo
#<net-nds/openldap-2.3.24

# Stefan Cornelius <dercorny@gentoo.org> (01 Jun 2006)
# masking because of security bug #127757
dev-libs/libvc
mail-client/mutt-vc-query
app-misc/rolo

# Luca Longinotti <chtekk@gentoo.org> (30 May 2006)
# awstats 6.6 is completely unusable - bug #134296
=net-www/awstats-6.6

# Mark Loeser <halcy0n@gentoo.org> (29 May 2006)
# Masked pending removal.  Dead upstream, doesn't compile with gcc-3.4
# bug #120303
media-libs/nurbs++

# Leonardo Boshell <leonardop@gentoo.org> (28 May 2006)
# Waiting for a stable release after libgda/libgnomedb 2.0 are out.
dev-db/mergeant

# Martin Ehmsen <ehmsen@gentoo.org> (28 May 2006)
# Masked until ready for the public.
# There are still some work to be done, but should
# be able to build.
app-text/texlive
 
# Stefan Cornelius <dercorny@gentoo.org> (27 May 2006)
# Masked because of security bug #131866
sys-apps/resmgr

# Luca Longinotti <chtekk@gentoo.org> (24 May 2006)
# Masked for more testing, breaks with stealth mode.
=app-forensics/samhain-2.2.0

# Michael Sterrett <mr_bones_@gentoo.org> (23 May 2006)
# masked pending unresolved security bug #134138
games-strategy/netpanzer

# Paul de Vrieze <pauldv@gentoo.org> (19 May 2006)
# Masked for testing cooperation with db-4.3
>=sys-libs/db-4.4

# Stuart Herbert <stuart@gentoo.org> (19 May 2006)
# Masked pending removal
=net-misc/nxserver-freenx-0.5.0

# Tim Yamin <plasmaroo@gentoo.org> (18 May 2006)
# Security mask; bug #112791.
sys-kernel/kurobox-sources

# Roy Marples <uberlord@gentoo.org> (09 May 2006)
# Masked for testing, although it works very well for me.
>=net-misc/openvpn-2.1_beta

# Stefan Schweizer <genstef@gentoo.org> (05 May 2006)
# kopete needs ~0.7.1, mask newer versions to avoid up/downgrade cycles
>=net-libs/ortp-0.8

# Diego Pettenò <flameeyes@gentoo.org> (24 Apr 2006)
# Pre-release snapshots
=app-mobilephone/kmobiletools-0.5*

# Tavis Ormandy <taviso@gentoo.org> (21 Apr 2006)
# unresolved security issues #125491
net-analyzer/tcpick

# Benedikt Böhm <hollow@gentoo> (20 Apr 2006)
# Upstream dead; obsoleted by sys-apps/lomoco
sys-apps/lmctl

## Daniel Ostrow <dostrow@gentoo.org> (20 Apr 2006)
## XFCE 4.4 beta1
>=xfce-base/libxfce4util-4.3.90.1
>=xfce-base/libxfce4mcs-4.3.90.1
>=xfce-base/libxfcegui4-4.3.90.1
>=xfce-base/xfce4-panel-4.3.90.1
>=xfce-base/xfce-mcs-manager-4.3.90.1
>=xfce-extra/xfce4-mixer-4.3.90.1
>=xfce-base/xfprint-4.3.90.1
>=xfce-base/xfce-mcs-plugins-4.3.90.1
>=xfce-extra/xfce4-icon-theme-4.3.90.1
>=xfce-extra/mousepad-0.2.4
>=xfce-extra/exo-0.3.1.6_beta1
>=xfce-extra/terminal-0.2.5.1_beta1
>=xfce-base/orage-4.3.90.1
>=xfce-base/thunar-0.3.0_beta1
>=xfce-base/xfdesktop-4.3.90.1
>=xfce-extra/xfce4-appfinder-4.3.90.1
>=xfce-base/xfce-utils-4.3.90.1
>=xfce-base/xfwm4-4.3.90.1
>=x11-themes/gtk-engines-xfce-2.3.90.1
>=xfce-base/xfce4-session-4.3.90.1
>=xfce-extra/xfwm4-themes-4.3.90.1
>=xfce-base/xfce4-4.3.90.1

# 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

# Stefan Knoblich <stkn@gentoo.org> (18 Apr 2006)
# Masking until asterisk-1.2 gets released into the wild
net-misc/asterisk-app_authenticate_ldap

# Mark Loeser <halcy0n@gentoo.org> (11 Apr 2006)
# GCC 4.2 snapshots; use with extreme care and only report bugs if you have
# a patch
=sys-devel/gcc-4.2*

# Carsten Lohrke <carlo@gentoo.org> (10 Apr 2006)
# Masked, since incompatible to Python 2.5.
>=dev-python/sip-4.4.1
>=dev-python/PyQt-3.16
>=dev-python/pykde-3.16.0
dev-python/PyQt4

# Carsten Lohrke <carlo@gentoo.org> (10 Apr 2006)
# Couple of issues with this version, waiting for the next release.
~kde-misc/kdiff3-0.9.89

# Keri Harris <keri@gentoo.org> (08 Apr 2006)
# Development release, requires careful testing.
# Some grades fail spectacularly with gcc4.
>=dev-lang/mercury-0.13.0_beta
>=dev-lang/mercury-extras-0.13.0_beta

# Michael Sterrett <mr_bones_@gentoo.org> (02 Apr 2006)
# masked pending unresolved security issues #122845
games-rpg/daimonin-client

# Luca Barbato <lu_zero@gentoo.org> (29 Mar 2006)
#pending some tests
=app-emulation/qemu-0.8.0.20060329
=app-emulation/qemu-user-0.8.0.20060329
=app-emulation/qemu-softmmu-0.8.0.20060329
=app-emulation/kqemu-1.3.0_pre5

# 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

# Jeremy Huddleston <eradicator@gentoo.org> (21 Mar 2006)
# Development version of squirrelmail
>=mail-client/squirrelmail-1.5

# Michael Sterrett <mr_bones_@gentoo.org> (12 Mar 2006)
# masked due to security issues: bug #125990
net-libs/enet

# Petteri Räty <betelgeuse@gentoo.org> (12 Mar 2006)
# Because of changes in ebay our current versions do not work
# See bug #125813 for details.
<=app-misc/jbidwatcher-0.9.9

# 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

# Matthew Kennedy <mkennedy@gentoo.org> (06 Mar 2006)
# Masked due to maintainability issues.  See bug 116631.
dev-scheme/bigloo-lib

# Michael Sterrett <mr_bones_@gentoo.org> (06 Mar 2006)
# masked due to security issues: bug #125289
# unmask locally at your own risk.
games-fps/cube

# Michael Stewart <vericgar@gentoo.org> (05 Mar 2006)
# Package has unsatisfied dependencies that aren't in the tree.
# Masking pending removal unless someone adds the needed
# dependencies. See bug 106421
www-apache/mod_csv

# Stuart Herbert <stuart@gentoo.org> (05 Mar 2006)
# Upstream have pulled the binaries
=net-misc/nxserver-personal-1.3*
=net-misc/nxserver-personal-1.4*
=net-misc/nxserver-business-1.3*
=net-misc/nxserver-business-1.4*
=net-misc/nxserver-enterprise-1.3*
=net-misc/nxserver-enterprise-1.4*

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

# John N. Laliberte <allanonjl@gentoo.org> (24 Feb 2006)
# old gtk+-1 edit
dev-util/glimmer

# Zaheer Abbas Merali <zaheerm@gentoo.org> (24 Feb 2006)
# masked due to runtime instability
=dev-libs/liboil-0.3.7

# Marcelo Goes <vanquirius@gentoo.org> (16 Feb 2006)
# Lacks needed functionality - someone volunteered to fix it
# See bug 117898
net-libs/libpcap-ringbuffer

# Guillaume Destuynder <kang@gentoo.org> (16 Feb 2006)
# Masked SVN ebuilds
=sys-kernel/rsbac-sources-2.6.99
=sys-apps/rsbac-admin-1.2.99

# Robin H. Johnson <robbat2@gentoo.org> (11 Feb 2006)
# pending mailer-config
=mail-mta/nullmailer-1.00-r2
>=mail-mta/nullmailer-1.02-r2

# Tavis Ormandy <taviso@gentoo.org> (06 Feb 2006)
# deprecated in favour of app-shells/tcsh
app-shells/csh

# Stefan Schweizer <genstef@gentoo.org> (06 Feb 2006)
# deprecated - please use net-print/hplip now
net-print/hpoj

# Marcelo Goes <vanquirius@gentoo.org> (06 Feb 2006)
# Mask tcpreplay beta branch. If you want it, unmask it.
>=net-analyzer/tcpreplay-3.0_beta1

# Michael Stewart <vericgar@gentoo.org> (03 Feb 2006)
# Mask for testing of new version
>=net-www/apache-2.2.0
>=dev-libs/apr-1.0.0
>=dev-libs/apr-util-1.0.0

# Luca Barbato <lu_zero@gentoo.org> (25 Jan 2006)
# untested
=app-emulation/bochs-2.2.5-r1

# Mike Frysinger <vapier@gentoo.org> (25 Jan 2006)
# Added for fun, but incomplete atm
>=sys-apps/util-linux-2.13_pre0

# George Shapovalov (19 Jan 2006)
# older versions have problems, leaving only the last in series,
# now that 3.45 is stable
<=dev-lang/gnat-3.15p-r4

# Thierry Carrez <koon@gentoo.org> (18 Jan 2006)
# Package contains insecure tmpfile handling, bug #108072
app-cdr/cdrx

# Marius Mauch <genone@gentoo.org> (17 Jan 2006)
# Development version
>=dev-util/gambas-1.9

# Diego Pettenò <flameeyes@gentoo.org> (13 Jan 2006)
# Vulnerable to security issue. See bug #115760
media-video/xmovie

# Diego Pettenò <flameeyes@gentoo.org> (12 Jan 2006)
# Nightlie, masked while testing
=media-sound/mt-daapd-0.3.0_pre*

# Alexandre Buisse <nattfodd@gentoo.org> (12 Jan 2006)
# Masked for testing purposes
dev-tex/mpm

# Tuan Van <langthang@gentoo.org> (10 Jan 2006)
# Testing release.
>=net-mail/cyrus-imapd-2.3
>=net-mail/cyrus-imap-admin-2.3

# <plasmaroo@gentoo.org> (30 Dec 2005)
# Lots of outstanding security bugs, no updates from upstream yet.
sys-kernel/openblocks-sources

# <robbat2@gentoo.org> (26 Dec 2005)
# Fails HMAC test on Pentium-M systems
# HMAC-Test: Failed
# Expecting: 0x750c783e6ab0b503eaa86e310a5db738
# Got: 0x75 c783e6affffffb0ffffffb5 3ffffffeaffffffa86e31 a5dffffffb738
# FAIL: hmac_test
# Upstream bug filed:
# http://sourceforge.net/tracker/index.php?func=detail&aid=1390988&group_id=4286&atid=104286
=app-crypt/mhash-0.9.3*

# Paul Varner <fuzzyray@gentoo.org> (21 Dec 2005)
# porthole-0.5.0 being added to the tree for testing.
=app-portage/porthole-0.5.0*

# Markus Dittrich <markusle@gentoo.org> (21 Dec 2005)
# mask mupad until fixed by upstream, since the binaries
# contain insecure runpaths, bug #81745, #115892
sci-mathematics/mupad

# Luca Longinotti <chtekk@gentoo.org> (21 Dec 2005)
# Doesn't work reliably with new PDO 1.0.X and is
# in need of new upstream maintainers
dev-php5/pecl-pdo-firebird

# Kathryn Kulick <gothgirl@gentoo.org> (20 Dec 2005)
# Gaim 2.0.0 beta1 plugins.
>=x11-plugins/gaim-encryption-3.0_beta1
>=x11-plugins/gaim-xmms-remote-1.9_beta1
>=x11-plugins/guifications-2.13_beta1

# Kathryn Kulick <gothgirl@gentoo.org> (19 Dec 2005)
# Gaim 2.0.0 beta1 added to tree for testing.
>=net-im/gaim-2.0.0_beta1

# Chris Gianelloni <wolf31o2@gentoo.org> (19 Dec 2005)
# This is the Gentoo Linux Installer.  This is currently masked because it can
# 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.
sys-apps/gli

# Chris Gianelloni <wolf31o2@gentoo.org> (19 Dec 2005)
# This version is looking for something that is not existing in older patch
# files, causing patching to fail.  I am currently masking this version and
# most likely will be removing it in the near future.
=games-util/loki_patch-20051209

# Francesco Riosa <vivo@gentoo.org> (07 Dec 2005)
>=dev-db/mysql-5.1

# Wolfram Schlich <wschlich@gentoo.org> (26 Nov 2005)
# has security issues and will be removed from portage
# due to upstream behaviour, see bug #106497
app-backup/mondo-rescue

# Marcin Kryczek <mkay@gentoo.org> (22 Nov 2005)
# This is for testing only. Do NOT report bugs against that version
# unless you're sure they're gentoo-specific or they're already
# fixed by upstream
=net-im/kadu-0.5*

# Stefan Knoblich <stkn@gentoo.org> (18 Nov 2005)
# Asterisk-1.2.0 is up-to-date, mask packages that need testing
# or aren't ready yet, e.g. Sangoma Wanpipe drivers.
>=net-misc/wanpipe-2.3.2_p4
>=net-misc/asterisk-oh323-0.7.3

# Tom Payne <twp@gentoo.org> (18 Sep 2005)
# Previous SCons upgrade broke lots of packages, so latest version is getting some testing first!
=dev-util/scons-0.96.91

# Diego Pettenò <flameeyes@gentoo.org> (30 Oct 2005)
# Crashes on startup on my box, needs testing.
=media-sound/noteedit-2.8.0

# Chris White <chriswhite@gentoo.org> (19 Oct 2005)
# masking swig 1.3.27 until it gets proper testing
# to compile with other packages.
=dev-lang/swig-1.3.27

# Marcelo Goes <vanquirius@gentoo.org> (01 Oct 2005)
# Masking because of bug 107240 (exporting PDF/Latex)
=media-gfx/xfig-3.2.5_alpha5

# Saleem Abdulrasool <compnerd@gentoo.org> (01 Oct 2005)
# Adding partial eclipse builds for jface
dev-java/eclipse-osgi
dev-java/eclipse-core
dev-java/eclipse-jface

# Jeremy Huddleston <eradicator@gentoo.org> (24 Sep 2005)
# Not quite ready for prime time...
www-apps/open-xchange

# Tom Payne <twp@gentoo.org> (18 Sep 2005)
# Causes problems with several packages. See bug # 99243 and bug # 102301.
=dev-util/scons-0.96.90

# Luis F. Araujo <araujo@gentoo.org> (24 Aug 2005)
# This is a binary package version.
# Masked for more testing.
=dev-lang/smalltalkx-5.2.6

# Diego Pettenò <flameeyes@gentoo.org> (22 Aug 2005)
# Pre-release heavy patched
=media-video/avidemux-2.1_pre*

# Diego Pettenò <flameeyes@gentoo.org> (18 August 2005)
# Toxine needs to be verified with upstream for a few issues.
media-video/toxine

# Rob Cakebread <pythonhead@gentoo.org> (04 Aug 2005)
# Needs testing, in particular svn, cvs and darcs control
dev-util/pida

# Matthew Kennedy <mkennedy@gentoo.org> (31 Jul 2005)
# Upstream author requests official version ports only.
dev-lisp/cl-blog

# Karl Trygve Kallebreg <karltk@gentoo.org> (30 Jul 2005)
# all version contains a static copy of zlib-1.2.1.1 which has security
# issues
net-misc/zsync

# Karl Trygve Kalleberg <karltk@gentoo.org> (23 Jul 2005)
# Not available to the general public
=dev-lang/icc-9.0.023

# <grobian@gentoo.org> (26 Mar 2006)
# ViewPDF is not maintained anymore.  It is replaced by Vindaloo.
# However, Vindaloo needs PopplerKit, which doesn't compile.
gnustep-libs/popplerkit
gnustep-apps/vindaloo

# <ka0ttic@gentoo.org> (21 Jul 2005)
# Masked for testing.
=dev-cpp/gtkglextmm-1.1.0

# Konstantin Arkhipov <voxus@gentoo.org> (14 Jul 2005)
# Masked for security reasons.
<=sys-kernel/openmosix-sources-2.4.30

# Chris White (chriswhite@gentoo.org) (08 Jul 2005)
# Masking initial import of ipodder as it has some issues
# with the episode cleanup window.  However, those that don't use
# it should be ok.
media-sound/ipodder

# Caleb Tennis <caleb@gentoo.org> (01 Jul 2005)
# Seems to not be compatible with kde 3.4 though
# the docs say it is
>=kde-base/unsermake-0.4.20050628

# Markus Nigbur <pYrania@gentoo.org> (01 Jul 2005)
# Masked due to a pretty big bug with crosscompile support.
# Colin Kingsley <tercel@gentoo.org> (30 Jun 2005)
# Major revisions. Masked for testing.
=sys-devel/distcc-2.18.3-r8

# Aaron Walker <ka0ttic@gentoo.org> (30 Jun 2005)
# Masked due to constant security bugs.
www-apps/phpBB

# David Holm <dholm@gentoo.org> (11 Jun 2005)
# Masked since it is known to create broken partition
# tables on some configurations. Use parted instead.
sys-fs/amiga-fdisk

# Diego Pettenò <flameeyes@gentoo.org> (10 Jun 2005)
# Still no way to test this, waiting ofr upstream or someone to come up
# with a decent test suite.
media-video/dirac

# Elfyn McBratney <beu@gentoo.org> (06 Jun 2005)
# 9/10 times, it'll work, the other time it'll either segfault,
# or emit a syntax error in /etc/auditd.rules .. *hrmph*
=sys-process/audit-0.9*

# Leonardo Boshell <leonardop@gentoo.org> (31 May 2005)
# Masked for testing, it includes an experimental patch to make Gtk+
# dependency optional. See bug #40453.
=media-libs/imlib-1.9.15

# Danny van Dyk <kugelfang@gentoo.org> (27 May 2005)
# Needs some testing and love before going gold
=dev-lang/ifc-8.1*

# Danny van Dyk <kugelfang@gentoo.org> (11 May 2005)
# Masked and scheduled for removal. Won't be removed before new versions hit
# the the tree
<dev-lang/icc-7.1.006
<dev-lang/ifc-7.0.064-r1

# 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
=mail-mta/msmtp-1.4.7-r1
>=mail-mta/ssmtp-2.61-r30
>=mail-mta/esmtp-0.5.0-r2
=mail-mta/postfix-2.2.4
=mail-mta/postfix-2.2.5-r1
=mail-mta/postfix-2.2.8-r1
=mail-mta/postfix-2.2.9-r1
=mail-mta/postfix-2.2.10-r1
=mail-mta/postfix-2.3.0-r1
=mail-mta/postfix-2.3.2-r1

# Rob Cakebread <pythonhead@gentoo.org> (22 Apr 2005)
# Versions in portage no longer supported. Abeni 1.0 will be in portage soon after wxGTK-2.6.0
app-portage/abeni

# Jan Brinkmann <luckyduck@gentoo.org> (21 Apr 2005)
# missing dependencies, see #89893
=app-misc/freemind-0.8.0_rc2

# Konstantin Arkhipov <voxus@gentoo.org> (15 Apr 2005)
# Masked until arrival of userland tools. At least.
>=sys-kernel/openmosix-sources-2.5

# 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

# <pylon@gentoo.org> (13 Feb 2005)
# From website: "We know that 0.4.x is a bit buggy on trades :), for people who
# wish to play a stable game, please use 0.3.2"
=games-board/gtkatlantic-0.4.1

# Aron Griffis <agriffis@gentoo.org> (07 Feb 2005)
# Mask offlineimap testing versions
=net-irc/ctrlproxy-3.0*

#Gustavo Felisberto <humpback@gentoo.org> (04 Feb 2005)
#Masked for user testing
net-im/mercury-bin

# Matthew Kennedy <mkennedy@gentoo.org> (02 Feb 2005)
# Uncertain upstream; Needs work for apache-modules eclass; mod_webapp needs to
# be broken out of it
dev-lisp/cl-imho

# <danarmak@gentoo.org> (11 Dec 2004)
# Considered broken by upstream; future to be decided
kde-base/qtsharp
kde-base/xparts
kde-base/dcopjava

# <dragonheart@gentoo.org> (04 Dec 2004)
# Bug #70529 indicates problems with configuration file reading
~dev-libs/log4c-1.0.11
~dev-libs/log4c-1.0.12

# <nakano@gentoo.org> (28 Nov 2004)
# bincima-1.3* are beta versions for testing purposes,
# probably very unstable.
=net-mail/bincimap-1.3*

# <pfeifer@gentoo.org> (12 Aug 2004)
# Masked for following ebuilds for testing:
=sys-apps/mindi-1.10
=app-backup/mondo-rescue-2.10

# <mkennedy@gentoo.org> (08 Aug 2004)
# won't build for now
dev-lisp/cl-rsm-gen-prog
dev-lisp/cl-rsm-genetic-alg

# <usata@gentoo.org> (02 July 2004)
# emacs-unicode-2 branch is not stable and SLOT support for emacs
# is incomplete. info directory handling should be reconsidered.
=app-editors/emacs-cvs-23.0.0*

# <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
#
# You may unmask this package by placing an appropriate entry in your
# /etc/portage/package.unmask file
games-fps/unreal
games-fps/unreal-tournament
games-fps/unreal-tournament-goty
games-fps/unreal-tournament-infiltration
games-fps/unreal-tournament-strikeforce
games-fps/unreal-tournament-bonuspacks
games-fps/aaut

# <weeve@gentoo.org> (02 Mar 2004)
# mask slib-3.1.1 until gnucash can get a fix for it
=dev-libs/slib-3.1.1

# <robbat2@gentoo.org> (10 Jan 2004)
# blocked for testing
# Update - 2006/02/25 - This is a possible removal.
=mail-mta/qmail-ldap-1.03-r3

# <robbat2@gentoo.org> (29 Nov 2003)
# Need external testing
# Update - 2006/02/25 - This is a possible removal.
>=mail-mta/qmail-mysql-1.03-r13

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