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

# Christian Parpart <trapni@gentoo.org> (25 Aug 2005)
# masked for testing
=www-apps/mediawiki-1.5.0_rc3

# <mr_bones_@gentoo.org> (25 Aug 2005)
# Security mask until dholm can deal with it #102631
games-simulation/openttd

# Diego Pettenò <flameeyes@gentoo.org> (25 Aug 2005)
# Release Candidate
=media-libs/alsa-lib-1.0.10_rc*
=media-libs/alsa-oss-1.0.10_rc*
=media-plugins/alsa-jack-1.0.10_rc*
=media-sound/alsa-driver-1.0.10_rc*
=media-sound/alsa-firmware-1.0.10_rc*
=media-sound/alsa-headers-1.0.10_rc*
=media-sound/alsa-utils-1.0.10_rc*

# Gregorio Guidi <greg_g@gentoo.org> (25 Aug 2005)
# KDE 3.5 prereleases.
>=kde-base/arts-3.5_alpha
>=kde-base/kde-3.5_alpha
>=kde-base/kdeaccessibility-3.5_alpha
>=kde-base/kdeaddons-3.5_alpha
>=kde-base/kdeadmin-3.5_alpha
>=kde-base/kdeartwork-3.5_alpha
>=kde-base/kdebase-3.5_alpha
>=kde-base/kdeedu-3.5_alpha
>=kde-base/kdegames-3.5_alpha
>=kde-base/kdegraphics-3.5_alpha
>=kde-base/kdelibs-3.5_alpha
>=kde-base/kdemultimedia-3.5_alpha
>=kde-base/kdenetwork-3.5_alpha
>=kde-base/kdepim-3.5_alpha
>=kde-base/kdesdk-3.5_alpha
>=kde-base/kdetoys-3.5_alpha
>=kde-base/kdeutils-3.5_alpha
>=kde-base/kdewebdev-3.5_alpha
>=kde-base/kde-i18n-3.5_alpha
>=dev-util/kdevelop-3.3_alpha

# Luis F. Araujo <araujo@gentoo.org> (24 Aug 2005)
# This is a binary package version.
# Masked for more testing.
=dev-lang/smalltalkx-5.2.6

# vapier@gentoo.org (23 Aug 2005)
# Mask since it breaks wings #97798
=dev-lang/erlang-10.2.6

# Christian Parpart <trapni@gentoo.org> (23 Aug 2005)
# masked for testing
=www-apps/mediawiki-1.5.0_rc2

# Luis Medinas <metalgod@gentoo.org> (23 Aug 2005)
# Mask -alpha03 versions until i stablize that version
>=app-cdr/cdrtools-2.01.01_alpha03

# Diego Pettenò <flameeyes@gentoo.org> (22 Aug 2005)
# Pre-release heavy patched
=media-video/avidemux-2.1_pre*

# Benedikt Boehm <hollow@gentoo.org>
# Masked for testing
=sys-kernel/vserver-sources-2.1.0_pre1

# Leonardo Boshell <leonardop@gentoo.org> (22 Aug 2005)
# To be removed. Provided by gnome-base/libbonobo.
gnome-base/bonobo-activation

# Sven Wegener <swegener@gentoo.org> (22 August 2005)
# Depends on experimental/p.mask'ed dbus
net-dns/avahi

# Renat Lumpau <rl03@gentoo.org> (20 August 2005)
# Mask until full version is released
=www-apps/gallery-2.0_rc1
=www-apps/gallery-2.0_rc2

# Tim Yamin <plasmaroo@gentoo.org> (19 August 2005)
# Mask due to outstanding security issues; will be removed when the
# next -ac is released upstream which fixes these.
sys-kernel/ac-sources

# Stefan Knoblich <stkn@gentoo.org> (19 August 2005)
# Asterisk-1.2.0_pre and related ebuilds, still work-in-progress.
# Sangoma Wanpipe drivers, untested (compiles fine on 2.4 and 2.6).
>=net-libs/libpri-1.2.0_pre20050818
>=net-misc/zaptel-1.2.0_pre20050818
>=net-misc/asterisk-1.2.0_pre20050818
>=net-misc/asterisk-addons-1.2.0_pre20050818
>=net-libs/osptoolkit-3.3.1
>=net-misc/wanpipe-2.3.2_p4

# Diego Pettenò <flameeyes@gentoo.org> (18 August 2005)
# Toxine needs to be verified with upstream for a few issues.
media-video/toxine

# Doug Goldstein <cardoe@gentoo.org> (18 August 2005)
# Masking 0.5.x of HAL & 0.3x of DBUS since they break API
# Added here for Gnome purposes, pmount deps on this stuff
>=sys-apps/hal-0.5
>=sys-apps/dbus-0.30
>=gnome-extra/hal-device-manager-0.5
sys-apps/pmount 

# Saleem Abdulrasool <compnerd@gentoo.org> (17 August 2005)
# Masking libsvg-cairo because its for cairo-0.9.2 mainly
# and that is masked for GNOME purposes.
>=x11-libs/libsvg-cairo-0.1.6

# Peter Johanson <latexer@gentoo.org> (18 May 2005)
# Masking the new beta *-sharp-2.{3,5} releases
=dev-dotnet/art-sharp-2*
=dev-dotnet/gconf-sharp-2*
=dev-dotnet/gda-sharp-2*
=dev-dotnet/glade-sharp-2*
=dev-dotnet/gnomedb-sharp-2*
=dev-dotnet/gnome-sharp-2*
=dev-dotnet/gnomevfs-sharp-2*
=dev-dotnet/gtkhtml-sharp-2*
=dev-dotnet/gtk-sharp-2*
=dev-dotnet/rsvg-sharp-2*
=dev-dotnet/vte-sharp-2*

# Jory A. Pratt <anarchy@gentoo.org> (15 Aug 2005)
# Mozilla rpath inclusion. For testing purposes only.
=mail-client/mozilla-thunderbird-1.0.6-r5
=www-client/mozilla-firefox-1.0.6-r6
=www-client/mozilla-1.7.11-r2

