summaryrefslogtreecommitdiff
blob: d241a1048fd1c52661c678a9b8642905fb4b6488 (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
#####################################################################
#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
##

# <bcowan@gentoo.org> (26 Sep 2002)
#version bump. needs testing to see if patches need to be re-applied
=net-misc/vnc-3.3.4

# <agenkin@gentoo.org> (26 Sep 2002)
# Masking pending portage tree unfreeze.
>=media-sound/grip-3.0.3

# <raker@gentoo.org> (25 Sep 2002)
# version bump.  ssl and other fixes
=net-mail/courier-imap-1.5.3
# added choosable maildir/mbox support
=net-mail/uw-imap-2001a-r3
# version bump.  lots of fixes
=media-gfx/gimp-print-4.2.2
# new ipv6 patch.  squashes ssl patch though.
=sys-apps/ucspi-tcp-0.88-r4

# <mjc@gentoo.org> (25 Sep 2002)
# new upstream, fixes gxx_personality_v0
# bug (distcc incorrectly used gcc instead
# of g++ in some cases)
=sys-devel/distcc-0.11

# <mcummings@gentoo.org> (24 Sep 2002)
# addresses bug 8299 - please test!
#=media-gfx/imagemagick-5.4.7-r2

# <raker@gentoo.org> (23 Sep 2002)
# masking libsndfile-1.0.0 due to API changes
>=media-libs/libsndfile-1.0.0

# <g2boojum@gentoo.org> (22 Sep 2002)
# Mask perl-ldap while still semi-frozen
dev-perl/perl-ldap

# <lostlogic@gentoo.org> (21 Sep 2002)
# Mask pending release of gentoo-sources-2.4.19-r10
# Needed for lolo-sources-2.4.19.10*
=sys-apps/jfsutils-1.0.22

# <agenkin@gentoo.org> (21 Sep 2002)
# Masking pending unfreeze.
>=media-video/ogle-0.8.5
>=media-video/ogle-gui-0.8.5


# <satai@gentoo.org> (20 Sep 2002)
# Too many problems.  Masking to fix.
>app-text/tetex-1.0.7-r10

# <danarmak@gentoo.org> (17 Sep 2002)
# masked for testing of the gcc3 patch I added for this new version
=media-gfx/kimagemapeditor-0.9.5.1

# <kain@kain.org> (17 Sep 2002)
# gcc 3.2 and kerberos v5 fixes for cyrus-sasl; still needs wider testing
# also making sure cyrus-sasl can integrate with OpenLDAP, whose configure
# scripts don't know how to find cyrus-sasl-2
=net-nds/openldap-2.0.25-r3
=dev-libs/cyrus-sasl-1.5.27-r5
=dev-libs/cyrus-sasl-2.1.7-r2

# <blocke@shivan.org> (16 Sep 2002)
# Masked due to freeze
=net-www/galeon-1.2.6

# <g2boojum@gentoo.org> (15 Sep 2002)
# Masked for testing, 'cause it's not quite done, and 'cause there's a freeze
x11-misc/chbg

# <mkennedy@gentoo.org> (15 Sep 2002)
# Upstream too buggy to use. Doesn't seem to be a stable or pre
# release that actually works.
x11-terms/powershell

# <mcummings@gentoo.org> (14 Sep 2002)
# These should *never* have made it out
=media-libs/libgd-2.0.1
=dev-perl/GD-2.01

# <murphy@gentoo.org> (14 Sep 2002)
# Bugfix release, may resolve some issues on sparc64 but needs further testing
# before full-scale deployment
=sys-apps/silo-1.2.6

# <woodchip@gentoo.org> (14 Sep 2002)
# Chase latest stable release; added libreiserfs support.
=sys-apps/parted-1.6.3

# <lostlogic@gentoo.org> (13 Sep 2002)
# Masking gaim-0.59.2 because it segfaults all the time
=net-im/gaim-0.59.2

# Hannes Mehnertk <hannes@gentoo.org> (13 sep 2002)
# masked kvim
app-editors/kvim

# <carpaski@gentoo.org> (12 Sep 2002)
# Masked for testing
>=net-www/apache-2.0.0

# <aliz@gentoo.org> (12 Sep 2002)
# Masked for testing
=net-misc/freeswan-1.98b-r1

# <raker@gentoo.org> (11 Sep 2002)
# New qmail ebuild.  Please test tls, smtp-auth, and ldap support
=net-mail/qmail-1.03-r9
# New ebuild for cinelerra, leaving out to respect the freeze
=media-video/cinelerra

# <aliz@gentoo.org> (11 Sep 2002)
# Masked for testing
=x11-misc/hotkeys-0.5.5

# <cardoe@gentoo.org> (11 Sep 2002)
# j2ee claims freetds, firebird, and curl aren't valid use flags
# and this ebuild messes up hardcore and isn't tested
=dev-php/mod_php-4.2.3
=dev-php/php-4.2.3

# <tantive@gentoo.org> (10 Sep 2002)
# Version bumped, masked due to freeze
=sys-kernel/usermode-sources-2.4.19-r2
=sys-kernel/usermode-sources-2.4.19-r1

# <seemant@gentoo.org> (10 Sep 2002)
# masked coz all our packages only use the old version
>=net-libs/libnet-1.1.0

* <seemant@gentoo.org> (09 Sep 2002)
# masked coz it is old and broken
=app-games/quakeforge-0.5.0

# <phoenix@gentoo.org> (09 Sep 2002)
# Testing a workaround in emerge-webrsync
# <mjc@gentoo.org> (14 Sep 2002)
# it works for me behind a firewall, and 
# emerge-webrsync is broken in previous
# versions.. unmasking
#=app-admin/gentoolkit-0.1.17-r1

# <karltk@gentoo.org> (08 Sep 2002)
# This fixes a few problems, but should not be unmasked 
# before it's properly tested, probably not before 1.4
# release.
=dev-lang/ant-1.5

# <tantive@gentoo.org> (08 Sep 2002)
# Masked for testing, added a patch to compile using gcc3 
=sys-kernel/openmosix-sources-2.4.19-r4

# <spider@gentoo.org> (08 Sep 2002)
# new ebuild. cvs checkout of galeon <head> (galeon2)
net-www/galeon-cvs

# <carpaski@gentoo.org> (08 Sep 2002)
# Possible/likely fix for python compile issues
# bug #7641
=dev-lang/python-2.2.1-r4

# <azarah@gentoo.org> (08 Sep 2002)
# Get things ready for new xfree release.
#=sys-apps/baselayout-1.8.3
=x11-base/xfree-4.2.1

# <aliz@gentoo.org> (07 Sep 2002)
# Masked for testing
=media-plugins/xmms-nebulus-0.3.0

# <spider@gentoo.org> (05 Sep 2002)
# masked for testing and recheck of ebuild by rphillips
=net-irc/xchat-1.8.10

# <aliz@gentoo.org> (05 Sep 2002)
# Masked for testing
=sys-apps/console-data-1999.08.29-r3

# <agenkin@gentoo.org> (03 Sep 2002)
# Masked pending portage unfreeze.
dev-python/pycrypto

# <raker@gentoo.org> (03 Sep 2002)
# gnustep updates... unstable moved to stable branch
=dev-util/gnustep-make-1.4.0
=dev-util/gnustep-base-1.4.0
=dev-util/gnustep-back-0.8.0
=dev-util/gnustep-gui-0.8.0

# <seemant@gentoo.org> (03 Sep 2002)
# many patches and fixes applied.  please test.
=net-misc/vnc-3.3.3-r3

# <azarah@gentoo.org> (03 Sep 2002)
# new version. PLEASE test!
# <woodchip@gentoo.org> (22 Sep 2002)
# added a patch for animations and spiff
# up everything a bit.  tests okay here,
# will hopefully unmask very soon...
>=sys-apps/lilo-22.3.3

# <phoenix@gentoo.org> (02 Sep 2002)
# This needs a lot of testing
=net-dialup/minicom-2.00.0

# <tantive@gentoo.org> (02 Sep 2002)
# Masked for testing, fixed some compile errors with >2.99 
=sys-kernel/openmosix-sources-2.4.19-r3

# <phoenix@gentoo.org> (01 Sep 2002)
# This needs a lot of testing
app-emulation/winex-cvs

# <blizzy@gentoo.org> (01 Sep 2002)
# masked because there is a freeze and for testing
#net-misc/d4x
# 
# <azarah@gentoo.org> (01 Sep 2002)
# we have a ebuild for this already with many more features.
# havent moved it from net-misc/nt to net-misc/d4x until now,
# but with new portage "update" feature ....
net-misc/nt

# <seemant@gentoo.org> (31 Aug 2002)
# masked while readline upgrade issues are sorted with bash
=sys-libs/readline-4.3*
>=sys-apps/bash-2.05b

# <cselkirk@gentoo.org> (31 Aug 2002)
# masked for testing
=net-libs/libpcap-0.7.1-r1

# <phoenix@gentoo.org> (30 Aug 2002)
# masked for testing
=net-dialup/speedtouch-1.1

# <prez@gentoo.org> (29 Aug 2002)
# Does not build successfully in an ebuild (but builds just fine outside of one)
# Needs more investigation as to why.
dev-java/sun-j2sdk

# <george@gentoo.org> (28 Aug 2002)
# masked for testing
=app-emulation/pose-3.5-r1

# <mcummings@gentoo.org> (28 Jul 2002)
# new version of perl - incompatible with 5.6 IO model
# tested on 05 Aug 2002 on ppc by pvdabeel@gentoo.org
# make test failed on ppc
# added -r1, threads and fixes to ebuild - 08/10/02
>=sys-devel/perl-5.8.0

# <tantive@gentoo.org> (28 Aug 2002)
# masked because there is a freeze, and to test them.
=sys-kernel/openmosix-sources-2.4.18-r2
=sys-kernel/openmosix-sources-2.4.18-r3
=sys-kernel/openmosix-sources-2.4.18-r4
=sys-kernel/openmosix-sources-2.4.19-r1
=sys-kernel/openmosix-sources-2.4.19-r2

# <phoenix@gentoo.org> (28 Aug 2002)
# masked new ppp release for testing
=net-dialup/ppp-2.4.1-r11

# <seemant@gentoo.org> (27 Aug 2002)
# masked because there is a FREEZE, and things should be tested!
dev-util/rats
net-im/linphone
net-libs/libosip
dev-perl/CDDB-File

# <seemant@gentoo.org> (27 Aug 2002)
# Masked for freeze
=dev-libs/DirectFB-0.9.13

# <spider@gentoo.org> (26 Aug 2002)
# Masked for testing -- tore out the broken id3lib included and
# added the final + patches to make it work
# needs testing on 2.95.3
=media-sound/audacity-1.0.0-r2

# <agenkin@gentoo.org> (27 Aug 2002)
# Ebuild for 1.1.0 is a work in progress, since it seems to be a mess.
>=media-sound/audacity-1.1.0

# <aliz@gentoo.org> (26 Aug 2002)
# Masked to force lynx-2.8.4.1c
=net-www/lynx-2.8.4a-r4

# <azarah@gentoo.org> (25 Aug 2002)
# Contains the hacked sandbox.  Needs testing.
=sys-apps/portage-2.0.30_alpha
=sys-apps/portage-2.0.30_alpha2
=sys-apps/portage-2.0.30_alpha3
# <drobbins@gentoo.org> (28 Aug 2002)
# New release version; still should be tested some.
=sys-apps/portage-2.0.30
=sys-apps/portage-2.0.31

# <azarah@gentoo.org> (25 Aug 2002)
# This one *STILL* activate the atexit() bug in some
# binary packages (Win4Lin and Realplayer to name a few)
=sys-libs/glibc-2.2.5-r8

# <cardoe@gentoo.org> (24 Aug 2002)
# masked for testing...
#>=sys-apps/pcmcia-cs-3.2.1

# <seemant@gentoo.org> (23 Aug 2002)
# masked for testing.  x3270 for version bump, and xmms for removal of avi
# stuff, gpgme for version bump.
=net-misc/x3270-3.2.19

# <blizzy@gentoo.org> (23 Aug 2002)
# masked for testing
=dev-java/sun-jdk-1.4.1_rc1

# <danarmak@gentoo.org> (22 Aug 2002)
# kde 3.1 beta1: masked permanently; some people like prereleases
=kde-base/arts-1.0.7
=kde-base/kde-3.1_beta1
=kde-base/kdeaddons-3.1_beta1
=kde-base/kdeadmin-3.1_beta1
=kde-base/kdeartwork-3.1_beta1
=kde-base/kdebase-3.1_beta1
=kde-base/kdebindings-3.1_beta1
=kde-base/kdeedu-3.1_beta1
=kde-base/kdegames-3.1_beta1
=kde-base/kdegraphics-3.1_beta1
=kde-base/kdelibs-3.1_beta1
=kde-base/kdemultimedia-3.1_beta1
=kde-base/kdenetwork-3.1_beta1
=kde-base/kdepim-3.1_beta1
=kde-base/kdesdk-3.1_beta1
=kde-base/kdetoys-3.1_beta1
=kde-base/kdeutils-3.1_beta1

# <danarmak@gentoo.org> (20 Aug 2002)
# masked for extensive testing
x11-libs/qt-embedded

# <mjc@gentoo.org>    (20 Aug 2002)
# masked for testing
=sys-kernel/gentoo-sources-2.4.19-r8

# <george@gentoo.org> (19 Aug 2002) 
# masked for testing
=dev-libs/korelib-1.0

# <leonardop@gentoo.org> (19 Aug 2002)
# Masked for, guess what... testing
=dev-util/guile-1.4.1

# <mcummings@gentoo.org> (18 Aug 2002)
# The following are masked for testing
=dev-perl/AxKit-1.6
=dev-perl/XML-LibXML-1.52
=dev-perl/XML-NamespaceSupport-1.07
=dev-perl/XML-LibXSLT-1.50

# <bass@gentoo.org> (16 Aug 2002)
# test it please
=app-admin/localepurge-0.2

# <styx@gentoo.org> (16 Aug 2002)
# Masked for testing
>=sys-apps/quota-3.04

# <seemant@gentoo.org> (16 Aug 2002)
# Masked for testing
=app-admin/modlogan-0.7.18

# <blizzy@gentoo.org> (14 Aug 2002)
# masked since there doesn't seem to be a download location
=net-misc/netstat-nat-1.3

# <seemant@gentoo.org> (13 Aug 2002)
# masked for testing and new uname.c patch
>=sys-apps/sh-utils-2.0.14

# <blizzy@gentoo.org> (13 Aug 2002)
# new package, masked for testing
net-mail/pinepgp

# <blizzy@gentoo.org> (12 Aug 2002)
# masked for testing
=sys-apps/gradm-1.4

# <cselkirk@gentoo.org> (12 Aug 2002)
# masked for testing
=app-shells/zsh-4.0.5

# <bass@gentoo.org> (08 Aug 2002)
# beta version for gnome2
=app-games/teg-0.11.0

# <blizzy@gentoo.org> (08 Aug 2002)
# masked since it's beta
=dev-java/sun-jdk-1.4.1_beta

# <nitro@gentoo.org> (05 Aug 2002)
# masked for testing -- new features
=net-dns/bind-9.2.1-r2

# <mcummings@gentoo.org> (05 Aug 2002)
# made workable in cross perl version
# masked for testing
# 08/13/02 fixed more hardcoded values 
# in default Makefile
=dev-perl/SGMLSpm-1.03-r2

# <seemant@gentoo.org> (05 Aug 2002)
# masked for testing
=net-analyzer/rrdtool-1.0.39

# <seemant@gentoo.org> (05 Aug 2002)
# masked for testing custom CFLAGS
=media-libs/xpm-3.4k-r1

# Leonardo Boshell <leonardop@gentoo.org> (04 Aug 2002)
# These packages have been replaced with the new gtk-engines-* form
x11-themes/crux
x11-themes/gtk-engines
x11-themes/gtk-flat-theme
x11-themes/gtk-thinice-engine
x11-themes/gtk-thinice-theme
x11-themes/gtk-xenophilia-engine
x11-themes/gtk-xfce-engine

# lamer <lamer@gentoo.org> (4 Aug 2002)
# Firestarter won't compile with gnome2
=net-misc/firestarter-0.8.2
# Kismet package is new please test
=net-analyzer/kismet-2.4.6

# Dan Armak <danarmak@gentoo.org> (04 Aug 2002)
# remask kde 3.1_alpha1 because people who don't emerge rsync --clean
# see it as unmasked even though i removed the ebuilds from cvs
=kde-base/arts-1.0.6
=kde-base/kdelibs-3.1_alpha1
=kde-base/kde-3.1_alpha1
=kde-base/kdeaddons-3.1_alpha1
=kde-base/kdeadmin-3.1_alpha1
=kde-base/kdeartwork-3.1_alpha1
=kde-base/kdebase-3.1_alpha1
=kde-base/kdebindings-3.1_alpha1
=kde-base/kdeedu-3.1_alpha1
=kde-base/kdegames-3.1_alpha1
=kde-base/kdegraphics-3.1_alpha1
=kde-base/kdemultimedia-3.1_alpha1
=kde-base/kdenetwork-3.1_alpha1
=kde-base/kdepim-3.1_alpha1
=kde-base/kdesdk-3.1_alpha1
=kde-base/kdetoys-3.1_alpha1
=kde-base/kdeutils-3.1_alpha1

# <carpaski@gentoo.org> (04 Aug 2002)
# Testing...
=net-ftp/kbear-2.0_beta1

# Doug Goldstein <cardoe@gentoo.org> (03 Aug 2002)
# masked for testing
=net-dialup/hsflinmodem-5.03.03.02072100

# George Shapovalov <george@gentoo.org> (01 Aug 2002)
# sandbox violation
=dev-lang/stratego-0.7.ebuild

# Karl Trygve Kalleberg <karltk@gentool.org> (01 Aug 2002)
# Has non-ratified use flags.
=dev-lisp/bigloo-lib-0.17

# Seemant Kulleen <seemant@gentool.org> (01 Aug 2002)
# the dependency is on an old, now removed version of PyQt
dev-python/anygui

# Chad Huneycutt <chadh@gentoo.org> (31 Jul 2002)
# new package. needs testing
app-office/ical

# Daniel Robbins <drobbins@gentoo.org> (31 Jul 2002)
# marked pre-release
=sys-apps/evms-1.1.0_pre4

# Daniel Robbins <drobbins@gentoo.org> (30 Jul 2002)
# no corresponding PyQt on cvs to get this thing to compile
dev-python/anygui

# Dan Armak <danarmak@gentoo.org> (30 Jul 2002)
# masked for testing
media-video/kxine

# Spider <spider@gentoo.org> (29 Jul 2002)
# New version, lots of different USE flags that I havent tested together.
# needs testing as I just copied the old ebuild
=app-office/gnumeric-1.0.9

# <raker@gentoo.org> (26 Jul 2002)
# New libgda masked for testing.
=gnome-extra/libgda-0.8.192

# <spider@gentoo.org> (25 Jul 2002)
# we need to fix deps on >=dev-util/gob-1.0.x
>=dev-util/gob-1.99.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-games/halflife-server
app-games/cstrike-server
app-misc/ldapbrowser

# <seemant@gentoo.org> (25 Jul 2002)
# masked for testing
=app-admin/msyslog-1.08e

# <cardoe@genoo.org> (25 Jul 2002)
# Moz 1.1beta (don't kill me Azarah for putting this here!)
=net-www/mozilla-1.1_beta
>=net-www/mozilla-1.1

# <azarah@gentoo.org> (25 Jul 2002)
# gawk is very flexible and can be used instead
# of cut, etc that is not in /bin, and also much
# faster than greps/cuts.  Thus I started using
# it in baselayout, but we need >=gawk-3.1.0-r3
# to have it in /bin.
<sys-apps/gawk-3.1.0-r3

# <woodchip@gentoo.org> (24 Jul 2002)
# apparently fatally flawed.
net-misc/fakeidentd

# <spider@gentoo.org> (25 Jul 2002)
#  Just a minor change, worth testing
# as it uses less RAM during compile
# but shouldn't be unmasked just for this
# only changes the buildprocess
=net-www/mozilla-1.0-r4

# <g2boojum@gentoo.org> (24 Jul 2002)
# waiting on copyright
net-misc/radvd

# <aliz@gentoo.org> (24 Jul 2002)
# needs some testing first
=app-text/aspell-0.33.7.1-r2

# <aliz@gentoo.org> (24 Jul 2002)
# masked for testing
#
# <azarah@gentoo.org> (29 Jul 2002)
# I have major formatting problems with this one .. even
# just viewing manpages it do not handle properly, so
# PLEASE make sure that this works for most people, or
# that you have a definate fix!!!!
>=sys-apps/groff-1.18

# <seemant@gentoo.org> (23 Jul 2002)
# Masked while g2boojum approves
=sys-kernel/usermode-sources-2.4.18-r2
=dev-util/usermode-20020718

# <owen@gentoo.org> (22 Jul 2002)
# Broken against latest FLTK. Hopefully will be fixed with a new POSE.
<=app-emulation/pose-3.5

# phoen][x <phoenix@gentoo.org> (22 Jul 2002)
# Bumped to new version - masked for testing
>=app-emulation/bochs-1.4.1

# <seemant@gentoo.org> (21 Jul 2002)
# masked for testing
>=sys-devel/gettext-0.11.3

# <seemant@gentoo.org> (20 Jul 2002)
# masked because GNU Readline 4.2 is not in 1.0 default inclusion
=media-sound/cdcd-0.6.4

# <nitro@gentoo.org> (19 Jun 2002)
# new version, please test
>=net-ftp/proftpd-1.2.6_rc1

# <chadh@gentoo.org> (19 Jul 2002)
# new ebuild.  x86-only.  Should be good to go once it is masked for alt arch
app-misc/lphdisk
# new ebuild.  probably x86-only as well.
app-misc/mwavem

# <chadh@gentoo.org> (18 Jul 2002)
# new ebuild.  Almost certainly an x86-only package.
media-libs/libfame

# <karltk@gentoo.org> (18 Jul 2002)
# standard library does not compile
=dev-lang/clean-2.0.1

# azarah@gentoo.org (17 Jul 2002)
# needs testing.
# Added other deps that depend on baselayout
=sys-apps/baselayout-1.8.0
=sys-apps/baselayout-1.8.1
app-emulation/zinc

# cybersystem@gentoo.org (17 Jul 2002)
# Masking knapster2 - this package is broken on gcc 3.1
=net-p2p/knapster2-0.4

# phoenix@gentoo.org (17 Jul 2002)
# Masking mkisofs - this package is obsolete (cdrtools took its place)
# and nothing depends on this package
sys-apps/mkisofs

# 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

# lamer@gentoo.org (16 Jul 2002)
# Brand spanking shiny new ebuild! Needs testing!
=net-mail/mailman-2.0.12

# lamer@gentoo.org (16 Jul 2002)
# initscript needs testing, I don't run a system wide fetchmail so can't
# verify.
=net-mail/fetchmail-5.9.11-r1

# drobbins@gentoo.org (18 Aug 2002)
#testing
=sys-apps/portage-2.0.29

# lamer@gentoo.org (15 Jul 2002)
# Needs socks testing
=net-irc/irssi-0.8.5-r1

# Remote DoS
# http://online.securityfocus.com/bid/5055
=net-irc/irssi-0.8.4

# lamer@gentoo.org (15 Jul 2002)
# Needs more testing, removed patch application in src_unpack
=net-misc/dante-1.1.13

# lamer@gentoo.org (21 Jul 2002)
# Needs more testing, got word from someone on the devel team for this
# upstream who's a gentoo user that it's b0rken. I can only test on x86
=app-games/boson-0.6.1-r1

# sunflare@gentoo.org (09 Jul 2002)
# Masked because readline-4.2 is masked in default-1.0.
# typo fix by drobbins:
=net-p2p/mutella-0.4

# sunflare@gentoo.org (08 Jul 2002)
# Masking out the old zsnes, since its version numbering scheme is emulation
# scene based and not UNIX-based; portage wants 1.337 > 1.35.
=app-emulation/zsnes-1.337-r2

# drobbins@gentoo.org (07 Jul 2002)
# stuff with deps that are missing; ebuilds have problems so I'm masking them
net-mail/exmh

# <karltk@gentoo.org> (04 Jul 2002)
# Has not received any testing.
=net-www/cocoon-2.0.2

# <karltk@gentoo.org> (01 Aug 2002)
# JAXP is dead, but some packages don't know
# that.
=dev-db/postgresql-7.1-r1

#azarah@gentoo.org (03 Jul 2002)
#this one moves a lot of stuff around, and have a search dir
#order fix that is very experimental
=sys-devel/gcc-3.1-r8

# <owen@gentoo.org> (02 Jul 2002)
# masked for licencing reasons.
# see myself or seemant before unmasking
=net-im/ymessenger-0.99.19-r2

# <owen@gentoo.org> (30 Jun 2002 )
# New ebuild for CCMSN. Masked For Testing.
=net-im/ccmsn-0.3

# Masked for testing of the ACL parts (styx 21 Jun 2002)
=sys-apps/e2fsprogs-1.27-r1

#waiting for the unmasking of gnomelibs (gnome2) BaSS 20 Jun 02
dev-utils/vdkbuilder

=sys-devel/binutils-2.12.90.0.9

# blizzy@gentoo.org (11 Jul 2002)
# masked due to b0rkenness
=sys-devel/binutils-2.12.90.0.14

# masking nhc98, until strange module lookup behaviour is resolved
# george - Jun 8, 2002
dev-lang/nhc98

# masking k3studio, somehow it escaped being masked before
# ebuild incomplete
media-gfx/k3studio

# X driver renaming *dont* work.
# Azarah - 5 June 2002
=media-video/ati-gatos-4.2.0.11-r1

# unreproducable weird problems that seem fixed with new ximian and
# redhat patches -- blocke, 6/1/02
<=x11-libs/gtk+-1.2.10-r7

# old version isn't available, new version doesn't compile - danarmak
media-libs/nurbs++

# Mask this one, as it seems users dont emerge --clean rsync
#
# Azarah (26 May 2002)
=media-video/avifile-0.7.20020412

# This is is _very_ experimental!
# azarah - 19 Jun 2002
>=x11-base/xfree-4.2.99

# this patch works for me on x86 and ppc but breaks other ppl :( (kain, 08 May 2002)
=sys-devel/gdb-5.1.1-r1

# According to spider this breaks gnome-vfs (sandymac, 03 May 2002):
# and evolution (azarah, 05 May 2002)
dev-libs/libiconv

# This one really mess with a lot of stuff.  We will have to wait until
# everything is sorted, or apps have adapted to it.
#
# Problematic stuff:
#     Nautils (no fonts in tabls, and view panels)
#     Gnome2 components do not compile
#     prob a load of others we still have to find out about.
#
# Azarah - 01 May 2002
=media-libs/freetype-2.1.0*

# masked for security reasons
# see
# http://online.securityfocus.com/advisories/4061
# <bangert@gentoo.org> 26 Apr 2oo2
<app-admin/sudo-1.6.6

#/bin/login from shadow had a root exploit when
#pam_limits was in use.  We now use /bin/login
#from util-linux-2.11o which have this fixed.
#Thanks to Jared H. Hudson for this fix
#
#Azarah -- 8 April 2002
<sys-apps/shadow-4.0.2-r4
<sys-apps/util-linux-2.11o

# 23 Mar, m0rpheus: bind 8 keeps having serious problems.
<net-misc/bind-9.0.0

# bug #468
net-www/zope

# drobbins, 16 Mar 2002: This kernel sucks :)
=sys-kernel/linux-sources-2.4.18

# Opera 6 final.
# This package requires that qt2 package were linked against libpng 1.0.12,
# while the latest libpng version is 1.2.  Since I could not figure out how
# to specify this witihout making qt-2 dependent on =libpng-1.0.12*, this
# ebuild is masked out.  Please use opera-static instead, which does not
# require libpng or qt installed.
# Arcady Genkin <agenkin@gentoo.org> May 20, 2002.
#
net-www/opera

# Arcady Genkin <agenkin@gentoo.org>
# Jul 22, 2002
# Masking this for a week, until the removed _beta10 packages
# become a thing in the past.
=media-sound/alsa-utils-0.9.0.1_beta10
=media-libs/alsa-lib-0.9.0.1_beta10
=media-libs/alsa-oss-0.9.0.1_beta10

# Arcady Genkin <agenkin@gentoo.org>
# Aug 15 2002
# Masking _rc3 pending some testing
>=media-sound/alsa-driver-0.9.0_rc3
>=media-libs/alsa-lib-0.9.0_rc3
>=media-sound/alsa-utils-0.9.0_rc3


# 18 Feb 2002, azarah.
# Gnumeric needs 0.0.17, and most other stuff should work with this version
>gnome-extra/gb-0.0.17

# PHP < 4.1.2 has major security flaws and should not be used
# blocke, March 7, 2002
<=dev-lang/php-4.1.2-r1

# 16 Jul 2002, rphillips.
# unmasked dev-php/ tree; masked old dev-lang/php
dev-lang/php

# 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
>=media-libs/oss-opengl-glu-1.0

# We are masking out the shadow snapshots now, to coincide
# with the new pam rollout. ( Woodchip - Mar 20 2002)
>=sys-apps/shadow-5

# earlier versions are exploitable
<sys-apps/at-3.1.8-r7

# Security fix (reported by M0rpheus)
<=net-mail/exim-3.33
# Needs more testing (lamer@gentoo.org)
=net-mail/exim-4.04

#previous versions had a security hole (bug #212)
<net-misc/stunnel-3.22

# Causes slow DVD auth, and do not work with MPlayer
=media-libs/libdvdcss-1.0.0

#we no longer use sysvinit (rolled into baselayout)
sys-apps/sysvinit

# broken
=app-doc/quanta-docs-1.0

#incomplete and very dangerous < Danarmak >
#
# 20020430 (PreZ) Several people have reported the 641d build and bin
# works installs work fine.  So the 641b one will remain masked alone.
=app-office/openoffice-641b
# mask 641d to enable 1.0.0
>app-office/openoffice-bin-2.0.0
>app-office/openoffice-2.0.0

#apparently has an fs unmount corruption bug
=sys-kernel/linux-sources-2.4.15

#buggy < Danarmak, Verwilst >
=x11-libs/qt-x11-2.3.2

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

#still not working:
=sys-libs/ncurses-5.2-r4

# conflict with linux-sources, to be resolved soon
sys-kernel/linux-sources-vanilla

# incompatible
#added pspell-ispell till i sort out the *spells
#
#pspell-ispell works here, but it seems that with pspell, aspell
#should be generally left alone
#
#Azarah - 03 April 2002
#
<app-text/pspell-ispell-0.12-r1
<app-text/pspell-0.12
<app-text/aspell-0.33

# Unmask these two, as the latest (automake-1.6-r1 and autoconf-2.53)
# should do some autodetection magic.
#
# Azarah (26/03/2002)
#
<sys-devel/automake-1.6.1-r4
<sys-devel/autoconf-2.53a

# broken
app-text/sgml2x
>=app-admin/modlogan-0.7.4 (achim)

# unfinished
app-admin/va-systemimager-server
app-admin/va-systemimager-client
<media-video/avifile-0.6.0
>=berlin-base/berlin-0.2.2

# broken
>=net-news/knews-1.0.1b
>=net-www/konqueror-embedded-20010207
=sys-apps/vcron-3.0_p1-r2
=sys-apps/vcron-3.0_p1-r6
>=media-video/mpeg2-movie-1.5
=net-ftp/lftp-2.4.3
=media-sound/grip-2.98.3
=media-sound/grip-2.98.3-r1
# untested
>=dev-db/unixODBC-2.0.8
=app-editors/fte-20010819

#older versions were reported as broken, 0.30 works fine (george)
<=media-gfx/autotrace-0.28

# have to fix the patches and dependencies
=app-editors/fte-20010819

# Moved in the big GNOME move
gnome-office/abiword
gnome-office/gnumeric
gnome-office/mrproject
gnome-office/eog
gnome-office/sodipodi
gnome-office/gnome-pim
gnome-office/gnome-db
gnome-office/dia
gnome-libs/libxml2
gnome-libs/libxslt
gnome-base/libxml
gnome-libs/libole2
gnome-libs/eel
gnome-base/gal
gnome-libs/gb
gnome-libs/gnomemm
gnome-base/gtkhtml
gnome-libs/libgda
gnome-libs/libole2
gnome-libs/librsvg
gnome-base/libunicode
gnome-libs/medusa
gnome-apps/nautilus
gnome-base/scrollkeeper
gnome-office/guppi
gnome-apps/gnome-pilot-conduits
gnome-apps/gnome-pilot
gnome-apps/gnome-audio
gnome-apps/gnome-games
gnome-apps/gnome-media
gnome-apps/gnome-utils
gnome-apps/bug-buddy
gnome-apps/mc
gnome-apps/gthumb
gnome-apps/gtktalog
gnome-apps/memprof
gnome-apps/ee
gnome-apps/gtop
gnome-apps/seahorse
gnome-apps/gnome-iconedit
gnome-apps/gedit
gnome-apps/gtkdiff
gnome-apps/battstat
gnome-apps/ggv
gnome-libs/bonobo-conf
gnome-apps/evolution
gnome-apps/glade
gnome-apps/glademm
gnome-apps/anjuta
gnome-base/gdk-pixbuf
gnome-base/glibwww
gnome-apps/gphoto
gnome-apps/pan
gnome-apps/powershell
gnome-apps/gnucash
gnome-apps/gnorpm
gnome-apps/gnofin
gnome-apps/gabber
gnome-apps/users-guide
gnome-apps/gentoo
gnome-apps/gupsc
gnome-apps/gwcc
gnome-apps/netleds_applet
gnome-apps/gnapster

# Moved, use from app-text instead:
app-doc/gmanedit
app-doc/tkinfo

# the packages dependent on tcl-tk have been updated to
# support the seperation of both
dev-lang/tcl-tk

# seems to be incompatible with autoconf 2.13, / Hallski
# (seems ok to me, as i build a whole system with 1.4.2-r1,
#  and we need it to fix the relink bug - Azarah [17 March 2002] )
#
# Seems we are back to square 1.  libtool-1.4.2 needs autoconf-2.5
# or later .. masking 1.4.2 again and adding 1.4.1-r2 with the
# "relink bug" fixed.
>=sys-devel/libtool-1.4.2
<sys-devel/libtool-1.4.1-r4

# Bevin <gbevin@gentoo.org> - new grub release, splashimage path should
# be updated in the docs to be "splashimage=(hd0,0)/grub/splash.xpm.gz"
# instead. Also, this release hasn't been tested with xfs yet, only with
# reiserfs
# Doesn't seem to work with xfs :-(
# <styx@gentoo.org> (Aug 13 2002)
# I've added grub-0.92-usbfix.patch to grub-0.92.ebuild, to close bug #6372, 
# hit me if something breaks. Still compiles here.
>=sys-apps/grub-0.91

# We are masking out the older pams now, in order to get the
# new one propogated into everybodys systems. ( Woodchip - Mar 20 2002)
<sys-libs/pam-0.75-r4

=dev-ruby/mod-ruby-0.9.7

#security update
<sys-libs/zlib-1.1.4

#seemant@gentoo.org 19 Mar 2002
# Masking avi-xmms because it will not compile against avifile-0.6, instead
# xmms has a hacked native support in it now for avi playing against avifile-0.6
# 30 Aug 2002; Seemant Kulleen: avi-xmms is now statically compiled against
# avifile, so it has been restored to portage.
<media-video/avifile-0.6


#seemant@gentoo.org 20 Mar 2002
# Masking medusa-0.5.1-r4 because it requires libtool-1.4.2 which is also masked
=gnome-extra/medusa-0.5.1-r4

# moved theese to gphoto2
=media-gfx/gphoto-2.0.0
=media-gfx/gphoto-2.0.0-r1

# spider@gentoo.org ; 21 May 2002;
# this is the gnome2 mask!
# (gnome-2 that is ;)
# dependencies for theese arent fixed yet:
>=x11-libs/gtkmm-1.3.0
>=dev-libs/libsigc-1.1.0
gnome-extra/libgnomecanvasmm
gnome-extra/gconfmm
gnome-extra/libgnomemm
gnome-extra/libgnomeuimm
gnome-extra/libglademm

## Non gnome-core packages, applications, extra libraries and so on

>=media-gfx/gimp-1.3.5
gnome-extra/gal2
>=app-office/gnumeric-1.1.3

>=dev-python/pygtk-1.99.0
>=net-irc/xchat-1.9.1

>=dev-util/glade-1.1.0
>=dev-util/glademm-1.1.0

media-libs/monkey-sound
media-sound/rhythmbox

# Gabriele Giorgetti <stroke@gentoo.org> ; 12 Aug 2002;
# gnomeicu for gnome2. Masked for testing 
>=net-im/gnomeicu-0.98.111

# Gnome 2 users should not uncomment theese. broken and/or not-present.
# I repeat- NOT -
#########

# Not in portage. deprecated
>=app-text/gnome-spell-1.0_pre1

# LEAVE THIS ONE MASKED, EVEN GNOME2 USERS!!!
>=dev-libs/librep-20020201

# Snapshot, 2.0 is newer.
>=x11-wm/sawfish-20020419

# snapshot
>=x11-libs/rep-gtk-20020201

# LEAVE THESE MASKED, or GNUCash will break!!!
>=dev-util/guile-1.5
>=dev-libs/g-wrap-1.3

# Snapshot, 1.9 is newer.
>=net-irc/xchat-20020519

#seemant@gentoo.org, 14 Apr 2002
# these are lower versions not higher
=media-libs/libgii-20010313
=media-libs/libggi-20010313

# mkennedy@gentoo.org 19 Apr 2002
# not fit for release (working on it though)
app-cdr/cddump


# seemant@gentoo.org 26 Apr 2002
# the old ebuild of puregui was mis-versioned to 1, when it was actually
# 0.0.1
=app-admin/puregui-1-r1

# jnelson@gentoo.org 1 May 2002
# mask ntp 4.1.72* as they are alpha
=net-misc/ntp-4.1.72*
# jnelson@gentoo.org 4 May 2002
# add 4.1.71* too
=net-misc/ntp-4.1.71*


# spider@gentoo.org 9 May 2002
# Security update see:
# http://online.securityfocus.com/bid/4339
# http://online.securityfocus.com/bid/4336
<media-libs/imlib-1.9.13


# spider@gentoo.org 9 May 2002
# Security update see:
# http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=49294
# ftp://ftp.freebsd.org/pub/FreeBSD/CERT/advisories/FreeBSD-SA-01%3A48.tcpdump.asc
<net-analyzer/tcpdump-3.6.2-r1

# mkennedy@gentoo.org 12 May 2002
# will be renames to app-editors/xemacs-gtk (so we'll have xemacs,
# xemacs-gtk, xemacs-motif)
app-editors/gtk-xemacs

# mkennedy@gentoo.org 20 May 2002
# replaced (see app-editors/xemacs)
app-editors/xemacs-gamma

# spider@gentoo.org 18 May 2002
# Why did this get installed by profiles? its broken.
# should be updated to 4.2
<sys-apps/texinfo-4.2

# spider@gentoo.org 23 May 2002
# This one doesn't build, looks abandondware
app-arch/gnorpm

# spider@gentoo.org 27 May 2002
# Masked because it doesnt work properly
# and because I'm not inclined to break that many users systems. see bug #3065
x11-libs/gdkxft

# lostlogic@gentoo.org 06 Jun 2002
# Masked because installs headers in wrong location
=media-libs/id3lib-3.8.0_pre2-r2

# g2boojum@gentoo.org 14 June 2002
# works, but can't log in (meaning it really _doesn't_ work)
=net-mail/courier-imap-1.4.5-r1

# naz@gentoo.org 16 Jun 2002
# Works but needs some testing an finishing startxdfb script, hint hint :o).
x11-base/xdirectfb

# rphillips@gentoo.org 27 Jun 2002
# masked since package is not released
>=dev-db/mysql-4.0.1_alpha


# agriffis@gentoo.org 06 Jul 2002
# ruby-libglade-1.2 is OLD.  The 0.2[789] versions represent new
# maintainership.
=dev-ruby/ruby-libglade-1.2

# stroke@gentoo.org 11 Jul 2002
# app-cdr/eroaster-2.1.0 development branch #4250, masked for testing
# lostlogic@gentoo.org 17 Jul 2002
# masked because of sandbox problems in 2.0.12 and dep problems in 2.1.0
app-cdr/eroaster

# stroke@gentoo.org 16 Jul 2002
# app-editors/bluefish-2002.06.23 gtk+2 port snapshot masked. (#5034)
=app-editors/bluefish-2002.06.23

# g2boojum@gentoo.org 16 Jul 2002
# new net-tools ; needs testing
=sys-apps/net-tools-1.60-r5

# rphillips@gentoo.org 29 Jul 2002
# unstable package... masked for future use and testing
=net-fs/openafs-1.3.2

# stroke@gentoo.org 31 Jul 2002
# Masked 'cause it needs to be tested with gcc versions > 2.95
# lostologic can you please test it and patch it again if needed ?
=gnome-extra/gnomemm-1.2.3

# jnelson@gentoo.org 2 Aug 2002
# mask python-fchksum because older versions of portage hork on the
# circular dependency
=dev-python/python-fchksum-1.6.1-r1

# christoph@gentoo.org 2 Aug 2002
# masked for testing
=net-misc/udhcp-0.9.7

# naz@gentoo.org 4 Aug 2002
# masked for testing
>=media-sound/ecasound-2.0.4

# stroke@gentoo.org 19 Aug 2002
# Anjuta 1.0-beta1 (preview). masked for testing
>=dev-util/anjuta-0.9.99

# jnelson@gentoo.org 2 Sep 2002
# python 2.2.1-r3, filters -malign-double via flag-o-matic
=dev-lang/python-2.2.1-r3

# jnelson@gentoo.org 6 Sep 2002
# masking gramps-0.8.0 due to freeze
=app-misc/gramps-0.8.0

# jnelson@gentoo.org 9 Sep 2002
# masking PyXML-0.8 due to freeze
=dev-python/PyXML-0.8

# jnelson@gentoo.org 24 Sep 2002
# mask todo-manager because it's really busted
app-misc/todo-manager-bronze