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

# Robin H. Johnson <robbat2@gentoo.org> (24 Mar 2008)
# Testing for GPT changes, small ext3 inodes, AOE support for grub-install,
# some extra sync calls in grub-install.
=sys-boot/grub-0.97-r5

# Mike Doty <kingtaco@gentoo.org> (24 Mar 2008)
# Masked due to lack of testing and user rewritten ebuild/conf.d/init.d.
# Use at your own risk.  Bug 196096.
>=sys-block/open-iscsi-2.0.868_rc1

# Joerg Bornkessel <hd_brummy@gentoo.org> (11 Mar 2008)
# masked for testing
# http://www.vdr-portal.de/board/thread.php?threadid=74833 (german)
=net-www/xxv-1.2.1308
=net-www/xxv-1.2.1315

# Andreas Proschofsky <suka@gentoo.org> (23 Mar 2008)
# Mask release candidates for OpenOffice.org 2.4.0
>=app-office/openoffice-2.4.0_rc5
>=app-office/openoffice-bin-2.4.0_rc6

# Samuli Suominen <drac@gentoo.org> (23 Mar 2008)
# Last release 1 Jul 2001 with support for OSS and
# GTK+-1.2 with GTKMM-1.2. Masked for removal in
# 30 days, use one of the many replacements.
media-sound/opmixer

# Denis Dupeyron <calchan@gentoo.org> (22 Mar 2008)
# Not needed anymore. Was only used by old versions of
# sci-libs/libgeda which were just punted. Will be removed
# in 30 days.
sci-libs/libgdgeda

# Tristan Heaven <nyhm@gentoo.org> (21 Mar 2008)
# Needs testing
>=games-strategy/warzone2100-2.1_beta2

# Rémi Cardona <remi@gentoo.org> (21 Mar 2008)
# Masked for testing (2.3 Release Candidates)
=x11-drivers/xf86-video-i810-2.2.99*

# Torsten Veller <tove@gentoo.org> (20 Mar 2008)
# Masked for removal - Unfetchable and service down
# bug #213349
mail-client/ciphire-mail

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

# Jeroen Roovers <jer@gentoo.org> (19 Mar 2008)
# Deprecated in favour of net-firewall/conntrack-tools, which
# merges both conntrack and conntrackd (bug #213084).
# Going for removal on or about 19 Apr 2008:
net-firewall/conntrack

# 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

# Ryan Hill <dirtyepic@gentoo.org> (16 Mar 2008)
# Mask for removal on 16 Apr 2008
# upstream unresponsive, replaced by dev-util/ftjam
# Bug #173703
dev-util/jam

# Mart Raudsepp <leio@gentoo.org> (16 Mar 2008)
# The Great GNOME 2.22 Mask (tm)
# Will be unmasked when everything is in, everything is ready and
# there are no big bugs remaining.
>=app-crypt/seahorse-2.22
>=gnome-base/libgtop-2.22
>=x11-themes/gtk-engines-2.14
>=gnome-base/libbonobo-2.22
>=x11-libs/libwnck-2.22
>=x11-themes/gnome-backgrounds-2.22
>=gnome-base/gail-1.22
>=app-text/rarian-0.8
>=gnome-base/gnome-menus-2.22
>=dev-python/pygtksourceview-2.2.0
>=gnome-base/gconf-2.22
>=x11-wm/metacity-2.22
>=gnome-extra/gucharmap-2.22
>=gnome-extra/gcalctool-5.22
>=x11-themes/gnome-icon-theme-2.22
>=x11-themes/gnome-themes-2.22
>=gnome-extra/zenity-2.22
>=gnome-extra/at-spi-1.21
>=gnome-base/libgnomeui-2.22
>=gnome-base/gnome-desktop-2.22
>=x11-terms/gnome-terminal-2.22
>=gnome-base/gnome-vfs-2.22
>=gnome-base/libgnome-2.22
dev-libs/libgweather
>=app-editors/gedit-2.22
>=gnome-base/libbonoboui-2.22
>=gnome-base/libgnomekbd-2.21
>=gnome-extra/gconf-editor-2.22
>=media-sound/sound-juicer-2.22
>=gnome-extra/yelp-2.22
>=app-arch/file-roller-2.22
>=dev-python/gnome-python-2.22
>=gnome-extra/gtkhtml-3.18
>=www-client/epiphany-2.22
>=www-client/epiphany-extensions-2.22
>=media-gfx/eog-2.22
>=app-accessibility/orca-2.22
>=gnome-base/librsvg-2.22
>=gnome-extra/gnome-system-monitor-2.22
>=gnome-base/gnome-keyring-2.22
>=gnome-extra/evolution-data-server-2.22
>=net-misc/vino-2.22
>=app-text/evince-2.22
>=gnome-base/gnome-panel-2.22
>=gnome-extra/bug-buddy-2.22
>=gnome-extra/evolution-webcal-2.21
>=dev-python/gnome-python-desktop-2.22
>=gnome-extra/gnome-games-2.22
>=gnome-extra/deskbar-applet-2.22
>=net-analyzer/gnome-nettool-2.22
>=gnome-extra/fast-user-switch-applet-2.22
>=app-admin/sabayon-2.21
>=gnome-base/gnome-applets-2.22
>=gnome-base/gnome-volume-manager-2.22
>=mail-client/evolution-2.22
>=gnome-extra/gnome-screensaver-2.22
>=gnome-extra/gnome-power-manager-2.22
dev-libs/totem-pl-parser
>=media-video/totem-2.22
gnome-base/gnome-settings-daemon
>=gnome-base/control-center-2.22
>=gnome-base/gnome-session-2.22
>=gnome-base/eel-2.22
gnome-base/gvfs
>=gnome-base/nautilus-2.22
>=gnome-extra/nautilus-cd-burner-2.22
>=gnome-base/gdm-2.20.4
>=gnome-base/gnome-light-2.22
>=gnome-base/gnome-2.22