# Leonardo Boshell <leonardop@gentoo.org> (14 Aug 2005)
# GNOME 2.12 betas. For testing purposes only.
# -- gnome mask start
>=gnome-base/gnome-2.11
>=dev-libs/glib-2.7
>=x11-libs/gtk+-2.7
>=x11-libs/pango-1.9
>=gnome-extra/gnome-keyring-manager-2.11
>=gnome-base/gconf-2.11
>=gnome-base/gnome-vfs-2.11
>=gnome-base/libgnome-2.11
>=gnome-base/libgnomeui-2.11
>=gnome-base/libgnomecanvas-2.11
>=gnome-extra/bug-buddy-2.11
>=gnome-base/control-center-2.11
>=gnome-base/eel-2.11
>=gnome-base/nautilus-2.11
>=gnome-extra/gnome-media-2.11
>=media-video/totem-1.1
>=media-sound/sound-juicer-2.11
>=media-gfx/eog-2.11
>=www-client/epiphany-1.7
>=app-arch/file-roller-2.11
>=gnome-extra/gcalctool-5.6.26
>=app-editors/gedit-2.11
>=app-text/evince-0.3
>=gnome-base/gnome-session-2.11
>=gnome-base/gnome-desktop-2.11
>=gnome-base/gnome-applets-2.11
>=gnome-base/gnome-panel-2.11
>=gnome-base/gnome-menus-2.11
>=x11-themes/gnome-icon-theme-2.11
>=x11-themes/gnome-themes-2.11
>=x11-terms/gnome-terminal-2.11
>=x11-libs/gtksourceview-1.3
>=gnome-base/libgnomeprint-2.11
>=gnome-base/libgnomeprintui-2.11
>=gnome-extra/gnome-utils-2.11
>=gnome-extra/gnome-games-2.11
>=gnome-base/libgtop-2.11
>=gnome-extra/gnome-system-monitor-2.11
>=x11-libs/libwnck-2.11
>=x11-wm/metacity-2.11
>=gnome-extra/yelp-2.11
>=gnome-extra/zenity-2.11
>=net-analyzer/gnome-netstatus-2.11
>=net-analyzer/gnome-nettool-1.3
>=gnome-extra/nautilus-cd-burner-2.11
>=gnome-base/gnome-volume-manager-1.3
>=mail-client/evolution-2.3
>=gnome-extra/evolution-data-server-1.3
>=gnome-extra/evolution-exchange-2.3
>=gnome-extra/evolution-webcal-2.3
>=gnome-extra/libgtkhtml-3.7
>=net-misc/vino-2.11
>=app-admin/gnome-system-tools-1.3
>=app-admin/system-tools-backends-1.3
>=app-accessibility/gnopernicus-0.11
# additional packages, not in the meta-ebuild
>=dev-python/gnome-python-2.11
>=app-text/gnome-doc-utils-0.3
>=dev-cpp/gnome-vfsmm-2.11
>=dev-cpp/libgnomecanvasmm-2.11
>=dev-cpp/libxmlpp-2.11
>=www-client/epiphany-extensions-1.7
>=gnome-extra/gconf-editor-2.11
>=x11-themes/gnome-backgrounds-2.11
>=dev-python/pycairo-0.9.0
>=dev-python/pygtk-2.7.4
# -- gnome mask end

# <genstef@gentoo.org> (14 Aug 2005
# Does not play nice together with wpa_supplicant
# http://bugs.gentoo.org/102104
=net-wireless/madwifi-driver-0.1_pre20050809
=net-wireless/madwifi-driver-0.1_pre20050809-r1

# Marius Mauch <genone@gentoo.org> (11 Aug 2005)
# yes, this is a new portage, but not with the long awaited new dep resolver
# needs a lot of testing
>=sys-apps/portage-2.1.0_alpha

