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

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

# Alon Bar-Lev <alonbl@gentoo.org> (28 Nov 2007)
# Masked for testing, bug#200367
>=sys-apps/busybox-1.8.0

# Benedikt Böhm <hollow@gentoo.org> (28 Nov 2007)
# Masked for USE_EXPAND and eclass testing.
# DO NOT use unless you know what you're doing!
=www-servers/apache-2.2.6-r4

# MATSUU Takuto <matsuu@gentoo.org> (27 Nov 2007)
# Lots of security issues: bug #196673
# fix the deps first
#app-text/ptex

# Robin H. Johnson <robbat2@gentoo.org> (26 Nov 2007)
# For testing only
=net-misc/memcached-1.24_rc1

# Piotr Jaroszyński <peper@gentoo.org> (26 Nov 2007)
# opensync svn ebuilds
=app-pda/libsyncml-9999
=app-pda/libopensync-9999
=app-pda/msynctool-9999
=app-pda/libopensync-plugin-evolution2-9999
=app-pda/libopensync-plugin-file-9999
=app-pda/libopensync-plugin-gnokii-9999
=app-pda/libopensync-plugin-google-calendar-9999
=app-pda/libopensync-plugin-gpe-9999
=app-pda/libopensync-plugin-irmc-9999
=app-pda/libopensync-plugin-kdepim-9999
=app-pda/libopensync-plugin-palm-9999
=app-pda/libopensync-plugin-python-9999
=app-pda/libopensync-plugin-syncml-9999
=app-pda/libopensync-plugin-vformat-9999

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

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

# Ulrich Mueller <ulm@gentoo.org> (25 Nov 2007)
# Live SVN ebuild
~app-emacs/gentoo-syntax-9999

# Saleem Abdulrasool <compnerd@gentoo.org> (23 Nov 2007)
# Mask this until we get the input and mounting issues worked out
>=sys-apps/hal-0.5.10
>=sys-auth/policykit-0.6
>=app-misc/hal-info-20071011
>=gnome-base/gnome-mount-0.7
>=gnome-extra/policykit-gnome-0.6
>=gnome-extra/gnome-power-manager-2.20.1

# Tony Vroon <chainsaw@gentoo.org> (22 Nov 2007)
# Upstream actively prevents automated downloads, consider using xchat-xsys instead.
# Scheduled for removal.
net-irc/audacious-show

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

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

# Doug Klima <cardoe@gentoo.org> (21 Nov 2007)
# Experimental cairo snapshot for Firefox-3 usage
# known to mess with poppler and PDF rendering
>=x11-libs/cairo-1.5.2

# Tony Vroon <chainsaw@gentoo.org> (21 Nov 2007)
# Unmaintained upstream, use the bundled status-icon plugin in Audacious 1.3 and higher.
# Scheduled for removal.
media-plugins/audacious-docklet

# Olivier Crete <tester@gentoo.org> (20 Nov 2007)
# There is now a better version include in gnome-base/gnome-keyring
sys-auth/pam_keyring

# William L Thomson Jr <wltjr@gentoo.org> (18 Nov 2007)
# Upstream does not exist anymore, stale binary package
# Package will be moved to junkyard overlay after 30 days
# unless users express interest in this package.
dev-java/blackdown-java3d-bin

# Ryan Hill <dirtyepic@gentoo.org> (18 Nov 2007)
# Mask for keywording/testing.
app-admin/eselect-wxwidgets
>=x11-libs/wxGTK-2.6.4.0-r2
>=dev-python/wxpython-2.6.4.0-r1

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