# Mart Raudsepp <leio@gentoo.org> (10 Mar 2008)
# Temporary swfdec mask due to need for matching versions
# at once
>=net-libs/libsoup-2.4
>=media-libs/swfdec-0.6.0
>=net-www/swfdec-mozilla-0.6.0
>=gnome-extra/swfdec-gnome-2.21.91
# End of GNOME 2.22 mask

# Denis Dupeyron <calchan@gentoo.org> (15 Mar 2008)
# Masked for removal in 30 days. Requires Tcl 8.3 which
# isn't in the tree anymore. See bugs 172356 and 173467.
sci-electronics/lard

# Marijn Schouten <hkBst@gentoo.org> (14 Mar 2008)
# binary package, needs obsolete libcrypto, bug 202160.
# will be removed
dev-scheme/mit-scheme

# 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

# Markus Ullmann <jokey@gentoo.org> (12 Mar 2008)
# mask test version
=net-im/openfire-3.5.0_rc*

# Christian Hartmann <ian@gentoo.org> (12 Mar 2008)
# Pending removal
# See bug #138755
x11-misc/perlpanel

# Christian Faulhammer <opfer@gentoo.org> (11 Mar 2008)
# masked for testing
=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

# Jeroen Roovers <jer@gentoo.org> (10 Mar 2008)
# development version:
>=app-admin/sysstat-8.1.1

# Luis F. Araujo <araujo@gentoo.org> (9 Mar 2008)
# Check bug #208666
dev-lang/smalltalkx

# Ben de Groot <yngwin@gentoo.org> (8 Mar 2008)
# Mask because it breaks things all over. Tracker bug: #212763
=sys-devel/libtool-2.2

# MATSUU Takuto <matsuu@gentoo.org> (8 Mar 2008)
# Masked for Bug 173467
=dev-lang/tcl-8.5*
=dev-lang/tk-8.5*

# 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

# MATSUU Takuto <matsuu@gentoo.org> (5 Mar 2008)
# Upstream is dead. Masked for removal.
app-backup/kdar

# Chris Gianelloni <wolf31o2@gentoo.org> (3 Mar 2008)
# Masking due to security bug #204067
# If you only play on Punkbuster enabled servers, this is safe to unmask.
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

# Chris Gianelloni <wolf31o2@gentoo.org> (27 Feb 2008)
# Masking these versions because I'm sick of people reporting bugs that have
# already been fixed in newer versions or SVN.  Here's a tip for all of you
# ~arch users out there.  If you're going to use ~arch and you're planning on
# filing bug reports, make sure your bug is actually still valid before filing
# it.  It really does help out tremendously to not have to dig through tons of
# code only to find that the issue was already resolved 5 revisions ago.
>=dev-util/catalyst-2.0.6_pre1

# Benedikt Böhm <hollow@gentoo.org> (27 Feb 2008)
# Masked for removal
# obsoleted by mail-filter/dovecot-antispam
mail-filter/dovecot-dspam

# Diego Pettenò <flameeyes@gentoo.org> (26 Feb 2008)
# Alpha version, mask until final.
=net-irc/quassel-0.2.0_alpha*

# Diego Pettenò <flameeyes@gentoo.org> (25 Feb 2008)
# Beta version, masked for testing.
=app-admin/sudo-1.7_beta*

# 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/moregroupware
www-apps/net2ftp
=www-apps/phpBB-2*
www-apps/wordpress
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

# Ulrich Mueller <ulm@gentoo.org> (22 Feb 2008)
# lesstif is not installable, can mask it as well.
x11-libs/lesstif

# Timo Gurr <tgurr@gentoo.org> (22 Feb 2008)
# Mask KDE4 versions of ktorrent as long as KDE4 is masked.
>=net-p2p/ktorrent-3.0.0

# Mike Frysinger <vapier@gentoo.org> (20 Feb 2008)
# Use a generic package like dev-util/devel-chroots. #193566
app-emulation/x86-chroot

# 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
sys-apps/hwsetup
x11-misc/mkxf86config

# Diego Pettenò <flameeyes@gentoo.org> (20 Feb 2008)
# Pending removal on 20 April 2008.
# Install broken; PAM totally broken (never tested, I suppose).
# Please contact me to fix the PAM issue if you want to save this
# package from its fate.
net-misc/lsh

# Raúl Porcel <armin76@gentoo.org> (18 Feb 2008)
# Probably breaks a lot of stuff, needs testing
=net-wireless/wireless-tools-30_pre*

# Gunnar Wrobel <wrobel@gentoo.org> (14 Feb 2008)
# Outdated package. See
# https://bugs.gentoo.org/show_bug.cgi?id=209030
www-apps/disc-cover

# Gunnar Wrobel <wrobel@gentoo.org> (14 Feb 2008)
# Broken and outdated package. See
# https://bugs.gentoo.org/show_bug.cgi?id=209029
www-apps/bugs-bug-genie

# Samuli Suominen <drac@gentoo.org> (12 Feb 2008)
# If 0.20 fails with hardmasked ffmpeg snapshot,
# try this instead.
~media-video/ffmpeg2theora-9999

# Christian Hoffmann <hoffie@gentoo.o> (11 Feb 2008)
# Masked because of random (maybe MySQL-related) segfaults, bug #209606
=dev-lang/php-5.2.5_p20080206

# Samuli Suominen <drac@gentoo.org> (10 Feb 2008)
# Broken wrt bugs #167638 and #209416. Upstream
# gone. Masked for removal in 30 days.
media-video/freej

# Wulf C. Krueger <philantrop@gentoo.org> (09 Feb 2008)
# Masked for removal in 30 days. 
# nvemftp's last release was in 2003, we've already had
# to patch it to even compile and now it doesn't even
# work anymore. Upstream is dead. cf. bug 209412.
net-ftp/nvemftp

# Marius Mauch <genone@gentoo.org> (09 Feb 2008)
# First public test releases of portage-2.2
>=sys-apps/portage-2.2_alpha

# Raúl Porcel <armin76@gentoo.org> (08 Feb 2008)
# Removal for treecleaners in 60 days
# Will be removed 08 Apr 2008
# Bug 205482, many bugs, dead upstream
net-ftp/swiftfxp