# Donnie Berkholz <spyderous@gentoo.org> (07 Aug 2005)
# Modularized X, upstream release candidates
media-fonts/encodings
media-fonts/font-adobe-100dpi
media-fonts/font-adobe-75dpi
media-fonts/font-adobe-utopia-100dpi
media-fonts/font-adobe-utopia-75dpi
media-fonts/font-adobe-utopia-type1
media-fonts/font-alias
media-fonts/font-arabic-misc
media-fonts/font-bh-100dpi
media-fonts/font-bh-75dpi
media-fonts/font-bh-lucidatypewriter-100dpi
media-fonts/font-bh-lucidatypewriter-75dpi
media-fonts/font-bh-ttf
media-fonts/font-bh-type1
media-fonts/font-bitstream-100dpi
media-fonts/font-bitstream-75dpi
media-fonts/font-bitstream-type1
media-fonts/font-cronyx-cyrillic
media-fonts/font-cursor-misc
media-fonts/font-daewoo-misc
media-fonts/font-dec-misc
media-fonts/font-ibm-type1
media-fonts/font-isas-misc
media-fonts/font-jis-misc
media-fonts/font-micro-misc
media-fonts/font-misc-cyrillic
media-fonts/font-misc-misc
media-fonts/font-mutt-misc
media-fonts/font-schumacher-misc
media-fonts/font-screen-cyrillic
media-fonts/font-sony-misc
media-fonts/font-sun-misc
media-fonts/font-util
media-fonts/font-winitzki-cyrillic
media-fonts/font-xfree86-type1
media-libs/mesa
x11-apps/appres
x11-apps/bdftopcf
x11-apps/beforelight
x11-apps/bitmap
x11-apps/editres
x11-apps/fonttosfnt
x11-apps/fslsfonts
x11-apps/fstobdf
x11-apps/iceauth
x11-apps/ico
x11-apps/lbxproxy
x11-apps/listres
x11-apps/luit
x11-apps/mkfontdir
x11-apps/mkfontscale
x11-apps/oclock
x11-apps/pclcomp
x11-apps/proxymngr
x11-apps/rgb
x11-apps/rstart
x11-apps/scripts
x11-apps/setxkbmap
x11-apps/showfont
x11-apps/smproxy
x11-apps/twm
x11-apps/viewres
x11-apps/x11perf
x11-apps/xauth
x11-apps/xbiff
x11-apps/xcalc
x11-apps/xclipboard
x11-apps/xclock
x11-apps/xcmsdb
x11-apps/xconsole
x11-apps/xcursorgen
x11-apps/xdbedizzy
x11-apps/xditview
x11-apps/xdm
x11-apps/xdpyinfo
x11-apps/xedit
x11-apps/xev
x11-apps/xeyes
x11-apps/xf86dga
x11-apps/xfd
x11-apps/xfontsel
x11-apps/xfs
x11-apps/xfsinfo
x11-apps/xfwp
x11-apps/xgamma
x11-apps/xgc
x11-apps/xhost
x11-apps/xinit
x11-apps/xkbcomp
x11-apps/xkbevd
x11-apps/xkbprint
x11-apps/xkbutils
x11-apps/xkill
x11-apps/xload
x11-apps/xlogo
x11-apps/xlsatoms
x11-apps/xlsclients
x11-apps/xlsfonts
x11-apps/xmag
x11-apps/xman
x11-apps/xmessage
x11-apps/xmh
x11-apps/xmodmap
x11-apps/xmore
x11-apps/xphelloworld
x11-apps/xplsprinters
x11-apps/xpr
x11-apps/xprehashprinterlist
x11-apps/xprop
x11-apps/xrandr
x11-apps/xrdb
x11-apps/xrefresh
x11-apps/xset
x11-apps/xsetmode
x11-apps/xsetpointer
x11-apps/xsetroot
x11-apps/xsm
x11-apps/xstdcmap
x11-apps/xtrap
x11-apps/xvidtune
x11-apps/xvinfo
x11-apps/xwd
x11-apps/xwininfo
x11-apps/xwud
>=x11-base/kdrive-6
x11-base/x11-apps
x11-base/x11-data
x11-base/x11-drivers
x11-base/x11-fonts
x11-base/x11-libs
x11-base/x11-proto
x11-base/x11-utils
x11-base/xorg-server
x11-drivers/xf86-input-acecad
x11-drivers/xf86-input-aiptek
x11-drivers/xf86-input-calcomp
x11-drivers/xf86-input-citron
x11-drivers/xf86-input-digitaledge
x11-drivers/xf86-input-dmc
x11-drivers/xf86-input-dynapro
x11-drivers/xf86-input-elo2300
x11-drivers/xf86-input-elographics
x11-drivers/xf86-input-evdev
x11-drivers/xf86-input-fpit
x11-drivers/xf86-input-hyperpen
x11-drivers/xf86-input-jamstudio
x11-drivers/xf86-input-joystick
x11-drivers/xf86-input-keyboard
x11-drivers/xf86-input-magellan
x11-drivers/xf86-input-magictouch
x11-drivers/xf86-input-microtouch
x11-drivers/xf86-input-mouse
x11-drivers/xf86-input-mutouch
x11-drivers/xf86-input-palmax
x11-drivers/xf86-input-penmount
x11-drivers/xf86-input-sample
x11-drivers/xf86-input-spaceorb
x11-drivers/xf86-input-summa
x11-drivers/xf86-input-tek4957
x11-drivers/xf86-input-ur98
x11-drivers/xf86-input-void
x11-drivers/xf86-video-apm
x11-drivers/xf86-video-ark
x11-drivers/xf86-video-ati
x11-drivers/xf86-video-chips
x11-drivers/xf86-video-cirrus
x11-drivers/xf86-video-cyrix
x11-drivers/xf86-video-dummy
x11-drivers/xf86-video-fbdev
x11-drivers/xf86-video-glint
x11-drivers/xf86-video-i128
x11-drivers/xf86-video-i740
x11-drivers/xf86-video-i810
x11-drivers/xf86-video-imstt
x11-drivers/xf86-video-mga
x11-drivers/xf86-video-neomagic
x11-drivers/xf86-video-newport
x11-drivers/xf86-video-nsc
x11-drivers/xf86-video-nv
x11-drivers/xf86-video-rendition
x11-drivers/xf86-video-s3
x11-drivers/xf86-video-s3virge
x11-drivers/xf86-video-savage
x11-drivers/xf86-video-siliconmotion
x11-drivers/xf86-video-sis
x11-drivers/xf86-video-sisusb
x11-drivers/xf86-video-sunbw2
x11-drivers/xf86-video-suncg14
x11-drivers/xf86-video-suncg3
x11-drivers/xf86-video-suncg6
x11-drivers/xf86-video-sunffb
x11-drivers/xf86-video-sunleo
x11-drivers/xf86-video-suntcx
x11-drivers/xf86-video-tdfx
x11-drivers/xf86-video-tga
x11-drivers/xf86-video-trident
x11-drivers/xf86-video-tseng
x11-drivers/xf86-video-vesa
x11-drivers/xf86-video-vga
x11-drivers/xf86-video-via
x11-drivers/xf86-video-vmware
x11-drivers/xf86-video-voodoo
x11-libs/libdmx
x11-libs/libdrm
x11-libs/libfontenc
x11-libs/libFS
x11-libs/libICE
x11-libs/liblbxutil
x11-libs/liboldX
x11-libs/libSM
x11-libs/libX11
x11-libs/libXau
x11-libs/libXaw
x11-libs/libXcomposite
x11-libs/libXcursor
x11-libs/libXdamage
x11-libs/libXdmcp
x11-libs/libXevie
x11-libs/libXext
x11-libs/libXfixes
x11-libs/libXfont
x11-libs/libXfontcache
x11-libs/libXft
x11-libs/libXi
x11-libs/libXinerama
x11-libs/libxkbfile
x11-libs/libxkbui
x11-libs/libXmu
x11-libs/libXp
x11-libs/libXpm
x11-libs/libXprintAppUtil
x11-libs/libXprintUtil
x11-libs/libXrandr
x11-libs/libXrender
x11-libs/libXres
x11-libs/libXScrnSaver
x11-libs/libXt
x11-libs/libXTrap
x11-libs/libXtst
x11-libs/libXv
x11-libs/libXvMC
x11-libs/libXxf86dga
x11-libs/libXxf86misc
x11-libs/libXxf86vm
x11-libs/xtrans
x11-misc/makedepend
x11-misc/util-macros
x11-misc/xbitmaps
x11-misc/xcursor-themes
x11-misc/xkbdata
x11-proto/bigreqsproto
x11-proto/compositeproto
x11-proto/damageproto
x11-proto/dmxproto
x11-proto/evieext
x11-proto/fixesproto
x11-proto/fontcacheproto
x11-proto/fontsproto
x11-proto/glproto
x11-proto/inputproto
x11-proto/kbproto
x11-proto/panoramixproto
x11-proto/printproto
x11-proto/randrproto
x11-proto/recordproto
x11-proto/renderproto
x11-proto/resourceproto
x11-proto/scrnsaverproto
x11-proto/trapproto
x11-proto/videoproto
x11-proto/xcmiscproto
x11-proto/xextproto
x11-proto/xf86bigfontproto
x11-proto/xf86dgaproto
x11-proto/xf86driproto
x11-proto/xf86miscproto
x11-proto/xf86rushproto
x11-proto/xf86vidmodeproto
x11-proto/xineramaproto
x11-proto/xproto
x11-proto/xproxymanagementprotocol
x11-themes/gentoo-xcursors
x11-themes/xcursor-themes

