summaryrefslogtreecommitdiff
blob: 59cd6a1e01748f663e2f4680d1ab752eae5c3b0c (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
####################################################################
# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.7641 2007/08/27 16:55:17 cardoe 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
##

# Ulrich Mueller <ulm@gentoo.org> (27 Aug 2007)
# Live CVS broken due to upstream changes, pending removal in 30 days.
app-emacs/slime-cvs

# Alfredo Tupone <tupone@gentoo.org> (25 Aug 2007)
# Masked for removal
# glchess is now part of gnome-games
gnome-board/glchess

# Wulf C. Krueger <philantrop@gentoo.org> (25 Aug 2007)
# Temporarily masked for further testing. 
>=app-pda/pilot-link-0.12.2

# Steve Dibb <beandog@gentoo.org> (25 Aug 2007)
# Masked for removal
# Makefile needs a lot of love, someone can move to overlay
media-video/mmsv2

# Alin Năstac <mrness@gentoo.org> (25 Aug 2007)
# Has been inactive for several years; scheduled for removal in 60 days.
# Please use net-dialup/xl2tpd (fork actively maintained by Xelerance)
# or use net-dialup/rp-l2tp.
net-dialup/l2tpd

# Zac Medico <zmedico@gentoo.org> (25 Aug 2007)
# Bug #190128 - bash-3.2_p25 triggers 'hasq: command not found' errors
=app-shells/bash-3.2_p25

# Michael Marineau <marineam@gentoo.org> (24 Aug 2007)
# Not maintained for security issues, will be removed soonish.
=sys-kernel/xen-sources-2.6.16*

# Samuli Suominen <drac@gentoo.org> (24 Aug 2007)
# Needs libisofs 0.2.8, unmask same time.
>=xfce-extra/xfburn-0.3.0_pre20070824

# Luis Medinas <metalgod@gentoo.org> (24 Aug 2007)
# Mask libisofs 0.2.8 until i fix Brasero
=dev-libs/libisofs-0.2.8

# Samuli Suominen <drac@gentoo.org> (23 Aug 2007)
# Deprecated GTK+-1.2 applications.
# app-misc/dfm broken wrt bug 186100.
# app-misc/emelfm replaced by app-misc/emelfm2,
# bug 186351. Masked for treecleaners, removed in
# 60 days.
app-misc/dfm
app-misc/emelfm

# Samuli Suominen <drac@gentoo.org> (23 Aug 2007)
# Obsolete ebuild for XFree86 and X.org 6.x.
# Broken wrt bugs 130176 and 149872.
# Gatos code has been relicensed and merged into
# upstream xf86-video-ati RandR 1.2 branch.
# Masked for treecleaners, removed in 60 days.
media-video/ati-gatos

# Ulrich Mueller <ulm@gentoo.org> (21 Aug 2007)
# Masking due to issues with customisation dependencies.
# Bug reported upstream.
=app-emacs/vm-8.0.3.495

# 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

# Wulf C. Krueger <philantrop@gentoo.org> (21 Aug 2007)
# Temporary mask. Beta release.
~app-editors/kile-2.0_beta1

# Wulf C. Krueger <philantrop@gentoo.org> (21 Aug 2007)
# Stable version doesn't compile, unstable version is partly broken.
# Application is conceptionally wrong. More details on bug 187251.
# Use app-cdr/koverartist instead.
# Masked for removal in 30 days.
app-cdr/kover

# Christian Hartmann <ian@gentoo.org> (20 Aug 2007)
# Unmaintained and non-functional due to changes by ebay.
# Bug #178382
net-misc/ebayagent

# Samuli Suominen <drac@gentoo.org> (19 Aug 2007)
# MySQL API has changed. Broken wrt bug 131111.
# Upstream quiet. Removed in 30 days.
media-sound/mp3kult

# Samuli Suominen <drac@gentoo.org> (17 Aug 2007)
# Code has been merged or replaced in 2.6 series kernels.
# 2.4 no-nptl no longer supported by sound.
# Masked for removal in 30 days.
media-sound/usbmidi

# Samuli Suominen <drac@gentoo.org> (17 Aug 2007)
# Does not build with GCC4, no upstream, last release 2002.
# GTK+-1.2. Masked for removal in 30 days.
media-video/xmps

# Samuli Suominen <drac@gentoo.org> (15 Aug 2007)
# Temporary mask to give arch teams time to keyword
# media-gfx/raw-thumbnailer
>=xfce-extra/thunar-thumbnailers-0.3

# Caleb Tennis <caleb@gentoo.org> (15 Aug 2007)
# Masking for some longer term testing
=sys-libs/db-4.6*

# Gunnar Wrobel <wrobel@gentoo.org> (15 Aug 2007) 
# Has open security bugs
# http://bugs.gentoo.org/show_bug.cgi?id=172525
# and upstream seems to be unable to deliver a useful 
# up/downgrade path (will be unmasked with xoops-2.3)
# http://www.xoops.org/modules/news/article.php?storyid=2905
www-apps/xoops

# Gunnar Wrobel <wrobel@gentoo.org> (15 Aug 2007) 
# Has open security bugs and upstream seems to be dead
# http://bugs.gentoo.org/show_bug.cgi?id=158698
www-apps/ids

# Tristan Heaven <nyhm@gentoo.org> (14 Aug 2007)
# Breaks games-rpg/tmw-0.0.23
# https://bugs.gentoo.org/show_bug.cgi?id=188753
>=dev-games/guichan-0.7

# Robin H. Johnson <robbat2@gentoo.org> (14 Aug 2007)
# Mask pending removal per mail to -dev.
# You must move to sa-update instead, read -dev for more information.
mail-filter/spamassassin-ruledujour

# Steve Dibb <beandog@gentoo.org> (11 Aug 2007)
# Old, unmaintained, pending removal
www-client/planet

# 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

# Fabian Groffen <gnustep@gentoo.org> (11 Aug 2007)
# Mask PDFkit for bug #188185 and the applications that need it, please
# use the GNUstep overlay (see layman) for replacements of these
# packages
gnustep-libs/pdfkit
gnustep-apps/viewpdf
gnustep-apps/gworkspace

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

# Lars Weiler <pylon@gentoo.org> (06 Aug 2007)
# included in aircrack-ng since version 0.9.0
# masked for removal in 30 days
net-wireless/aircrack-ptw

# Samuli Suominen <drac@gentoo.org> (05 Aug 2007)
# Text relocation regression compared to 1.1.4
# with hand written asm when nasm is installed on
# x86..
~media-libs/flac-1.2.0

# Hans de Graaff <graaff@gentoo.org> (05 Aug 2007)
# Renamed to dev-ruby/capistrano more than a year ago.
dev-ruby/switchtower

# Daniel Black <dragonheart@gentoo.org> (05 Aug 2007)
# pending removal see gentoo-dev-announce@lists....
kde-misc/kxdocker-configurator
kde-misc/kxdocker-i18n
kde-misc/kxdocker-dcop
kde-misc/kxdocker
kde-misc/kxdocker-trayiconlogger
kde-misc/kxdocker-resources

# Marius Mauch <genone@gentoo.org> (03 Aug 2007)
# Masked for testing, also waiting for updated plugins due to license check
>=mail-client/claws-mail-3.0.0_rc1

# Andrej Kacian <ticho@gentoo.org> (02 Aug 2007)
# Deprecated plugin, use pgpmime/pgpinline plugins shipped directly with
# claws-mail and claws-mail-smime plugin shipped as a separate package.
mail-client/claws-mail-etpan-privacy

# Samuli Suominen <drac@gentoo.org> (30 Jul 2007)
# Mask alpha releases.
=media-sound/moc-2.5.0_alpha*

# Benedikt Boehm <hollow@gentoo.org> (29 Jul 2007)
# Masked for removal: Does not work with apache 2.2
# and no release since 2004, use mod_transform instead
www-apache/mod_xslt

# Ulrich Mueller <ulm@gentoo.org> (26 Jul 2007)
# CVS snapshots, bug #185106
=app-emacs/emacs-w3m-1.4.4_p*

# 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

# Tony Vroon <chainsaw@gentoo.org> (25 Jul 2007)
# Unsuitable for IXP route server usage
# Seems incomplete for most other workloads
# Lost interest in this package, removal on 25 Aug 2007.
net-misc/bird

# Markus Ullmann <jokey@gentoo.org> (24 Jul 2007)
# mask for removal due to security bug #184013
net-firewall/fireflier

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

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

# Torsten Veller <tove@gentoo.org> (21 Jul 2007)
# Masked for testing
>=app-office/gnucash-2.2.0

# Samuli Suominen <drac@gentoo.org> (20 Jul 2007)
# Orphaned configuration files using devfsd.
# Masked for treecleaners. Removed in 60 days.
# Bug 64138.
app-cdr/cdrw-base

# 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

# Alin Năstac <mrness@gentoo.org> (19 Jul 2007)
# Dead upstream, forked in net-dialup/xl2tpd.
# Pending removal 19 Sep 2007
net-dialup/l2tpd

# Raúl Porcel <armin76@gentoo.org> (18 Jul 2007)
# Mask rc
=net-p2p/qbittorrent-1.0.0_beta*
=net-libs/rb_libtorrent-0.13_pre*
=net-p2p/deluge-0.5.4_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 to test
net-wireless/iwlwifi
net-wireless/iwl3945-ucode
net-wireless/iwl4965-ucode

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

# Samuli Suominen <drac@gentoo.org> (04 Jul 2007)
# For treecleaners, bug 182937. Replaced by texinfo.
# Upstream discontinued development more than 4 years ago.
# Masked for removal in 60 days.
app-text/yodl

# Raúl Porcel <armin76@gentoo.org> (01 Jul 2007)
# For treecleaners
# Pending removal in 60 days, 01 Sep 2007
# app-admin/nologin -> bug 182215
# app-office/facturalux -> bug 119971
# x11-themes/jimmac-xcursors -> bug 182216
# jimmac-xcursors is replaced by vanilla-dmz-xcursors and 
# vanilla-dmz-aa-xcursors now.
app-admin/nologin
app-office/facturalux
x11-themes/jimmac-xcursors

# 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

# Doug Goldstein <cardoe@gentoo.org> (28 Jun 2007)
# masked due to security issues see bug #177630
www-apps/otrs

# 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

# Mike Auty <ikelos@gentoo.org> (24 Jun 2007)
# Masked for about a week, for testing
>=app-emulation/vmware-workstation-6
>=app-emulation/vmware-player-2
>=app-emulation/vmware-modules-1.0.0.16

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

# Luca Longinotti <chtekk@gentoo.org> (22 Jun 2007)
# Old Subversion versions masked for removal:
# obsolete and don't work correctly with current Apache stuff.
<dev-util/subversion-1.3.0

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

# Gustavo Felisberto <humpback@gentoo.org> (16 Jun 2007)
# Starting 19 Jun 2007 Skype no longer provides download files for releases
# 1.2 and 1.3 so if you already have the distfiles unmask skype < 1.3
# If you do not have please help test the 1.4 release and have it marked
# stable.
<=net-im/skype-1.4.0.0

# Petteri Räty <betelgeuse@gentoo.org> (16 Jun 2007)
# We like our stuff GPL so use dev-java/javahelp instead
dev-java/javahelp-bin

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

# William L Thomson Jr <wltjr@gentoo.org> (13 Jun 2007)
# Stale upstream older versions than last release in tree.
# Package will be moved to junkyard overlay after 30 days
# unless users express interest in this package.
dev-java/sablevm

# MATSUU Takuto <matsuu@gentoo.org> (12 Jun 2007)
# Mask alpha versions
=dev-lang/tcl-8.5*
=dev-lang/tk-8.5*

# Petteri Räty <betelgeuse@gentoo.org> (09 Jun 2007)
# Deprecated by JDO (not packaged currently). File a request
# for that to bugs.gentoo.org if you need it. The ebuild still
# uses generation 1 and nothing depends on it. For other persistance
# related packages take a look at for example dev-java/hibernate and
# dev-java/glassfish-persistence. After 30 days moved to java-experimental
# because some ebuilds there are using this.
dev-java/odmg

# Stefan Schweizer <genstef@gentoo.org> (31 May 2007)
# release candidate
=app-text/poppler-0.5.9*
=app-text/poppler-bindings-0.5.9*
=app-text/evince-0.9*

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

# Alexis Ballier <aballier@gentoo.org> (26 May 2007)
# New major release, camlp4 has lots of api chages
# Thus it breaks lots of ocaml packages
# Other things that needs to be checked : hardened, hppa
# Also mask apps that strictly depend on it
>=dev-lang/ocaml-3.10.0
>=dev-ml/ulex-1.0
>=dev-ml/ocamlduce-3.10.0

# Andrej Kacian <ticho@gentoo.org> (26 May 2007)
# Use mail-client/claws-mail - upstream changed application name after 2.6.0.
mail-client/sylpheed-claws

# Petteri Räty <betelgeuse@gentoo.org> (24 May 2007)
# Doesn't compile atm. See https://bugs.gentoo.org/show_bug.cgi?id=164074
# for more details.
=app-text/jasperreports-1.0.1

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

# Benedikt Böhm <hollow@gentoo.org> (22 May 2007)
# new version with experimental cmake patch for testing
=dev-libs/xmlrpc-c-1.10.00

# Stefan Briesenick <sbriesen@gentoo.org> (21 May 2007)
# due to popular wish in portage, but this driver seems
# to crash on recent kernels. If you like to test it,
# just unmask it locally.
=net-wireless/fwlanusb-1.00.00_rc1

# Stefan Briesenick <sbriesen@gentoo.org> (21 May 2007)
# included in vanilla kernels since 2.6.19
# Pending removal 20 June 2007
net-wireless/mcs7780

# Robin H. Johnson <robbat2@gentoo.org> (18 May 2007)
# Pre-release of 2.0 series
=dev-ruby/capistrano-1.99*

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

# Ulrich Mueller <ulm@gentoo.org> (13 May 2007)
# Live CVS ebuilds for Emacs
>=app-editors/emacs-cvs-23
>=virtual/emacs-23

# Ryan Hill <dirtyepic@gentoo.org> (13 May 2007)
#   Mask for testing.
=net-fs/sfs-0.8.0_pre20070512

# Stefan Schweizer <genstef@gentoo.org> (9 may 2007)
# waiting for better upstream versions
# 170997 doesn't open the configuration dialog
>=sys-power/kpowersave-0.7.0
# 175933 cannot suspend because of missing org.freedesktop.PolicyKit
>=sys-power/powersave-0.15.0

# George Shapovalov (7 May 2007)
# masked old style ( non split and problematic) gnat compiler
# gnat-gcc or gnat-gpl are in for ages and should be used instead
dev-lang/gnat

# Stefan Schweizer <genstef@gentoo.org> (7 may 2007)
# mask new alsa release. Until it is fully added and tested
~media-libs/alsa-lib-1.0.14_rc4
~media-plugins/alsa-plugins-1.0.14_rc4
~media-libs/alsa-oss-1.0.14_rc4
~media-sound/alsa-headers-1.0.14_rc4
#need to figure out which drivers/firmwares got added
~media-sound/alsa-driver-1.0.14_rc4
~media-sound/alsa-firmware-1.0.14_rc4
#seq patch needs to be ported
~media-sound/alsa-utils-1.0.14_rc4

# Rajiv Aaron Manglani <rajiv@gentoo.org> (6 May 2007)
# open security issues, no longer supported upstream.
<net-misc/asterisk-1.2

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

# Christian Parpart <trapni@gentoo.org> (01 May 2007)
# Masked for testing.
=www-apps/mediawiki-1.10.0_rc1

# 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

# Markus Ullmann <jokey@gentoo.org> (12 Apr 2007)
# mask for security bug #170569
net-analyzer/netperf

# 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

# Petteri Räty <betelgeuse@gentoo.org> (6 Apr 2007)
# Upstream considers this Trash:
# http://www.cwi.nl/htbin/sen1/twiki/bin/view/SEN1/ATermLibrary
# Does not build:
# https://bugs.gentoo.org/show_bug.cgi?id=168466#c9
# Submit patches and get upstream going again and we will spare this.
# This is a library that nothing uses so it's not of much value for us.
dev-java/aterm-java

# 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

# Carsten Lohrke <carlo@gentoo.org> (4 Apr 2007)
# mask kmess prereleases
>=net-im/kmess-1.5_pre1

# 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

# Joshua Baergen <joshuabaergen@gentoo.org> (27 Mar 2007)
# Release candidate ATI driver
>=x11-drivers/xf86-video-ati-6.6.191

# Mike Doty <kingtaco@gentoo.org> (24 Mar 2007)
# Sorting out media-video/{spca5xx,gspca{,v1}} bug 159176
media-video/spca5xx
media-video/gspca

# Michael Sterrett <mr_bones_@gentoo.org> (19 Mar 2007)
# masked for removal when there's a good excuse.
# Old and nasty.  Not supported by upstream.
# use the newer versions of clanlib instead.
# If you find a bug in one of these packages, don't even think
# of filing a bug report unless you have a patch fixing the bug.
=dev-games/clanlib-0.6*
media-libs/hermes
games-sports/trophy
games-action/clanbomber
games-puzzle/pingus

# Raúl Porcel <armin76@gentoo.org> (15 Mar 2007)
# Mask snapshots
=net-p2p/amule-2.2.0_pre*

# 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

# Doug Goldstein <cardoe@gentoo.org> (5 Mar 2007)
# upstream MythTV development versions
# complain upstream if something is broken
# or if it's Gentoo specific, any bugs that get
# filed require a patch
>media-tv/mythtv-0.20.9_p99999
>x11-themes/mythtv-themes-0.20.9_p99999
>media-plugins/mytharchive-0.20.9_p99999
>media-plugins/mythbrowser-0.20.9_p99999
>media-plugins/mythcontrols-0.20.9_p99999
>media-plugins/mythdvd-0.20.9_p99999
>media-plugins/mythflix-0.20.9_p99999
>media-plugins/mythgallery-0.20.9_p99999
>media-plugins/mythgame-0.20.9_p99999
>media-plugins/mythmovies-0.20.9_p99999
>media-plugins/mythmusic-0.20.9_p99999
>media-plugins/mythnews-0.20.9_p99999
>media-plugins/mythphone-0.20.9_p99999
>media-plugins/mythvideo-0.20.9_p99999
>media-plugins/mythweather-0.20.9_p99999
>www-apps/mythweb-0.20.9_p99999
>media-plugins/mythzoneminder-0.20.1_p99999

# Stefan Cornelius <dercorny@gentoo.org> (3 Mar 2007)
# Masking wordpress due to a long list of security bugs
# e.g. check bug #168529
www-apps/wordpress

# 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

# Matti Bickel <mabi@gentoo.org> (28 Feb 2007)
# Fails to compile against lua-5.1.1, no upstream release for 3 years
net-irc/nikibot

# 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)
# Depends on xkeyval which was masked earlier today.
dev-tex/dk-bib

# 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
dev-tex/vntex

# Raúl Porcel <armin76@gentoo.org> (17 Feb 2007)
# Mask beta versions
=net-irc/dircproxy-1.2.0_beta2

# 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

# Daniel Black <dragonheart@gentoo.org> (04 Feb 2007)
# savedconfig.eclass prototype
=net-misc/dropbear-0.48.1-r1

# 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

# Robin H. Johnson <robbat2@gentoo.org> (01 Feb 2007)
# Block for early testing
>=app-office/dia-0.96_pre3

# 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

# Christian Heim <phreak@gentoo.org> (29 January 2007)
# masking apr-0.9.13/apr-util-0.9.13 as they break net-www/apache
# (see #164379 for reference)
=dev-libs/apr-0.9.13
=dev-libs/apr-util-0.9.13

# 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> (27 Jan 2007)
# Masked because a dependency is missing in Portage.
# See bug #163853.
>=kde-base/kpilot-3.5.6

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

# Christian Faulhammer <opfer@gentoo.org> (23 Jan 2007)
# masked for testing
app-portage/gatt-svn

# 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

# Markus Ullmann <jokey@gentoo.org> (15 Jan 2007)
# mask live ebuild
=app-emulation/virtualbox-9999

# Olivier Crete <tester@gentoo.org> (13 Jan 2007)
# Unmaintained upstream, security bug #160793
net-im/centericq

# Joshua Baergen <joshuabaergen@gentoo.org> (13 Jan 2007)
# Deprecated X components
x11-apps/mkcfm

# Marien Zwart <marienz@gentoo.org> (11 Jan 2007)
# Does not work with the latest twisted core,
# upstream says "I don't think it should have ever been released anyway",
# so mask until it stabilizes.
dev-python/twisted-web2

# Alexis Ballier <aballier@gentoo.org> (10 Jan 2007)
# Current versions are using internal libraries
# that have not been checked and might have security issues
# Use at your own risk, bug #158340
media-video/avidemux

# 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

# Charlie Shepherd <masterdriverz@gentoo.org> (07 Jan 2007)
# Pending removal 06 Feb 2007
# Deprecated in favour of its successor app-admin/pwcrypt,
# which is already in the tree
app-crypt/cli-crypt

# 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

# Chris Gianelloni <wolf31o2@gentoo.org> (28 Dec 2006)
# These need to be unmasked together
games-action/descent2-data
games-action/descent2-demodata
>=games-action/d2x-0.2.5-r3
games-action/d2x-xl
games-action/d2x-rebirth

# 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

# Diego Pettenò <flameeyes@gentoo.org> (21 Dec 2006)
# This is an experimental ebuild, with more USE flags and
# a new ALSA_PCM_PLUGINS variable to disable of the
# core internal plugins.
=media-libs/alsa-lib-1.0.14_rc1-r1
=media-libs/alsa-lib-1.0.14_rc2-r1
=media-libs/alsa-lib-1.0.14_rc3-r1
=media-libs/alsa-lib-1.0.14_rc4-r1

# Patrick Kursawe <phosphan@gentoo.org> (06 Dec 2006)
# Only partially working, see bug #153667
media-tv/nuppelvideo

# 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

# Markus Dittrich <markusle@gentoo.org> (15 Nov 2006)
# masked sci-mathematics/gturing; last release was
# in 2002, it uses functions missing in >=gnome-2.14 and,
# therefore, refuses to compile. Unless somebody steps up
# to fix it we should probably remove it from the tree.
sci-mathematics/gturing

# 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

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

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

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

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

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

# 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

# Stefaan De Roeck <stefaan@gentoo.org> (09 Sep 2006)
# 1.5.x is a development branch, people should test 1.4.x by default
=net-fs/openafs-1.5*
=net-fs/openafs-kernel-1.5*

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

# 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

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

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

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

# Alastair Tse <liquidx@gentoo.org> (27 Jul 2006)
# Masking synce-0.9.2 because of breakages (#141466) (#141491)
=app-pda/synce-0.9.2
=app-pda/synce-librapi2-0.9.2
=app-pda/synce-libsynce-0.9.2

# 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> (30 May 2006)
# awstats 6.6 is completely unusable - bug #134296
=net-www/awstats-6.6

# Martin Ehmsen <ehmsen@gentoo.org> (28 May 2006)
# Masked until ready for the public.
# There are still some work to be done, but should
# be able to build.
app-text/texlive

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

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

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

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

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

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

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

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

# Robin H. Johnson <robbat2@gentoo.org> (11 Feb 2006)
# 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

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

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

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

# 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

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

# 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

# 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

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

# 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

# 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

# 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

# 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

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

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

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

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

# Sven Wegener <swegener@gentoo.org> (05 May 2005)
# Development versions, without this mask users will not get the upstream
# stable ~arch version by default, which means we can't mark it stable because
# it's not tested. If you want it, please unmask.
>=net-nntp/leafnode-2.0.0_alpha0

# Fernando J. Pereda <ferdy@gentoo.org> (25 April 2005)
# mask these until the new mailwrapper/mailer-config scheme is ready
# it is secure to unmask them to test
net-mail/mailer-config
=net-mail/mailwrapper-0.2.1-r1
=mail-mta/nbsmtp-1.00-r3
=mail-mta/msmtp-1.4.9-r1
>=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*

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

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

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

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

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

# Alec Warner <antarus@gentoo.org> (13 Aug 2007)
# testing
# Last Rights 30 days from now
sys-apps/testing

# Alec Warner <antarus@gentoo.org> (13 Aug 2007)
# This is a 
# Last Rights 30 days from now
sys-apps/testing