summaryrefslogtreecommitdiff
blob: a5ef4195e3c8663cfc14eafd16b483e219ab3049 (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
#####################################################################
# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.5321 2006/05/09 19:14:23 wolf31o2 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
##

# Chris Gianelloni <wolf31o2@gentoo.org> (09 May 2006)
# Masked for security reasons.  See bug #132377 for more informantion.
<games-fps/enemy-territory-2.60b
<games-fps/quake3-bin-1.32c
<games-fps/rtcw-1.41b
   
# Roy Marples <uberlord@gentoo.org> (09 May 2006)
# Masked for testing, although it works very well for me.
>=net-misc/openvpn-2.1_beta

# Chris Gianelloni <wolf31o2@gentoo.org> (08 May 2006)
# This is masked currently since I am working on it pretty heavily and don't
# want to inadvertently break anyone's installs.
app-emulation/vmware-workstation-tools

# Stefan Cornelius <dercorny@gentoo.org> (08 May 2006)
# Affected by a security issue, needs a new maintainer. Bug 118541
www-servers/pound

# 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

# Denis Dupeyron <calchan@gentoo.org> (06 May 2006)
# Masked pending removal - Upstream moved their repository from CVS to Subversion.
# Please use dev-embedded/sdcc-svn instead.
dev-embedded/sdcc-cvs

# Stefan Schweizer <genstef@gentoo.org> (05 May 2006)
# pre-release, does not yet print for me
=net-print/cups-1.2*

# George Shapovalov <george@gentoo.org> (02 May 2006)
# Initial support for Ada libs with new gnat compilers
# Work in orogress/initial testing
>=app-admin/eselect-gnat-0.7
>=dev-ada/booch_components-20051222

# Mark Loeser <halcy0n@gentoo.org> (30 Apr 2006)
# Masked pending removal - merged into xffm a while ago, so this is unmaintained
# bug #127166
net-misc/xfsamba

# Henrik Brix Andersen <brix@gentoo.org> (30 Apr 2006)
# Masked pending removal - please use the in-kernel version of the
# ibm-acpi module instead.
app-laptop/ibm-acpi

# Stuart Herbert <stuart@gentoo.org> (30 Apr 2006)
# Masked for testing; will unmask soon
=net-misc/nx-x11-1.5.0-r8
=net-misc/nx-x11-bin-1.5.0
=net-misc/nxclient-1.5.0-r4
=net-misc/nxcomp-1.5.0-r2
=net-misc/nxesd-1.5.0
=net-misc/nxproxy-1.5.0-r2
=net-misc/nxserver-business-1.5.0
=net-misc/nxserver-enterprise-1.5.0
=net-misc/nxserver-freenx-0.4.4-r1
=net-misc/nxserver-freenx-0.5.0.20060311-r1
=net-misc/nxserver-personal-1.5.0
=net-misc/nxssh-1.5.0-r2

# Stefan Cornelius <dercorny@gentoo.org> (30 Apr 2006)
# Masking due to security issue described in bug 129874
www-client/amaya

# Markus Dittrich <markusle@gentoo.org> (25 Apr 2006)
# further testing needed
=sci-mathematics/scilab-4.0

# Saleem Abdulrasool <compnerd@gentoo.org> (25 Apr 2006)
# Initial import
gnome-extra/gnome-power-manager

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

# Marcelo Goes <vanquirius@gentoo.org> (23 Apr 2006)
# Masked for removal
# net-analyzer/base should replace net-analyzer/acid
# For more information, please see bug 130980
net-analyzer/acid

# Stefan Schweizer <genstef@gentoo.org> (23 Apr 2005)
# Please use app-crypt/gnupg-1.9.* now
app-crypt/gpg-agent

# Luca Longinotti <chtekk@gentoo.org> (22 Apr 2006)
# Mask the old-style PHP packages as announced in
# http://marc.theaimsgroup.com/?l=gentoo-dev&m=114523997621139&w=2
# Please migrate to dev-lang/php ASAP, since the old-style PHP
# packages contain several security issues, HOWTO available at
# http://www.gentoo.org/proj/en/php/php-upgrading.xml
dev-php/mod_php
dev-php/php
dev-php/php-cgi
dev-php/PECL-apc
dev-php/PECL-crack
dev-php/PECL-Fileinfo
dev-php/PECL-imagick
dev-php/PECL-mailparse
dev-php/PECL-memcache
dev-php/PECL-pdflib
dev-php/PECL-ps
dev-php/PECL-sqlite
dev-php/PECL-zip
<=dev-php/adodb-4.65
dev-php/eaccelerator
dev-php/ioncube_loaders
dev-php/jpgraph
dev-php/memcached-client-php
dev-php/phpdbg
dev-php/php-gtk
dev-php/phpxmlrpc
dev-php/savant
<=dev-php/simpletest-1.0.0
<=dev-php/smarty-2.6.10
<=dev-php/smarty-docs-2.6.0
dev-php/sqlite-php
dev-php/xdebug
<=dev-php/PEAR-PEAR-1.3.5
dev-php/PEAR-Archive_Tar
dev-php/PEAR-Console_Getopt
dev-php/PEAR-XML_RPC
=dev-php/PEAR-Auth-1.2.3
=dev-php/PEAR-Auth_SASL-1.0.1
=dev-php/PEAR-Benchmark-1.2.2
=dev-php/PEAR-Cache-1.5.4
=dev-php/PEAR-Cache_Lite-1.5.2
=dev-php/PEAR-Console_Table-1.0.2
=dev-php/PEAR-Crypt_RC4-1.0.2
=dev-php/PEAR-Date-1.4.3
=dev-php/PEAR-DB-1.6.8
=dev-php/PEAR-DB-1.7.6
=dev-php/PEAR-DB_DataObject-1.7.15
=dev-php/PEAR-DB_Table-0.21.2
=dev-php/PEAR-File-1.0.3
=dev-php/PEAR-File_Find-0.2.0
=dev-php/PEAR-HTML_Common-1.2.1
=dev-php/PEAR-HTML_Javascript-1.1.0
=dev-php/PEAR-HTML_QuickForm-3.2.5
=dev-php/PEAR-HTML_Select_Common-1.1-r1
=dev-php/PEAR-HTML_Table-1.5
=dev-php/PEAR-HTML_Table_Matrix-1.0.7
=dev-php/PEAR-HTML_Template_Flexy-0.6.3
=dev-php/PEAR-HTML_Template_Flexy-1.2.1
=dev-php/PEAR-HTML_Template_IT-1.1
=dev-php/PEAR-HTML_Template_Sigma-1.0.2
=dev-php/PEAR-HTML_Template_Sigma-1.1.2
=dev-php/PEAR-HTML_TreeMenu-1.2.0
=dev-php/PEAR-HTTP-1.3.4
=dev-php/PEAR-HTTP_Request-1.2.4
=dev-php/PEAR-HTTP_WebDAV_Server-0.99.1
=dev-php/PEAR-I18N-0.8.6
=dev-php/PEAR-I18N-0.8.6-r1
=dev-php/PEAR-Image_IPTC-1.0.2
=dev-php/PEAR-Log-1.8.7
=dev-php/PEAR-Mail-1.1.4
=dev-php/PEAR-Mail-1.1.6
=dev-php/PEAR-Mail_Mime-1.2.1-r1
=dev-php/PEAR-Mail_Mime-1.3.0
=dev-php/PEAR-Mail_Mime-1.3.1
=dev-php/PEAR-Math_Stats-0.9.0_beta3
=dev-php/PEAR-MDB-1.3.0
=dev-php/PEAR-Net_CheckIP-1.1
=dev-php/PEAR-Net_DIME-0.3
=dev-php/PEAR-Net_DNS-0.03
=dev-php/PEAR-Net_DNSBL-1.0.0
=dev-php/PEAR-Net_IMAP-1.0.3
=dev-php/PEAR-Net_LMTP-1.0.1
=dev-php/PEAR-Net_POP3-1.3.6
=dev-php/PEAR-Net_Server-0.12.0
=dev-php/PEAR-Net_Sieve-1.1.1
=dev-php/PEAR-Net_SmartIRC-0.5.5_p1
=dev-php/PEAR-Net_SMTP-1.2.6
=dev-php/PEAR-Net_Socket-1.0.5
=dev-php/PEAR-Net_Socket-1.0.6
=dev-php/PEAR-Net_URL-1.0.14
=dev-php/PEAR-Net_UserAgent_Detect-2.1.0
=dev-php/PEAR-Numbers_Words-0.13.1
=dev-php/PEAR-OLE-0.5
=dev-php/PEAR-Pager-2.3.3
=dev-php/PEAR-PEAR_Info-1.5.2
=dev-php/PEAR-PhpDocumentor-1.2.3
=dev-php/PEAR-PhpDocumentor-1.3.0_rc3
=dev-php/PEAR-PHPUnit-1.3.0
=dev-php/PEAR-Services_Weather-1.3.1
=dev-php/PEAR-Services_Weather-1.3.2
=dev-php/PEAR-SOAP-0.8.1
=dev-php/PEAR-Spreadsheet_Excel_Writer-0.7
=dev-php/PEAR-Spreadsheet_Excel_Writer-0.8
=dev-php/PEAR-Structures_DataGrid-0.6.2
=dev-php/PEAR-System_Command-1.0.1
=dev-php/PEAR-System_Command-1.0.2
=dev-php/PEAR-Text_Diff-0.1.1
=dev-php/PEAR-Text_Password-1.0
=dev-php/PEAR-Text_Wiki-0.20.1
=dev-php/PEAR-Text_Wiki-1.0.0
=dev-php/PEAR-Tree-0.2.4
=dev-php/PEAR-Validate-0.5.0
=dev-php/PEAR-VersionControl_SVN-0.3.0_alpha1
=dev-php/PEAR-XML_Beautifier-1.1
=dev-php/PEAR-XML_Parser-1.2.4
=dev-php/PEAR-XML_RSS-0.9.2
=dev-php/PEAR-XML_Serializer-0.15.0
=dev-php/PEAR-XML_Tree-1.1-r1
=dev-php/PEAR-XML_Tree-2.0.0_rc2
=dev-php/PEAR-XML_Util-1.1.1
=dev-php4/PEAR-XML_CSSML-1.1-r2
=dev-php4/PEAR-XML_XPath-1.2-r1
=dev-php4/PEAR-XML_XPath-1.2.1

# Marcelo Goes <vanquirius@gentoo.org> (21 Apr 2006)
# utf8 patch remains to be ported
=www-client/links-2.1_pre21

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

# Diego Pettenò <flameeyes@gentoo.org> (21 Apr 2006)
# Working on this, it's in a very fluid state
=sys-libs/pam-0.99*

# Sven Wegener <swegener@gentoo.org> (20 Apr 2006)
# Needs >=libgnome-2.13
>=net-irc/xchat-gnome-0.11

# 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

# Marien Zwart <marienz@gentoo.org> (18 Apr 2006)
# Masked for testing.
=dev-util/bzr-0.8_rc1

# Diego Pettenò <flameeyes@gentoo.org> (18 Apr 2006)
# Masked because of open bugs and no maintainer available with hardware
# Pending removal on 18-05-2006
media-sound/nforce-audio

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

# Michael Stewart <vericgar@gentoo.org> (18 Apr 2006)
# These packages all old-style apache, which is no longer supported.
# See http://www.gentoo.org/doc/en/apache-upgrading.xml
# These will be removed from the tree at some point in the future
# Will be masked when bug 128189 is taken care of.
#=net-www/mod_auth_kerb-4.11
#=net-www/mod_auth_kerb-4.11-r1

# Michael Stewart <vericgar@gentoo.org> (18 Apr 2006)
# These packages all old-style apache, which is no longer supported.
# See http://www.gentoo.org/doc/en/apache-upgrading.xml
# These will be removed from the tree at some point in the future
=net-www/mod_auth_external-2.2.7
=net-www/mod_auth_ldap-2.4.2
=net-www/mod_auth_mysql-2.0.0_pre20030510
=net-www/mod_auth_pam-1.1.1
=net-www/mod_auth_pgsql-2.0.2-r2
=net-www/mod_bandwidth-2.0.4
=net-www/mod_bandwidth-2.0.5
=net-www/mod_contribs-1.0.8-r1
=net-www/mod_dav-1.0.3-r1
=net-www/mod_dav-1.0.3-r2
=net-www/mod_encoding-20021209
=net-www/mod_fastcgi-2.4.2
=net-www/mod_ftpd-0.12.3
=net-www/mod_gzip-1.3.19.1a-r1
=net-www/mod_gzip-1.3.26.1a
=net-www/mod_gzip-1.3.26.1a-r1
=net-www/mod_injection-0.3.0
=net-www/mod_injection-0.3.1
=net-www/mod_layout-3.2.1
=net-www/mod_layout-4.0.1a
=net-www/mod_ldap_userdir-1.1.1
=net-www/mod_ldap_userdir-1.1.4
=net-www/mod_ldap_userdir-1.1.4-r1
=net-www/mod_limitipconn-0.22
=net-www/mod_log_sql-1.97
=net-www/mod_log_sql-1.98-r1
=net-www/mod_loopback-1.04
=net-www/mod_loopback-2.01
=net-www/mod_loopback-2.0
=net-www/mod_mp3-0.35-r1
=net-www/mod_mp3-0.35-r2
=net-www/mod_mp3-0.39
=net-www/mod_mp3-0.40
=net-www/mod_pcgi2-2.0.1
=net-www/mod_protection-0.0.2
=net-www/mod_random-1.4
=net-www/mod_random-2.0
=net-www/mod_roaming-2.0.0
=net-www/mod_security-1.7.6
=net-www/mod_security-1.8.6
=net-www/mod_security-1.8.7_rc2
=net-www/mod_ssl-2.8.21
=net-www/mod_ssl-2.8.22
=net-www/mod_ssl-2.8.22-r1
=net-www/mod_ssl-2.8.24
=net-www/mod_ssl-2.8.24-r1
=net-www/mod_ssl-2.8.25-r1
=net-www/mod_throttle-3.1.2-r1
=net-www/mod_transform-0.4.0
=net-www/mod_vdbh-1.0.2
=net-www/mod_vdbh-1.0.2-r1
=net-www/mod_vdbh-1.0.3
=net-www/mod_watch-3.18
=net-www/mod_watch-4.03
=net-www/mod_xslt-1.0.5a
=net-www/mod_xslt-1.0.5a-r1
=net-www/apache-1.3.32-r1
=net-www/apache-1.3.33-r13
=net-www/apache-1.3.33-r6
=net-www/apache-1.3.34-r1
=net-www/apache-1.3.34-r2
=net-www/apache-2.0.54-r15
=net-www/apache-2.0.54-r16
=net-www/apache-2.0.54-r30
=net-www/apache-2.0.54-r9
=www-apache/mod_chroot-0.2
=www-apache/mod_fcgid-1.06
=www-apache/mod_fcgid-1.06-r1
=www-apache/mod_fcgid-1.07
=www-apache/mod_tcl-1.0

# Joshua Baergen <joshuabaergen@gentoo.org> (14 Apr 2006)
# Mask for X7.1 RC
>=x11-base/xorg-server-1.0.99
>=x11-drivers/xf86-input-acecad-1.1.0
>=x11-drivers/xf86-input-aiptek-1.0.1
>=x11-drivers/xf86-input-calcomp-1.1.0
>=x11-drivers/xf86-input-citron-2.2.0
>=x11-drivers/xf86-input-digitaledge-1.1.0
>=x11-drivers/xf86-input-dmc-1.1.0
>=x11-drivers/xf86-input-dynapro-1.1.0
>=x11-drivers/xf86-input-elo2300-1.1.0
>=x11-drivers/xf86-input-elographics-1.1.0
>=x11-drivers/xf86-input-evdev-1.1.0
>=x11-drivers/xf86-input-fpit-1.1.0
>=x11-drivers/xf86-input-hyperpen-1.1.0
>=x11-drivers/xf86-input-jamstudio-1.1.0
>=x11-drivers/xf86-input-joystick-1.1.0
>=x11-drivers/xf86-input-keyboard-1.1.0
>=x11-drivers/xf86-input-magellan-1.1.0
>=x11-drivers/xf86-input-microtouch-1.1.0
>=x11-drivers/xf86-input-mouse-1.1.0
>=x11-drivers/xf86-input-mutouch-1.1.0
>=x11-drivers/xf86-input-palmax-1.1.0
>=x11-drivers/xf86-input-penmount-1.1.0
>=x11-drivers/xf86-input-spaceorb-1.1.0
>=x11-drivers/xf86-input-summa-1.1.0
>=x11-drivers/xf86-input-tek4957-1.1.0
>=x11-drivers/xf86-input-ur98-1.1.0
>=x11-drivers/xf86-input-vmmouse-12.4.0
>=x11-drivers/xf86-input-void-1.1.0
>=x11-drivers/xf86-video-apm-1.1.1
>=x11-drivers/xf86-video-ark-0.6.0
>=x11-drivers/xf86-video-ast-0.81.0
>=x11-drivers/xf86-video-ati-6.6.0
>=x11-drivers/xf86-video-chips-1.1.1
>=x11-drivers/xf86-video-cirrus-1.1.0
>=x11-drivers/xf86-video-cyrix-1.1.0
>=x11-drivers/xf86-video-dummy-0.2.0
>=x11-drivers/xf86-video-fbdev-0.2.0
>=x11-drivers/xf86-video-glint-1.1.1
>=x11-drivers/xf86-video-i128-1.2.0
>=x11-drivers/xf86-video-i740-1.1.0
>=x11-drivers/xf86-video-i810-1.5.0
>=x11-drivers/xf86-video-imstt-1.1.0
>=x11-drivers/xf86-video-mga-1.4.1
>=x11-drivers/xf86-video-neomagic-1.1.1
>=x11-drivers/xf86-video-newport-0.2.0
>=x11-drivers/xf86-video-nsc-2.8.1
>=x11-drivers/xf86-video-nv-1.1.1
>=x11-drivers/xf86-video-rendition-4.1.0
>=x11-drivers/xf86-video-s3-0.4.1
>=x11-drivers/xf86-video-s3virge-1.9.1
>=x11-drivers/xf86-video-savage-2.1.1
>=x11-drivers/xf86-video-siliconmotion-1.4.1
>=x11-drivers/xf86-video-sis-0.9.1
>=x11-drivers/xf86-video-sisusb-0.8.1
>=x11-drivers/xf86-video-sunbw2-1.1.0
>=x11-drivers/xf86-video-suncg14-1.1.0
>=x11-drivers/xf86-video-suncg3-1.1.0
>=x11-drivers/xf86-video-suncg6-1.1.0
>=x11-drivers/xf86-video-sunffb-1.1.0
>=x11-drivers/xf86-video-sunleo-1.1.0
>=x11-drivers/xf86-video-suntcx-1.1.0
>=x11-drivers/xf86-video-tdfx-1.2.1
>=x11-drivers/xf86-video-tga-1.1.0
>=x11-drivers/xf86-video-trident-1.2.1
>=x11-drivers/xf86-video-tseng-1.1.0
>=x11-drivers/xf86-video-v4l-0.1.1
>=x11-drivers/xf86-video-vesa-1.1.0
>=x11-drivers/xf86-video-vga-4.1.0
>=x11-drivers/xf86-video-via-0.2.1
>=x11-drivers/xf86-video-vmware-10.13.0
>=x11-drivers/xf86-video-voodoo-1.1.0

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

# Jonathan Smith <smithj@gentoo.org> (19 Apr 2006)
# Masked due to masked dependencies (>=glib-2.9). see bug #126830
>=x11-misc/devilspie-0.17.1

# Carsten Lohrke <carlo@gentoo.org> (10 Apr 2006)
# Masked, since there's no compatible pykde version, yet.
>=dev-python/sip-4.4.1
>=dev-python/PyQt-3.16
dev-python/PyQt4

# Marcus D. Hanwell <cryos@gentoo.org> (10 Apr 2006)
# Testing beta version.
>=app-text/kbibtex-0.1.4_beta4

# 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

# Sven Wegener <swegener@gentoo.org> (09 Apr 2006)
# unstable betas
>=net-nntp/pan-0.92

# Mark Loeser <halcy0n@gentoo.org> (08 Apr 2006)
# No upstream release in several years, broken upstream URLs, and
# does not compile with gcc-3.4 (bug #127131).  It will be removed
# in 30 days
dev-libs/korelib

# Tim Yamin <plasmaroo@gentoo.org> (08 Apr 2006)
# Upstream seems dead and needs GCC 4.1 reworking; bug #125192.
# You should consider ng-spice-rework as a replacement to this
# package. Masked pending removal on 8th of May.
sci-electronics/tclspice

# Joe Sapp <nixphoeni@gentoo.org> (07 Apr 2006)
# Upstream is dead and it fails to build with the version of
# x11-libs/cairo in the tree.  Masked pending me fixing (or
# removing) it - see bug 127241.
#x11-wm/waimea

# 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

# Markus Ullmann <jokey@gentoo.org> (06 Apr 2006)
# adding language pack builder, needs testing
=app-text/acroread-7.0.5-r3

# Christian Heim <phreak@gentoo.org> (06 Apr 2006)
# dietlibc-0.29-r1 needs some testing
>=dev-libs/dietlibc-0.29-r1

# <eldad@gentoo.org> (06 Apr 2005)
# nagios-*2 having stability problems until 2.1* including. I'll be reading the -ml, will unmask 2.2 when 2.3 gets out the door if no serious problems are reported.
=net-analyzer/nagios-core-2*
=net-analyzer/nagios-2*

# Michael Sterrett <mr_bones_@gentoo.org> (03 Apr 2006)
# masked pending unresolved security issues #128690
games-fps/doomsday

# Jonathan Smith <smithj@gentoo.org> (03 Apr 2006)
# Depends on app-misc/colortail which is currently unmaintained and also masked
x11-misc/paralogger

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

# Mark Loeser <halcy0n@gentoo.org> (2 Apr 2006)
# Upstream has been dead for years and is unmaintained.  Also requires some
# reworking to compile with gcc-4; bug #122022.  It will be removed in 4 weeks
app-misc/colortail

# Donnie Berkholz <spyderous@gentoo.org> (31 Mar 2006)
# Development release
=media-libs/mesa-6.5*
=x11-apps/mesa-progs-6.5*

# Mark Loeser <halcy0n@gentoo.org> (30 Mar 2006)
# Has not had a release in almost 3 years, and is unmaintained; see bug #126597
net-misc/trickle

# 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

# Marinus Schraal <foser@gentoo.org> (29 Mar 2006)
# mask for removal
media-gfx/sodipodi

# Duncan Coutts <dcoutts@gentoo.org> (26 Mar 2006)
# New versions/revisions. Needs testing.
=dev-lang/ghc-6.4.1-r3
=dev-lang/ghc-6.4.2
=dev-lang/ghc-bin-6.4.2

# Saleem Abdulrasool <compnerd@gentoo.org> (23 Mar 2006)
# Masked, waiting for GNOME 2.14
>=gnome-extra/nautilus-sendto-0.5

# 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

# Donnie Berkholz <spyderous@gentoo.org> 
# Keeping masked so ~arch/arch users move from 6.8.2 to 7.0
=x11-base/xorg-x11-6.9*

# Joerg Bornkessel <hd_brummy@gentoo.org> (15 Mar 2006)
# Masked for testing
=media-plugins/vdr-admin-0.4.0

# Marcelo Goes <vanquirius@gentoo.org> (15 Mar 2006)
# Masked for bug 126256 (broken?)
>=net-print/hplip-0.9.9

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

# Gustavo Felisberto <humpback@gentoo.org> (12 Mar 2006)
# Dirty fix that needs testing, see Changelog
=net-libs/obby-0.3.0-r1

# 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

# John N. Laliberte <allanonjl@gentoo.org> (12 Mar 2006)
# remember, they are using the 2.6 series for 2.14
# so don't put this in the tree until 2.16.
>=x11-themes/gtk-engines-2.7

# Yuri Vasilevski <yvasilev@gentoo.org> (11 Mar 2006)
# Masked for testing
# Moved by John Mylchreest (johnm) to the right place in the file
>=x11-libs/libmatchbox-1.7
>=x11-wm/matchbox-window-manager-0.9.5
>=x11-wm/matchbox-common-0.9.1
>=x11-wm/matchbox-panel-0.9.2
>=x11-wm/matchbox-desktop-0.9.1
>=x11-plugins/matchbox-applet-input-manager-0.6
>=x11-plugins/matchbox-applet-volume-0.1
>=x11-plugins/matchbox-applet-startup-monitor-0.1
>=x11-misc/matchbox-panel-manager-0.1
>=x11-themes/matchbox-themes-extra-0.3

# 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

# Christian Parpart <trapni@gentoo.org> (09 Mar 2006)
# These are about to be removed
=www-apps/mediawiki-1.3*

# Markus Ullmann <jokey@gentoo.org> (08 Mar 2006)
# Masked for testing
media-sound/radiomixer

# 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

# Joseph Jezak <josejx@gentoo.org> (05 Mar 2006)
# Please use IBM's Java instead on PPC
# Masked because there are better options and security issues with this version
=dev-java/blackdown-jre-1.3.1-r9

# Joseph Jezak <josejx@gentoo.org> (05 Mar 2006)
# Please use IBM's Java instead on PPC
# Masked because there are better options and security issues with this version
=dev-java/blackdown-jdk-1.3.1-r10

# 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

# Mark Loeser <halcy0n@gentoo.org> (02 Mar 2006)
# Will be in flux for the next week or so while we get issues straightened out
=sys-devel/gcc-4.1*

# Tom Payne <twp@gentoo.org> (02 Mar 2006)
# lua-5.1's build system is very primitive (no shared libraries for example)
# so upgrading to it will probably break lots of things that rely on lua
# import it into the tree anyhow for testing and development
=dev-lang/lua-5.1

# Jory A. Pratt <anarchy@gentoo.org> (27 Feb 2006)
# Initial Import to tree, testing needed
www-client/seamonkey

# Chris White <chriswhite@gentoo.org> (26 Feb 2006)
# Dead upstream, breaks with recent mono versions
# No maintainer
media-video/mvideo

# 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

# Patrick McLean <chutzpah@gentoo.org> (23 Feb 2006)
# gnumeric-1.6.1 breaks with goffice-0.2.0 and gnumeric-1.6.2
# needs goffice-0.2.0, so masking both for now
>=app-office/gnumeric-1.6.2
>=x11-libs/goffice-0.2.0

# Diego Pettenò <flameeyes@gentoo.org> (21 Feb 2006)
# Pre-releases outside of KDE release cycle
>=net-im/kopete-0.12_alpha1

# Doug Goldstein <cardoe@gentoo.org> (16 Feb 2006)
# Working on the next cairo/glitz release
>=media-libs/glitz-0.5.3

# 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-kernel/rsbac-sources-2.4.99
=sys-apps/rsbac-admin-1.2.99

# Sandro Bonazzola <sanchan@gentoo.org> (13 Feb 2006)
# Masked for java package freeze.
dev-tinyos/tos-getenv

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

# Donnie Berkholz <spyderous@gentoo.org> (07 Feb 2006)
# Masking for netmon herd -- can't depend on masked db-4.3
# if you're not masked
net-analyzer/nessus-bin

# Renat Lumpau <rl03@gentoo.org> (06 Feb 2006)
# needs testing
=www-misc/zoneminder-1.22.0

# 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

# Michael Sterrett <mr_bones_@gentoo.org> (31 Jan 2006)
# multiplayer is broken
=games-strategy/glob-0.8.18

# Robin H. Johnson <robbat2@gentoo.org> (25 Jan 2006)
# app-text/poppler is replacing pdftohtml because of security concerns. 
# Please unmerge app-text/pdftohtml and emerge app-text/poppler instead.
# app-text/poppler provides all of the same functionailty and more.
# See bugs #115789 and #117481.
app-text/pdftohtml

# 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

# George Shapovalov (19 Jan 2006)
# Matching version of gcc is no longer in portage.
# New gpc I issued recently avoids this problem (no gcc dep anymore).
# Older versions will be removed upon stabilization of gpc-20051104
<=dev-lang/gpc-20050331

# Chris White <chriswhite@gentoo.org> (18 Jan 2006)
# Package depends on package.mask sys-libs/db
dev-libs/ice
dev-cpp/ice

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

# Michael Imhof <tantive@gentoo.org> (17 Jan 2006)
# masked pending removal - upstream discontinued this project
sci-misc/zetagrid

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

# Tom Payne <twp@gentoo.org> (15 Jan 2006)
# sys-fs/convertfs is broken. Masked pending likely removal. Bug # 107635.
sys-fs/convertfs

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

# Marcelo Goes <vanquirius@gentoo.org> (12 Jan 2006)
# Mask development version
=media-gfx/swftools-0.7.1.20051207

# 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

# Chris Gianelloni <wolf31o2@gentoo.org> (05 Jan 2006)
# Masked due to problems with vmware-nat.  This package is still safe to use if
# you do not use NAT, but rather use bridged networking.  This mask will be
# removed if/when a patch is made available to this code.  See bug #116238 for
# more information.
~app-emulation/vmware-workstation-3.2.1.2242

# Daniel Black <dragonheart@gentoo.org> (03 Jan 2006)
# masked due to bad dependencies and possible TEXTREL
=net-libs/gnutls-1.2.9-r1
=net-libs/gnutls-1.2.10-r1

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

# Chris Bainbridge <chrb@gentoo.org> (26 Dec 2005)
# Security problems. Tim Yamin provided a list of around 25-30 security related
# bugs affecting pre-2.6.14 kernel. Xen upstream is expected to move to 2.6.14
# soon.
<sys-kernel/xen-sources-2.6.14

# Chris Bainbridge <chrb@gentoo.org> (23 Feb 2006)
# This is a snapshot from the xen-unstable tree. If you find any bugs in Xen
# itself, please report them to bugzilla.xensource.com. Only report bugs to
# bugs.gentoo.org if they are related to the ebuild or otherwise Gentoo
# spefific. Any bug reports to the Gentoo bugzilla that are not Gentoo specific
# will be resolved as "UPSTREAM".
>=app-emulation/xen-8885

# Chris Bainbridge <chrb@gentoo.org> (23 Feb 2006)
# This is a snapshot from the xen-unstable tree. If you find any bugs in Xen
# itself, please report them to bugzilla.xensource.com. Only report bugs to
# bugs.gentoo.org if they are related to the ebuild or otherwise Gentoo
# spefific. Any bug reports to the Gentoo bugzilla that are not Gentoo specific
# will be resolved as "UPSTREAM".
<sys-kernel/xen-sources-2.6.16

# 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

# Tim Yamin <plasmaroo@gentoo.org> (20 Dec 2005)
# Probably broken and dangerous. Combustible if brought near PPC or PPC64
# machines so I don't recommend trying unless on those platforms unless
# you've got spare time to help me fix things.
>=sys-kernel/linux-headers-2.6.15_rc6

# Kathryn Kulick <gothgirl@gentoo.org> (20 Dec 2005)
# Gaim 2.0.0 beta1 plugins.
>=x11-plugins/gaim-encryption-3.0_beta1
>=x11-plugins/slashexec-1.1_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

# Luca Barbato <lu_zero@gentoo.org> (18 Dec 2005)
# avifile isn't mantained anymore and doesn't build with the
# current ffmpeg, removing it and packages alike
media-gfx/zphoto

# Stefan Knoblich <stkn@gentoo.org> (17 Dec 2005)
# masked because of asterisk-1.2 mask:
net-misc/asterisk-chan_misdn

# Ryan Phillips <rphillips@gentoo.org> (12 Dec 2005)
# Luabind doesn't compile with the latest stable boost, and no updates
# for awhile.
dev-libs/luabind

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

# Donnie Berkholz <spyderous@gentoo.org> (04 Dec 2005)
# Testing -- particularly the reconfig script
# and reinstalling without destroying the configuration
sci-chemistry/webmo

# Michael Sterrett <mr_bones_@gentoo.org> (03 Dec 2005)
# Doesn't work with newer allegro, buggy, no release since '02
games-emulation/game-launcher

# Chris Gianelloni <wolf31o2@gentoo.org> (02 Dec 2005)
# Masked because it is completely broken
=dev-util/catalyst-2.0_rc3

# Diego Pettenò <flameeyes@gentoo.org> (02 Dec 2005)
# API/ABI changes, breaks at least latest amaroK.
>=media-libs/tunepimp-0.4.0

# J. Alberto Suarez <bass@gentoo.org> (27 Nov 2005)
# Pending removal, will be substituted by ebookmerge
app-doc/ebook-autoconf
app-doc/ebook-automake
app-doc/ebook-binutils
app-doc/ebook-bonobo
app-doc/ebook-cpp
app-doc/ebook-cvs
app-doc/ebook-diff
app-doc/ebook-find
app-doc/ebook-flex
app-doc/ebook-g77
app-doc/ebook-gawk
app-doc/ebook-gcc
app-doc/ebook-gconf
app-doc/ebook-gdk
app-doc/ebook-gdk-pixbuf
app-doc/ebook-ggad
app-doc/ebook-glibc
app-doc/ebook-gtk
app-doc/ebook-libglade
app-doc/ebook-libgnome
app-doc/ebook-libgnomeui
app-doc/ebook-make
app-doc/ebook-pango
app-doc/ebook-pygtk
app-doc/ebook-python
app-doc/ebook-sed
app-doc/ebook-zvt

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

# Stuart Herbert <stuart@gentoo.org> (20 Nov 2005)
# Masked pending removal from Portage
www-apps/phpgroupware

# 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

# Chris Gianelloni <wolf31o2@gentoo.org> (16 Nov 2005)
# Masking this quake4-bin version because 1.0.5 is actually newer.  I am sure
# that this will cause some people some confusion, which is why this is here.
=games-fps/quake4-bin-1.0.2147.12

# Saleem Abdulrasool <compnerd@gentoo.org> (07 Nov 2005)
# Masking Nini for initial import
=dev-dotnet/nini-1.0.0

# Alastair Tse <liquidx@gentoo.org> (06 Nov 2005)
# Development version of psycopg. Not compatible with other psycopg
# dependent libraries and applications unless ported.
>=dev-python/psycopg-1.99

# Michael Sterrett <mr_bones_@gentoo.org> (04 Nov 2005)
# Security masked due to remote exploitable bugs (bug #111421)
games-strategy/scorched3d

# 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

# Tony Vroon <chainsaw@gentoo.org> (29 Oct 2005)
# This version of openal uses an external version of alut, as it is no longer
# bundled, bringing Linux more in line with other operating systems.  What this
# means is that this version of openal and alut need to remain masked until all
# packages that use alut are fixed for the split libraries.
>=media-libs/openal-20051024
media-libs/alut
media-libs/freealut
~media-libs/openal-0.0.8

# Thomas Matthijs <axxo@gentoo.org> (23 Oct 2005)
# Preview release
=www-client/opera-9*

# Aron Griffis <agriffis@gentoo.org> (20 Oct 2005)
# New version of NX stuff, masked for testing
>=net-misc/nx-x11-1.5
>=net-misc/nxclient-1.5
>=net-misc/nxcomp-1.5
>=net-misc/nxproxy-1.5
>=net-misc/nxserver-freenx-1.5
>=net-misc/nxssh-1.5

# 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

# Damien Krotkine <dams@gentoo.org> (19 Oct 2005)
# broken versions, no install rul in Makefile
=app-portage/flagedit-0.0.3
=app-portage/flagedit-0.0.4

# Matthew Kennedy <mkennedy@gentoo.org> (18 Oct 2005)
# Preparation for removal
dev-lisp/cmucl-source

# Michael Sterrett <mr_bones_@gentoo.org> (17 Oct 2005)
# Buggy and seemingly not maintained upstream
# Using media-gfx/gqview is a much better choice.
media-gfx/gtksee

# Akinori Hattori <hattya@gentoo.org> (06 Oct 2005)
# development branch
=mail-client/sylpheed-2.1*

# 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

# Marcin Kryczek <mkay@gentoo.org> (25 Sep 2005)
# This project seems to be dead. The last "stable" (and broken) version
# was released 1,5 year ago and it's CVS is empty. I'll remove it from
# the tree soon
net-p2p/dc-gui

# Jeremy Huddleston <eradicator@gentoo.org> (24 Sep 2005)
# Still in development
app-admin/eselect-compiler
>=sys-devel/gcc-config-2.0.0_alpha1

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

# Chris Gianelloni <wolf31o2@gentoo.org> (20 Sep 2005)
# This needs some testing before I unleash it on the world.
games-rpg/nwn-data
=games-rpg/nwn-1.66-r1
=games-rpg/nwn-1.67-r1
=games-rpg/nwn-cep-1.52-r1

# Chris Gianelloni <wolf31o2@gentoo.org> (19 Sep 2005)
# Adding new GGZ ebuilds to portage.  I am masking them all
# here until they can all be added and will unmask them all
# at once since some of them need a little work.
>=dev-games/ggz-client-libs-0.0.11
>=dev-games/libggz-0.0.11
>=games-board/ggz-gnome-client-0.0.11
>=games-board/ggz-gtk-client-0.0.11
>=games-board/ggz-gtk-games-0.0.11
>=games-board/ggz-kde-client-0.0.11
>=games-board/ggz-kde-games-0.0.11
>=games-board/ggz-sdl-games-0.0.11
>=games-board/ggz-txt-client-0.0.11

# Gregorio Guidi <greg_g@gentoo.org> (19 Sep 2005)
# Qt-3.3.5 causes a lot of compilation failures.
# See bug #106402.
~x11-libs/qt-embedded-3.3.5
~dev-db/qt-unixODBC-3.3.5

# 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

# Bryan Østergaard <kloeri@gentoo.org> (12 Sep 2005)
# Masked for security reasons, bug 103524
dev-python/py2play
games-action/slune

# Joshua Baergen <joshuabaergen@gentoo.org> (8 Sep 2005)
# Only tested against modular x
# Note that version 0.9.0 should probably stay masked due to old
# translations.
x11-misc/driconf

# Gustavo Felisberto <humpback@gentoo.org> (03 Sep 2005)
# Beta code
=net-im/psi-0.10_rc2

# Christian Zoffoli <xmerlin@gentoo.org> (1 Sep 2005)
# Masked as this version has a bug
=sys-cluster/drbd-0.7.12
=sys-cluster/drbd-0.7.13

# Brandon Low <lostlogic@lostlogicx.com> (29 Aug 2005)
# Masked because it needs java 1.5
net-im/jive-messenger
net-im/wildfire

# 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

# vapier@gentoo.org (23 Aug 2005)
# Mask since it breaks wings #97798
=dev-lang/erlang-10.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

# Luca Barbato <lu_zero@gentoo.org> (03 Aug 2005)
# First experimental ebuild with dlloader support, should be fixed
=media-video/ati-drivers-8.14.13-r3

# 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

# Brian Jackson <iggy@gentoo.org> (29 Jul 2005)
# original maintainer dropped off the face of the planet and it has security
# issues, etc.
net-misc/powerd

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

# <grobian@gentoo.org> (25 Mar 2006)
# Masked because it results in sandbox errors for other GNUstep apps
# that build on it.  Exact cause unknown, but it seems to be related to
# gnustep-base library that wants to create $user/GNUstep/Library folder
# whenever an app is being run.  During installation for instance
# plmerge is being run, which then makes a sandbox violation because it
# attempts to create /root/GNUstep.  Setting the HOME env doesn't seem
# to change the location (/root) at all.
=gnustep-base/gnustep-base-1.12.0

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

# Donnie Berkholz <spyderous@gentoo.org> (08 Jul 2005)
# Development versions
>=sci-libs/libghemical-1.90
>=sci-chemistry/ghemical-1.90

# Stefan Schweizer <genstef@gentoo.org> (08 Jul 2005)
# Masked because of "UnixAppOpenFilePerform() Buffer Overflow", #98101
<=app-text/acroread-5.10
=media-fonts/acroread-asianfonts-5.0.20020815

# 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.
=sys-devel/distcc-2.18.3-r8

# 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

# Guillaume Destuynder <kang@gentoo.org> (27 Jun 2005)
# Masking for security reasons, pending removal, bug #89196
# use net-p2p/phxd instead
net-p2p/mhxd

# Thierry Carrez <koon@gentoo.org> (27 Jun 2005)
# Package contains insecure tmpfile handling, bug #93792
dev-db/xmysqladmin

# John N. Laliberte <allanonjl@gentoo.org> (24 Jun 2005)
# old, unmaintained ebuilds with dead upstream
# pending removal
app-office/gnofin
gnome-extra/gnobog

# Aaron Walker <ka0ttic@gentoo.org> (20 Jun 2005)
# testing releases/cvs snaps
=net-analyzer/net-snmp-5.3*

# Jonathan Smith <smithj@gentoo.org> (15 Jun 2005)
# masked for testing
=x11-misc/xlockmore-5.19

# 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

# Thierry Carrez <koon@gentoo.org> (08 Jun 2005)
# Masked by request of the security team. bug 94473
net-im/everybuddy

# 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

# Ryan Phillips <rphillips@gentoo.org> (07 May 2005)
# New fox layout.  In testing
=x11-libs/fox-1.0.53
=x11-libs/fox-1.2.15
=x11-libs/fox-1.4.12
=x11-libs/fox-1.5.4
=x11-libs/fox-1.6.2
=dev-ruby/fxruby-1.2.6
=dev-ruby/fxruby-1.2.5
=dev-ruby/fxruby-1.0.29-r1
>=x11-libs/fxscintilla-1.62-r1
>=dev-python/fxpy-1.0.5-r1
app-editors/adie
dev-util/reswrap
x11-libs/fox-wrapper
x11-misc/shutterbug
x11-misc/pathfinder
sci-calculators/calculator

# 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

# Peter Johanson <latexer@gentoo.org> (02 May 2005)
# Masking as it is broken against newer wine versions,
# and completely abandoned upstream
dev-dotnet/winelib

# 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.5-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/sendmail-8.13.4-r1
=mail-mta/sendmail-8.13.5
=mail-mta/exim-4.50-r999

# 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

# Mamoru KOMACHI <usata@gentoo.org>
# No fix available for bug #87906
www-client/netscape

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

# Jon Portnoy <avenj@gentoo.org> (29 Mar 2005)
# 2.21 introduces more severe bugs than it fixes. See bug 87091.
=net-dns/dnsmasq-2.21

# 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

# Matthew Kennedy <mkennedy@gentoo.org> (17 Feb 2005)
# moving to bese-2004@common-lisp.net/arnesi--dev--1.2 patch scheme
=dev-lisp/cl-arnesi-1.2.0
=dev-lisp/cl-arnesi-1.2.3*

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

# Matthew Kennedy <mkennedy@gentoo.org> (10 Feb 2005)
# Masked while waiting on apache module refresh
dev-lisp/tbnl

# Tavis Ormandy <taviso@gentoo.org> (9 Feb 2005)
# Masked pending security audit.
www-client/prozilla

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

# Christian Parpart <trapni@gentoo.org> (4 Feb 2005)
# Apache herd package refresh
# These ebuilds are incompatible with new apache and related ebuilds.
# See Meta-bug #76457.
net-www/mod_protection
net-www/mod_contribs

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

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

# Paul de Vrieze <pauldv@gentoo.org> (02 Feb 2005)
# Masked for testing dependend packages
>=sys-libs/db-4.3

# Sven Wegener <swegener@gentoo.org> (30 Jan 2005)
# Major changes, needs some more testing
>=net-irc/ultimate-3.0.0_rc2

# <mkennedy@gentoo.org> (Jan 12 2005)
# no longer needed for the time being; use app-emacs/slime instead
# app-emacs/slime-cvs

# <ribosome@gentoo.org> (09 Jan 2005)
# Beta release
=sci-biology/vienna-rna-1.5_beta

# <chriswhite@gentoo.org> (30 Dec 2004)
# Junkie being masked per security bug #74696
net-ftp/junkie

# <mkennedy@gentoo.org> (14 Dec 2004)
# Masked pending removal
dev-lisp/cl-clx-sbcl

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

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

# <ciaranm@gentoo.org> (28 Nov 2004)
# vim7 is still under heavy development. Spell files need vim7.
=app-editors/vim-core-7.0_alpha*
=app-editors/vim-7.0_alpha*
=app-editors/gvim-7.0_alpha*

# Robert Coie <rac@gentoo.org> (28 Sep 2004)
# FEATURES=maketest is still dodgy, and even when I got the whole
# shebang to actually build and install, it was segfaulting on me, so
# there are some deep-seated issues here.  The Mason ebuild will go
# in, but without the apache2 USE.  Also must decide whether or not to
# depend on ApacheHandler2.
=www-apache/mod_perl-1.99.16
#www-apache/libapreq2

# <chriswhite@gentoo.org> (25 Aug 2004)
# alpha version, seems ok to ~arch, but just to be safe..
media-video/jahshaka

# <agriffis@gentoo.org> (19 Aug 2004)
# Masking because this package is not ready for prime, but want it in
# portage for better observation (and users are clamoring)
app-office/mozilla-sunbird-bin
#app-office/mozilla-sunbird

# <agriffis@gentoo.org> (18 Aug 2004)
# Masking due to security issues that will never be solved since there
# are no new versions forthcoming, bug 56109
www-client/netscape-navigator
www-client/netscape-communicator

# <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> (8 Aug 2004)
# won't build for now
dev-lisp/cl-rsm-gen-prog
dev-lisp/cl-rsm-genetic-alg

# <twp@gentoo.org> (6 Aug 2004)
# Masked until linking problems are solved
=dev-lang/lua-5.0.2-r1

# <usata@gentoo.org> (2 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-22.0.0*
=app-editors/emacs-cvs-23.0.0*

# <klasikahl@gentoo.org> (09 Apr 2004)
# Still in the testing phase.
# Just changed the package name, so I'm fixing the line up.
app-admin/mailmin

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

# <humpback@gentoo.org> (28 Mar 2004)
# Needs some more testing
>=net-im/jabberoo-1.9.3
>=net-im/gabber-1.9.3

# <raker@gentoo.org> (18 Mar 2004)
# The latest AfterStep beta is broken :(
=x11-wm/afterstep-2.0_beta4

# <rajiv@gentoo.org> (03 Mar 2004)
# security problems. see bug #43658.
<net-ftp/proftpd-1.2.9

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

# <nichoj@gentoo.org>
# Many things in the tree don't compile with 1.5 yet.
# 1.5 defaults to -target 1.5, which makes downgrading to a 1.4/1.3
# impossible. See bug #69970 and bug 65937 for more information.
# http://www.gentoo.org/proj/en/java/tiger-faq.xml
>=dev-java/sun-jdk-1.4.99
=dev-java/jrockit-jdk-bin-1.5*
>=dev-java/ibm-jdk-bin-1.5

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

# <brad@gentoo.org> (22 Nov 2003)
# Mask mandrake-artwork-0.9.6 until it works with KDE
=x11-themes/mandrake-artwork-0.9.6

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

# <liquidx@gentoo.org> (10 Mar 2003)
# not really stable enough for my tastes. needs testing.
dev-db/mergeant

# <phoenix@gentoo.org> (21 Nov 2002)
# The huge nsplugins mask. These plugins use
# the new layout (/usr/lib/nsbrowser/plugins)
# and should work in both mozilla and phoenix.
=net-www/netscape-plugger-4.0-r2