# Matthias Schwarzott <zzam@gentoo.org> (07 Aug 2005)
# Masked because it depends on masked vdr ebuild
=media-plugins/vdr-femon-0.9.1

# Rob Cakebread <pythonhead@gentoo.org> (04 Aug 2005)
# Needs testing, in particular svn, cvs and darcs control
dev-util/pida

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

# Chris Gianelloni <wolf31o2@gentoo.org> (03 Aug 2005)
# I am masking this package for testing.  Please test this and report any
# bugs with the actual package to https://bugzilla.icculus.org or via email
# to icculus@icculus.org
=games-fps/ut2004-3355-r2

# Leonardo Boshell <leonardop@gentoo.org> (01 Aug 2005)
# To be removed. Bundled with x11-libs/gtk+.
x11-themes/gtk-engines-pixbuf

# Leonardo Boshell <leonardop@gentoo.org> (01 Aug 2005)
# To be removed. Unmaintained and/or without a valid homepage/SRC_URI.
<x11-themes/gtk-engines-smooth-0.6.0.1-r1
<x11-themes/geramik-0.27-r1
x11-themes/gtk-engines-eazel
x11-themes/gtk-engines-magicchicken

# Leonardo Boshell <leonardop@gentoo.org> (01 Aug 2005)
# To be removed. These are provided by x11-themes/gtk-engines.
>=x11-themes/gtk-engines-thinice-2
>=x11-themes/gtk-engines-lighthouseblue-0.7
x11-themes/gtk-engines-crux
x11-themes/gtk-engines-metal
x11-themes/gtk-engines-notif
x11-themes/gtk-engines-pixmap
x11-themes/gtk-engines-raleigh
x11-themes/gtk-engines-redmond95

# Renat Lumpau <rl03@gentoo.org> (01 Aug 2005)
# Installs into /usr/local, ebuild should not have been committed
www-apps/interchange

# Luis Araujo <araujo@gentoo.org> (01 Aug 2005)
# Added new packages to portage: 
# The Dylan Programming Language.
dev-lang/gwydion-dylan
dev-lang/gwydion-dylan-bin

# Aaron Walker <ka0ttic@gentoo.org> (01 Aug 2005)
# Masked due to masked deps (gtk+|glib)-2.7
>=dev-cpp/glibmm-2.7
>=dev-cpp/gtkmm-2.7

# Matthew Kennedy <mkennedy@gentoo.org> (31 Jul 2005)
# Upstream author requests official version ports only.
dev-lisp/cl-blog

# Marinus Schraal <foser@gentoo.org> (31 Jul 2005)
# Development release of gtk+ stack for testing
# and cairo because it breaks API
>=x11-libs/cairo-0.6
>=x11-libs/pango-1.9
>=x11-libs/gtk+-2.7
>=dev-libs/glib-2.7

# Karl Trygve Kallebreg <karltk@gentoo.org> (30 Jul 2005)
# all version contains a static copy of zlib-1.2.1.1 which has security
# issues
net-misc/zsync

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

# Marcelo Goes <vanquirius@gentoo.org> (29 Jul 2005)
# Masked for testing
=net-analyzer/snort-2.4.0

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

# Armando Di Cianno <fafhrd@gentoo.org> (23 Jul 2005)
# Masked until upgrade path is established
=gnustep-base/gnustep-make-1.11.0
=gnustep-base/gnustep-base-1.11.0
=gnustep-base/gnustep-gui-0.10.0
=gnustep-base/gnustep-back-art-0.10.0
=gnustep-base/gnustep-back-xlib-0.10.0
=gnustep-base/gnustep-env-0.1.7

# Matthias Schwarzott <zzam@gentoo.org> (23 Jul 2005)
# Masked for testing until ebuild is ready for general use.
=media-video/vdr-1.3.27

# <ka0ttic@gentoo.org> (21 Jul 2005)
# Masked for testing.
=dev-cpp/gtkglextmm-1.1.0

# Konstantin Arkhipov <voxus@gentoo.org> (14 Jul 2005)
# Masked for security reasons.
<=sys-kernel/openmosix-sources-2.4.30

# Chris White (chriswhite@gentoo.org) (08 Jul 2005)
# Masking initial import of ipodder as it has some issues
# with the episode cleanup window.  However, those that don't use
# it should be ok.
media-sound/ipodder

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

# Diego Pettenò <flameeyes@gentoo.org> (08 Jul 2005)
# Probably it's incompatible with previous versions, needs testing
>=media-video/transcode-1

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

# Martin Schlemmer <azarah@gentoo.org> (05 Jul 2005)
# Masked for testing, as it breaks api
>=dev-libs/openssl-0.9.8

# MATSUU Takuto <matsuu@gentoo.org> (03 Jul 2005)
# Major revisions. Masked for testing.
>=dev-tcltk/itcl-3.3
>=dev-tcltk/itk-3.3