# Bernard Cafarelli <voyageur@gentoo.org> (07 Feb 2008)
# Masked for removal in 30 days. Does not work, needs patching,
# dead upstream, last release in 2002 (bug #150670)
x11-misc/ASFiles

# Luca Barbato <lu_zero@gentoo.org> (06 Feb 2008)
# temp mask pending test
=media-video/ffmpeg-0.4.9_p20080206

# Sebastien Fabbro <bicatali@gentoo.org> (05 Feb 2008)
# sci-libs/metis-5.* still experimental
>=sci-libs/metis-4.99

# Wulf C. Krueger <philantrop@gentoo.org> (04 Feb 2008)
# This package has been pretty much broken since 3.5.6.
# cf. bug 164027
>=kde-base/pykde-3.5.6

# Raúl Porcel <armin76@gentoo.org> (04 Feb 2008)
# Masked for removal in 60 days. That is, 04 Apr 2008
# For treecleaners,
# doesn't compile, last release in 2002,
# bug #152044
dev-libs/tinyq
# Various bugs, upstream dead, gtk-1, last release 2003
# bug 205481
net-ftp/gtkfxp
# Last release 2003, unfixable, doesn't compile
# bug #193415
app-admin/ctcs
# Doesn't compile, useless, bug #152493
net-libs/libhttpd-persistent

# Michael Sterrett <mr_bones_@gentoo.org> (02 Feb 2008)
# needs a version of media-sound/audacious which is no
# longer in the tree.
app-mobilephone/bemused

# Ulrich Mueller <ulm@gentoo.org> (01 Feb 2008)
# Live CVS ebuild of Emacs 22 base branch
~app-editors/emacs-cvs-22.1.9999
# Emacs 23 virtual, unmask after Emacs 23 release
>=virtual/emacs-23

# Tony Vroon <chainsaw@gentoo.org> (29 Jan 2008)
# No longer maintained upstream, only available for
# the now obsolete 1.3 branch of Audacious.
# Removal: March 2008
media-plugins/audacious-plugins-ugly

# 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

# Piotr Jaroszyński <peper@gentoo.org> (27 Jan 2008)
# opensync 0.3x is still experimental
>=app-pda/libopensync-0.35
>=app-pda/msynctool-0.35
>=app-pda/libopensync-plugin-evolution2-0.35
>=app-pda/libopensync-plugin-file-0.35
>=app-pda/libopensync-plugin-gnokii-0.35
>=app-pda/libopensync-plugin-google-calendar-0.35
>=app-pda/libopensync-plugin-gpe-0.35
>=app-pda/libopensync-plugin-irmc-0.35
>=app-pda/libopensync-plugin-kdepim-0.35
>=app-pda/libopensync-plugin-palm-0.35
>=app-pda/libopensync-plugin-python-0.35
>=app-pda/libopensync-plugin-syncml-0.35
>=app-pda/libopensync-plugin-vformat-0.35

# Benedikt Böhm <hollow@gentoo.org> (27 Jan 2008)
# Masked for testing; breaks subversion; #198753
=net-misc/neon-0.27.2

# Mike Frysinger <vapier@gentoo.org> (26 Jan 2008)
# Requires modular LSM support in the kernel which was
# removed in linux-2.6.24 #207421
sys-apps/rlocate

# Michael Sterrett <mr_bones_@gentoo.org> (26 Jan 2008)
# Support library for old versions of syslog-ng
# No longer needed.  Removal in 30 days.
dev-libs/libol

# Rémi Cardona <remi@gentoo.org> (25 Jan 2008)
# Masked for removal, seems to have been broken for ages
x11-themes/gtk-engines-mist

# Krzysiek Pawlik <nelchael@gentoo.org> (25 Jan 2008)
# Masked for removal, please use tuxonice-sources.
sys-kernel/suspend2-sources
sys-apps/suspend2-userui

# 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

# Saleem Abdulrasool <compnerd@gentoo.org> (22 Jan 2008)
# Never was stabled, and will not work with future versions of HAL.  Remove when
# HAL 0.5.10 is stabled on all arches.
gnome-extra/hal-device-manager

# Krzysiek Pawlik <nelchael@gentoo.org> (21 Jan 2008)
# Does not build, broken JSP dependencies.
=dev-java/freemarker-2.3.11

