summaryrefslogtreecommitdiff
blob: 2352276456aa782c9902b3c6f54e7659f427b6f8 (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
#####################################################################
# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.3979 2005/05/17 09:47:18 robbat2 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
##

# 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

# Doug Goldstein <cardoe@gentoo.org> (16 May 2005)
# I might update this ebuild without bumping the revision
# Testing. None of the plugin packages are ready yet, so masked
# Tests out new combination frontend only / full system ebuild
=media-tv/mythtv-0.18.1

# 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

# Diego Pettenò <flameeyes@gentoo.org> (15 May 2005)
# This version of VLC should compile with wxGTK 2.6 but for some strange
# reasons still links to 2.4 if present.
=media-video/vlc-0.8.1-r3

# Sven Wegener <cardoe@gentoo.org> (15 May 2005)
# irssi moved from cvs to svn, should be quite stable but who knows
net-irc/irssi-svn

# 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

# Carsten Lohrke <carlo@gentoo.org< (12 May 2005)
# early bird stuff
>=app-cdr/k3b-0.12_beta1

# 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

# Jory A. Pratt <anarchy@penguin-geek.com> (09 May 2005)
# masked until -fPIC is on libs only
>=net-mail/vpopmail-5.4.9-r1

# Masatomo Nakano <nakano@gentoo.org> (08 May 2005)
# Masked for testing with new libpq package.
=dev-db/postgresql-8.0.1-r4
=dev-db/postgresql-8.0.2-r2
=dev-db/postgresql-8.0.3
=dev-db/postgresql-7.3.10
=dev-db/postgresql-7.4.8
=dev-db/pgpool-2.5.2-r1
=dev-db/pgadmin3-1.2.1-r1
=dev-db/pgeasy-3.0.4
=dev-db/pgst-1.3
=dev-db/pygresql-3.6.2-r1
=dev-libs/libpqxx-2.5.1
=sys-libs/libnss-pgsql-1.3
=dev-cpp/libpqpp-4.0-r6
www-misc/pglogd

# Doug Goldstein <cardoe@gentoo.org> (08 May 2005)
# Masked cause it needs to get out of the tree
# it stanks so bad it makes me want to gag
gnome-extra/power-applet

# Marcelo Goes <vanquirius@gentoo.org> (08 May 2005)
# Masked for testing
=net-analyzer/snort-2.3.3-r1
=net-analyzer/snort-2.4.20050508

# Masatomo Nakano <nakano@gentoo.org> (08 May 2005)
# Masked for testing.
dev-db/libpq

# Tony Vroon <chainsaw@gentoo.org> (08 May 2005)
# Unversioned perlscript, unresponsive upstream. Pending removal from the tree.
media-sound/ogg2mp3

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

# Jeremy Huddleston <eradicator@gentoo.org> (04 May 2005)
# regression testing
=media-libs/openal-20050504

# Nguyen Thai Ngoc Duy <pclouds@gentoo.org> (04 May 2005)
# it breaks sandbox/portage
app-i18n/xvnkb

# 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

# Karl Trygve Kalleberg <karltk@gentoo.org> (1 May 2005)
# GNOME 2.10 mask
=dev-java/libgconf-java-2.10.1
=dev-java/libglade-java-2.10.1
=dev-java/java-gnome-2.10.1

# Elfyn McBratney <beu@gentoo.org> (28 Apr 2005)
# Masked for testing.
app-admin/filewatcher

# Elfyn McBratney <beu@gentoo.org> (27 Apr 2005)
# Security mask, see bug #88926.
www-apps/wordpress

# Diego Pettenò <flameeyes@gentoo.org> (27 April 2005)
# Transcode 1.0.0 is still in beta, masking until final is released.
=media-video/transcode-1.0.0_beta*

# 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-0.99-r1
=mail-mta/msmtp-1.4.0-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

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

# Martin Schlemmer <azarah@gentoo.org> (23 Apr 2005)
# This is one bad puppy - unresolved symbols all over the place.  Builds
# glibc fine, but screws up silently not building mtrace, etc.  If you need
# a later binutils for gcc-4.0.0, please use binutils-2.15.97.
=sys-devel/binutils-2.16.90.0.1*

# 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

# Marcus D. Hanwell <cryos@gentoo.org> (21 Apr 2005)
# Initial testing of new boinc ebuilds
sci-misc/boinc

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

# John N. Laliberte <allanonjl@gentoo.org> (21 Apr 2005)
# Masked because some deps are masked for gnome 2.10
=dev-util/glade-2.10.0

# Torsten Veller <tove@gentoo.org> (21 Apr 2005)
# pre-relase snapshot - alpha version
x11-wm/wmii

# Benedikt Boehm <hollow@gentoo.org> (20 Apr 2005)
# Masked for testing
sys-apps/baselayout-vserver

# 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

# Donnie Berkholz <spyderous@gentoo.org> 
# Testing, and still might be adding a bunch of stuff.
=x11-base/xorg-x11-6.8.2-r2

# 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

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

# Jeremy Huddleston <eradicator@gentoo.org> (09 Apr 2005)
# Hangs in setup.sh sometimes...
=app-admin/webmin-1.190

# Gustavo Felisberto <humpback@gentoo.org> (08 April 2005)
# Initial import to give users chance to test
net-im/ejabberd
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

# Seemant Kulleen <seemant@gentoo.org> (07 April 2005)
# Mask for testing -- mit-krb5-1.4 needs work
>=app-crypt/mit-krb5-1.4

# Carsten Lohrke <carlo@gentoo.org> (07 April 2005)
# Mask development versions.
>media-video/kmplayer-0.8.9

# Aaron Walker <ka0ttic@gentoo.org> (06 Apr 2005)
# Masked until I can figure out why specifying multiple input files
# causes a segfault.
=dev-util/source-highlight-2.0_rc1

# Gustavo Zacarias <gustavoz@gentoo.org> (04 Apr 2005)
# Needs python 2.4
=dev-python/pyparted-1.6.9-r1

# solar <security@gentoo> (01 Apr 2005)
net-print/pdq
# local information disclosure. bug 84647
# unmaintained upstream project. removal pending.

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

# <axxo@gentoo.org> (03 Apr 2005)
# pritty sure some of the upgrade paths are broken
>=dev-java/ant-core-1.6.3_beta1
>=dev-java/ant-tasks-1.6.3_beta1
>=dev-java/ant-1.6.3_beta1

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

# Peter Johanson <latexer@gentoo.org> (31 Mar 2005)
# Masking all 1.9* gtk-sharp release, which is the preview
# of the gtk-sharp-2.0 stuff.
=dev-dotnet/art-sharp-1.9*
=dev-dotnet/gconf-sharp-1.9*
=dev-dotnet/gda-sharp-1.9*
=dev-dotnet/glade-sharp-1.9*
=dev-dotnet/gnomedb-sharp-1.9*
=dev-dotnet/gnome-sharp-1.9*
=dev-dotnet/gnomevfs-sharp-1.9*
=dev-dotnet/gtkhtml-sharp-1.9*
=dev-dotnet/gtk-sharp-1.9*
=dev-dotnet/rsvg-sharp-1.9*
=dev-dotnet/vte-sharp-1.9*

# 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

# Konstantin Arkhipov <voxus@gentoo.org> (26 Mar 2005)
# masked for heavy testing
>=net-dns/bind-9.3
>=net-dns/bind-tools-9.3

# 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

# Stuart Herbert <stuart@gentoo.org> (12th march 2005)
# automatically activates ZTS mode when any threaded MPMs are installed,
# even if mpm_prefork is the default
=dev-php/mod_php-5*

# Otavio R. Piske <angusyoung@gentoo.org> (11 Mar 2005)
# New ebuild that needs more testing.
net-analyzer/nomad

# Aron Griffis <agriffis@gentoo.org> (10 Mar 2005)
# For baselayout-1.12, alpha/beta signify baselayout developers only;
# rc signifies ~arch; 1.12.0 release will signify ~arch candidate for quick
# stable.
=sys-apps/baselayout-1.12.0_alpha*
=sys-apps/baselayout-1.12.0_beta*

# Aaron Walker <ka0ttic@gentoo.org> (09 Mar 2005)
# Depends on python-2.4.
>=net-analyzer/linkchecker-2.4

# 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
>=www-client/epiphany-extensions-1.6.3
>=www-client/epiphany-1.6.3
=gnome-base/gnome-2.10.1_pre0
>=gnome-base/gnome-light-2.10.1
>=gnome-base/gnome-volume-manager-1.2.1
>=gnome-base/gnome-vfs-2.10.1
>=gnome-base/control-center-2.10.1
>=gnome-base/eel-2.10.1
>=gnome-base/nautilus-2.10.1
>=gnome-extra/gnome-media-2.10.2
>=media-gfx/eog-2.10.0
>=app-arch/file-roller-2.10.3
>=gnome-extra/gcalctool-5.5.42
>=app-editors/gedit-2.10.2
>=gnome-base/gnome-desktop-2.10.1
>=gnome-base/gnome-applets-2.10.1
>=gnome-base/gnome-panel-2.10.1
>=gnome-base/gnome-menus-2.10.1
>=x11-themes/gtk-engines-2.6.3
>=x11-themes/gnome-themes-2.10.1
>=gnome-base/libgnomeprint-2.10.3
>=gnome-base/libgnomeprintui-2.10.2
>=gnome-extra/gnome-utils-2.10.1
>=gnome-extra/gnome-games-2.10.1
>=gnome-base/libgtop-2.10.1
>=gnome-extra/gnome-system-monitor-2.10.1
>=x11-wm/metacity-2.10.1
>=x11-libs/vte-0.11.13
>=gnome-extra/nautilus-cd-burner-2.10.1
>=x11-themes/gnome-backgrounds-2.10.1
>=gnome-base/gnome-menus-2.10.1
#evolution mask
>=gnome-extra/evolution-data-server-2.2.2
>=mail-client/evolution-2.2.2
>=gnome-extra/evolution-webcal-2.2.2
>=gnome-extra/gal-2.4.2
#accessibility pkgs
#End of gnome-2.10 mask

# Michal Januszewski <spock@gentoo.org> (09 Mar 2005)
# A development version of splashutils which includes many new features
# and can therefore be slightly broken. Feel free to test and report bugs.
# Content from http://dev.gentoo.org/~spock/projects/gensplash/testing/
# might be useful for testing.
>=media-gfx/splashutils-1.1
media-gfx/splash-themes-gentoo
>=media-gfx/bootsplash-themes-20040821-r1

# Sebastian Bergmann <sebastian@gentoo.org> (05 Mar 2005)
# Segfaults on module shutdown.
=dev-php/PECL-imagick-0.9.11

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

# Jeremy Huddleston <eradicator@gentoo.org> (01 Mar 2005)
# Still in development.  Doesn't work right.  I know it doesn't work right.  Don't use it.  Also, it triggers a sandbox bug.
=sys-devel/gcc-config-1.4.0

# 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.
dev-db/pgcluster

# Chris Gianelloni <wolf31o2@gentoo.org> (24 Feb 2005)
# Masked due to vulnerabilities and upstream being dead
# Bug #81634
games-action/armagetron

# Gregorio Guidi <greg_g@gentoo.org> (21 Feb 2005)
# Needs testing.
app-portage/kuroo

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

# <genone@gentoo.org> (25 Aug 2004)
# Version including CVS snapshots for gtk2 support, masked until
# it proofs itself usable (modified 13 Feb 2005).
=mail-client/sylpheed-claws-0.9.12a-r1
=mail-client/sylpheed-claws-1.0.1.1
>=mail-client/sylpheed-claws-1.9
# <genone@gentoo.org> (13 Feb 2005)
# Plugins for gtk2 version.
=mail-client/sylpheed-claws-pgpinline-0.5-r1
=mail-client/sylpheed-claws-mailmbox-1.0-r1
=mail-client/sylpheed-claws-cachesaver-0.5-r1
=mail-client/sylpheed-claws-vcalendar-0.9-r1

# Ned Ludd <security@gentoo> (13 Feb 2005)
# Masked by request of the security team. bug 79704
net-p2p/gnunet
media-libs/libextractor

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

# <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
=net-libs/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

# Jeremy Huddleston <eradicator@gentoo.org> (28 Jan 2004)
# Added alpha 4.0 gcc by request for testing.  It is not ready for prime time,
# so if you use it and it breaks your system it's your fault.
>=sys-devel/gcc-4.0.0_alpha20050123

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

# <compnerd@gentoo.org> (24 Jan 2005)
# Masked as it has security holes. We (Java Herd) recommend that you use
# sun-jdk instead of this deprecated package.  This will be removed unless
# someone wishes to touch this (it has an evil license btw). (bug #78854)
dev-java/sun-j2sdk

# Marius Mauch <genone@gentoo.org> (22 Jan 2005)
# Segfaulting all over the place, pending tests with gtk2 version
mail-client/sylpheed-claws-vcalendar

# 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

# <fafhrd@gentoo.org> (10 Jan 2005)
# Masking version that needs to be removed soon;
# Newer version was released soon after to correct major bugs.
=x11-wm/windowmaker-0.90.0

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

# <battousai@gentoo.org> (03 May 2005)
# Also apply to new -core version.
# <battousai@gentoo.org> (06 Jan 2005)
# Needs testing before release.
>=x11-base/x11-drm-20050104

# <pythonhead@gentoo.org> (04 Jan 2005)
# Masked for testing.
=dev-lang/python-2.4*

# <hansmi@gentoo.org> (02 Jan 2005)
# Masked for testing
=mail-mta/qmail-1.03-r16

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

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

# <usata@gentoo.org> (15 Nov 2004)
# need to fix bug #71366
=app-text/docbook-xml-simple-dtd-4.1.2.4-r1
=app-text/docbook-xml-simple-dtd-1.0-r1

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

# <danarmak@gentoo.org> (23 Oct 2004)
# Experimental package for plugin separate from main qt ebuild
# masked until considered official; atm it would overwrite the same plugin as installed
# by x11-lib/qt
dev-db/qt-unixODBC

# <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)
# 2 masks to make gnome 2.8 behave
>=media-sound/esound-0.2.35
>=x11-misc/shared-mime-info-0.15

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

# ticho@gentoo.org 25 Sep 2004
# Masking hotwayd-0.8, because it's been reported to corrupt emails (bug #58531). Package currently seems unmaintained.
=net-mail/hotwayd-0.8

# Karl Trygve Kalleberg <karltk@gentoo.org> (23 Sep 2004)
# upstream is unstable
>=dev-util/eclipse-sdk-3.1_pre

# <stuart@gentoo.org (06 Sept 2004)
# Disabled all versions of NX until I've had change to investigate
# bug #62912
net-misc/nxserver-personal
net-misc/nxserver-business
net-misc/nxserver-enterprise

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

# <carlo@gentoo.org> (23 Aug 2004)
# upstream development suspended
# package can be removed in a few months
dev-db/mysqlcc

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

# <squinky86@gentoo.org> (17 Aug 2004)
# Masked by request of upstream developers.
>=net-p2p/mldonkey-2.5.17

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

# <latexer@gentoo.org> (11 Aug 2004)
# This is broken with recent mono releases. Waiting on a new upstream release
dev-util/mono-debugger

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

# <obz@gentoo.org> (11 Dec 2004)
# gnome meta update tracker for 2.8.2 and 2.8.3
=gnome-base/gnome-2.8.2_pre*
=gnome-base/gnome-2.8.3_pre*

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

# <humpback@gentoo.org> (07 Apr 2004)
# these are here waiting for jabberd2
>=net-im/jabberd-2

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

# <battousai@gentoo.org> (24 Dec 2004)
# unmask 4.4.0+, working with xorg. merry x-mas
# <spyderous@gentoo.org> (16 Sept 2004)
# change from -r7 to xorg -- -r7 was a security release, xfree is deprecated
# <spyderous@gentoo.org> (14 Feb 2004)
# change from -r5 to -r6 -- -r5 was another security release (sigh)
# <spyderous@gentoo.org> (12 Feb 2004)
# change from -r4 to -r5 -- -r4 was security release
# <battousai@gentoo.org> (13 Jan 2004)
# needs testing and xfree-4.3.0-r7 release first
<media-video/ati-gatos-4.4.0

# <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)
# Masked due to gnupg-1.9 dependancy
# <dragonheart@gentoo.org> (25 Oct 2004)
=app-crypt/gpgme-1.0.1-r1

# <hattya@gentoo.org> (05 May 2005)
# development branch.
=mail-client/sylpheed-1.9*

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

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

# <seemant@gentoo.org> (02 Aug 2003)
# masking openafs-1.3 series as it is really unstable and useless
=net-fs/openafs-1.3*

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

# <seemant@gentoo.org> (21 May, 2003)
# Masked while it's still under development.
media-fonts/chkfontpath

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

# <seemant@gentoo.org> (25 Jul 2002)
# masked because of unhealthy groupadd operation in postinst
# needs sorting out on the policy
app-misc/nomadii-utils

# <seemant@gentoo.org> (25 Jul 2002)
# masked while licensing is sorted out
app-misc/ldapbrowser

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

# Only use the mesa and mesa-glu provided with x11-base/xfree,
# as the external ones gives problems in most cases with DRI/DRM.
# Nvidia users do not use it anyhow, and tdfx users report that
# it works fine with the mesa included with xfree.  If you do
# unmask these, make sure that you know what you are doing, and
# know that if anything breaks, then you get to keep the pieces.
#
# azarah (26 May 2002)
>=media-libs/mesa-3.0
>=media-libs/mesa-glu-3.0
>=media-libs/sgi-oss-glu-1.0

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

# broken (achim)
app-text/sgml2x

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

# Will be removed shortly
dev-util/git-pasky