# Caleb Tennis <caleb@gentoo.org> (01 Jul 2005)
# Seems to not be compatible with kde 3.4 though
# the docs say it is
>=kde-base/unsermake-0.4.20050628

# Markus Nigbur <pYrania@gentoo.org> (01 Jul 2005)
# Masked due to a pretty big bug with crosscompile support.
=sys-devel/distcc-2.18.3-r8

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

# <dang@gentoo.org> (29 Jun 2005)
# Masked until stable upstream
app-text/evince

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

# Carsten Lohrke <carlo@gentoo.org> (27 Jun 2005)
# Masking for security reasons, pending removal,
# use net-im/kpopup instead
net-im/kpopper

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

# Daniel Black <dragonheart@gentoo.org> (26 Jun 2005)
# zlo ABI different - masked until packages that depend on this have been fixed.
>=dev-libs/lzo-2

# Daniel Black <dragonheart@gentoo.org> (17 July 2005)
# masked due to lzo-2 dependancy
>=net-libs/gnutls-1.2.5

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

# Andrea Barisani <lcars@gentoo.org> (23 Jun 2005)
# Masked for testing
=mail-mta/sendmail-8.13.4-r1

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

# Marcelo Goes <vanquirius@gentoo.org> (19 Jun 2005)
# Masking nessus's development branch. If you want it, unmask it.
>=net-analyzer/nessus-libraries-2.3.0
>=net-analyzer/libnasl-2.3.0
>=net-analyzer/nessus-core-2.3.0
>=net-analyzer/nessus-plugins-2.3.0
>=net-analyzer/nessus-2.3.0

# Marcelo Goes <vanquirius@gentoo.org (18 Jun 2005)
# Masked for testing
=net-analyzer/sussen-0.12

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

# Andrej Kacian <ticho@gentoo.org> (15 Jun 2005)
# Deprecated in favor of mail-filter/p3scan, to be removed soon
net-mail/pop3vscan

# Andrej Kacian <ticho@gentoo.org> (13 Jun 2005)
# Masked, as requeuing doesn't work
=net-mail/pfqueue-0.4.0

# <hansmi@gentoo.org> (13 Jun 2005)
# Masked for testing
=mail-mta/qmail-1.03-r17

# 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

# Stuart Herbert <stuart@gentoo.org> (11 Jun 2005)
# Masked until php5 is no longer masked
dev-php/PECL-apd
dev-php/PEAR-PHPUnit2
dev-php/creole
dev-php/jargon
dev-php/phing
dev-php/propel
dev-php/propel-generator
dev-php/propel-runtime

# Stuart Herbert <stuart@gentoo.org> (10 Jun 2005)
# Masked until the eclass is finished, and the PECL packages are done
=dev-php/php-5*
=dev-php/mod_php-5*
=dev-php/php-cgi-5*
=dev-php/phpconfig-5*

# Diego Pettenò <flameeyes@gentoo.org> (10 Jun 2005)
# Future dependency of VLC +dirac
media-video/dirac

# Diego Pettenò <flameeyes@gentoo.org> (08 Jun 2005)
# Test version, mainly a snapshot.
=media-video/vlc-0.8.2_beta*

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

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

# Marcelo Goes <vanquirius@gentoo.org) (07 Jun 2005)
# Masked for testing
=www-client/links-2.1_pre17-r2

# Robin Johnson <robbat2@gentoo.org> (06 Jun 2005)
# Masked prior to removal. Please use libnss-mysql instead.
sys-libs/nss-mysql

# Armando Di Cianno <fafhrd@gentoo.org> (06 Jun 2005)
# Masking ebuilds that are incorrectly newer, but still ~arch key'd anyway;
# saving for a rainy day
=gnustep-base/gnustep-make-1.10.1_pre20050312-r1
=gnustep-base/gnustep-base-1.10.2_pre20050312
=gnustep-base/gnustep-gui-0.9.5_pre20050312-r1
=gnustep-base/gnustep-back-xlib-0.9.5_pre20050312
=gnustep-base/gnustep-back-art-0.9.5_pre20050312

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

# Leonardo Boshell <leonardop@gentoo.org> (31 May 2005)
# Masked for testing, it includes an experimental patch to make Gtk+
# dependency optional. See bug #40453.
=media-libs/imlib-1.9.15

# Harald van Dijk <truedfx@gentoo.org> (29 May 2005)
# masked for testing
=app-portage/ufed-0.40_pre*

# Danny van Dyk <kugelfang@gentoo.org> (27 May 2005)
# Needs some testing and love before going gold
=dev-lang/ifc-8.1*

# Joe Sapp <nixphoeni@gentoo.org> (22 May 2005)
# Removing old desklets that use deprecated functionality.
# Old -core's are also scheduled to be removed
x11-plugins/desklet-battery
x11-plugins/desklet-cornerxmms
x11-plugins/desklet-goodweather
x11-plugins/desklet-ltvariations
x11-plugins/desklet-multitail
x11-plugins/desklet-psiextras
x11-plugins/desklet-rhythmlet
x11-plugins/desklet-rssgrab
x11-plugins/desklet-sysinfo
x11-plugins/desklet-temperature
x11-plugins/desklet-weather
x11-plugins/desklet-wireless
# these breaks deps.  Work with arch teams to fix that first (mr_bones_)
#<gnome-extra/gdesklets-core-0.33.1
#x11-plugins/desklet-psidisplays
#x11-plugins/desklet-psisensors

# Luca Barbato <lu_zero@gentoo.org> (22 May 2005)
# Special version, masked since doesn't work standard systems.
=media-video/ati-drivers-8.13*
=media-video/ati-drivers-extra-8.13*

# Peter Johanson <latexer@gentoo.org> (19 May 2005)
# Masking the new monodevelop and it's couple new deps.
=dev-util/monodevelop-0.7*
=dev-dotnet/gecko-sharp-0.10*
=dev-dotnet/gtksourceview-sharp-0.10*