# Ingmar Vanhassel <ingmar@gentoo.org> (16 Jan 2008)
# Mask KDE 4.0.0 for testing. This release of KDE 4 will not be unmasked.
# KDE 4 guide: http://www.gentoo.org/proj/en/desktop/kde/kde4.xml
=kde-base/amor-4*
=kde-base/ark-4*
=kde-base/blinken-4*
=kde-base/bovo-4*
=kde-base/cervisia-4*
=kde-base/dolphin-4*
=kde-base/drkonqi-4*
=kde-base/gwenview-4*
=kde-base/juk-4*
=kde-base/kalgebra-4*
=kde-base/kalzium-4*
=kde-base/kamera-4*
=kde-base/kanagram-4*
=kde-base/kappfinder-4*
=kde-base/kapptemplate-4*
=kde-base/kate-4*
=kde-base/katomic-4*
=kde-base/kbattleship-4*
=kde-base/kblackbox-4*
=kde-base/kbounce-4*
=kde-base/kbruch-4*
=kde-base/kbugbuster-4*
=kde-base/kcachegrind-4*
=kde-base/kcalc-4*
=kde-base/kcharselect-4*
=kde-base/kcheckpass-4*
=kde-base/kcminit-4*
=kde-base/kcmshell-4*
=kde-base/kcolorchooser-4*
=kde-base/kcontrol-4*
=kde-base/kcron-4*
=kde-base/kde-4*
=kde-base/kdeaccessibility-4*
=kde-base/kdeaccessibility-colorschemes-4*
=kde-base/kdeaccessibility-iconthemes-4*
=kde-base/kdeaccessibility-meta-4*
=kde-base/kdeaccounts-plugin-4*
=kde-base/kdeadmin-4*
=kde-base/kdeadmin-meta-4*
=kde-base/kdeartwork-4*
=kde-base/kdeartwork-colorschemes-4*
=kde-base/kdeartwork-emoticons-4*
=kde-base/kdeartwork-icewm-themes-4*
=kde-base/kdeartwork-iconthemes-4*
=kde-base/kdeartwork-kscreensaver-4*
=kde-base/kdeartwork-kworldclock-4*
=kde-base/kdeartwork-meta-4*
=kde-base/kdeartwork-sounds-4*
=kde-base/kdeartwork-styles-4*
=kde-base/kdeartwork-wallpapers-4*
=kde-base/kdebase-4*
=kde-base/kdebase-data-4*
=kde-base/kdebase-kioslaves-4*
=kde-base/kdebase-meta-4*
=kde-base/kdebase-startkde-4*
=kde-base/kdebugdialog-4*
=kde-base/kdeedu-4*
=kde-base/kdeedu-meta-4*
=kde-base/kdegames-4*
=kde-base/kdegames-meta-4*
=kde-base/kdegraphics-4*
=kde-base/kdegraphics-meta-4*
=kde-base/kde-l10n-4*
=kde-base/kdelibs-4*
=kde-base/kde-menu-4*
=kde-base/kde-menu-icons-4*
=kde-base/kde-meta-4*
=kde-base/kdemultimedia-4*
=kde-base/kdemultimedia-kioslaves-4*
=kde-base/kdemultimedia-meta-4*
=kde-base/kdenetwork-4*
=kde-base/kdenetwork-filesharing-4*
=kde-base/kdenetwork-meta-4*
=kde-base/kdepasswd-4*
=kde-base/kdepimlibs-4*
=kde-base/kdesdk-4*
=kde-base/kdesdk-kioslaves-4*
=kde-base/kdesdk-meta-4*
=kde-base/kdesdk-misc-4*
=kde-base/kdesdk-scripts-4*
=kde-base/kdessh-4*
=kde-base/kdesu-4*
=kde-base/kdetoys-4*
=kde-base/kdetoys-meta-4*
=kde-base/kdeutils-4*
=kde-base/kdeutils-meta-4*
=kde-base/kde-wallpapers-4*
=kde-base/kdewebdev-4*
=kde-base/kdewebdev-meta-4*
=kde-base/kdf-4*
=kde-base/kdialog-4*
=kde-base/kdm-4*
=kde-base/kdnssd-4*
=kde-base/keditbookmarks-4*
=kde-base/kfile-4*
=kde-base/kfilereplace-4*
=kde-base/kfind-4*
=kde-base/kfloppy-4*
=kde-base/kfourinline-4*
=kde-base/kgamma-4*
=kde-base/kgeography-4*
=kde-base/kget-4*
=kde-base/kgoldrunner-4*
=kde-base/kgpg-4*
=kde-base/khangman-4*
=kde-base/khelpcenter-4*
=kde-base/khotkeys-4*
=kde-base/kig-4*
=kde-base/kimagemapeditor-4*
=kde-base/kinfocenter-4*
=kde-base/kioclient-4*
=kde-base/kiriki-4*
=kde-base/kiten-4*
=kde-base/kjots-4*
=kde-base/kjumpingcube-4*
=kde-base/klettres-4*
=kde-base/klines-4*
=kde-base/klinkstatus-4*
=kde-base/klipper-4*
=kde-base/kmag-4*
=kde-base/kmahjongg-4*
=kde-base/kmenuedit-4*
=kde-base/kmilo-4*
=kde-base/kmimetypefinder-4*
=kde-base/kmines-4*
=kde-base/kmix-4*
=kde-base/kmousetool-4*
=kde-base/kmouth-4*
=kde-base/kmplot-4*
=kde-base/knetattach-4*
=kde-base/knetwalk-4*
=kde-base/knetworkconf-4*
=kde-base/knewsticker-4*
=kde-base/knewstuff-4*
=kde-base/knotify-4*
=kde-base/kolf-4*
=kde-base/kolourpaint-4*
=kde-base/kompare-4*
=kde-base/konqueror-4*
=kde-base/konquest-4*
=kde-base/konsole-4*
=kde-base/kopete-4*
=kde-base/kpasswdserver-4*
=kde-base/kpat-4*
=kde-base/kpercentage-4*
=kde-base/kppp-4*
=kde-base/kquitapp-4*
=kde-base/krdc-4*
=kde-base/kreadconfig-4*
=kde-base/kreversi-4*
=kde-base/krfb-4*
=kde-base/kruler-4*
=kde-base/krunner-4*
=kde-base/ksame-4*
=kde-base/kscd-4*
=kde-base/kscreensaver-4*
=kde-base/kshisen-4*
=kde-base/ksmserver-4*
=kde-base/ksnapshot-4*
=kde-base/kspaceduel-4*
=kde-base/ksplash-4*
=kde-base/ksquares-4*
=kde-base/kstars-4*
=kde-base/kstart-4*
=kde-base/kstartupconfig-4*
=kde-base/kstyles-4*
=kde-base/ksudoku-4*
=kde-base/ksysguard-4*
=kde-base/ksystraycmd-4*
=kde-base/kteatime-4*
=kde-base/ktimer-4*
=kde-base/ktimezoned-4*
=kde-base/ktip-4*
=kde-base/ktouch-4*
=kde-base/ktraderclient-4*
=kde-base/kttsd-4*
=kde-base/ktuberling-4*
=kde-base/kturtle-4*
=kde-base/ktux-4*
=kde-base/kuiserver-4*
=kde-base/kuiviewer-4*
=kde-base/kurifilter-plugins-4*
=kde-base/kuser-4*
=kde-base/kwallet-4*
=kde-base/kweather-4*
=kde-base/kwin-4*
=kde-base/kwordquiz-4*
=kde-base/kworldclock-4*
=kde-base/kwrite-4*
=kde-base/libkcddb-4*
=kde-base/libkcompactdisc-4*
=kde-base/libkdeedu-4*
=kde-base/libkdegames-4*
=kde-base/libkmahjongg-4*
=kde-base/libkonq-4*
=kde-base/libkscan-4*
=kde-base/libkworkspace-4*
=kde-base/libplasma-4*
=kde-base/libtaskmanager-4*
=kde-base/lilo-config-4*
=kde-base/lskat-4*
=kde-base/marble-4*
=kde-base/nepomuk-4*
=kde-base/nsplugins-4*
=kde-base/okular-4*
=kde-base/parley-4*
=kde-base/phonon-4*
=kde-base/plasma-4*
=kde-base/poxml-4*
~kde-base/qimageblitz-0.0.4
=kde-base/secpolicy-4*
=kde-base/solid-4*
=kde-base/soliduiserver-4*
=kde-base/strigi-analyzer-4*
=kde-base/superkaramba-4*
=kde-base/svgpart-4*
=kde-base/sweeper-4*
=kde-base/systemsettings-4*
=kde-base/umbrello-4*
=kde-base/dragonplayer-2*
=kde-misc/yakuake-2.9*

