summaryrefslogtreecommitdiff
blob: f1fc08085a2254d052979320bb11c10358dc3937 (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
# ChangeLog for x11-base/xfree
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/x11-base/xfree/ChangeLog,v 1.214 2003/10/13 21:29:44 spyderous Exp $

  13 Oct 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.99.12.ebuild,
  files/synaptics-makefile-fixup-0.11.3p11.patch:
  Pulling 4.3.99.12 and unused synaptics patch.

  13 Oct 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild:
  New synaptics driver 0.11.8.

*xfree-4.3.99.14 (12 Oct 2003)

  12 Oct 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.99.14.ebuild:
  New snapshot. Last regular snapshot before 4.4, new ones will be released as
  necessary.

  07 Oct 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.99.13.ebuild:
  Adding patch #9960 to close bug #29216. Thanks to Marc <gigerstyle@gmx.ch> for
  making me do this.

  07 Oct 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.99.12.ebuild,
  xfree-4.3.99.13.ebuild:
  Fixing synaptics URLs for CVS snapshots, and bad digest.

  07 Oct 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild:
  Fixing location of synaptics driver, thanks to Peter Ruskin.

  06 Oct 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.99.13.ebuild:
  Adding autoconfiguration patch. Try it out.

  06 Oct 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild:
  Adding support for building SDK with USE flags sdk and gatos.

  06 Oct 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild:
  Marking stable on arm (which is dead right now).

  06 Oct 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.99.12.ebuild,
  xfree-4.3.99.13.ebuild:
  New synaptics version 0.11.7. Add pam USE flag.

  06 Oct 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild:
  Marking stable on sparc and mips, from `Kumba and todd.

  06 Oct 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild:
  New patchset 2.1.15, with CVS update from xf-4_3-branch including security
  fixes. Pulled patch 9131 since it's included in 0100.

  06 Oct 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild:
  Remarking stable on x86...somehow got unmarked?

  06 Oct 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild:
  Cleaning up SRC_PATH for xfree by moving to mirror://xfree instead of ugly
  hack.

  06 Oct 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild:
  Marking stable on x86.

  06 Oct 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild:
  Unpacking cleanup.

  05 Oct 2003; Donnie Berkholz <spyderous@gentoo.org>; :
  Add missing digest.

  05 Oct 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild,
  files/synaptics-makefile-fixup-0.11.3p11.patch:
  Cleaning up how synaptics driver is done.

  05 Oct 2003; Alexander Gabert <pappy@gentoo.org> xfree-4.3.0-r2.ebuild:
  added hardened-gcc exclusion CC, hcc compiles okay but at startup font and lib
  errors

  04 Oct 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.99.10.ebuild,
  xfree-4.3.99.11.ebuild, xfree-4.3.99.9.ebuild:
  Pulling older CVS snapshots.

  02 Oct 2003; Martin Holzer <mholzer@gentoo.org> xfree-4.3.0-r1.ebuild,
  xfree-4.3.0-r2.ebuild, xfree-4.3.0-r3.ebuild:
  Added pam into IUSE.

  29 Sep 2003; Aron Griffis <agriffis@gentoo.org> xfree-4.3.0-r3.ebuild:
  Stable on alpha

  26 Sep 2003; Bartosch Pixa <darkspecter@gentoo.org> xfree-4.3.0-r3.ebuild:
  set ppc in keywords

*xfree-4.3.99.13 (26 Sep 2003)

  26 Sep 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.99.13.ebuild,
  files/xfree-4.3.0-ia64-elfloader.patch:
  Adding 4.3.99.13. Modified patch 0475, which customizes xterm settings. Pulled
  ia64 patch since it's in the patchset for 4.3.0.

  24 Sep 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild:
  Patchset 2.1.14. Adding patches 0261 and 0262 to fix module loading issues on
  ia64. 0261 is from splite, 0262 I got from Mike Harris's patches. Fixing bug
  #29430 as well.

  21 Sep 2003; Jon Portnoy <avenj@gentoo.org> xfree-4.3.0-r3.ebuild,
  files/xfree-4.3.0-ia64-elfloader.patch :
  Tiny patch from splite for XFree86 on IA64. Added IA-64 keywords.

  17 Sep 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r2.ebuild:
  Bumped patchset to 1.1.8. Added Savage memory leak patches from -r3, fixed
  imake-tempdir patch 092, added nolisten-tcp patch 129.

  16 Sep 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild,
  xfree-4.3.99.10.ebuild, xfree-4.3.99.11.ebuild, xfree-4.3.99.12.ebuild:
  Making synclient executable to close bug #28857. Thanks to Hanno Boeck
  <hanno@gentoo.org>.

  16 Sep 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild:
  2.1.12 was bad. Moving to 2.1.13.

  16 Sep 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild:
  New patchset 2.1.12. Patches from Mike Harris: 1214, 2002, 9128, 9131, 9132,
  9133 (I get some credit for 9132 though). Patch 0129 disables our default tcp
  listening on startx, which was insecure to begin with, one more step toward
  closing bugs #10599 and #23293. Fix patch 0128 thanks to bartron
  <bartron@gmx.net> on bug #28554.

*xfree-4.3.99.12 (15 Sep 2003)

  15 Sep 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.99.12.ebuild:
  Initial commit. Added quite a few patches from 4.3.0 thanks to Jasmin Buchert
  <jasmin@atlantica.ch> on bug #27477. Prevent listening on ipv4 by default with
  startx to begin closing bugs #10599 and #23293. Add patch 0128 thanks to
  bartron <bartron@gmx.net> on bug #28554.

  14 Sep 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r3.ebuild:
  added patch-2.5.9 to the depends list, because lesser versions cause failures.
  Closes bug #28618 reported by: Thomas Stein <thomas.stein@ngi.de>

  09 Sep 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild:
  Preventing parallel make patch from being applied even if USE=debug. mharris
  concurs that it is broken.

  06 Sep 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.2.1-r2.ebuild:
  Fixing broken patches to close bug #24046.

  07 Sep 2003; Martin Schlemmer <azarah@gentoo.org> xfree-4.3.99.11.ebuild:
  Rather use 'unpack' and not tar, as it already handle the invalid uid/gid
  issues. Add back explicitly setting LD_LIBRARY_PATH when running bdftopcf etc
  in src_install/pkg_postinst, as without it will break if this is the first
  time we install X."

  06 Sep 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild,
  xfree-4.3.0-r2.ebuild:
  Added distcc crosscompiling support to fix bug #17243, thanks to Francois
  Guimond <darkpope@hotmail.com>.

  06 Sep 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild:
  Adding a bunch of xkb patches and other things. PATCH_VER is 2.1.11.

  02 Sep 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.99.11.ebuild:
  X compiles should now die after an error instead of going forever.

*xfree-4.3.99.11 (30 Aug 2003)

  30 Aug 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.99.11.ebuild:
  Initial commit.

  28 Aug 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.99.8.ebuild,
  files/4.3.99.8/10xfree, files/4.3.99.8/AuthLib.patch,
  files/4.3.99.8/XftConfig, files/4.3.99.8/Xsession, files/4.3.99.8/Xsetup_0,
  files/4.3.99.8/acecad.patch, files/4.3.99.8/chooser.sh,
  files/4.3.99.8/exports-lib.patch, files/4.3.99.8/site.def,
  files/4.3.99.8/startDM.sh, files/4.3.99.8/xdm.pamd,
  files/4.3.99.8/xdm.start, files/4.3.99.8/xfs.conf.d,
  files/4.3.99.8/xfs.config, files/4.3.99.8/xfs.start, files/4.3.99.8/xinitrc,
  files/4.3.99.8/xserver.pamd, files/4.3.99.8/lib/libGL.la,
  files/4.3.99.8/lib/libGLU.la, files/4.3.99.8/lib/libOSMesa.la:
  Removing 4.3.99.8.

  25 Aug 2003; Olivier Crete <tester@gentoo.org> xfree-4.3.0-r3.ebuild:
  Fix ebuild to use system zlib on amd64 and mark stable on it

  21 Aug 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r3.ebuild:
  updated patch tarball for some amd64 fixes thanks to Olivier (tester@gentoo.org)

  18 Aug 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild:
  Added three Savage memory leak fixes from xfree86 bugs 274, 278 and 279.
  PATCH_VER is 2.1.9.

*xfree-4.3.99.10 (13 Aug 2003)

  13 Aug 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.99.10.ebuild:
  Initial commit.

  11 Aug 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild:
  Updated synaptics and sis drivers, made patch 0251 also apply to hppa as patch
  0280 at gmsoft's request. PATCH_VER is 2.1.8.

  09 Aug 2003; Alexander Gabert <pappy@gentoo.org> xfree-4.3.0-r3.ebuild:
  DoLoadableServer NO enables XFree86 binary to get protected by the PaX etdyn
  patches at pageexec.virtualave.net

*xfree-4.3.99.9 (03 Aug 2003)

  03 Aug 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.99.9.ebuild:
  Bump. Moved filesdir stuff to a downloaded tarball to save the tree.

  31 Jul 2003; foser <foser@gentoo.org> xfree-4.3.0-r2.ebuild, xfree-4.3.0-r3.ebuild, xfree-4.3.99.8.ebuild :
  Changed virtual/xft block to x11-libs/xft to actually work (#24111)

  27 Jul 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.99.8.ebuild:
  Changed freetype dep to 2.1.4 to close bug #25291.

  17 Jul 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild:
  Fixed problem with problem fix.

  17 Jul 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild:
  Fixed problem with synaptics-update patch, typo in ebuild.

  17 Jul 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild:
  Added Synaptics touchpad driver v0.11.3p7.

  14 Jul 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r2.ebuild:
  added bindist use support to filter out the ms stuff for grp

  13 Jul 2003; Donnie Berkholz <spyderous@gentoo.org> xfree-4.3.0-r3.ebuild:
  Removed via driver because it broke USE flags static and debug. Users who need
  this should use 4.3.99.*. See bugs #22372, #19512.

  12 Jul 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.99.8.ebuild:
  Adding symlink from XFree86 to X; Xwrapper is no longer used.

  12 Jul 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.0-r3.ebuild:
  Removing silicon motion patches from patchset. PATCH_VER is 2.1.6.

*xfree-4.3.99.8 (11 Jul 2003)

  11 Jul 2003; Donnie Berkholz <spyderous@gentoo.org>; xfree-4.3.99.8.ebuild,
  files/4.3.99.8/10xfree, files/4.3.99.8/AuthLib.patch,
  files/4.3.99.8/XftConfig, files/4.3.99.8/Xsession, files/4.3.99.8/Xsetup_0,
  files/4.3.99.8/acecad.patch, files/4.3.99.8/chooser.sh,
  files/4.3.99.8/exports-lib.patch, files/4.3.99.8/site.def,
  files/4.3.99.8/startDM.sh, files/4.3.99.8/xdm.pamd,
  files/4.3.99.8/xdm.start, files/4.3.99.8/xfs.conf.d,
  files/4.3.99.8/xfs.config, files/4.3.99.8/xfs.start, files/4.3.99.8/xinitrc,
  files/4.3.99.8/xserver.pamd, files/4.3.99.8/Sessions/Xsession,
  files/4.3.99.8/lib/libGL.la, files/4.3.99.8/lib/libGLU.la,
  files/4.3.99.8/lib/libOSMesa.la:
  Added first development series ebuild; masked in package.mask
  Thanks to Andrew Bevitt <andrew@volutin.net>.

  07 Jul 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r3.ebuild:
  some slight tweaks to have use checks not spawn a subshell -- will add proper
  acknowledgements when -r2 is adjusted -- but Wout Mertens came up with this.
  Also, patch_ver 2.1.5 has some amd64 fixes (and a rename from x86-64 to amd64
  for the patches in there already)

  27 Jun 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r3.ebuild:
  fixes for -fPIC on all platforms, thanks to Stefan Jones <cretin@gentoo.org>
  in bug #23581

  21 Jun 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r3.ebuild:
  patchball 2.1.4 has a patch to build successfulle on alpha platform -- build
  zlib with -fPIC

  16 Jun 2003; Martin Schlemmer <azarah@gentoo.org> xfree-4.3.0-r3.ebuild:
  Fix generation of euro fonts when no X is installed by setting
  LD_LIBRARY_PATH.

  14 Jun 2003; Seemant Kulleen <seemant@gentoo.org> files/4.3.0/chooser.sh:
  chooser.sh is now POSIX compliant. Thanks to: Bjorn Lindstrom
  <bkhl@privat.utfors.se> in bug #20308

  06 Jun 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r3.ebuild:
  gcc-2 fixes, closing bug #22239 by Tristan Henderson <T.Henderson@cs.ucl.ac.uk>

  06 Jun 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r3.ebuild:
  xml to xml2 USE flag change.  Closes that bug

  05 Jun 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r3.ebuild:
  the fastmake patch is not applied for debug in USE. Bumped patch_Ver to 2.1.3
  because 2.1.2 was buggy. Closes bug #22283 by Roger Hawley
  <karma911@pacbell.net>

  05 Jun 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r3.ebuild:
  Added via driver from cvs X -- tarballed it onto the mirrors. This should
  close bug #19512 by Henrik Treadup <hetr9922@student.su.se>. Also added a
  patch for dri corruption with i8x0 chipsets -- should close bug #8927 by
  Jan Knipper <jan-gentoo@spline.de>.  PATCH_VER is 2.1.2

  04 Jun 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r3.ebuild:
  oops patch-2.1.1 is new replacement. 2.1.0 was slightly wonky. Also,
  activating fast build option

  04 Jun 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r2.ebuild:
  added the savage driver to sparc's list of cards. Should close bug #21406
  by Michael Siebecker <michael.siebecker@lcsys.ch>

  04 Jun 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r3.ebuild:
  Ready for release into ~arch testing. This revision bump adds the radeon
  ap10 fix from daenzer, as well as a number of r128 fixes from redhat's
  srpm, which includes the chip names touchupk, the ecp divisor and an
  updated unresolved symbols patch.  The mga unresolved symbols patch was
  updated as well.  New patches for the nv driver include: new chip ids,
  filter-imagerect-pixel-range, dpms for broken monitors, a dualhead patch
  for riva cards, and unresolved symbols patch.  Additionally, the acecad
  debug patch was added back in.  Added a patch for the non-exec stack in 
  linux's elfloader.  Also, a null pointer dereference fix in libXfont is
  patched, as well as a patch to allow xscreensaver to work in xinerama.
  New drivers patched are siliconmotion and rendition and trident.
  Additionally a patch for the i8x0 440EX-LX video.  New drivers patched are
  siliconmotion and rendition and trident.  Additionally a patch for the
  i8x0 440EX-LX video.  Finally, the coup de grace is the ipv6 patches that
  latexer managed to pin down.  
  The patch structure is changed -- now patches not to
  be appled are no longer deleted, they are moved into an excluded
  subdirectory.  The last update is TaD's gentoo cursors with a thinner I
  bar.  Speaking of cursors -- For system wide defaults, put the
  default/index.theme file into /usr/local/share/cursors/xfree to avoid
  getting it overwritten at every new emerge.  Also, ~/.cursors is added to
  the search path for private cursor settings.

  02 Jun 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r2.ebuild:
  did similar things for mmx and sse use flag disables, at Tom's suggestion in
  the bug

  02 Jun 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r2.ebuild:
  3dnow support disabled if USE flag for it is disabled. Thanks to: Tom
  Molesworth <tetrarch@tom.molesworth.name> in bug #20273

  02 Jun 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r2.ebuild:
  Bumped to patch_ver 1.1.7 which contains a patch to fix the crappy displaying
  of underlined truetype fonts. The patch was given from the 4.3.99 series in
  cvs to me by: Juliusz Chroboczek <jch@xfree86.org> in xfree's bug #330. Closes
  our bug #19965 by DC <ddcc@email.com>

  02 Jun 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r2.ebuild:
  Added a patch to the patch tarball for Sun Type6 keyboards. Thanks to: Jeremy
  Huddleston <jeremyhu@cory.eecs.berkeley.edu> in bug #21120 for the patch.
  Note patch level is now 1.1.6

  02 Jun 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r2.ebuild,
  xfree-4.3.0-r3.ebuild:
  works with debug in USE now.  Closes bug #20511, by Cesar Eduardo Barros
  <cesarb@nitnet.com.br> 

  31 May 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r2.ebuild,
  xfree-4.3.0-r3.ebuild:
  The locale fixes should be in place now. The only change was to the
  XFree86-compose.dir.bz2 file on the mirrors. It was changed as suggested in:
  http://bugs.xfree86.org//cgi-bin/bugzilla/show_bug.cgi?id=224 by Ivan Pascal
  <pascal@tsu.ru>

  30 May 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r2.ebuild:
  Updated to patch 1.1.5 which contains a patch for libXi when using
  XinitThreads -- thanks to foser@gentoo.org in bug #21336

  30 May 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r3.ebuild:
  switch from using xml to xml2 USE flag. Closes bug #19710 by Phil Richards
  <gentoo@derived-software.ltd.uk>

*xfree-4.3.0-r1 (29 May 2003)

  14 Jul 2003; Guy Martin <gmsoft@gentoo.org> xfree-4.3.0-r1.ebuild :
  Forced the -fPIC CFLAGS needed by kde to link against some libs.   
  
  31 May 2003; Guy Martin <gmsoft@gentoo.org> xfree-4.3.0-r1.ebuild:
  Unmasked for hppa.

  29 May 2003; Grant Goodyear <g2boojum@gentoo.org> xfree-4.3.0-r1.ebuild:
  Added 4.3.0-r1 back in, since it's required for hppa (by request of GMsoft).

*xfree-4.3.0-r3 (28 May 2003)

  28 May 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r2.ebuild,
  xfree-4.3.0-r3.ebuild:
  added patch to fix some i810 issues, to try and solve bug #8927 by Jan Knipper
  <jan-gentoo@spline.de>

  20 May 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.2.1-r1.ebuild,
  xfree-4.2.1-r1.ebuild, xfree-4.3.0-r1.ebuild, xfree-4.3.0-r1.ebuild,
  xfree-4.3.0.ebuild, xfree-4.3.0.ebuild,
  files/4.2.1-r1/108_all_4.2.1-xterm-enable-backspace.patch,
  files/4.2.1-r1/109_ppc_4.2.1-xterm-eightBitInput-fix.patch,
  files/4.2.1-r1/10xfree,
  files/4.2.1-r1/110_all_4.2.1-xf86_h-missing-bracket-fix.patch,
  files/4.2.1-r1/XftConfig, files/4.2.1-r1/Xsession, files/4.2.1-r1/Xsetup_0,
  files/4.2.1-r1/chooser.sh, files/4.2.1-r1/site.def,
  files/4.2.1-r1/startDM.sh, files/4.2.1-r1/xdm.pamd,
  files/4.2.1-r1/xdm.start, files/4.2.1-r1/xfs.conf.d,
  files/4.2.1-r1/xfs.config, files/4.2.1-r1/xfs.start,
  files/4.2.1-r1/xft-quality.diff, files/4.2.1-r1/xinitrc,
  files/4.2.1-r1/xserver.pamd, files/4.2.1-r1/Sessions/Xsession,
  files/4.2.1-r1/lib/libGL.la, files/4.2.1-r1/lib/libGLU.la,
  files/4.2.1-r1/lib/libOSMesa.la,
  files/4.3.0-patches/XFree86-4.3.0-enable-nv-on-ppc.patch,
  files/4.3.0-patches/XFree86-4.3.0-sparc-kb.patch:
  removed crusty ebuilds

  05 May 2003; Daniel Robbins <drobbins@gentoo.org>: xfree-4.3.0*.ebuild: moved
  "inherit" line below DEPEND definition, since the "newdepend" lines in the
  eclass were causing RDEPEND to get fried. RDEPEND should now be set
  correctly.

*xfree-4.3.0-r2 (08 Apr 2003)

  23 Apr 2003; Michael Fitzpatrick <leahcim@gentoo.org> xfree-4.3.0-r2.ebuild:
  Updated patch tarball to v1.1.3. Adds a tdfx patch to prevent a dri hang bug
  #19812. Allow X to auto use vc13(+) bug #19844.

  20 Apr 2003; Seemant Kulleen <seemant@gentoo.org> Manifest,
  xfree-4.3.0-r2.ebuild:
  Added TaD's three gentoo themes, changed the default cursor to core. Also,
  i18n fonts are built when "nls" is set in USE. and CJK fonts when both
  "nls" and "cjk" are set in USE.

  19 Apr 2003; Seemant Kulleen <seemant@gentoo.org> Manifest,
  xfree-4.3.0-r2.ebuild:
  Updated the patch tarball - this time to 1.1.1 -- this contains two more DRI
  patches for radeon -- one is Mesa, the other is a reinit patch

  15 Apr 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r2.ebuild:
  changed default to core (black) pointer instead of whiteglass, at vlado's
  request.  The patch version is updated.  The previous patchset caused the
  compilation to fail on virgin systems (ie, those without X already
  installed).  Thanks to Bret Towe (Magnade in #gentoo-dev), the problem is
  fixed (the parallel make patch was a little wonky).  I want to express my
  thanks to lu_zero for helping out with the ATi stuff, the lads in #gentoo
  and the forums, and the chix0rs in #linuxchics for testing this
  extensively and pointing out my mistakes.  Please note that for this
  ebuild, Xinerama extensions on DRI enabled Radeon displays is disabled.  I
  will get to try and fixing this (one of the crucial patches for Radeon
  users disables this) for the more advanced users.  Everyone else -- enjoy!
  Also added newest SiS driver. Note that patch version is now 1.1.0

  15 Apr 2003; Seemant Kulleen <seemant@gentoo.org> Manifest,
  xfree-4.3.0-r2.ebuild:
  moved fc-cache step to be the last font related stuff in postinst -- thanks to
  danarmak@gentoo.org <Dan Armak, king of KDE> for the fix

  14 Apr 2003; Seemant Kulleen <seemant@gentoo.org> Manifest,
  xfree-4.3.0-r2.ebuild:
  upgrade to patch 1.0.8, which includes the fix for radeon/rage cards crashing
  with kdm logout. bug 94 on xfree's bugzilla has the oneliner patch from
  daenzer. The other option, apparently, is to make kdm actually restart x.
  Also, the ebuild now builds xfree with xft2 support -- thanks to
  foser@gentoo.org

  13 Apr 2003; Seemant Kulleen <seemant@gentoo.org> Manifest,
  xfree-4.3.0-r2.ebuild:
  updated the PATCH to 1.0.7 -- the gb-xtt-enc patch (#063) was including header
  files from <X11/....> which indicates a need for a current installation of X.
  Ashmodai in #gentoo and Rroet in #gentoo-sparc discovered that it wouldn't
  compile on a system without X. Thanks to Ashmodai for testing the fix

  13 Apr 2003; Seemant Kulleen <seemant@gentoo.org> Manifest,
  xfree-4.3.0-r2.ebuild:
  Added patch 1.0.6 -- the gb stuff is now separated again, and more radeon
  patches from daenzer

  13 Apr 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r2.ebuild :

  Removed the generating koi8 fonts section thanks to Azarah :).  Also,
  added patches for radeon: first one that mharris pointed me to (a patch by
  daenzer, which fixes an issue with xcursors and xinerama); and a few more
  by daenzer that I found in his directory: http://penguinppc.org/~daenzer.
  Hopefully, this takes care of the issue where X crashes after logging out
  with kdm (using a radeon with drm/glx)

  12 Apr 2003; Martin Schlemmer <azarah@gentoo.org> xfree-4.3.0-r2.ebuild,
  files/4.3.0/xfs.start :
  Add 'mkfontdirs' target for users that do not use xfs to be able to
  regenerate the font dirs.  Some small tweaks to the ebuild for corner
  cases.

  11 Apr 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r2.ebuild :

  The patch version is now 1.0.5.  Some redhat patches were added (the
  trivial and notable one is the die-die-die patch, which gets rid of the
  ugly initial checkerboard screen when X starts).  Also, the gb0830 patches
  were combined.  In previous tarball versions I had to add patches to undo
  duplicate effects.  The duplicate and undo patches are removed.
  Additionally, related patches have been combined.  Next stop -- xfree-drm

  08 Apr 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r2.ebuild,
  xfree-4.3.0.ebuild, xfree-4.3.0.ebuild:
  many fixes in this ebuild -- using the old keymaps from 4.2 to sort out the
  keymap situation. Added patches from Mandrake. Additionally, this uses
  Xwrapper so normal X binaries are not installed SUID. Added additional
  european fonts and asien fonts, and freetype encodings for X font server. The
  next -r version will have the ability to slim down the compile a little bit,
  and only install the drivers needed

  24 Mar 2003; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1-r2.ebuild,
                                                    xfree-4.3.0-r1.ebuild :
  Update SiS driver to version 210303-1, bug #18069.

  20 Mar 2003; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1-r2.ebuild :
  Unset MAKE_OPTS here as well, closing bug #17102

  10 Mar 2003; Martin Schlemmer <azarah@gentoo.org> xfree-4.3.0-r1.ebuild :
  Add back Drobbins's fix that was dropped by mistake.  Move DRI patch
  to X_PATCHES as this was what its intended for.  Remove fc-{cache,list}
  from /usr/X11R6/bin.

*xfree-4.3.0-r1 (09 Mar 2003)

  20 Mar 2003; Jason Wever <weeve@gentoo.org> xfree-4.3.0-r1.ebuild:
  Removed sparc kb patch as it breaks on xfree upgrades.

  20 Mar 2003; Jason Wever <weeve@gentoo.org> xfree-4.3.0-r1.ebuild,
  files/4.3.0-patches/XFree86-4.3.0-gentoo-sparc-kb.patch:
  Added XFree86-4.3.0-gentoo-sparc-kb.patch to fix the Ctrl+Alt+FKeys so that
  key sequence now works. Patch is applied after install.

  12 Mar 2003; Zach Welch <zwelch@gentoo.org> xfree-4.3.0-r1.ebuild:
  add arm keyword

  09 Mar 2003; Guy Martin <gmsoft@gentoo.org> xfree-4.3.0-r1.ebuild :
  Added ~hppa to keywords.

  09 Mar 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r1.ebuild:
  added a patch for sparc keyboards from the xfree86 mailing list:
  http://www.mail-archive.com/devel%40xfree86.org/msg01156.html

  09 Mar 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0-r1.ebuild:
  Luca Barbato <lu_zero@gentoo.org> added some fixes for radeon issues

  08 Mar 2003; Daniel Robbins <drobbins@gentoo.org> xfree-4.3.0.ebuild: unset
  MAKE_OPTS before "emake World," since MAKE_OPTS is an internal XFree86
  Makefile variable. If a user mistakenly defined MAKE_OPTS in /etc/make.conf
  (instead of MAKEOPTS,) then the build will silently die. Since this is hard
  to track down, I'm adding a preemptive fix to the ebuild.
  
  06 Mar 2003; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1-r2.ebuild :
  Fix savage driver unpacking in wrong dir, thanks to
  roma1390 <roma1390@uosis.mif.vu.lt>, bug #16794.

*xfree-4.3.0 (27 Feb 2003)

  15 Mar 2003; Mark Guertin <gerk@gentoo.org> xfree-4.3.0.ebuild:
  set ppc in keywords

  09 Mar 2003; Guy Martin <gmsoft@gentoo.org> xfree-4.3.0.ebuild :
  Patched for hppa (thanks to Stephane Wirtel for his help).
  Added hppa to keywords.

  27 Feb 2003; Mark Guertin <gerk@gentoo.org> xfree-4.3.0.ebuild files/4.3.0-patches/XFree86-4.3.0-enable-nv-on-ppc.patch :
  updated nv patch for 4.3.0

  27 Feb 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.3.0.ebuild	
  files/digest-xfree-4.3.0 files/4.3.0 :

  Version bump to newest release.

*xfree-4.2.99.902 (24 Feb 2003)

  24 Feb 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.2.99.902.ebuild
  files/digest-xfree-4.2.99.902 :

  Version bump to release candidate 3 for X-4.3

  23 Feb 2003; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1-r2.ebuild :

  Do not disable DRI for 3dfx cards if resolution higher than 1024x768,
  bug #15001.

  17 Feb 2003; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1-r2.ebuild :

  Add unzip to DEPEND, needed by new savage driver.  Closes bug #15831.

  16 Feb 2003; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1-r2.ebuild,
                                                    xfree-4.2.99.4.ebuild :

  Add a patch for HOME and END keys not working in xterm.  Should fix bugs
  #15254 and #15608.  Update savage driver in xfree-4.2.1-r2, fixing bug
  #14534.

  15 Feb 2003; Hannes Mehnert <hannes@gentoo.org> xfree-4.2.99.4.ebuild :

  bumped savage driver to 1.1.27t (prior versions do not work). also added
  dep on app-arch/unzip (because 1.1.27t is a .zip)

  09 Feb 2003; Luca Barbato <lu_zero@gentoo.org> :

  Added some warnings to avoid reports for already known issues.
  
  05 Feb 2003; Martin Schlemmer <azarah@gentoo.org> :

  Fix the /usr/lib/X11 symlink to point to the correct ../X11R6/lib/X11.
  Some ebuild had this still wrong.  This closes bug #15017.

  04 Feb 2003; Olivier Reisch <doctomoe@gentoo.org> xfree-4.2.99.4.ebuild :
  
  Temporarily set to -ppc as we had to mask the fontconfig dependency, which
  tends to break fonts on ppc unless you recompile everything depending on it.
  Still pondering what to do about it :)

  Later, same day, a bit wiser: set back to ~ppc, tell ppl to recompile qt
  and kdelibs.

*xfree-4.2.99.4 (02 Feb 2003)

  24 Feb 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.2.99.4.ebuild files/4.2.99.4-patches/4.2.99.4-enable-nv-on-ppc.patch :
  moved nv-on-ppc patch to proper location

  23 Feb 2003; Aron Griffis <agriffis@gentoo.org> xfree-4.2.99.4.ebuild :
  Fix minor error in the ebuild where "die" could be called from within
  a subshell.

  15 Feb 2003; Mark Guertin <gerk@gentoo.org> xfree-4.2.99.4.ebuild :
  added patch to enable nv driver on ppc, thanks DarkSpecter.

  02 Feb 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.2.99.4.ebuild
  files/digest-xfree-4.2.99.4 files/4.2.99.4/* files/4.2.99.4-patches/* :

  Updated to newest cvs frozen branch (4_2_99_4) Same patches are still applying
  Also, this will be permanently ~arch masked and removed from package mask.

*xfree-4.2.99.3-r2 (16 Jan 2003)

  16 Jan 2002; Seemant Kulleen <seemant@gentoo.org> xfree-4.2.99.3-r2.ebuild
  files/digest-xfree-4.2.99.3-r2 files/4.2.99.3-r2/* :

  new ebuild for updated snapshot.  this seems to be frozen code for the
  X_4_2_99_3 branch.

*xfree-4.2.99.3-r1 (23 Dec 2002)

  24 Dec 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1-r2.ebuild,
                                                    xfree-4.2.99.3-r1.ebuild :

  Do not let portage strip binaries and libraries, as then it stips the
  DRI modules, which breaks things.  Change 4.2.99.3-r1 to compile fontconfig,
  but then we just remove all fontconfig related stuff.  This should fix things
  for Seemant and others.

  23 Dec 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1-r2.ebuild,
                                                    xfree-4.2.99.3-r1.ebuild :

  Fix bug #12599 (type o in Xsession).
  Update trident patches to fix bug #10624 again.
  Fix check for $DEBUGBUILD to test for "yes" and not "true",
  fixing bug #12572.

  23 Dec 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.99.3-r1.ebuild :
  Some form fixes.  Added some patches back in, although I should verify some
  of the left out ones.  Fix to not build Xft2.0 and fontconfig .. we rather
  depend on fontconfig and PDEPEND on x11-libs/xft.  Get it to depend on
  fixed ttmkfdir.  Fix permissons on modules and drivers.  Some other things
  I forgot.

  16 Dec 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1-r2.ebuild :
  Fix /usr/lib/X11 symlink.

  13 Dec 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1-r2.ebuild :
  Update Xrender to that of fontconfig-2.1.  Update fontconfig dep to 2.1.
  Add glide-v3 to PDEPEND if '3dfx' in USE.

  09 Dec 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1-r2.ebuild :
  Also do not overwrite Xft headers if Xft2.0 are installed.

  06 Dec 2002; Rodney Rees <manson@gentoo.org> :
  Changed sparc ~sparc keywords.
 
*xfree-4.2.1-r2 (05 Dec 2002)

  06 Apr 2003; Christian Birchinger <joker@gentoo.org> xfree-4.2.1-r2.ebuild:
  Changed replace-flags for sparc

  09 Mar 2003; Seemant Kulleen <seemant@gentoo.org> xfree-4.2.1-r2.ebuild:
  URL fix for SIS driver, thanks to: Ingo <inku@kangaroo.at> in bug #17144

  30 Jan 2003; Jack Morgan <jmorgan@gentoo.org> xfree-4.2.1-r*.ebuild
  Added replace-flags "-mcpu=ultrasparc" "-mcpu=v8" as per bug #14126 
  Changed -sparc to sparc

  15 Jan 2002; Mark Guertin <gerk@gentoo.org> xfree-4.2.1-r2.ebuild :
  Removed patch 082 as it was the one breaking keycodes, set ppc in 
  keywords. See bug #13073

  11 Jan 2003; Jack Morgan <jmorgan@gentoo.org> xfree-4.2.1-r2.ebuild :
  Changed sparc back to -sparc as it breakes keymaps

  09 Jan 2003; Jack Morgan <jmorgan@gentoo.org> xfree-4.2.1-r2.ebuild :
  Changed ~sparc to sparc

  28 Dec 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1-r2.ebuild :
  XFree86 do not like CFLAGS="-Os", filter for this, bug #12775.

  26 Dec 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1-r2.ebuild :
  Mark stable for x86.

  26 Dec 2002; Martin Schlemmer <azarah@gentoo.org> 10xfree :
  Add CONFIG_PROTECT=/usr/X11R6/lib/X11/xkb in the hopes to fix bug #6862.

  25 Dec 2002; Martin Schlemmer <azarah@gentoo.org> xfs.start, xfs.config,
                                                    Xsession :

  Changes to xfs.start of xfree-4.2.1-r2:
  - Update to that of xfree-4.2.99.3-r1 where we only run fc-cache if
    something changed.
  Changes to xfs.start of xfree-4.2.1-r2 and xfree-4.2.99.3-r1:
  - Replace some code for xfs.start with awk versions to increase speed.
  - Fix a bug where it did not drop duplicate font directories.
  - Also consider changes to fonts.scale and encodings.dir as reason to
    re-index that font directory.
  Changes to xfs.config of xfree-4.2.1-r2 and xfree-4.2.99.3-r1:
  - Remove a duplicate font directory entry.
  Changes to Xsession of xfree-4.2.1-r2 and xfree-4.2.99.3-r1:
  - Change the shell to '/bin/bash --login' to at least for xdm fix
    the environment problem.

  05 Dec 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1-r2.ebuild :
  Basically cleanup 4.2.1-r1.
  - Resolve bug #10624 (Updated trident patch).
  - Resolve bug #10407 (XFree86 ebuild should include i830 1mb stolen mem patch).
  - Resolve bug #10227 (Xfree requires new SiS driver for Asus P4S533-VM
    Motherboard).
  - Add xfree-4.2.x.-bison.fixes.patch for future bison-1.50 support, resolving
    bug #11595.

  28 Nov 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1-r1.ebuild :
  Do not apply 35_all_4.2.0-tdfx-fix-compiler-warnings.patch.bz2, bug #10507.

  20 Nov 2002; Martin Schlemmer <azarah@gentoo.org> files/4.2.1-r1/site.def :
  Tweak to compile libs (for x86) and glx with -fPIC.

*xfree-4.2.99.3 (13 Nov 2002)

  21 Dec 2002; Seemant Kulleen <seemant@gentoo.org> :
  updated snapshot again -- sis fixes.  andee and lanalyst in #gentoo were
  invaluable for this ebuild, which is a lot better than before.  Many many
  many many many thanks to them :)

  11 Dec 2002; Seemant Kulleen <seemant@gentoo.org> :
  updated snapshot again -- ibm chipset updates, evidently.

  -7 Dec 2002; Seemant Kulleen <seemant@gentoo.org> :
  Updated snapshot and newer ft2

  15 Nov 2002; Seemant Kulleen <seemant@gentoo.org>
  files/4.2.99.3-patches/XFree86-4.2.99.3-no-optimize.patch.bz2 :
  Patches one file to not optimise on a gcc-3 system.  Submitted by MrGr1m
  in #gentoo

  13 Nov 2002; Seemant Kulleen <seemant@gentoo.org> xfree-4.2.99.3.ebuild
  files/digest-xfree-4.2.9.3 :
  New X snapshot from 20021113.  Not using the FT2 stuff externally, coz it
  crashes.

  7 Nov 2002; Martin Schlemmer <azarah@gentoo.org> startDM.sh :
  Source /etc/profile before starting the DM to fix bug #10190.

  5 Nov 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1-r1.ebuild :
  Fix backspace in xterm not working.  This closes bug #10186.
  Added patch 108_all_4.2.1-xterm-enable-backspace.patch.
  
  Fix xterm exiting immediately on PPC.  Closes bug #10245.
  Also see http://www.geocrawler.com/archives/3/3/2001/9/100/6633199/
  Added patch 109_ppc_4.2.1-xterm-eightBitInput-fix.patch.

  Fix unterminated bracket in xf86.h, closing bug #10271, thanks Gerk!
  Added patch 110_all_4.2.1-xf86_h-missing-bracket-fix.patch.

  4 Nov 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1-r1.ebuild :

  Do not apply 107_all_4.2.1-gcc32-internal-compiler-error.patch for
  gcc-2.95.3, as it cause compile to fail, closing bug #10146.

*xfree-4.2.1-r1 (3 Nov 2002)

  22 Jan 2003; Jason Wever <weeve@gentoo.org> xfree-4.2.1-r1.ebuild
  Changed ~sparc keyword to -sparc as it introduces keymapping problems
  not present in xfree-4.2.1-r0.

  3 Nov 2002; Martin Schlemmer <azarah@gentoo.org> :

  New version to address major problems we are having with 4.2.1.
  Ripped out Xft-1.2 (with fontconfig support), as it causes crashes
  with gcc3 at least.  Sync patches with Redhat/Mandrake again.  I
  will try to get behind the problem, but even with an unpatched
  Radeon driver, I cannot get DRI to work for the Radeon :(

  28 Oct 2002; J Robert Ray <jrray@jrray.org> xfree-4.2.1.ebuild :

  Allow unpriviliged user install, non-root fails to overwrite file
  with 0444 perms.

  28 Oct 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1.ebuild,
                                                    xfs.start :
  
  Fix ebuild and xfs.start to only generate fonts.scale files if
  truetype fonts are present (bug #9714).  Optimize xfs.start a bit
  for speed.  Make xfree depend on ttmkfdir-2.0 rather.  Remove
  Tahoma font, as a Windows license is needed (bug #9486).

  Fix typeo in pkg_postinst().

  26 Oct 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1.ebuild :

  Do not install zlib includes, as it conflicts with those of the real
  zlib package (bug #9470).

  25 Oct 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1.ebuild :

  Update Savage and SIS drivers.  Fix my braindead bork with the savage
  driver getting the binary and not the source.

  21 Oct 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1.ebuild :

  Update bit that applies Xft quality hack, and also fix patch to apply
  against 4.2.1.  This closes bug #9383.

  20 Oct 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1.ebuild :

  Remove /usr/X11R6/lib/X11/fonts/encodings from /etc/X11/fs/config.
  Get the font stuff in pkg_postinst() sane.  This should fix bug #9357.
  Should also fix bug #9354 if you specify -e option to ttmkfdir.

  Update /etc/init.d/xfs to scan and index font dirs.

  13 Oct 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1.ebuild :

  Add ttmkfdir2 to build.  This should close bug #6402.
  
  Add X-TrueType patches from Redhat.

  12 Oct 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1.ebuild :

  Create /tmp/.{ICE,X11}-unix and fix permissions.  Also remove stupid
  delay if not correct permissions.  This should close bug #8281.

  11 Oct 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1.ebuild :

  Update Xrender and Xft (to 1.1).  Also now uses fontconfig.

  30 Sep 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1.ebuild :

  Move all the patches to ibiblio.

  19 Sep 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1.ebuild :

  Reimplement patch scheme.  Add patch for Sparc PCI domains, should
  close bug #7790 (for sparc at least).

  14 Sep 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1.ebuild :

  Do not install libz.a, as it have missing functions .. thanks Dan !
  (bug #4777).

  10 Sep 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1.ebuild :

  Gcc3 related fixes.

*xfree-4.2.1 (8 Sep 2002):

  8 Sep 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.1.ebuild :

  New version.  Lots of cleanups.  Freetype-2.1.2 added.
  
  Fix security issue with xterms; bug #2618 and #7630.

  Fix compile issues for the tdfx driver.  This should fix bug #3735, thanks
  to ideas from Ron Simpkin <ron@doobedoobedo.f2s.com>

  Use buildin zlib to fix segfaults, thanks to Brad Laue <brad@brad-x.com>.
  This closes bug #4777.

  Integrate MS corefonts the right way (tm), thanks to great work from
  Santiago Tabares <santi___@softhome.net>.  This should close bug #6980,
  and maybe also bug #6968 and #5722.

  Do not update the Wacom driver if kernel version 2.2 is in use.  This
  should fix bug #4152.

  Update the Savaga driver to try and fix bug #3531.

  25 Aug 2002; Dan Armak <danarmak@gentoo.org> files/4.2.0-r12/Xsetup_0  :

  Update the kdmrc location logic: look in /usr/kde/*, i.e. in all the
  directories that actually exist under /usr/kde, instead of hardcoding a
  list of possible locations.

  12 Aug 2002; Martin Schlemmer <azarah@gentoo.org> :
  Add XFree86-imake-tmpdir.patch, which should resolve bug #5736.

  11 Aug 2002; Martin Schlemmer <azarah@gentoo.org> :
  Add XFree86-4.2.0-r128-lockup.patch, which should resolve bug #4518.

  10 Aug 2002; Mark Guertin <gerk@gentoo.org> :
  Added ARCH check to -mmx/-no-mmx gcc 3.2 fix, not used
  on ppc (breaks build)

  8 aug 2002; Bart Verwilst <verwilst@gentoo.org> :

  Fixed gcc 3.x based compilation error (with -mmmx)

  29 Jul 2002; Martin Schlemmer <azarah@gentoo.org> :

  Fixes for gcc-3.x and also fixes that should resolve bug #5613.

  Update /etc/X11/xinit/xinitrc ($FILESDIR/4.2.0-r12/xinitrc) to point
  to the proper place for system wide resources.  Bug #5684.

  17 Jul 2002; Martin Schlemmer <azarah@gentoo.org> :

  Make sure the standard symlinks (/usr/include/X11, etc) will not be removed.

  15 Jul 2002; Owen Stampflee <owen@gentoo.org> :

  Added PPC to KEYWORDS.

  7 Jul 2002; Martin Schlemmer <azarah@gentoo.org> xdm.start :

  Resolve bug #4627.

  6 Jul 2002; Martin Schlemmer <azarah@gentoo.org> :

  Update the gcc-3.1 fix to also work for gcc-3.1.1.

  26 Jun 2002; Martin Schlemmer <azarah@gentoo.org> :

  Add "-fno-merge-constants" to OptimizedCDebugFlags if the gcc in use is
  not version 2.95.3.  This should resolve bug #4189.

  25 Jun 2002; Martin Schlemmer <azarah@gentoo.org> :

  Add XFree86-4.2.0-i810_i845_20020524.patch and XFree86-4.2.0-Suse-Updates.patch,
  adding Intel 845, and Neomagic XV support among things.  Also a lot of fixes
  from Suse.  The Suse patch is a bit big, but I rather do not want to
  change the ebuild since if the patches are missing, things should still
  work fine.  This should among things resolve bug #3823.

*xfree-4.2.0-r12 (8 Jun 2002)

  8 Jun 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.0-r12.ebuild :

  Basically r11, but just new version to make sure we dont have some
  of the weird issues in past because of a masked revision being changed
  and then unmasked.

*xfree-4.2.0-r11 (28 May 2002)

  7 Jun 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.0-r11.ebuild :

  Add Nvidia GeForce2Go support; bug #2732.  Fix gcc-3.1 compile problem
  thanks to Verwilst.

  6 Jun 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.0-r11.ebuild :

  Update grep expression to determine if the "xfs" user exist in
  /etc/init.d/xfs; bug #3314.

  2 Jun 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.0-r11.ebuild :

  Some more symlink cleanups.  Dont nuke the host.def, just filter our
  hardcoded CFLAGS.

  Fix /etc/X11/xdm/Xsession to first run ~/.xsession, rather then the system
  default (bug #2731).

  30 May 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.0-r11.ebuild,
                                                    xfs.start, xfs.conf.d,
						    xfs.config :

  Fix the xfs port issue in a sane manner ... btw, what happned to the
  idea that changes should be added to the Changelog ?

  29 May 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.0-r11.ebuild :

  Too much coffee, and too little sleep :P  Moved libGLU.* to /usr/lib where
  it should be.

  28 May 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.0-r11.ebuild :

  New ebuild that adds lots of fixes and patches.  Should fix the Wacom
  issues (bug #1632).  Added patch for i810 DRI (bug #1870).  Add libGLU.so.
  Update Xsession to load resources (bug #2731).  Update freetype2 used;
  didnt make it use the system freetype2, as this could make things
  unstable (bug #3082).  Fix problems with PPC and mouse scrolling, thanks
  to Mark Guertin.

*xfree-4.2.0-r10 (10 Apr 2002)

  20 May 2002; Arcady Genkin <agenkin@thpoon.com>
	files/4.2.0-r10/xfs.config files/4.2.0-r10/xfs.start :

  Moved the XFS TCP port specification from the startup file into the
  config file.

  12 May 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.0-r10.ebuild :

  Move opengl-update to its own ebuild for flexibility.  Add some 3dfx fixes.

  16 Apr 2002; Matthew Kennedy <mkennedy@gentoo.org>
  xfree-4.2.0-r9.ebuild, ChangeLog :

  Resolves bug 1833 for LFH2.2 (section 4.4) compliant
  symlinks. Thanks goes to pst@ican.at

  15 Apr 2002; Seemant Kulleen <seeamnt@gentoo.org> xfree-4.2.0-r9.ebuild :

  Changed the glide USE flag to 3dfx USE flag instead.

  7 Apr 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.0-r9.ebuild :

  Fix a stray symlink in /.  Also moved libGL.a to /usr/lib/opengl/xfree/lib, as
  it caused compile problems for tuxracer, etc.  Fixed opengl-update to generate
  the /usr/lib/libGLcore.so symlinks for nvidia implementation.

*xfree-4.2.0-r9 (7 Apr 2002)

  20 May 2002; Arcady Genkin <agenkin@thpoon.com>
	files/4.2.0-r9/xfs.config files/4.2.0-r9/xfs.start :

  Moved the XFS TCP port specification from the startup file into the
  config file.

  7 Apr 2002; Martin Schlemmer <azarah@gentoo.org> xfree-4.2.0-r9.ebuild,
                                                   files/4.2.0-r9/opengl-update :

  Update for dynamic libGL switching with nvidia drivers.

  4 Apr 2002; Seemant Kulleen <seemant@gentoo.org> files/4.2.0-r8/xdm :

  Update to RedHat's xdm configuration for PAM.

  4 Apr 2002; Seemant Kulleen <seemant@gentoo.org> files/4.2.0-r8/xdm :

  Update to use safer PAM modules.  Update courtesy of Sorcerer.

  24 Mar 2002; Dan Armak <danarmak@gentoo.org> :
  
  New Xsetup_0 that runs kdmdesktop when appropriate. This means kdm can now
  set the background properly.

  21 Mar 2002; Martin Schlemmer <azarah@gentoo.org> :

  Add gcc-3.x compile patch.  Also resolve the mkfontdir issue in
  pkg_postinst(), closing bug #996.

*xfree-4.2.0-r8 (15 Mar 2002)

  15 Mar 2002; Martin Schlemmer <azarah@gentoo.org> : New release to fix zlib
  security issue.

  06 Mar 2002; Martin Schlemmer <azarah@gentoo.org> : Updated /etc/init.d/xdm
  and /etc/X11/startDM.sh to fix startDM.sh being a respawning process when
  no DM is running.

*xfree-4.2.0-r7 (05 Mar 2002)

  05 Mar 2002; Daniel Robbins <drobbins@gentoo.org> : New release of xfree.
  Incorporated Xft quality fixes from http://www.cs.mcgill.ca/~dchest/xfthack/;
  added Azarah's startDM.sh script.
  
  28 Feb 2002; M.Schlemmer <azarah@gentoo.org> ${FILESDIR}/chooser.sh :

  Actually source /etc/conf.d/basic and /etc/rc.conf.

*xfree-4.2.0-r6 (24 Feb 2002)

  24 Feb 2002; M.Schlemmer <azarah@gentoo.org> xfree-4.2.0-r6.ebuild, and co :

  Lots of updates, started before the ChangeLog, so not sure of them all, but
  the major ones is here:  Added Voodoo3/4/5 support, and fixed the locale
  bug #794.

*xfree-4.2.0-r5 (1 Feb 2002)

  1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
  
  Added initial ChangeLog which should be updated whenever the package is
  updated in any way. This changelog is targetted to users. This means that the
  comments should well explained and written in clean English. The details about
  writing correct changelogs are explained in the skel.ChangeLog file which you
  can find in the root directory of the portage repository.