# Robin Johnson <robbat2@gentoo.org> (17 May 2005)
# This new 4.0 series ebuild is similar to the 4.1 series stuff, 
# so provides an easier testing ground for many of the features.
=dev-db/mysql-4.0.24-r2

# Elfyn McBratney <beu@gentoo.org> (15 May 2005)
# Needs a bit of testing before it goes straight to stable.
=net-www/webapp-config-1.10-r15

# Danny van Dyk <kugelfang@gentoo.org> (14 May 2005)
# Masked for testing with eclectic. Subject to major changes.
=sci-libs/blas-atlas-3.7.10
=sci-libs/lapack-atlas-3.7.10

# Danny van Dyk <kugelfang@gentoo.org> (11 May 2005)
# Masked and scheduled for removal. Won't be removed before new versions hit
# the the tree
<dev-lang/icc-7.1.006
<dev-lang/ifc-7.0.064-r1

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

# Henrik Brix Andersen <brix@gentoo.org (07 May 2005)
# sys-power/speedfreq is deprecated in favor of sys-power/cpufreqd due
# to unresolved bugs and lack of upstream activity.
sys-power/speedfreq

# 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

# Mike Frysinger <vapier@gentoo.org> (04 May 2005)
# need upstream release to fix security issue #91421
<=dev-libs/libtomcrypt-1.02

# Elfyn McBratney <beu@gentoo.org> (03 May 2005)
# New package, needs testing, might break.
www-apps/interchange

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

# Marius Mauch <genone@gentoo.org> (26 April 2005)
# CVS is still broken :( Masking till I'm sure it's fixed.
=app-portage/gentoolkit-0.2.1_pre1

# 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.4-r1
=mail-mta/ssmtp-2.61-r1
>=mail-mta/esmtp-0.5.0-r2
=mail-mta/postfix-2.2.2-r2
>=mail-mta/postfix-2.2.3
=mail-mta/sendmail-8.13.4-r1
=mail-mta/exim-4.50-r999

# Martin Schlemmer <azarah@gentoo.org> (23 Apr 2005)
# Testing release for gcc-4.0.0.
=sys-libs/glibc-2.3.5.20050421

# Rob Cakebread <pythonhead@gentoo.org> (22 Apr 2005)
# Versions in portage no longer supported. Abeni 1.0 will be in portage soon after wxGTK-2.6.0
app-portage/abeni

# Alin Nastac <mrness@gentoo.org> (21 Apr 2005)
# viruses are filtered only on the first request of the URL (bug #89948)
net-proxy/dansguardian-dgav

# Jan Brinkmann <luckyduck@gentoo.org> (21 Apr 2005)
# missing dependencies, see #89893
=app-misc/freemind-0.8.0_rc2

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

# Donnie Berkholz <spyderous@gentoo.org> 
# CVS HEAD snapshots
=x11-base/xorg-x11-6.8.99*

# Marius Mauch <genone@gentoo.org> (17 Apr 2005)
# Site is dead.
app-portage/basc

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

# Peter Johanson <latexer@gentoo.org> (11 Apr 2005)
# Masked as a new cairo innevitably breaks cairo using apps
=x11-libs/cairo-0.4.0
=media-libs/glitz-0.4.0

# Christian Parpart <trapni@gentoo.org> (10 Apr 2005)
# Before adding for testing ;)
=dev-libs/apr-1.1.1
=dev-libs/apr-util-1.1.2

# Gustavo Felisberto <humpback@gentoo.org> (08 April 2005)
# Initial import to give users chance to test
net-im/pymsn-t

# Danny van Dyk <kugelfang@gentoo.org> (07 April 2005)
# Doesn't build anymore. Asked maintainer to fix or remove it.
dev-lang/gpc

# <axxo@gentoo.org> (03 Apr 2005)
# broken
=dev-java/antlr-2.7.5

# Peter Johanson <latexer@gentoo.org> (02 Apr 2005)
# Masking the new muine until gtk-sharp-1.9* and friends are out of package.mask
=media-sound/muine-0.8*

# Peter Johanson <latexer@gentoo.org> (31 Mar 2005)
# Masking the new monodevelop and it's couple new deps.
=dev-util/monodevelop-0.6*
=dev-dotnet/gecko-sharp-0.7*
=dev-dotnet/gtksourceview-sharp-0.7*

# Andreas Proschofsky <suka@gentoo.org> (30 Mar 2005)
# Pre-Release, use on your own risk
>=app-office/openoffice-bin-1.9.87

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

# Luca Barbato <lu_zero@gentoo.org> (22 March 2005)
# Experimental ebuild
#=media-video/mplayer-1.0_pre6-r2

# Rob Holland <tigger@gentoo.org> (21 March 2005)
# marked due to bad code #84659
net-misc/dyndnsupdate

# Aaron Walker <ka0ttic@gentoo.org> (18 Mar 2005)
# buffer overflows galore; pending removal.
x11-terms/tilda

# Chris White <chriswhite@gentoo.org> (17 Mar 2005)
# Security mask bug #82631
media-video/gv4l

# Sebastian Bergmann <sebastian@gentoo.org> (14 Mar 2005)
# Needs more testing.
=dev-php/PEAR-PEAR-1.3.5-r1

# Alastair Tse <liquidx@gentoo.org> (09 Mar 2005)
# Unsupported upstream, superceded by qc-usb.
media-video/qce-ga

# Joe McCann <joem@gentoo.org> (30 April 2005)
#Gnome-2.10.1 mask
>=gnome-base/gnome-light-2.10.1

# solar <solar@gentoo> (01 Mar 2005)
# security masked by request of bug #79720
x11-misc/xfontselector
app-admin/qtsvc

# Paul de Vrieze <pauldv@gentoo.org> (27 Feb 2005)
# This whole module should be deleted. It overlaps subversion
www-apache/mod_dav_svn

# 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

# <solar@gentoo> (18 Feb 2005)
# All version below 1.3.17 have exploitable format string problems. The 
# bidwatcher package lacks a maintainer and metadata and will most 
# likely be punted from the tree. Bug #82460 (CAN-2005-0158)
<=net-misc/bidwatcher-1.3.16

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