# Bo Ørsted Andresen <zlin@gentoo.org> (11 Feb 2008)
# Mask KDE 4.0.1 extragear apps for testing.
# KDE 4 guide: http://www.gentoo.org/proj/en/desktop/kde/kde4.xml
=kde-base/kcoloredit-4*
=kde-base/kfax-4*
=kde-base/kiconedit-4*
=kde-misc/extragear-plasma-4*
=kde-misc/kgrab-0.1*
=kde-misc/kgraphviewer-2*
=net-p2p/kmldonkey-2*

# 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

# Alon Bar-Lev <alonbl@gentoo.org> (11 Jan 2008)
# Does not really work, bug#204662
>=app-crypt/gnupg-2.0.8

# MATSUU Takuto <matsuu@gentoo.org> (10 Jan 2008)
# Masked for removal
app-i18n/scim-cvs

# Bernard Cafarelli <voyageur@gentoo.org> (09 Jan 2008)
# Mask unstable gnustep and packages depending on it
>=gnustep-base/gnustep-back-art-0.13.0
>=gnustep-base/gnustep-back-cairo-0.13.0
>=gnustep-base/gnustep-back-xlib-0.13.0
>=gnustep-base/gnustep-base-1.15.1
>=gnustep-base/gnustep-gui-0.13.0
>=virtual/gnustep-back-0.13.0
>=gnustep-apps/gorm-1.2.2
>=gnustep-apps/price-0.8.2
>=gnustep-apps/simpleagenda-0.33

# Carsten Lohrke <carlo@gentoo.org> (09 Jan 2008)
# Masked for removal
app-admin/modlogan
dev-util/fenris

# Carsten Lohrke <carlo@gentoo.org> (07 Jan 2008)
# Masked for removal
app-emulation/basiliskII
app-admin/hpasm

# Ali Polatel <hawking@gentoo.org> (07 Jan 2008)
# Old, unmaintained version. Will be removed in 30 days.
# still used in the tree.  address the broken deps before remasking
#=dev-lang/python-2.3*

# Sebastien Fabbro <bicatali@gentoo.org> (06 Jan 2008)
# Broken in firing up. See bug #204621]
=sci-physics/lightspeed-1.2a-r1

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

# Markus Ullmann <jokey@gentoo.org> (06 Jan 2008)
# Broken on compilation, pending removal
# see bug 192627 for details
# -r4 is fixed, when it goes stable this should be removed from the tree
=net-analyzer/driftnet-0.1.6-r3

# Julien Allanos <dju@gentoo.org> (06 Jan 2008)
# Masked for testing
>=www-apps/trac-0.11_beta1

# Luca Barbato <lu_zero@gentoo.org> (05 Jan 2008)
# Security issues spotted
# Superceeded by feng and libnemesi
# Pending removal
media-video/fenice
media-video/nemesi

# Alin Năstac <mrness@gentoo.org> (03 Jan 2008)
# The project has been closed; will be removed in 30 days
net-dialup/gprs-easy-connect

# Lennart Kolmodin <kolmodin@gentoo.org> (01 Jan 2008)
# hs-plugins only works with the outdated GHC 6.4.2 compiler,
# and has not been updated upstream for two years.
# Pending removal 01 Feb 2008
dev-haskell/hs-plugins

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

# MATSUU Takuto <matsuu@gentoo.org> (27 Dec 2007)
# Upstream gone, nothing depends on this.
# pending removal. Remove in 30 days
# https://bugs.gentoo.org/show_bug.cgi?id=177912
dev-tcltk/Tk_Theme

# 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

# Carsten Lohrke <carlo@gentoo.org> (23 Dec 2007)
# Abandonware. Masked for removal.
net-misc/fsh
dev-lang/entity

# Timothy Redaelli <drizzt@gentoo.org> (23 Dec 2007)
# Masked for testing
>media-sound/mumble-1.0.0
>media-sound/murmur-1.0.0

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

# Marijn Schouten <hkBst@gentoo.org> (20 Dec 2007)
# Broken, bug 202880
>=dev-scheme/gambit-4.1.1

# Christian Faulhammer <opfer@gentoo.org> (updated 04 Mar 2008)
# Timo Gurr <tgurr@gentoo.org> (17 Mar 2008) [updated to add 0.3.1]
# Needs masked qt-4.4
=app-admin/keepassx-0.3.0a-r20
=app-admin/keepassx-0.3.1-r20

# Ingmar Vanhassel <ingmar@gentoo.org> (10 Mar 2008)
# Masked for testing, various dependencies still need to be updated...
# Note that this version of Qt4 makes KDE 4.0.x roughly unusable.
=x11-libs/qt-4.4*
=x11-libs/qt-assistant-4.4*
=x11-libs/qt-core-4.4*
=x11-libs/qt-gui-4.4*
=x11-libs/qt-script-4.4*
=x11-libs/qt-test-4.4*
=x11-libs/qt-svg-4.4*
=x11-libs/qt-webkit-4.4*
=x11-libs/qt-phonon-4.4*
=x11-libs/qt-qt3support-4.4*
=x11-libs/qt-dbus-4.4*
=x11-libs/qt-opengl-4.4*
=x11-libs/qt-sql-4.4*
=x11-libs/qt-xmlpatterns-4.4*

