summaryrefslogtreecommitdiff
blob: 0350bc0561c6ce7782e5dcabe194ad1a6c28ff4c (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
####################################################################
# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.7424 2007/06/30 07:57:49 drac 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
##

# Ali Polatel <hawking@gentoo.org> (30 Jun 2007)
# This module is now part of dev-python/mechanize.
# Upstream says there will be no standalone releases.
# Masked for removal in 30 days. bug 166914
dev-python/clientcookie

# Samuli Suominen <drac@gentoo.org> (29 Jun 2007)
# Needs testing, work, and guide for bug 183547.
xfce-extra/pynetworkmanager

# 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

# Raúl Porcel <armin76@gentoo.org> (28 Jun 2007)
# Mask rc versions
=net-p2p/deluge-0.5.2_rc*

# Ali Polatel <hawking@gentoo.org> (28 Jun 2007)
# Included in python standard library with python-2.1.
# See bug #145154 for details.
# Masked for removal in 30 days.
dev-python/pyunit

# Gilles Dartiguelongue <eva@gentoo.org> (26 Jun 2007)
# Obsolete pre Gnome-2.6 component, bug #183086.
# Masked for removal in 30 days.
net-libs/linc

# 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

# Piotr Jaroszyński <peper@gentoo.org> (24 Jun 2007)
# Masked for removal. bug #165898
x11-drivers/mtxdrivers-pro

# Ryan Hill <dirtyepic@gentoo.org> (23 Jun 2007)
# Broken, bug #115110.
media-fonts/twmoefonts

# Marius Mauch <genone@gentoo.org> (23 Jun 2007)
# Wait for updated notification and vcalendar plugins
>=mail-client/claws-mail-2.10.0_rc1

# 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

# Ryan Hill <dirtyepic@gentoo.org> (21 Jun 2007)
# Masked for removal for bug #182748.
# ETR: July 21st, 2007
net-dialup/multiimonc

# Daniel Black <dragonheart@gentoo.org> (21 Jun 2007)
# Masked for removal wrt bug #154763
app-forensics/regviewer

# Daniel Gryniewicz <dang@gentoo.org> (19 Jun 2007)
# Masked for bug #182612
dev-cpp/libbonobomm
dev-cpp/libbonobouimm
dev-cpp/orbitcpp

# 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

# Christian Faulhammer <opfer@gentoo.org> (12 Jun 2007)
# mask for removal:
# upstream dead, does not work with current Emacs 22
# replacement is app-emacs/slime{,-cvs}
app-emacs/ilisp
app-emacs/ilisp-cvs

# 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

# Mart Raudsepp <leio@gentoo.org> (04 Jun 2007)
# Obsolete Gnome-1.x component, bug 180808
# Masked for removal in 30 days.
net-libs/soup

# Fabian Groffen <grobian@gentoo.org> (03 Jun 2007)
# muttng is outdated and unmaintained, try plain mutt instead.
# see http://article.gmane.org/gmane.linux.gentoo.devel/49234
# Masked pending removal.  Remove in 30 days.
mail-client/muttng

# Doug Goldstein <cardoe@gentoo.org> (03 Jun 2007)
# beta drivers for testing
>x11-drivers/nvidia-drivers-100

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

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

# Michael Sterrett <mr_bones_@gentoo.org> (30 May 2007)
# masked for removal on 20070629
# Upstream is dead and there are several open bugs:
# http://bugs.gentoo.org/show_bug.cgi?id=146620
# http://bugs.gentoo.org/show_bug.cgi?id=179792
# http://bugs.gentoo.org/show_bug.cgi?id=180104
# http://bugs.gentoo.org/show_bug.cgi?id=180105
# See http://article.gmane.org/gmane.comp.security.firewalls.firestarter.user/1342
# for a thread on the mailing list regarding the state of things, including
# mention of the problems with the newest netfilter code.
net-firewall/firestarter

# 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

# Luca Barbato <lu_zero@gentoo.org> (26 May 2007)
# Temp mask for ffmpeg
=media-video/ffmpeg-0.4.9_p20070525

# 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

# Benedikt Böhm <hollow@gentoo.org> (23 May 2007)
# masked for removal as per #114453
net-www/mod_auth_ldap

# 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

# Petteri Räty <betelgeuse@gentoo.org> (19 May 2007)
# Time for the binary ebuild to go as nothing is using it
# any more. Please use dev-java/sun-javamail instead.
dev-java/sun-javamail-bin

# Raúl Porcel <armin76@gentoo.org> (18 May 2007)
# For treecleaners, bug 102174
# Pending removal 17 Jul 2007
www-servers/boa

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

# Chris Gianelloni <wolf31o2@gentoo.org> (17 May 2007)
# Masked for removal,  See bug #169546 for more information.  Will be removed on
# 17 Jun 2007.
games-fps/unreal-tounrament-infiltration

# 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

# Luis Araujo <araujo@gentoo.org> (12 May 2007)
# Keep Himerge masked because it depends on ghc-6.6
app-portage/himerge

# Doug Goldstein <cardoe@gentoo.org< (10 May 2007)
# package does not compile complains of missing pygtk when
# --disable-pygtk was passed to econf
=net-dns/avahi-0.6.19

# 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

# Gustavo Felisberto <humpback@gentoo.org> (7 may 2007)
# Upstream changed name (again) please use net-im/openfire and follow the 
# upgrade procedure
net-im/wildfire

# Mike Kelly <pioto@gentoo.org> (7 May 2007)
# Not a very good or useful script, has an open bug (#158231), not really worth
# fixing. To be removed in 30 days.
app-vim/sudo

# 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

# Timothy Redaelli <drizzt@gentoo.org> (3 May 2007)
# Upstream considers beta7 not ready for production use.
=net-im/pidgin-2.0.0_beta7

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

# Donnie Berkholz <dberkholz@gentoo.org> (29 Apr 2007)
# Masked for testing
~media-libs/mesa-6.5.3

# 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

# Andrej Kacian <ticho@gentoo.org> (20 Apr 2007)
# Support dropped by upstream, buggy, likely to cause data loss.
# Should be gone in 30 days.
mail-client/claws-mail-maildir

# Alexis Ballier <aballier@gentoo.org> (18 Apr 2007)
# New version and new name for media-libs/libdts
# It has an api compatibility layer but some packages
# try to link using -ldts which just fails
media-libs/libdca

# Roy Marples <uberlord@gentoo.org> (15 Apr 2007)
# Masked as it segfaults and fails with our scripts, #174693.
=net-wireless/wireless-tools-29_pre17

# Mike Kelly <pioto@gentoo.org> (14 Apr 2007)
# A modified version of app-vim/doxygen-syntax-1.15 is already included in
# vim7, no point in keeping this around. See Bug #174637. Scheduled for
# removal in 30 days.
app-vim/doxygen-syntax

# Petteri Räty <betelgeuse@gentoo.org> (13 Apr 2007)
# Use dev-java/jdbc-postgresql instead. If you need the 7.3*
# versions for something please drop gentoo-java mailing list
# a mail. Removal in 30 days.
dev-java/jdbc3-postgresql

# 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

# Carsten Lohrke <carlo@gentoo.org> (31 Mar 2007)
# no point to bug around with beta releases
>=kde-misc/krusader-1.80.0_beta1

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

# Petteri Räty <betelgeuse@gentoo.org> (30 Mar 2007)
# Use the from source version dev-java/saxon instead
# Removal in 30 days.
dev-java/saxon-bin

# Petteri Räty <betelgeuse@gentoo.org> (29 Mar 2007)
# -Last upstream release in 2003
# -Not migrated to use from source sun-jaf
# -Does not support bzip2.
# Use app-arch/tar instead or if you need a java library use
# dev-java/commons-vfs. If you still use this for something, please mail
# java@gentoo.org and we know that this is actively used and will give
# it the care it needs. Otherwise you can find it in our junkyard after 30 days.
dev-java/javatar

# 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

# Stefan Schweizer <genstef@gentoo.org> (25 Mar 2007)
# Please use modular Xorg now
virtual/x11

# 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

# Michael Sterrett <mr_bones_@gentoo.org> (19 Mar 2007)
# Version in portage doesn't work with lua-5.1.
# Masked so lua-5.1 can be stablized.
# http://bugs.gentoo.org/show_bug.cgi?id=168792
games-arcade/stepmania

# Lennart Kolmodin <kolmodin@gentoo.org> (16 Mar 2007)
# Mask ghc-bin for testing.
# See bug bug 151012
=dev-lang/ghc-bin-6.6

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

# Lennart Kolmodin <kolmodin@gentoo.org> (15 Mar 2007)
# Mask modular libraries for testing.
# See bug 151012
=dev-haskell/alut-2.0
=dev-haskell/arrows-2.0
=dev-haskell/cgi-2006.9.6
=dev-haskell/fgl-5.3
=dev-haskell/glut-2.0-r1
=dev-haskell/haskell-src-1.0-r1
=dev-haskell/hgl-3.1-r1
=dev-haskell/html-1.0-r1
=dev-haskell/hunit-1.1-r1
=dev-haskell/mtl-1.0-r1
=dev-haskell/network-2.0
=dev-haskell/openal-1.3
=dev-haskell/opengl-2.1
=dev-haskell/quickcheck-1.0-r1
=dev-haskell/time-1.0
=dev-haskell/x11-1.2
=dev-haskell/xhtml-2006.9.13

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

# MATSUU Takuto <matsuu@gentoo.org> (12 Mar 2007)
# Mask for removal. Use app-text/hyperestraier, bug 168179
app-text/estraier

# 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

# Lennart Kolmodin <kolmodin@gentoo.org> (7 Mar 2007)
# Masked to let us try out our new package dependency scheme.
# See bug 151012.
>=dev-lang/ghc-6.6

# 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)
# experimental SVN to quell the masses
# complain upstream if something is broken
>media-tv/mythtv-0.20.1_p99999
>x11-themes/mythtv-themes-0.20.1_p99999
>media-plugins/mytharchive-0.20.1_p99999
>media-plugins/mythbrowser-0.20.1_p99999
>media-plugins/mythcontrols-0.20.1_p99999
>media-plugins/mythdvd-0.20.1_p99999
>media-plugins/mythflix-0.20.1_p99999
>media-plugins/mythgallery-0.20.1_p99999
>media-plugins/mythgame-0.20.1_p99999
>media-plugins/mythmusic-0.20.1_p99999
>media-plugins/mythnews-0.20.1_p99999
>media-plugins/mythphone-0.20.1_p99999
>media-plugins/mythvideo-0.20.1_p99999
>media-plugins/mythweather-0.20.1_p99999
>www-apps/mythweb-0.20.1_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

# Petteri Räty <betelgeuse@gentoo.org> (28 Feb 2007)
# Deprecated in favor of dev-java/avalon-logkit that
# is built from source
dev-java/avalon-logkit-bin

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

# Luis Medinas <metalgod@gentoo.org> (21 Feb 2007)
# banshee-official-plugins for removal because
# the plugins are now included in the core
media-plugins/banshee-official-plugins

# 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
dev-tex/xcolor
dev-tex/xkeyval
dev-tex/latex-beamer
dev-tex/vntex
dev-tex/komascript

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

# Diego Pettenò <flameeyes@gentoo.org> (17 Feb 2007)
# Masked pending removal on 17 March. This ebuild has been
# deprecated in favour of the three split ebuilds by font
# format:
#   media-fonts/mikachan-font-otf (OpenType)
#   media-fonts/mikachan-font-ttc (TrueType Collection)
#   media-fonts/mikachan-font-ttf (TrueType Fonts)
media-font/mikachan-font

# <dev-zero@gentoo.org> (15 Feb 2007)
# Giving the kde team time to work out a solution for kexi
=dev-libs/libpqxx-2.6.9

# <hollow@gentoo.org> (15 Feb 2007)
# Segfaults all over the place; use 1.06.* instead
=dev-libs/xmlrpc-c-1.09.00

# Marien Zwart <marienz@gentoo.org> (10 Feb 2007)
# Masking experimental ebuild.
=x11-drivers/ati-drivers-8.33.6-r2

# Peter Weller <welp@gentoo.org> (09 Feb 2007)
# Libnotify doesn't work with dbus-python-0.80.x
# fixed in a newer version
=net-im/gajim-0.11-r3

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

# Christian Heim <phreak@gentoo.org> (08 Jan 2007)
# Various reasons, please use the these alternatives:
# net-www/mod_fastcgi -> www-apache/mod_fcgid
net-www/mod_fastcgi

# 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

# Tony Vroon <chainsaw@gentoo.org> (08 Jan 2007)
# Alpha software that is being tested
# Bugs to be reported *upstream only*. No support offered.
=media-plugins/audacious-plugins-1.3.0_alpha*
=media-sound/audacious-1.3.0_alpha*

# 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

# Timothy Redaelli <drizzt@gentoo.org> (09 Dec 2006)
# pending removal (#156989)
# can't fix rpath, application checks its checksum
app-antivirus/vlnx

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

# Robin H. Johnson <robbat2@gentoo.org> (21 Nov 2006)
# Block. It breaks badly on bigendian boxes.
=app-crypt/mhash-0.9.7.1

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

# Doug Goldstein <cardoe@gentoo.org> (15 Nov 2006)
# Completely broken. Upstream removed and changed binary files
# diff kinda doesn't work with binary files. Gonna have to make
# a tarball of changed binary files and overlay it
=media-plugins/mytharchive-0.20_p11671

# 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

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

# 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

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

# 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

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

# Christian Heim <phreak@gentoo.org> (14 Oct 2006)
# masking app-misc/gpsdrive for treecleaners, bug(s) 142710
# Pending removal 14th November 2006
# Steve Arnold <nerdboy@gentoo.org> (12 Jan 2007)
# Unmasking due to removal being canceled.
# Updated ebuild addresses current bugs.
#app-misc/gpsdrive

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

# 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
=media-gfx/splashutils-1.3-r3

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

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

# 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

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

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

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

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

# 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

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

# 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

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

# Robin H. Johnson <robbat2@gentoo.org> (11 Mar 2006)
# Work-in-progress to clean this up
# TODO
# - properly fix lazy bindings
# - fix read-only stuff
# - seperate data files from binaries
# - fix crappy state of runnable only in source tree.
# - provide log output to /var/log somewhere intelligently
app-benchmarks/ltp

# 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

# 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

# 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
=dev-db/mysql-5.0.34_alpha20070101-r61
=dev-db/mysql-community-5.1.15_alpha-r90

# 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
>=net-misc/asterisk-oh323-0.7.3

# 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

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

# 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

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

# 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.4
=mail-mta/postfix-2.2.5-r1
=mail-mta/postfix-2.2.8-r1
=mail-mta/postfix-2.2.9-r1
=mail-mta/postfix-2.2.10-r1
=mail-mta/postfix-2.3.0-r1
=mail-mta/postfix-2.3.2-r1

# 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.11
~dev-libs/log4c-1.0.12

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

# <pfeifer@gentoo.org> (12 Aug 2004)
# Masked for following ebuilds for testing:
=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-infiltration
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