# foser <foser@gentoo.org> (14 Feb 2005)
# unmaintained (#82037)
gnome-extra/nautilus-media

# <robbat2@gentoo.org> (14 Feb 2005)
# progsreiserfs does bad things when modifying reiserfs partitions but is the
# only API with read operations, so we need to keep it.  the latest rc version
# is the most stable of the lot, but still don't trust it's write ops!
<sys-fs/progsreiserfs-0.3.1_rc8

# <pylon@gentoo.org> (13 Feb 2005)
# From website: "We know that 0.4.x is a bit buggy on trades :), for people who
# wish to play a stable game, please use 0.3.2"
=games-board/gtkatlantic-0.4.1

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

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

# Matthew Kennedy <mkennedy@gentoo.org> (8 Feb 2005)
# To many incorrect type assertions made to make the port viable for now.
dev-lisp/cl-albert

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

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

# Mike Doty <kingtaco@gentoo.org> (4 Feb 2005)
# masking due to replacment by media-video/spca5xx. due for
# removal from tree after 1 May 2005.
media-video/spca50x

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

# Brad Cowan <bcowan@gentoo.org> (04 Feb 2005)
# masking until upstream fixes .so problem
=dev-libs/dbh-1.0.21

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

# Robin H. Johnson <robbat2@gentoo.org> (02 Feb 2005)
# broken... doesn't even query the LDAP server
=sys-auth/nss_ldap-233

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

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

# <xmerlin@gentoo.org> (27 Jan 2005)
# Masked for a memory corruption bug
=sys-cluster/drbd-0.7.9
=sys-cluster/drbd-0.7.9-r1

# <dragonheart@gentoo.org> (25 Jan 2005)
# Apache herd package refresh
# Masked for user testing. bug #77781 Meta-bug #76457
=net-analyzer/nagios-core-1.2-r4

# nagios-*2 is still beta
>=net-analyzer/nagios-core-2.0b_p1
>=net-analyzer/nagios-2.0b_p1

# Christian Parpart <trapni@gentoo.org> (21 Jan 2005)
# mod_auth_mysql changes versioning scheme from YYMMDD to usual version numbers.
=net-www/mod_auth_mysql-20030510
=net-www/mod_auth_mysql-20030510-r1
=net-www/mod_auth_mysql-20030510-r2

# <kosmikus@gentoo.org> (19 Jan 2005)
# several compilation problems using current gcc's,
# for example #73367
dev-lang/nhc98

# <vapier@gentoo.org> (16 Jan 2005)
# dropbear-0.44 doesnt seem to want to let people login #78295
=net-misc/dropbear-0.44

# <plasmaroo@gentoo.org> (16 Jan 2005)
# Live CVS build, masking to keep the bunny rabbits happy.
>=sci-mathematics/axiom-9999

# <dragonheart@gentoo.org> (16 Jan 2005)
# spurious SEGV
=net-analyzer/ntop-3.1

# <lu_zero@gentoo.org> (14 Jan 2005)
# Cinelerra is too broken to be fixed
media-video/cinelerra

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

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

# <solar@gentoo> (07 Jan 2005)
# Masked for security reasons. Requested by <koon@gentoo>. Upstream 
# appears to be dead / not responding to emails. So this package is 
# now marked as removal pending. See bug #74703 for more details.
net-p2p/napshare

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

# <gmsoft@gentoo.org> (27 Dec 2004)
# Masking 2.4 kernel sources on hppa.
# 2.4 is no more supported upstream.
<sys-kernel/hppa-sources-2.6
sys-kernel/hppa-dev-sources

# Christian Parpart <trapni@gentoo.org> (18 Dec 2004)
# Contains a security vulnerability. See #74272.
=www-apps/mediawiki-1.3.8

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

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

# <genone@gentoo.org> (08 Dec 2004)
# app-portage pre-christmas cleaning, these packages are unmaintained upstream
# and have open bugs
app-portage/ebuilder

# <dragonheart@gentoo.org> (04 Dec 2004)
# Bug #70529 indicates problems with configuration file reading
>=dev-libs/log4c-1.0.11

# <lu_zero@gentoo.org> (02 Dec 2004)
# Masking since this version is broken
=media-gfx/blender-2.35

# <phosphan@gentoo.org> (2/12/2004)
# Masking for security reasons, see bug #68712
<sci-calculators/tilp-6.76

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

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

# <klieber@gentoo.org> (26 Nov 2004)
# The following packages contains a security vulnerability and has been
# hard masked accordingly.
#
# Please see http://bugs.gentoo.org/show_bug.cgi?id=70666 for more info
#
# You may unmask this package by placing an appropriate entry in your
# /etc/portage/package.unmask file
app-emulation/glukalka

# <chriswhite@gentoo.org> (25 Nov 2004)
# media-video/bcast who commited this!?
# better yet, who marked it stable!
# masking because it's just plain broken.
media-video/bcast

# <robbat2@gentoo.org> (17 Nov 2004)
# Masking for testing
>=dev-db/mysql-4.1

# <pythonhead@gentoo.org (13 Nov 2004)
# 2.6.0 is now in portage but will remove this soon as deps in other ebuilds are fixed
=x11-libs/wxGTK-2.5*

# <foser@gentoo.org> (22 Oct 2004)
# no good release #68514 & #68034
=dev-util/intltool-0.31.3

# <hansmi@gentoo.org> (19 Oct 2004)
# Masked all ebuilds of xeasyconf, because there is no stable
# xfree-ebuild anymore and xeasyconf depends on XFree86.
x11-misc/xeasyconf

# <liquidx@gentoo.org> (16 Oct 2004)
# Deprecate old unsupported gphoto-0.4.3. use gphoto2.
media-gfx/gphoto

# <foser@gentoo.org> (13 Oct 2004)
# masks to make gnome 2.8 behave
=media-sound/esound-0.2.35*

# <latexer@gentoo.org> (11 Oct 2004)
# Broken, soon to be removed pending reworking.
sys-kernel/config-kernel
# Related ebuilds that depped on config-kernel
=sys-fs/submount-0.9
<=sys-fs/lufs-0.9.7-r2