# Samuli Suominen <drac@gentoo.org> (18 Nov 2007)
# Based on Xfce 4.4.2 testing tarballs at
# http://mocha.xfce.org/archive/.testing/xfce-4.4.2/src
# Content and digest might still change, be careful.
=xfce-base/libxfce4mcs-4.4.2*
=xfce-base/libxfce4util-4.4.2*
=xfce-base/libxfcegui4-4.4.2*
=xfce-base/orage-4.4.2*
=xfce-base/xfce-mcs-manager-4.4.2*
=xfce-base/xfce-mcs-plugins-4.4.2*
=xfce-base/xfce-utils-4.4.2*
=xfce-base/xfce4-4.4.2*
=xfce-base/xfce4-panel-4.4.2*
=xfce-base/xfce4-session-4.4.2*
=xfce-base/xfdesktop-4.4.2*
=xfce-base/xfwm4-4.4.2*
=xfce-base/xfprint-4.4.2*
=xfce-base/xfce4-extras-4.4.2*
=x11-themes/gtk-engines-xfce-2.4.2*
=xfce-extra/xfce4-appfinder-4.4.2*
=xfce-extra/xfwm4-themes-4.4.2*
=xfce-extra/xfce4-mixer-4.4.2*
=xfce-extra/xfce4-icon-theme-4.4.2*
=xfce-extra/mousepad-0.2.13*

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

# Diego Pettenò <flameeyes@gentoo.org> (15 Nov 2007)
# Masked for security vulnerability, see bug #199193.
# Will be removed on December 15th 2007.
sys-auth/pam_console

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

# Alexis Ballier <aballier@gentoo.org> (11 Nov 2007)
# Lots of security issues: bug #196673
# The experience with babel in tetex-3, texlive 
# and xetex is good. Skilled users recommended to migrate.
# Masking for removal: Due 11 Dec 2007
app-text/cstetex

# Robin H. Johnson <robbat2@gentoo.org> (02 Nov 2007)
# Brokeness in these, but hanging on to them while getting 1.04 ready
=mail-mta/nullmailer-1.03*
# Block 1.04 until it's ready
>=mail-mta/nullmailer-1.04

# Rajiv Aaron Manglani <rajiv@gentoo.org> (11 Nov 2007)
# no longer supported upstream.
<net-misc/zaptel-1.2
<net-misc/asterisk-sounds-1.2

# Krzysiek Pawlik <nelchael@gentoo.org> (10 Nov 2007)
# Masking for removal: last Resin 2.x release ws almost two years ago,
# please move to 3.0 series. Resin 2.1.17 will be removed in 30 days.
=www-servers/resin-2.1.17

# Alin Năstac <mrness@gentoo.org> (08 Nov 2007)
# Versions with kernel 2.4 support will be removed in 30 days.
=net-dialup/ltmodem-8.31*

# Ryan Hill <dirtyepic@gentoo.org> (07 Nov 2007)
# mask for GLSA 200710-12 (bug #198053)
# sched removal 07 Dec 2007
=media-libs/t1lib-1.3.1

# Chris Gianelloni <wolf31o2@gentoo.org> (07 Nov 2007)
# Masking for testing for the upcoming release since we don't want this hitting
# user machines just yet.
~app-misc/livecd-tools-1.0.38
~sys-kernel/genkernel-3.4.9_pre8

# Gustavo Felisberto <humpback@gentoo.org> (07 Nov 2007)
# Beta version
>=net-im/skype-2.0.0.13

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

# William L Thomson Jr <wltjr@gentoo.org> (06 Nov 2007)
# Old release notes, and pdf docs provided by main package
# No deps that I could find, no reason to be a package
# in tree. Punting ASAP ~30 days maybe :)
dev-db/firebird-docs

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

# Samuli Suominen <drac@gentoo.org> (05 Nov 2007)
# Masked for treecleaners, removed in 60 days.
# See http://tinyurl.com/yu5t35 for references.
net-im/jit
sys-apps/tcng
net-analyzer/snmpmon
mail-client/elmo
net-im/jud
sys-apps/yard
app-editors/beaver
media-radio/ktrack
app-portage/portagemaster
x11-themes/ximian-artwork
mail-filter/popfile
x11-misc/fluxspace
app-vim/hgmenu
app-vim/hgcommand
sys-libs/gi-detect
sys-apps/discover-data
sys-apps/discover
x11-wm/flwm
dev-db/dbdesigner