# Jeroen Roovers <jer@gentoo.org> (17 Dec 2007)
# Masked pending removal - see bug #202391
# Please switch to sys-kernel/gentoo-sources
sys-kernel/hppa-sources

# Duncan Coutts <dcoutts@gentoo.org> (14 Dec 2007)
# the 0.9x regex packages are not actually the latest stable versions
# they're experimental versions and they do not yet work with ghc-6.8
# You're welcome to unmask if you want to use them but let's not confuse
# everone else with thinking these are the 'best' versions of the packages.
>=dev-haskell/regex-base-0.90
>=dev-haskell/regex-posix-0.90
>=dev-haskell/regex-compat-0.90

# Doug Klima <cardoe@gentoo.org> (13 Dec 2007)
# older then current releases and should be removed
=sys-auth/pam_krb5-20030601-r1

# 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> (12 Dec 2007)
# P.mask snapshots
=dev-libs/nss-3.12_alpha*
=dev-libs/nss-3.12_beta*
=dev-libs/nspr-4.7.1_beta*

# Marijn Schouten <hkBst@gentoo.org> (07 Dec 2007)
# Guile that installs to prefix=/ for einit.
=dev-scheme/guile-1.8.3-r25

# Raúl Porcel <armin76@gentoo.org> (04 Dec 2007)
# Mozilla stopped supporting 1.5 series in October 2007
# Will be removed when mips stabilizes 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

# Jeffrey Gardner <je_fro@gentoo.org> (26 Nov 2007)
# Masked as new version fixes multiple issues.
=x11-drivers/ati-drivers-8.42.3

# Samuli Suominen <drac@gentoo.org> (25 Nov 2007)
# sci-electronics/gwave segmentation faults with this.
# this version builds on ~amd64. also see bug 200702.
=dev-scheme/guile-gnome-platform-2.15.95*

# Saleem Abdulrasool <compnerd@gentoo.org> (23 Nov 2007)
# These might break automounting, so keep them masked for now.
>=sys-auth/policykit-0.6
>=gnome-base/gnome-mount-0.7
>=gnome-extra/policykit-gnome-0.6

# Raúl Porcel <armin76@gentoo.org> (22 Nov 2007)
# Needs a lot of testing
=www-client/mozilla-firefox-bin-3.0_beta*

# Marijn Schouten <hkBst@gentoo.org> (21 Nov 2007)
# masked for security bug 198979
<=dev-scheme/chicken-2.6

# Tiziano Müller <dev-zero@gentoo.org> (18 Nov 2007)
# There is a serious regression (bug #199450) due to
# an incomplete fix for the non-remote vulnerability
# CVE-2007-4572
=net-fs/samba-3.0.27

# Doug Klima <cardoe@gentoo.org> (16 Nov 2007)
# new heimdal version that's not too tested
# anyone looking to take over maintaining heimdal
# from seemant would make both of us happy
=app-crypt/heimdal-1.0.1

# Jeroen Roovers <jer@gentoo.org> (13 Nov 2007)
# These are weeklies, unlike www-client/opera-9.50_beta1, and they appear to be
# much less stable, so I am masking them for now.
>=www-client/opera-9.50_beta2

# Robin H. Johnson <robbat2@gentoo.org> (02 Nov 2007)
# Brokeness in these
=mail-mta/nullmailer-1.03*

# Hanno Boeck <hanno@gentoo.org> (11 Nov 2007)
# Remaining beryl-related packages, beryl has been removed
x11-wm/heliodor
x11-wm/aquamarine
<=x11-wm/emerald-0.2.1
<=x11-themes/emerald-themes-0.2.1

# Fabian Groffen <grobian@gentoo.org> (06 Nov 2007)
# Needs some thorough testing, feel welcome to try it out
dev-db/monetdb

# 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

# Steve Dibb <beandog@gentoo.org> (01 Nov 2007)
# Forked version of libdvdnav provided by upstream MPlayer
# May work for you.  May not.
>=media-libs/libdvdnav-4.1.1

# Doug Goldstein <cardoe@gentoo.org> (01 Nov 2007)
# beta NVIDIA drivers, not supported. bug #196679
~x11-drivers/nvidia-drivers-100.14.23

# Diego Pettenò <flameeyes@gentoo.org> (26 Oct 2007)
# Still-experimental support for dynamic service dependencies
# needs baselayout-2, wait masked here till that's available.
# Note: the init script might change without warning while
# the ebuild is masked.
=media-sound/pulseaudio-0.9.9-r2
# When 0.9.10 is released this has to be removed.
>=media-sound/pulseaudio-0.9.9-r50

# Christian Hoffmann <hoffie@gentoo.org> (19 Oct 2007)
# masked for security reasons, bug 189172, removal scheduled for beginning of
# 2008
=dev-lang/php-4*
dev-php4/creole
dev-php4/pecl-yaz
dev-php4/pecl-crack
dev-php4/jargon
dev-php4/pecl-mailparse
dev-php4/jpgraph
dev-php4/pecl-radius
dev-php4/pecl-json
dev-php4/pecl-fileinfo
dev-php4/syck-php-bindings
dev-php4/eaccelerator
dev-php4/pecl-memcache
dev-php4/phpdbg
dev-php4/ZendOptimizer
dev-php4/php-java-bridge
dev-php4/pecl-translit
dev-php4/pecl-apc
dev-php4/ffmpeg-php
dev-php4/adodb-ext
dev-php4/pecl-tidy
dev-php4/pecl-imagick
dev-php4/xdebug
dev-php4/pecl-id3
dev-php4/suhosin
dev-php4/pecl-ps
dev-php4/xcache
dev-php4/pecl-zip
dev-php4/phpunit
dev-php4/pecl-pdflib
dev-php4/pecl-sqlite
dev-php4/pecl-http
# only >=1.0 seems to be php-5 compatible
<net-nds/phpldapadmin-1.0
# incompatible with php-5 as well, bug 194894
<=www-apps/knowledgetree-3.4.3