# <axxo@gentoo.org> (07 Oct 2004)
# work in progress
=app-benchmarks/jmeter-2.0.1-r1

# Heinrich Wendel <lanius@gentoo.org> (29 Sep 2004)
# This Swig version breaks a lot of stuff, since it doesn't
# provide the runtime libraries
=dev-lang/swig-1.3.24

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

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

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

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

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

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

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

# <robbat2@gentoo.org> (19 July 2004)
# Mask because it seems broken.
=dev-lang/snobol-1.0

# <esammer@gentoo.org> (18 July 2004)
# Mysql 4.1.3 changed the number of arguments to shutdown breaking
# this module. This version of the perl module should work, but is
# super-untested and is, therefore, masked.
=dev-perl/DBD-mysql-2.9004

# <usata@gentoo.org> (2 July 2004)
# emacs-unicode-2 branch is not stable and SLOT support for emacs
# is incomplete. info directory handling should be reconsidered.
=app-editors/emacs-cvs-22.0.0*
=app-editors/emacs-cvs-23.0.0*

# <kanaka@gentoo.org> (18 May 2004)
# these have fetch restrictions, since 0.3.0.123 doesn't have fetch
# restrictions, I have masked these.
=media-video/helixplayer-bin-0.3.0.71
=media-video/helixplayer-bin-0.3.0.124

# <squinky86@gentoo.org> (01 May 2004)
# accessibility testing for development purposes
app-accessibility/speechd-up

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

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

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

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

# <aliz@gentoo.org> (17 Mar 2004)
# Security related
~dev-libs/openssl-0.9.7c

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

# <weeve@gentoo.org> (02 Mar 2004)
# mask slib-3.1.1 until gnucash can get a fix for it
=dev-libs/slib-3.1.1

# <lu_zero@gentoo.org> (17 Feb 2004)
# gcloop support, to be tested a bit
=sys-apps/util-linux-2.12-r5

# <absinthe@gentoo.org> (17 Feb 2004)
# major API changes; not compatible with anything yet
>=dev-libs/libmal-0.40


# <genone@gentoo.org> (12 Feb 2004)
# masking stuff that depends on realplayer as it breaks the dependency chain
# with realplayer being masked.
media-plugins/rmxmms
media-plugins/realvideo-codecs

# <solar@gentoo> (06 Feb 2004)
# RealOne/RealPlayer 8 vulnerabilities bug #40469
<media-video/realplayer-10.0.3
media-video/realone

# <george@gentoo.org> (03 Feb 2004)
# blas dependants, will have to be unmasked after virtual is finalized and blas is unmasked
=sci-misc/xfoil-6.94-r1

# <robbat2@gentoo.org> (10 Jan 2004)
# blocked for testing
=mail-mta/qmail-ldap-1.03-r3

# <solar@gentoo> (Jan 11 2004)
# multiple vulnerabilities discovered in zebra.
net-misc/zebra

# <axxo@gentoo.org>
# lotsa things in the tree don't compile with 1.5 yet
# 1.5 defaults too -target 1.5 making downgrading to a 1.4(/1.3)
# impossible, see bug 65937 for more information/discussion
>=dev-java/sun-jdk-1.4.99
>=dev-java/java-sdk-docs-1.4.99

# <lu_zero@gentoo.org> (06 Jan 2004)
# Has memory leak issue
=media-video/ati-drivers-3.7.0

# <taviso@gentoo.org> (06 Jan 2004)
# alpha branch of gnupg.
>=app-crypt/gnupg-1.9.0
# <dragonheart@gentoo.org> (27 Aug 2004)

# <robbat2@gentoo.org> (29 Nov 2003)
# Need external testing
>=mail-mta/qmail-mysql-1.03-r13

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

# <robbat2@gentoo.org> (20 Oct 2003)
# needs gcc3.3/tcl8.4 fixing
dev-embedded/picptk

# <tseng@gentoo.org> (11 Oct 2003)
# Mask pending a solution to bsetroot
=x11-misc/commonbox-utils-0.5

# <liquidx@gentoo.org> (28 Jun 2003)
# cjkcodecs replaces koreancodecs and possibly japanesecodecs
dev-python/koreancodecs
dev-python/japanesecodecs

# <seemant@gentoo.org> (22 Apr 2003)
# the package is unmainteained and dead upstream. it will die in portage
# accordingly.
media-plugins/avi-xmms

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

# <liquidx@gentoo.org> (13 Mar 2003)
# evolution beta and friends. may cause breakage!
# NEVER remove this mask!! We once renamed gtkhtml-3.0 to libgtkhtml-3.0,
# so if you remove it, gtk+1 apps that use gtkhtml will get the wrong deps
# - liquidx (10 Jun 2003)
=mail-client/evolution-1.3*
>=gnome-extra/gtkhtml-3.0

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

# <mkennedy@gentoo.org> (14 Dec 2002)
# see dev-db/postgresql #11822, net-im/sim #11654, and net-misc/mico
# (btw, all the other distros are using 2.5.4a)
>=sys-devel/flex-2.5.23

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

# <verwilst@gentoo.org> (13 Nov 2002)
# B0rks jabber-server, using 1.4.0 instead
~dev-libs/pth-1.4.1

# <george@gentoo.org> (15 Oct 2002)
# new version has some issues with gcc-3.2
=dev-lisp/gcl-2.4.3

# <raker@gentoo.org> (16 Jul 2002)
# libwmfun completes compiling but doesn't appear to support PLDrawString
# functions correctly.  Masking while incompatible pointers are figured out
=x11-libs/libwmfun-0.0.4

#untested, author mentions an error
media-libs/id3lib-docs

# broken (achim)
app-text/sgml2x

# broken
>=media-video/mpeg2-movie-1.5

# <sekretarz@gentoo.org> (30 Jul 2005)
# several major bugs reported by upstream, more info on inkscape.org 
=media-gfx/inkscape-0.42

# Pre-removal masking
# <vivo@gentoo.org> (18 Aug 2005)
dev-db/mysqltool