# Duncan Coutts <dcoutts@gentoo.otg> (05 Nov 2007)
# dev-lang/ghc-bin is going away, use dev-lang/ghc instead.
# You can USE=binary with dev-lang/ghc to get the effect of ghc-bin.
dev-lang/ghc-bin

# Petteri Räty <betelgeuse@gentoo.org> (04 Nov 2007)
# java-gnome is now a single package so you only need
# =dev-java/java-gnome-4.0*
dev-java/cairo-java
dev-java/glib-java
dev-java/libgconf-java
dev-java/libglade-java
dev-java/libgtk-java
dev-java/libvte-java
dev-java/libgnome-java
=dev-java/java-gnome-2*

# Petteri Räty <betelgeuse@gentoo.org> (3 Nov 2007)
# Replaced by dev-java/sun-jaf. Will be moved to Junkyard
# after the month is up.
dev-java/sun-jaf-bin

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

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

# Markus Ullmann <jokey@gentoo.org> (29 Oct 2007)
# mask 2.2 as announced on gwn half a year ago
<net-nds/openldap-2.3

# Santiago M. Mola <coldwind@gentoo.org> (29 Oct 2007)
# Butterfly is broken with new Empathy due to API changes.
# Waiting for a new release of pymsn and butterfly.
net-voip/telepathy-butterfly

# Ulrich Mueller <ulm@gentoo.org> (27 Oct 2007)
# Emacs snapshots and live CVS of Emacs unicode-2 branch
~app-editors/emacs-cvs-22.1.50_p20070829
~app-editors/emacs-cvs-23.0.0_p20070920
~app-editors/emacs-cvs-23.0.60
>=virtual/emacs-23

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

# Benedikt Böhm <hollow@gentoo.org> (25 Oct 2007)
# Masked for testing TLS Server Name Indication
=www-servers/apache-2.2.6-r3

# William L Thomson Jr <wltjr@gentoo.org> (24 Oct 2007)
# Stale upstreamno release since September 2005.
# Package will be moved to junkyard overlay after 30 days
# unless users express interest in this package.
dev-db/xpg

# Markus Ullmann <jokey@gentoo.org> (20 Oct 2007)
# dependency unneeded now, merged upstream
dev-util/portatosourceview

# Ulrich Mueller <ulm@gentoo.org> (20 Oct 2007)
# CVS snapshot, needs testing
=app-emacs/wanderlust-2.15.5_pre*

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

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

# Ulrich Mueller <ulm@gentoo.org> (15 Oct 2007)
# Live CVS ebuild
~app-emacs/ngnus-9999

# Stefan Schweizer <genstef@gentoo.org> (14 Oct 2007)
# Development release
>=net-libs/openslp-1.3.0

# Andrej Kacian <ticho@gentoo.org> (13 Oct 2007)
# RC is not for general public
=app-antivirus/clamav-0.92_rc2

# Michael Marineau <marineam@gentoo.org> (10 Oct 2007)
# The ck patchest is gone, will be removed shortly.
sys-kernel/ck-sources

# Doug Goldstein <cardoe@gentoo.org> (10 Oct 2007)
# the Asterisk is coming! the Asterisk is coming!
>=net-misc/zaptel-1.4.0
>=net-misc/asterisk-1.4.0

# Krzysiek Pawlik <nelchael@gentoo.org> (08 Oct 2007)
# Masked untill the split from net-im/jabberd is complete.
# See bug #178055 and bug #195091
net-im/jabberd2

# Samuli Suominen <drac@gentoo.org> (08 Oct 2007)
# Binary only package shipping vulnerable OpenSSL and links against
# it. Masked for removal, unless upstream releases a new version 
# or provides us with source. Bug 194287.
dev-lang/anubis

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

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

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

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

# Joe Sapp <nixphoeni@gentoo.org> (02 Oct 2007)
# Doesn't compile, upstream is dead, and depends
# on old packages not in portage any more
# See bug #186440
x11-wm/kahakai

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