# Eldad Zack <eldadz@gentoo.org> (16 Oct 2007)
# ardour-2.1 using syslibs, see bug #194437
=media-sound/ardour-2.1

# 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

# Michele Noberasco <s4t4n@gentoo.org) (06 Oct 2007)
# Masked pending removal. This package has conflicting
# files with net-wireless/irda-utils, which also provides
# a more up-to-date implementation of the same util.
app-laptop/smcinit

# Sébastien Fabbro <bicatali@gentoo.org> (05 Oct 2007)
# Masked. Still buggy with gsl-1.10 and fail many tests.
# Bug #194358. Downgrade to pygsl-0.9.0 for a more stable version.
=dev-python/pygsl-0.9.1

# Chris Gianelloni <wolf31o2@gentoo.org> (05 Oct 2007)
# This is masked for removal in 30 days due to security bug #194609 and no
# newer version of the package being available.  Sorry, folks.
games-fps/americas-army

# Marijn Schouten <hkBst@gentoo.org> (05 Oct 2007)
# masked for removal, broken live ebuild with several open bugs
# gcl to follow soon as it is unmaintained with lots of open bugs
dev-lisp/gcl-cvs

# Peter Volkov <pva@gentoo.org> (28 Sep 2007)
# masked for testing
>=app-doc/kchmviewer-4.0_beta1

# Paul Varner <fuzzyray@gentoo.org> (27 Sep 2007)
# revdep-rebuild is broken in this release
=app-portage/gentoolkit-0.2.4_rc1

# Mike Auty <ikelos@gentoo.org> (20 Sep 2007)
# Vmware security masking (bug 193196)
# Packages will be masked once alternatives are available in the tree
=app-emulation/vmware-server-1.0.3.44356
=app-emulation/vmware-server-console-1.0.3.44356
#=app-emulation/vmware-workstation-4.5.3.19414-r7
#=app-emulation/vmware-workstation-5.5.4.44386
#=app-emulation/vmware-player-1.0.2.29634
#=app-emulation/vmware-player-1.0.3.34682-r1

# Benedikt Boehm <hollow@gentoo.org> (08 Sep 2007)
# breaks apr and openldap
=sys-libs/db-4.6*

# Markus Ullmann <jokey@gentoo.org> (05 Sept 2007)
# masked for testing
>=net-analyzer/snort-2.7

# Doug Goldstein <cardoe@gentoo.org> (30 Aug 2007)
# upstream has declared this module dead and broken
# it is reworked in trunk but will not be moved to 0.20
# <gbee> not in a fit state for a backport, suppose in a couple or weeks, maybe less it might be usable enough that packagers could backport it themselves - not sure Chutt would want it backported it to -fixes though
# <gbee> assuming you are talking about mythweather and not some other fix that I was supposed to be backporting
# <Cardoe> yes, mythweather
# <Chutt> that's too big for a backport
# if someone wishes to backport the changes, feel free to open a bug
<media-plugins/mythweather-0.21_pre10000

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

# Brent J. Baude <ranger@gentoo.org> (21 Aug 2007)
# Masking out librtas-2.0.0 in favor of new version with smaller version number
# to force an upgrade.
=sys-libs/librtas-2.0.0

# Carsten Lohrke <carlo@gentoo.org> (11 Aug 2007)
# Masked since KDE 3.5.7 doesn't come with KSync anymore.
app-pda/syncekonnector

# Tristan Heaven <nyhm@gentoo.org> (11 Aug 2007)
# Masked until bug #178110 can be resolved properly.
media-libs/freeimage

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

# Marijn Schouten <hkBst@gentoo.org> (26 Jul 2007)
# problems starting drscheme (segfault)
=dev-scheme/drscheme-370.6_p20070725

# Mike Frysinger <vapier@gentoo.org> (26 Jul 2007)
# Unsupported upstream; doesnt build with recent tools
dev-lang/ezm3

# Ryan Hill <dirtyepic@gentoo.org> (23 Jul 2007)
# duplicated by media-fonts/artwiz-aleczapka-en.  use that instead.
# Bug #186400
media-fonts/artwiz-fonts

# Wulf C. Krueger <philantrop@gentoo.org> (21 Jul 2007)
# Broken by upstream. cf. bug 173972.
=media-video/konverter-0.93

# Jim Ramsay <lack@gentoo.org> (19 Jul 2007)
# netscape-flash-9.0.48.0-r1 addresses Gentoo bug #185141 by using the versioned
# RPM distributed by Adobe instead of their unversioned tar.gz.
# However, we must still mask the original ebuild, and any previous versions.
<=net-www/netscape-flash-9.0.48.0

# Raúl Porcel <armin76@gentoo.org> (18 Jul 2007)
# Mask rc
=net-p2p/qbittorrent-1.0.0_rc*

# 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

# Saleem Abdulrasool <compnerd@gentoo.org> (10 Jul 2007)
# Masking for testing (still not a drop in replacement for ipw3945)
net-wireless/iwlwifi

# Sven Wegener <swegener@gentoo.org> (07 Jul 2007)
# Development releases
=dev-db/opendbx-1.3*

# Krzysiek Pawlik <nelchael@gentoo.org> (01 Jul 2007)
# Masked for security bug #175670.
# Waiting for upstream to provide a fixed version.
# If the fix won't be available the package will be removed.
x11-misc/xnview

# Petteri Räty <betelgeuse@gentoo.org> (01 Jul 2007)
# Upstream describes this as:
# Buggy and unmaintained D-BUS service browser for KDE.
# Seems to segmentation fault on me on startup with current
# dbus. Removal in 30 days unless someone else takes this
# package and fixes the problems.
kde-misc/kdbus

# Roy Marples <uberlord@gentoo.org> (29 Jun 2007)
# Masked due to several connectivity issues.
>=net-wireless/wpa_supplicant-0.6.0

# Wulf C. Krueger <philantrop@gentoo.org> (26 Jun 2007)
# Broken in several ways, see bug 171493 for details.
# The author has abandoned it.
app-cdr/konqburn

# Jurek Bartuszek <jurek@gentoo.org> (23 Jun 2007)
# Beta versions, testing required
=app-emulation/ies4linux-2.5*

# Peter Weller <welp@gentoo.org> (16 Jun 2007)
# Masked wrt bug #180577
dev-util/larch

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

# Roy Marples <uberlord@gentoo.org> (31 May 2007)
# Masked, pending removal. Remove in 30 days
# Use dash instead
app-shells/ash

# Seemant Kulleen <seemant@gentoo.org> (23 May 2007)
# Masked because 1.2.1 because it is broken
=net-wireless/ipw3945-1.2.1

# Marijn Schouten <hkBst@gentoo.org> (14 May 2007)
# development version
=media-sound/lilypond-2.11*

# 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

# Mike Frysinger <vapier@gentoo.org> (5 May 2007)
# Unsupported upstream; doesnt build with current cm3
dev-util/cvsup

# 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

# Bryan Stine <battousai@gentoo.org> (26 Apr 2007)
# Masked until it works with current baselayout and
# application locations.
app-admin/bastille

# 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

# Jeffrey Gardner <je_fro@gentoo.org> (10 Apr 2007)
# Initial import of experimental folding@home client.
# Currently it's only for brave amd64 users.
=sci-biology/foldingathome-5.91_beta

# 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

# Marcelo Goes <vanquirius@gentoo.org> (1 Apr 2007)
# Masked for testing
# See bug 141617 for more information
>=media-gfx/hugin-0.7_beta4

# Alexis Ballier <aballier@gentoo.org> (30 Mar 2007)
# Portaudio v19 : api changes
>=media-libs/portaudio-19_pre061121

# 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

# Steve Dibb <beandog@gentoo.org> (12 Mar 2007)
# needs testing
>=media-video/transcode-1.1.0_alpha4

# Joe Sapp <nixphoeni@gentoo.org> (09 Mar 2007)
# Masking until I can verify this works with a more recent
# version of gnome-extra/gdesklets-core.  I blindly removed
# the version it depended on...
x11-plugins/desklet-hypertail

# 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
<=dev-db/mysql-3.23.58-r1

# Stefan Cornelius <dercorny@gentoo.org> (2 Mar 2007)
# Masked wrt security bug #158958
www-servers/yaws

# Samuli Suominen <drac@gentoo.org> (1 Mar 2007)
# Multiple QA notices. Masked for testing. See bug 146443.
media-video/dxr3player

# Gustavo Felisberto <humpback@gentoo.org> (23 Feb 2007)
# Masked for remove from tree. Contact me if you need this
net-misc/ssh

# 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
<dev-tex/pgf-1.18
<dev-tex/xcolor-2.11
dev-tex/vntex

# 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

# Seemant Kulleen <seemant@gentoo.org> (02 Feb 2007)
# Masked because it causes breakages with guile-1.8 and gnucash-2.
# See Marijn's comment below
~dev-libs/g-wrap-1.9.7

# Leonardo Boshell <leonardop@gentoo.org> (26 Jan 2007)
# GNOME-DB 3.0 betas. For testing purposes only.
>=gnome-extra/libgda-1.3
>=gnome-extra/libgnomedb-1.3
dev-db/mergeant

# 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
~media-sound/alsa-lib-9999

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

# Sandro Bonazzola <sanchan@gentoo.org> (16 Jan 2007)
# Masked for testing
=app-arch/rpm-4.4.7-r3

# 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

# Roy Marples <uberlord@gentoo.org> (08 Jan 2007)
# Masked at the request of upstream, pending removal sometime Feb.
# CVS version is preferred - or use the legacy drivers.
=net-wireless/rt2x00-2.0.0_beta3

# 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

# Konstantin V. Arkhipov <voxus@gentoo.org> (22 Dec 2006)
# Stability issues on hardened systems: bugs #158217, #158664
~net-dns/bind-9.2.7
~net-dns/bind-tools-9.2.7
~net-dns/bind-9.3.3
~net-dns/bind-tools-9.3.3

# Timothy Redaelli <drizzt@gentoo.org> (28 Nov 2006)
# Masked for testing.
=media-libs/spandsp-0.0.3*

# Aron Griffis <agriffis@gentoo.org>
# Masked for testing new enablement via eselect
>app-shells/bash-completion-20060301

# Marcus D. Hanwell <cryos@gentoo.org> (03 Nov 2006)
# 5.5.6 does not work with all projects, please use 5.4 or >=5.8
=sci-misc/boinc-5.5.6

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

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

# Luca Longinotti <chtekk@gentoo.org> (29 Aug 2006)
# Masking media-libs/ming-0.3.0, breaks PHP compilation
=media-libs/ming-0.3.0

# 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

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

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

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

# 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

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

# 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> (24 May 2006)
# Masked for more testing, breaks with stealth mode.
=app-forensics/samhain-2.2.0

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

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

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

# 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

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

# 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)
# Robin H. Johnson <robbat2@gentoo.org> (18 Dec 2006) [updated to add 1.03]
# pending mailer-config
=mail-mta/nullmailer-1.00-r2
=mail-mta/nullmailer-1.02-r2
=mail-mta/nullmailer-1.03-r1

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

# 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
=dev-db/mysql-4.1.23_alpha20070101-r61

# 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

# 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

# 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/ssmtp-2.61-r30
>=mail-mta/esmtp-0.5.0-r2
=mail-mta/postfix-2.2.10-r1

# Masatomo Nakano <nakano@gentoo.org> (27 Feb 2005)
# Tihs package is conflict with postgresql at the moment
# and waiting on implementing virtual/postgresql.
dev-db/pgcluster

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

# <dragonheart@gentoo.org> (04 Dec 2004)
# Bug #70529 indicates problems with configuration file reading
~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*

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

# <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-strikeforce
games-fps/unreal-tournament-bonuspacks
games-fps/aaut

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