# Kevin F. Quinn <kevquinn@gentoo.org> (27 Sep 2007)
# Masked for testing
=app-text/acroread-8.1.1

# Wulf C. Krueger <philantrop@gentoo.org> (27 Sep 2007)
# Temporary mask for further testing and until xmlrpc-c has been keyworded
# properly.
=dev-util/cmake-2.4.7-r2

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

# Hanno Boeck <hanno@gentoo.org> (21 Sep 2007)
# experimental new ebuild, changes a lot and breaks configuration
=net-mail/mailman-2.1.9-r2

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

# Robin H. Johnson <robbat2@gentoo.org> (20 Sep 2007)
# last rites
dev-util/bk_client

# Daniel Black <dragonheart@gentoo.org> (14 Sep 2007)
# Added for testing libssh2
=net-misc/curl-7.17.0-r1

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

# Mike Frysinger <vapier@gentoo.org> (08 Sep 2007)
# Use sys-auth/thinkfinger instead
sys-auth/tfm-fingerprint
sys-auth/pam_bioapi
sys-auth/bioapi

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

# Jim Ramsay <lack@gentoo.org> (05 Sep 2007)
# Masked because of bugginess, but adding to the tree for those who prefer the
# bleeding edge (Bug 189833)
=net-www/netscape-flash-9.0.60.0_beta082207

# Denis Dupeyron <calchan@gentoo.org> (04 Sep 2007)
# Masking new Neverwinter Nights ebuilds until they're confirmed to work
=games-rpg/nwn-data-1.29-r2
=games-rpg/nwn-1.68-r2

# Michael Sterrett <mr_bones_@gentoo.org> (30 Aug 2007)
# Security bug #190835
games-fps/doomsday
games-fps/doomsday-resources

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

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

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

# 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

# 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

# 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

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

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

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

# 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

# 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

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

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

# Olivier Fisette <ribosome@gentoo.org> (17 Jul 2007)
# Software no longer available (redistribution not allowed).
sci-chemistry/nmrview

# Gustavo Zacarias <gustavoz@gentoo.org> (16 Jul 2007)
# Mask zaptel-1.2.18-r1 since it seems to have some issues and is experimental
# See bug #185268
=net-misc/zaptel-1.2.18-r1

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

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

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

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

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

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

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

# 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

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

# 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

# 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 of ocaml (3.10), camlp4 has lots of api chages
# Thus it breaks lots of ocaml packages
# Other things that need 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
>=app-emacs/ocaml-mode-3.10.0

# 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

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

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

# Stefan Schweizer <genstef@gentoo.org> (9 may 2007)
# 175933 cannot suspend because of missing org.freedesktop.PolicyKit
>=sys-power/powersave-0.15.0

# 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

# 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
# Anant Narayanan <anant@gentoo.org> (8 Oct 2007)
# Let's give wordpress another chance with version 2.3
<www-apps/wordpress-2.3

# Stefan Cornelius <dercorny@gentoo.org> (2 Mar 2007)
# Masked because it's affected by 7 GLSAs or so, nobody should use it
<=dev-db/mysql-3.23.58-r1

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

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

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

# Alexandre Buisse <nattfodd@gentoo.org> (21 Feb 2007)
# 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-2.11
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

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

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

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

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

# 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

# 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

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

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

# 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

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

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

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

# 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

# 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

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

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

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

# <klieber@gentoo.org> (01 Apr 2004)
# The following packages contain a remotely-exploitable
# security vulnerability and have been hard masked accordingly.
#
# Please see http://bugs.gentoo.org/show_bug.cgi?id=44351 for more info
#
# You may unmask this package by placing an appropriate entry in your
# /etc/portage/package.unmask file
games-fps/unreal
games-fps/unreal-tournament
games-fps/unreal-tournament-goty
games-fps/unreal-tournament-strikeforce
games-fps/unreal-tournament-bonuspacks
games-fps/aaut

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

# 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