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

  19 Sep 2010; Raúl Porcel <armin76@gentoo.org> mesa-7.8.2.ebuild:
  ia64/sh/sparc stable wrt #327777

  17 Sep 2010; Donnie Berkholz <dberkholz@gentoo.org>; mesa-7.7.1.ebuild,
  mesa-7.8.2.ebuild:
  Remove VIDEO_CARDS=none setting. It just causes needless confusion
  nowadays. If you don't want to build any Mesa hardware 3D drivers, set
  VIDEO_CARDS="" in make.conf. If your 3D driver is proprietary/binary, set
  VIDEO_CARDS to it (e.g., nvidia, fglrx) to avoid building Mesa hardware 3D
  drivers.

  12 Sep 2010; Tobias Klausmann <klausman@gentoo.org> mesa-7.8.2.ebuild:
  Stable on alpha, bug #327777

  09 Sep 2010; Tomáš Chvátal <scarabeus@gentoo.org> mesa-7.7.1.ebuild,
  mesa-7.8.2.ebuild:
  Update deps on libX11[xcb].

  27 Aug 2010; Robin H. Johnson <robbat2@gentoo.org> mesa-7.7.1.ebuild,
  mesa-7.8.2.ebuild:
  Bug #333143: Add "kilgard" license for media-libs/mesa Debian DFSG debate.

  03 Aug 2010; Tomáš Chvátal <scarabeus@gentoo.org>
  -files/0001-st-xorg-Adopt-to-new-dirty-clip-rect-type.patch,
  -mesa-7.5.2.ebuild, mesa-7.7.1.ebuild, mesa-7.8.2.ebuild,
  -files/lib/libGL.la, -files/lib/libGLU.la:
  Drop old. Remove remains of .la files.

  02 Aug 2010; Raúl Porcel <armin76@gentoo.org> mesa-7.7.1.ebuild:
  alpha/ia64/sh/sparc stable wrt #308521

  22 Jul 2010; Markus Meier <maekke@gentoo.org> mesa-7.8.2.ebuild:
  arm stable, bug #327777

  19 Jul 2010; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  mesa-7.8.2.ebuild:
  Ease libdrm dependency for nouveau

  14 Jul 2010; Jeroen Roovers <jer@gentoo.org> mesa-7.8.2.ebuild:
  Stable for HPPA (bug #327777).

  13 Jul 2010; Christian Faulhammer <fauli@gentoo.org> mesa-7.8.2.ebuild:
  x86 stable, bug 327777

  12 Jul 2010; Markos Chandras <hwoarang@gentoo.org> mesa-7.8.2.ebuild:
  Stable on amd64 wrt bug #327777

  18 Jun 2010; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  mesa-7.8.2.ebuild:
  depend on older libdrm for nouveau, bug #324539

*mesa-7.8.2 (17 Jun 2010)

  17 Jun 2010; Tomáš Chvátal <scarabeus@gentoo.org> -mesa-7.8.1.ebuild,
  +mesa-7.8.2.ebuild:
  Version bump.

  31 May 2010; Guy Martin <gmsoft@gentoo.org> mesa-7.7.1.ebuild:
  hppa stable, #308521

  17 May 2010; Tomáš Chvátal <scarabeus@gentoo.org> mesa-7.8.1.ebuild:
  Add cross-compile fixes. Thx solar.

  12 May 2010; Brent Baude <ranger@gentoo.org> mesa-7.7.1.ebuild:
  Marking mesa-7.7.1 ppc64 stable for bug 308521

  18 Apr 2010; Markus Meier <maekke@gentoo.org> mesa-7.7.1.ebuild:
  arm stable, bug #308521

  18 Apr 2010; <nixnut@gentoo.org> mesa-7.7.1.ebuild:
  ppc stable #308521

  16 Apr 2010; Pacho Ramos <pacho@gentoo.org> mesa-7.7.1.ebuild:
  amd64 stable, bug 308521

  09 Apr 2010; Christian Faulhammer <fauli@gentoo.org> mesa-7.7.1.ebuild:
  stable x86, bug 308521

*mesa-7.8.1 (06 Apr 2010)

  06 Apr 2010; Tomáš Chvátal <scarabeus@gentoo.org> -mesa-7.8.ebuild,
  +mesa-7.8.1.ebuild:
  Version bump. Drop broken version.

  03 Apr 2010; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  mesa-7.8.ebuild:
  Bump libdrm dependency, bug #312933

*mesa-7.8 (29 Mar 2010)
*mesa-7.7.1 (29 Mar 2010)

  29 Mar 2010; Tomáš Chvátal <scarabeus@gentoo.org> -mesa-7.6.1.ebuild,
  -mesa-7.7-r1.ebuild, -mesa-7.7.1_rc2.ebuild, +mesa-7.7.1.ebuild,
  -mesa-7.8_rc2.ebuild, +mesa-7.8.ebuild:
  Version bump to latest releases. Drop old.

*mesa-7.8_rc2 (23 Mar 2010)
*mesa-7.7.1_rc2 (23 Mar 2010)

  23 Mar 2010; Tomáš Chvátal <scarabeus@gentoo.org>
  -mesa-7.7.1_rc1.ebuild, +mesa-7.7.1_rc2.ebuild, -mesa-7.8_rc1.ebuild,
  +mesa-7.8_rc2.ebuild:
  Version bump to new rc's remove old ones.

*mesa-7.8_rc1 (16 Mar 2010)
*mesa-7.7.1_rc1 (16 Mar 2010)

  16 Mar 2010; Tomáš Chvátal <scarabeus@gentoo.org>
  +mesa-7.7.1_rc1.ebuild, +mesa-7.8_rc1.ebuild:
  Version bump to latest RC's.

  23 Jan 2010; Tomáš Chvátal <scarabeus@gentoo.org> -mesa-7.5.1.ebuild:
  rm

  18 Jan 2010; Raúl Porcel <armin76@gentoo.org> mesa-7.5.2.ebuild:
  alpha/ia64/sh/sparc stable wrt #294958

  14 Jan 2010; Markus Meier <maekke@gentoo.org> mesa-7.5.2.ebuild:
  arm stable, bug #294958

  14 Jan 2010; Jeroen Roovers <jer@gentoo.org> mesa-7.5.2.ebuild:
  Stable for HPPA (bug #294958).

  28 Dec 2009; Samuli Suominen <ssuominen@gentoo.org> mesa-7.7-r1.ebuild:
  Fix typing error wrt #298805.

*mesa-7.7-r1 (28 Dec 2009)

  28 Dec 2009; Tomáš Chvátal <scarabeus@gentoo.org> -mesa-7.7.ebuild,
  +mesa-7.7-r1.ebuild:
  Revision bump to make sure everyone has disabled gallium intel.

  27 Dec 2009; Joseph Jezak <josejx@gentoo.org> mesa-7.5.2.ebuild:
  Marked ppc stable for bug #294958.

  26 Dec 2009; Tomáš Chvátal <scarabeus@gentoo.org> mesa-7.7.ebuild:
  Do not depend on xorg-server.

  24 Dec 2009; Tomáš Chvátal <scarabeus@gentoo.org> mesa-7.7.ebuild:
  Rdepend on xorg-server[-minimal]. Thx to Tommy for reporting.

  22 Dec 2009; Tomáš Chvátal <scarabeus@gentoo.org> mesa-7.7.ebuild:
  Sync with in-overlay updates prepared for 7.7 final release.

  22 Dec 2009; Nirbheek Chauhan <nirbheek@gentoo.org>
  -mesa-7.6.1_rc4.ebuild, -mesa-7.7_rc3.ebuild:
  Remove old rcs (forgot to cvs rm them with previous commit)

*mesa-7.7 (22 Dec 2009)
*mesa-7.6.1 (22 Dec 2009)

  22 Dec 2009; Nirbheek Chauhan <nirbheek@gentoo.org>
  +files/0001-st-xorg-Adopt-to-new-dirty-clip-rect-type.patch,
  +mesa-7.6.1.ebuild, +mesa-7.7.ebuild:
  Bump to 7.6.1 (with a patch to fix bug 297891) and 7.7 (fixes bug 297807)

  16 Dec 2009; Tomáš Chvátal <scarabeus@gentoo.org> mesa-7.7_rc3.ebuild:
  Fix S location.

*mesa-7.7_rc3 (16 Dec 2009)
*mesa-7.6.1_rc4 (16 Dec 2009)

  16 Dec 2009; Tomáš Chvátal <scarabeus@gentoo.org> -mesa-7.3-r1.ebuild,
  -mesa-7.6.1_rc3.ebuild, +mesa-7.6.1_rc4.ebuild, -mesa-7.7_rc2.ebuild,
  +mesa-7.7_rc3.ebuild:
  Version bump. Drop old.

  15 Dec 2009; Brent Baude <ranger@gentoo.org> mesa-7.5.2.ebuild:
  Marking mesa-7.5.2 ppc64 stable for bug 294958

  15 Dec 2009; Raúl Porcel <armin76@gentoo.org> mesa-7.5.1.ebuild:
  alpha/ia64/sh/sparc stable wrt #282290

  14 Dec 2009; Tomáš Chvátal <scarabeus@gentoo.org> mesa-7.7_rc2.ebuild:
  Drop unused video cards

  13 Dec 2009; Tomáš Chvátal <scarabeus@gentoo.org> -mesa-7.1.ebuild,
  -mesa-7.2.ebuild, -mesa-7.4.4.ebuild:
  rm

*mesa-7.7_rc2 (13 Dec 2009)
*mesa-7.6.1_rc3 (13 Dec 2009)

  13 Dec 2009; Tomáš Chvátal <scarabeus@gentoo.org>
  +mesa-7.6.1_rc3.ebuild, +mesa-7.7_rc2.ebuild, metadata.xml:
  Bump to latest rcs.

  10 Dec 2009; Christian Faulhammer <fauli@gentoo.org> mesa-7.5.2.ebuild:
  x86 stable, bug 294958

  10 Dec 2009; Samuli Suominen <ssuominen@gentoo.org> mesa-7.5.2.ebuild:
  amd64 stable wrt #294958

  22 Nov 2009; Tomáš Chvátal <scarabeus@gentoo.org>
  -files/6.5.2-i965-wine-fix.patch:
  Drop stale patches.

  26 Oct 2009; Jeroen Roovers <jer@gentoo.org> mesa-7.5.1.ebuild:
  Stable for HPPA (bug #282290).

  11 Oct 2009; nixnut <nixnut@gentoo.org> mesa-7.5.1.ebuild:
  ppc stable #282290

  09 Oct 2009; Markus Meier <maekke@gentoo.org> mesa-7.5.1.ebuild:
  arm stable, bug #282290

  05 Oct 2009; Christian Faulhammer <fauli@gentoo.org> mesa-7.5.1.ebuild:
  x86 stable, bug 282290

  30 Sep 2009; Samuli Suominen <ssuominen@gentoo.org> mesa-7.5.1.ebuild:
  amd64 stable wrt #282290

*mesa-7.5.2 (29 Sep 2009)

  29 Sep 2009; Tomáš Chvátal <scarabeus@gentoo.org> -mesa-7.5-r2.ebuild,
  -mesa-7.5-r3.ebuild, +mesa-7.5.2.ebuild:
  Version bump. Remove old.

  21 Sep 2009; Tomáš Chvátal <scarabeus@gentoo.org> mesa-7.1.ebuild,
  mesa-7.2.ebuild, mesa-7.3-r1.ebuild, mesa-7.4.4.ebuild,
  mesa-7.5-r2.ebuild, mesa-7.5-r3.ebuild, mesa-7.5.1.ebuild:
  Remove doc dependency on opengl-manpages. Since they are going to die.

  19 Sep 2009; Tomáš Chvátal <scarabeus@gentoo.org>
  -mesa-6.5.2-r1.ebuild, -mesa-7.0.3.ebuild:
  Cleanup. Removal of old xorg versions.

*mesa-7.5.1 (04 Sep 2009)

  04 Sep 2009; Rémi Cardona <remi@gentoo.org> +mesa-7.5.1.ebuild:
  bump to 7.5.1

  26 Aug 2009; Tomáš Chvátal <scarabeus@gentoo.org> mesa-7.3-r1.ebuild:
  Stabilise 7.3-r1 on alpha which should be the target (not the 7.4.2). They
  are mostly 1:1.

*mesa-7.5-r3 (26 Aug 2009)

  26 Aug 2009; Tomáš Chvátal <scarabeus@gentoo.org>
  -files/7.4-fix-parallel-make.patch, -mesa-7.4.2.ebuild,
  -mesa-7.5-r1.ebuild, +mesa-7.5-r3.ebuild:
  Revbump with all patches from upstream availible up to now. Remove old.

  22 Jul 2009; Rémi Cardona <remi@gentoo.org> mesa-7.5-r2.ebuild:
  use mirror://gentoo/ instead of gentooexperimental.org

  22 Jul 2009; Tomáš Chvátal <scarabeus@gentoo.org> mesa-7.5-r2.ebuild:
  Disable the gallium, it somewhere in the process changed to
  enabled-by-default

*mesa-7.5-r2 (22 Jul 2009)

  22 Jul 2009; Tomáš Chvátal <scarabeus@gentoo.org> +mesa-7.5-r2.ebuild:
  Revision bump for applied patches from upstream. Per bug #278630.

  22 Jul 2009; Tomáš Chvátal <scarabeus@gentoo.org> files/lib/libGL.la,
  files/lib/libGLU.la:
  Update the .la files per bug #267580. Hopefully it will fix at least some
  issues.

  22 Jul 2009; Tomáš Chvátal <scarabeus@gentoo.org> -mesa-7.5.ebuild,
  mesa-7.5-r1.ebuild:
  Remove sparc asm checks. As per bug #237648. Reason in comment 13.

  21 Jul 2009; Rémi Cardona <remi@gentoo.org> mesa-7.5-r1.ebuild:
  it's not an ebuild's job to add -g to CFLAGS (backport from the x11
  overlay)

*mesa-7.5-r1 (21 Jul 2009)

  21 Jul 2009; Tomáš Chvátal <scarabeus@gentoo.org> +mesa-7.5-r1.ebuild:
  Whoops the .la files are supposed to be installed by 7.5. Revbump to force
  others to update.

  21 Jul 2009; Rémi Cardona <remi@gentoo.org> mesa-7.5.ebuild:
  it's not an ebuild's job to add -g to CFLAGS (backport from the x11
  overlay)

*mesa-7.5 (21 Jul 2009)

  21 Jul 2009; Tomáš Chvátal <scarabeus@gentoo.org> +mesa-7.5.ebuild:
  Version bump for new development version of mesa.

  25 Jun 2009; Tomáš Chvátal <scarabeus@gentoo.org> -mesa-7.4.3.ebuild:
  Remove broken version.

*mesa-7.4.4 (24 Jun 2009)

  24 Jun 2009; Rémi Cardona <remi@gentoo.org> +mesa-7.4.4.ebuild:
  bump to 7.4.4, hopefully fixing severe Intel bugs (see bugs #274981 and
  #275109)

  23 Jun 2009; Tobias Klausmann <klausman@gentoo.org> mesa-7.4.2.ebuild:
  Stable on alpha for xorg-server-1.5/xorg-x11-7.4

*mesa-7.4.3 (21 Jun 2009)

  21 Jun 2009; Tomáš Chvátal <scarabeus@gentoo.org>
  -mesa-7.4.1-r2.ebuild, +mesa-7.4.3.ebuild:
  Version bump. Remove old.

  16 May 2009; Rémi Cardona <remi@gentoo.org> -mesa-7.3.ebuild,
  -mesa-7.4.ebuild, -mesa-7.4.1-r1.ebuild:
  drop old ebuilds

*mesa-7.4.2 (16 May 2009)

  16 May 2009; Rémi Cardona <remi@gentoo.org> +mesa-7.4.2.ebuild:
  bump to 7.4.2

  15 May 2009; Raúl Porcel <armin76@gentoo.org> mesa-7.3-r1.ebuild:
  arm stable

  09 May 2009; Rémi Cardona <remi@gentoo.org> mesa-7.4.ebuild,
  mesa-7.4.1-r1.ebuild, mesa-7.4.1-r2.ebuild:
  drop printproto from DEPEND (I could not find a single reference to it
  within the code), HPPA now has xf86driproto

*mesa-7.4.1-r2 (07 May 2009)

  07 May 2009; Rémi Cardona <remi@gentoo.org> +mesa-7.4.1-r2.ebuild:
  revbump to 7.4.1-r2, pull the latest patches from upstream's 7.4 branch
  (including one that should fix R300 bug #268596)

  02 May 2009; Tomas Chvatal <scarabeus@gentoo.org> mesa-7.4.1-r1.ebuild:
  Remove glew headers during install. They are needed during build time and
  glew cant be installed before mesa.

  01 May 2009; Tomas Chvatal <scarabeus@gentoo.org> mesa-7.4.1-r1.ebuild:
  Move glew RDEPEND to PDEPEND for avoiding circular deps.

*mesa-7.4.1-r1 (29 Apr 2009)

  29 Apr 2009; Tomas Chvatal <scarabeus@gentoo.org> -mesa-7.4.1.ebuild,
  +mesa-7.4.1-r1.ebuild:
  Add some upstream patches that fixes various segfaluts. Revbump in the
  process :]

*mesa-7.4.1 (29 Apr 2009)

  29 Apr 2009; Tomas Chvatal <scarabeus@gentoo.org> -mesa-7.1_rc3.ebuild,
  -mesa-7.2_rc1.ebuild, -mesa-7.4_rc1.ebuild, +mesa-7.4.1.ebuild:
  Version bump. Remove _rc releases.

  16 Apr 2009; Jeroen Roovers <jer@gentoo.org> mesa-7.3-r1.ebuild:
  Stable for HPPA (bug #251832).

  15 Apr 2009; Raúl Porcel <armin76@gentoo.org> mesa-7.3-r1.ebuild:
  ia64/sh stable wrt #251832

  06 Apr 2009; Friedrich Oslage <bluebird@gentoo.org> mesa-7.3-r1.ebuild:
  Stable on sparc, bug #251832

  05 Apr 2009; Markus Meier <maekke@gentoo.org> mesa-7.3-r1.ebuild:
  x86 stable, bug #251832

  05 Apr 2009; Olivier Crête <tester@gentoo.org> mesa-7.3-r1.ebuild:
  Stable on amd64, bug #251832

  05 Apr 2009; Olivier Crête <tester@gentoo.org> mesa-7.3-r1.ebuild:
  Stable on amd64, bug #251832

  03 Apr 2009; Brent Baude <ranger@gentoo.org> mesa-7.3-r1.ebuild:
  Marking mesa-7.3-r1 ppc64 stable for bug 251832

  03 Apr 2009; Brent Baude <ranger@gentoo.org> mesa-7.3-r1.ebuild:
  Marking mesa-7.3-r1 ppc stable for bug 251832

*mesa-7.4 (29 Mar 2009)

  29 Mar 2009; Rémi Cardona <remi@gentoo.org>
  +files/7.4-fix-parallel-make.patch, +mesa-7.4.ebuild:
  bump to 7.4 with parallel make patch

  26 Mar 2009; Tomas Chvatal <scarabeus@gentoo.org> mesa-7.4_rc1.ebuild:
  We should depend on xcb? not on xcb= as usedep for libX11. Already fixed
  in overlay.

  26 Mar 2009; Rémi Cardona <remi@gentoo.org> -mesa-7.3-r2.ebuild:
  drop 7.3-r2, it's almost identical to 7.4_rc1

*mesa-7.4_rc1 (25 Mar 2009)

  25 Mar 2009; Rémi Cardona <remi@gentoo.org> +mesa-7.4_rc1.ebuild:
  bump to 7.4_rc1 with a couple more patches from git

*mesa-7.3-r2 (23 Mar 2009)

  23 Mar 2009; Rémi Cardona <remi@gentoo.org> +mesa-7.3-r2.ebuild:
  add another 60+ patches from the 7.4 branch (tarball now has 135 patches),
  use the -9999 ebuild from the overlay which has all kinds of fixes (thanks
  to scarabeus and magnus)

*mesa-7.3-r1 (07 Mar 2009)

  07 Mar 2009; Rémi Cardona <remi@gentoo.org> +mesa-7.3-r1.ebuild:
  add 60+ patches from the 7.4 branch

  03 Feb 2009; Rémi Cardona <remi@gentoo.org> mesa-7.3.ebuild:
  only pull in the git eclass when PV==9999, fixes bug #257461

*mesa-7.3 (01 Feb 2009)

  01 Feb 2009; Rémi Cardona <remi@gentoo.org> +mesa-7.3.ebuild:
  bump to 7.3, copy from the x11 overlay

  30 Jan 2009; Mike Frysinger <vapier@gentoo.org> metadata.xml:
  Document local USE=pic flag.

  22 Oct 2008; Rémi Cardona <remi@gentoo.org> mesa-6.5.2-r1.ebuild,
  mesa-7.0.3.ebuild, mesa-7.1_rc3.ebuild, mesa-7.1.ebuild,
  mesa-7.2_rc1.ebuild, mesa-7.2.ebuild:
  pkgmove from xf86-video-i810 to xf86-video-intel

*mesa-7.2 (21 Sep 2008)

  21 Sep 2008; Donnie Berkholz <dberkholz@gentoo.org>; +mesa-7.2.ebuild:
  Version bump.

  14 Sep 2008; Donnie Berkholz <dberkholz@gentoo.org>; mesa-7.2_rc1.ebuild:
  (#237648) Logic for asm was still wrong on sparc hardened (Does that even
  exist?). Remove sparc-handling code altogether because the default does
  the right thing.

  14 Sep 2008; Donnie Berkholz <dberkholz@gentoo.org>; mesa-7.1.ebuild,
  mesa-7.2_rc1.ebuild:
  mesa-progs has to be in PDEPEND to avoid a circular dependency through
  freeglut (reported by Javier Villavicencio).

*mesa-7.2_rc1 (14 Sep 2008)

  14 Sep 2008; Donnie Berkholz <dberkholz@gentoo.org>; +mesa-7.2_rc1.ebuild:
  Bump to RC. The major upstream change from 7.1 is to remove DRI2 code,
  which is still a work in progress. (#237648) Assembly code enabling had
  reversed logic, so it was enabled for pic & sparc but disabled for
  everyone else.

  11 Sep 2008; Donnie Berkholz <dberkholz@gentoo.org>; mesa-7.1.ebuild:
  Pull in mesa-progs so people don't get really confused by the lack of
  glxinfo/glxgears.

  08 Sep 2008; Donnie Berkholz <dberkholz@gentoo.org>; mesa-7.1.ebuild:
  (#237091) Pull in the latest versions of X libraries and protocol headers
  so they don't change as easily after mesa is built but before xorg-server.

*mesa-7.1 (06 Sep 2008)

  06 Sep 2008; Donnie Berkholz <dberkholz@gentoo.org>; +mesa-7.1.ebuild:
  Version bump.

*mesa-7.1_rc3 (09 Jul 2008)

  09 Jul 2008; Donnie Berkholz <dberkholz@gentoo.org>;
  -files/src-mesa-drivers-Makefile, -mesa-7.1_rc2.ebuild,
  +mesa-7.1_rc3.ebuild:
  Bump to fix rc2 problems.

  08 Jul 2008; Donnie Berkholz <dberkholz@gentoo.org>;
  -files/0001-dri-drop-asserts-to-make-build-against-stable-libdr.patch,
  -files/7.0.2-glw.pc.in,
  -files/0001-mesa-drm-ttm-allow-build-against-non-TTM-aware-libd.patch,
  -files/version.mk, -mesa-7.0.2.ebuild, -mesa-7.1_rc1.ebuild:
  Pull old ebuilds that aren't latest stable, ~arch, or RC.

*mesa-7.1_rc2 (08 Jul 2008)

  08 Jul 2008; Donnie Berkholz <dberkholz@gentoo.org>;
  +files/src-mesa-drivers-Makefile, +mesa-7.1_rc2.ebuild:
  Bump.

  01 Jul 2008; Donnie Berkholz <dberkholz@gentoo.org>;
  +files/0001-dri-drop-asserts-to-make-build-against-stable-libdr.patch,
  mesa-7.1_rc1.ebuild:
  Fix build with libdrm 2.3.1.

  27 Jun 2008; Donnie Berkholz <dberkholz@gentoo.org>; +files/version.mk:
  Add missed file.

  27 Jun 2008; Donnie Berkholz <dberkholz@gentoo.org>;
  +files/0001-mesa-drm-ttm-allow-build-against-non-TTM-aware-libd.patch,
  mesa-7.1_rc1.ebuild:
  Stop fetching from git pointlessly after downloading the tarball. Add a
  patch to attempt allowing builds against libdrm 2.3.1. It still doesn't
  actually work for reasons I don't understand, but it seems to have
  something to do with the 'depend' files mesa's weird build system uses.

  27 Jun 2008; Ulrich Mueller <ulm@gentoo.org> mesa-6.5.2-r1.ebuild,
  mesa-7.0.2.ebuild, mesa-7.0.3.ebuild, mesa-7.1_rc1.ebuild:
  Change dependency from virtual/motif to x11-libs/openmotif, bug 224749.

  13 Jun 2008; Donnie Berkholz <dberkholz@gentoo.org>; mesa-7.1_rc1.ebuild:
  Change libdrm dep to 2.3.1 or newer. It won't actually build for the intel
  driver yet, but others might work.

  10 Jun 2008; Donnie Berkholz <dberkholz@gentoo.org>; mesa-6.5.2-r1.ebuild:
  Drop to ~mips to silence repoman warnings.

*mesa-7.1_rc1 (10 Jun 2008)

  10 Jun 2008; Donnie Berkholz <dberkholz@gentoo.org>; +mesa-7.1_rc1.ebuild:
  Bump to release candidate for 7.1. Lots of new code, including the swrast
  DRI driver so we don't need to have Mesa source code during the
  xorg-server build anymore. There's also a new autoconf build system that
  simplifies the ebuild considerably.

  02 May 2008; Donnie Berkholz <dberkholz@gentoo.org>; mesa-7.0.3.ebuild:
  Revert the libdrm dependency change. 7.0.3 does not compile with current
  libdrm-9999 git.

  29 Apr 2008; Hanno Boeck <hanno@gentoo.org> mesa-7.0.3.ebuild:
  Change libdrm-dep from = to >=.

*mesa-7.0.3 (25 Apr 2008)

  25 Apr 2008; Donnie Berkholz <dberkholz@gentoo.org>; +mesa-7.0.3.ebuild:
  (#209900, #212511) Bump.

  31 Jan 2008; Donnie Berkholz <dberkholz@gentoo.org>; -mesa-7.0.1.ebuild:
  Clean up.

  16 Nov 2007; Donnie Berkholz <dberkholz@gentoo.org>; mesa-7.0.1.ebuild,
  mesa-7.0.2.ebuild:
  (#199282) Use has_version instead of best_version to make sure we detect
  xorg-server installation correctly (Jakub Moc).

  14 Nov 2007; Zac Medico <zmedico@gentoo.org> mesa-6.5.2-r1.ebuild,
  mesa-7.0.1.ebuild, mesa-7.0.2.ebuild:
  Add eselect-opengl to RDEPEND since having it in DEPEND alone will not
  pull it in for binary packages. If the postinst `eselect opengl` call fails
  then it can lead to build errors later, as reported by release engineering.

  12 Nov 2007; Donnie Berkholz <dberkholz@gentoo.org>; mesa-7.0.1.ebuild,
  mesa-7.0.2.ebuild:
  Add a note about needing to rebuild xorg-server with USE='-nptl'.

  12 Nov 2007; Donnie Berkholz <dberkholz@gentoo.org>; mesa-7.0.2.ebuild:
  Re-keyword, I masked USE=nptl for mesa-7 to work around the problem. This
  will also require a rebuild of xorg-server without USE=nptl.

  11 Nov 2007; <solar@gentoo.org> mesa-6.5.2-r1.ebuild, mesa-7.0.1.ebuild,
  mesa-7.0.2.ebuild:
  - The use of the hardened flag to control the building of position
  independent code was incorrect. mesa ebuilds now use pic USE flag

*mesa-7.0.2 (10 Nov 2007)

  10 Nov 2007; Donnie Berkholz <dberkholz@gentoo.org>;
  +files/7.0.2-glw.pc.in, +mesa-7.0.2.ebuild:
  Bump to 7.0.2, with lots of bugfixes. I removed all keywords because I can't
  get any 3D apps running besides glxgears, but I'd like to get reports from
  others to help figure out whether my system's just broken.

  09 Oct 2007; Donnie Berkholz <dberkholz@gentoo.org>;
  -files/mesa-6.5.3-pthread.patch, -mesa-6.5.2.ebuild, -mesa-6.5.3.ebuild:
  More cleanup of ebuilds that aren't latest stable or ~arch.

  09 Oct 2007; Donnie Berkholz <dberkholz@gentoo.org>;
  -files/6.4-multilib-fix.patch, -files/6.5.1-freebsd-dri.patch,
  -files/6.5.1-xcb-dont-unlock-twice.patch,
  -files/6.5-re-order-context-destruction.patch,
  -files/6.5.1-mach64-dri-private-dma-2.patch,
  -files/6.4-dont-install-gles-headers.patch,
  -files/6.5.1-i965-bufmgr.patch, -files/6.5.1-use-new-xcb-naming.patch,
  -files/change-default-dri-driver-dir-X7.1.patch, -mesa-6.5-r3.ebuild,
  -mesa-6.5.1-r1.ebuild, -mesa-6.5.1-r4.ebuild:
  Clean out old versions.

  09 Oct 2007; Donnie Berkholz <dberkholz@gentoo.org>; mesa-6.5-r3.ebuild,
  mesa-6.5.1-r1.ebuild, mesa-6.5.1-r4.ebuild, mesa-6.5.2.ebuild,
  mesa-6.5.2-r1.ebuild, mesa-6.5.3.ebuild, mesa-7.0.1.ebuild:
  Fix quoting issues caught by latest repoman.

  12 Aug 2007; Donnie Berkholz <dberkholz@gentoo.org>; mesa-6.5-r3.ebuild,
  mesa-6.5.1-r1.ebuild, mesa-6.5.1-r4.ebuild, mesa-6.5.2.ebuild,
  mesa-6.5.2-r1.ebuild, mesa-6.5.3.ebuild:
  Backport GCC 4.2 -O2 workaround for ivopts bug from 7.0.1.

*mesa-7.0.1 (11 Aug 2007)

  11 Aug 2007; Donnie Berkholz <dberkholz@gentoo.org>; +mesa-7.0.1.ebuild:
  (#183626) Bump. Lots of bugfixes from the 6.5.3 development release, no new
  features. Also appending -fno-ivopts on gcc-4.2 systems -- symptoms this
  fixes include black screens on glxgears. Still has a slight performance
  issue with nptl if using assembly optimizations, which is the case for
  non-hardened (see https://bugs.freedesktop.org/show_bug.cgi?id=7459 for
  details). Some ebuild cleanup, including safety for build directories
  containing spaces; removal of dead code for EGL; clean generation of libGLU
  symlinks; getting rid of many of those confusing makedepend warnings; change
  from add_drivers() function to a cleaner driver_enable() that contains
  conditionals internally.

  07 Aug 2007; Gustavo Zacarias <gustavoz@gentoo.org> mesa-6.5.2-r1.ebuild:
  Stable on sparc wrt #175465

  01 Aug 2007; Donnie Berkholz <dberkholz@gentoo.org>; mesa-6.5.3.ebuild:
  (#178655) Add dep on libXdamage for damage reporting.

  30 Jul 2007; Donnie Berkholz <dberkholz@gentoo.org>; mesa-6.5-r3.ebuild,
  mesa-6.5.1-r1.ebuild, mesa-6.5.1-r4.ebuild, mesa-6.5.2.ebuild,
  mesa-6.5.2-r1.ebuild, mesa-6.5.3.ebuild:
  Move eselect-opengl into DEPEND only, so it can be uninstalled later.

  02 Jul 2007; Raúl Porcel <armin76@gentoo.org> mesa-6.5.2-r1.ebuild:
  alpha stable wrt #175465

  02 Jul 2007; Piotr Jaroszyński <peper@gentoo.org> mesa-6.5-r3.ebuild,
  mesa-6.5.1-r1.ebuild, mesa-6.5.1-r4.ebuild, mesa-6.5.2.ebuild,
  mesa-6.5.2-r1.ebuild, mesa-6.5.3.ebuild:
  (QA) RESTRICT clean up.

  24 Jun 2007; Joshua Kinard <kumba@gentoo.org> mesa-6.5.2-r1.ebuild:
  Stable on mips, per #175465.

  20 May 2007; Jeroen Roovers <jer@gentoo.org> mesa-6.5.2-r1.ebuild:
  Stable for HPPA (bug #175465).

  13 May 2007; Joshua Baergen <joshuabaergen@gentoo.org>
  +files/mesa-6.5.3-pthread.patch, mesa-6.5.3.ebuild:
  Include Diego's xcb patch, fixing bug #177329.

  12 May 2007; nixnut <nixnut@gentoo.org> mesa-6.5.2-r1.ebuild:
  Stable on ppc wrt bug 175465

  05 May 2007; Daniel Gryniewicz <dang@gentoo.org> mesa-6.5.2-r1.ebuild:
  Marked stable on amd64 for bug #175465

*mesa-6.5.3 (29 Apr 2007)

  29 Apr 2007; Donnie Berkholz <dberkholz@gentoo.org>; +mesa-6.5.3.ebuild:
  Add 6.5.3. Supports OpenGL 2.0 and 2.1 in software, adds new GLSL code
  generator, new vertex buffer object (vbo) infrastructure, and more.

  29 Apr 2007; Andrej Kacian <ticho@gentoo.org> mesa-6.5.2-r1.ebuild:
  Stable on x86, bug #175465.

  25 Apr 2007; Raúl Porcel <armin76@gentoo.org> mesa-6.5.2-r1.ebuild:
  Stable on ia64 wrt bug #175465.

  25 Apr 2007; Markus Rothe <corsair@gentoo.org> mesa-6.5.2-r1.ebuild:
  Stable on ppc64; bug #175465

  07 Apr 2007; Mike Frysinger <vapier@gentoo.org> mesa-6.5-r3.ebuild:
  Remove fluff reference to EXEDESTTREE.

*mesa-6.5.2-r1 (19 Feb 2007)

  19 Feb 2007; Joshua Baergen <joshuabaergen@gentoo.org>
  +files/6.5.2-i965-wine-fix.patch, +mesa-6.5.2-r1.ebuild:
  Fix 3D apps running in Wine.  (Bug #163973, riku)

  19 Feb 2007; Joshua Baergen <joshuabaergen@gentoo.org> mesa-6.5.2.ebuild:
  Re-add die to mesa if building +xcb when libX11 is -xcb. (Bug #163761, Petteri
  Räty)

  18 Feb 2007; Ryan Hill <dirtyepic@gentoo.org> mesa-6.5.2.ebuild:
  Apply previous fix to the 6.5.2 ebuild as well.

  17 Feb 2007; Simon Stelling <blubb@gentoo.org> mesa-6.5.1-r1.ebuild:
  fix from my last commit: string equality != integer equality

  17 Feb 2007; Simon Stelling <blubb@gentoo.org> mesa-6.5.1-r1.ebuild,
  mesa-6.5.2.ebuild:
  set CONFIG depending on ABI on amd64; bug 125125

  24 Jan 2007; Donnie Berkholz <dberkholz@gentoo.org>;
  -files/64bit-fix-have-dix-config.patch,
  -files/64bit-fix-indirect-vertex-array.patch,
  -files/6.5-fix-radeon-PCIE.patch,
  -files/change-default-dri-driver-dir.patch,
  -files/makedepend-location.patch, -files/radeon-texture-problem.patch,
  -mesa-6.4.2-r2.ebuild, -mesa-6.5-r4.ebuild, -mesa-6.5.1-r2.ebuild:
  Clean up.

  08 Dec 2006; Joshua Baergen <joshuabaergen@gentoo.org> mesa-6.5.2.ebuild:
  leio bets his gold watch that this version needs a better libdrm too.

  08 Dec 2006; Joshua Baergen <joshuabaergen@gentoo.org>
  mesa-6.5.1-r4.ebuild:
  Fix libdrm dependency due to mach64 patch.  (Thanks to leio)

  07 Dec 2006; Joshua Baergen <joshuabaergen@gentoo.org>
  mesa-6.5.1-r4.ebuild:
  Whitespace fix to make repoman happy.

*mesa-6.5.1-r4 (07 Dec 2006)

  07 Dec 2006; Joshua Baergen <joshuabaergen@gentoo.org>
  +files/6.5.1-i965-bufmgr.patch, -mesa-6.5.1-r3.ebuild,
  +mesa-6.5.1-r4.ebuild:
  Fix 3D on i965 (bug #156569, riku) and make sure libX11 was built with xcb
  when building +xcb (bug #156397, Priit Laes).

  07 Dec 2006; Joshua Baergen <joshuabaergen@gentoo.org>
  -mesa-6.5.2_pre20061102.ebuild:
  Remove mesa snapshot.

*mesa-6.5.1-r3 (07 Dec 2006)

  07 Dec 2006; Joshua Baergen <joshuabaergen@gentoo.org>
  +files/6.5.1-mach64-dri-private-dma-2.patch, +mesa-6.5.1-r3.ebuild:
  Fix compiling against newer libdrms (2.2.0+).  Thanks for Mart Raudsepp for
  the discovery of the patch.  (Fixes bug #154827)

*mesa-6.5.2 (04 Dec 2006)

  04 Dec 2006; Joshua Baergen <joshuabaergen@gentoo.org> +mesa-6.5.2.ebuild:
  New mesa release with numerous bugfixes and improvements.  Introduces the
  i915tex driver, which takes advantage of the new DRI memory manager.  You'll
  need a newer kernel DRM to use it than is currently available in the tree.

  01 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org> mesa-6.5.1-r1.ebuild:
  Stable on hppa

  03 Nov 2006; Joshua Baergen <joshuabaergen@gentoo.org>
  mesa-6.5.2_pre20061102.ebuild:
  Mesa 6.5.2 apparently requires >=libdrm-2.2.

  03 Nov 2006; Joshua Baergen <joshuabaergen@gentoo.org>
  mesa-6.5.2_pre20061102.ebuild:
  Fix SRC_URI.

*mesa-6.5.2_pre20061102 (03 Nov 2006)

  03 Nov 2006; Joshua Baergen <joshuabaergen@gentoo.org>
  +mesa-6.5.2_pre20061102.ebuild:
  Add a mesa snapshot for the input hotplug server.

  27 Oct 2006; Joseph Jezak <josejx@gentoo.org> mesa-6.5.1-r1.ebuild,
  mesa-6.5.1-r2.ebuild:
  Marked ppc stable.

  17 Oct 2006; Gustavo Zacarias <gustavoz@gentoo.org> mesa-6.5.1-r1.ebuild:
  Stable on sparc

  16 Oct 2006; Markus Rothe <corsair@gentoo.org> mesa-6.5.1-r1.ebuild:
  Stable on ppc64

  13 Oct 2006; Joshua Baergen <joshuabaergen@gentoo.org>
  mesa-6.5.1-r1.ebuild:
  AMD64/x86 stable for bug #144549 (X7.1).

  11 Oct 2006; Donnie Berkholz <dberkholz@gentoo.org>; mesa-6.4.2-r2.ebuild,
  mesa-6.5-r3.ebuild, mesa-6.5-r4.ebuild, mesa-6.5.1-r1.ebuild,
  mesa-6.5.1-r2.ebuild:
  (#149248) Since upstream cares more about performance than textrels etc, add
  a RESTRICT for the stricter FEATURES setting.

*mesa-6.5.1-r2 (09 Oct 2006)

  09 Oct 2006; Donnie Berkholz <dberkholz@gentoo.org>;
  +files/6.5.1-use-new-xcb-naming.patch,
  +files/6.5.1-xcb-dont-unlock-twice.patch, +mesa-6.5.1-r2.ebuild:
  Add a masked, XCB-capable mesa.

  28 Sep 2006; Donnie Berkholz <dberkholz@gentoo.org>; -mesa-6.5.1.ebuild:
  Clean out broken ebuild.

  28 Sep 2006; Donnie Berkholz <dberkholz@gentoo.org>; mesa-6.5.1-r1.ebuild:
  Require glproto 1.4.8 instead of 1.4.7 for new eye candy to work properly
  (Hanno Böck).

  21 Sep 2006; Javier Villavicencio <the_paya@gentoo.org>
  +files/6.5.1-freebsd-dri.patch, mesa-6.5.1-r1.ebuild:
  Fixes to build on Gentoo/FreeBSD with DRI enabled wrt bug #146892.

  18 Sep 2006; Donnie Berkholz <dberkholz@gentoo.org>; ChangeLog:
  Add bug number for libGL.la fix.

*mesa-6.5.1-r1 (18 Sep 2006)

  18 Sep 2006; Donnie Berkholz <dberkholz@gentoo.org>;
  +mesa-6.5.1-r1.ebuild:
  Bump to incorporate needed fixes.

  18 Sep 2006; Donnie Berkholz <dberkholz@gentoo.org>; mesa-6.5.1.ebuild:
  (#147982) Add in a sed of libdir in libGL.la from 6.5-r4 to avoid breaking
  things in a big way.

  17 Sep 2006; Donnie Berkholz <dberkholz@gentoo.org>; mesa-6.5.1.ebuild:
  (#147872) Require libdrm 2.0.2. At least the r200 driver needs it, maybe more.

  16 Sep 2006; Donnie Berkholz <dberkholz@gentoo.org>; mesa-6.5.1.ebuild:
  Add pkgconfig to DEPEND.

  16 Sep 2006; Donnie Berkholz <dberkholz@gentoo.org>; mesa-6.5.1.ebuild:
  Get rid of arch-specific defaults, since they're in profiles now.

  16 Sep 2006; Donnie Berkholz <dberkholz@gentoo.org>; mesa-6.5.1.ebuild:
  (#147804) Add i965 to build when VIDEO_CARDS=i810.

  16 Sep 2006; Donnie Berkholz <dberkholz@gentoo.org>; mesa-6.5.1.ebuild:
  Dep on glproto 1.4.7, not 1.4.4. Older versions aren't in portage anymore,
  but it's still possible to remain on them (Hanno Böck).

*mesa-6.5.1 (16 Sep 2006)

  16 Sep 2006; Donnie Berkholz <dberkholz@gentoo.org>; +mesa-6.5.1.ebuild:
  Bump.

  25 Aug 2006; Hanno Boeck <hanno@gentoo.org> files/lib/libGL.la,
  mesa-6.4.2-r2.ebuild, mesa-6.5-r3.ebuild, mesa-6.5-r4.ebuild:
  Really fix libGL.la, replace lib with get_libdir.

  25 Aug 2006; Hanno Boeck <hanno@gentoo.org> files/lib/libGL.la:
  Make libGL.la point to /usr/lib to let apps link against currently running
  libGL.

*mesa-6.5-r4 (29 Jul 2006)

  29 Jul 2006; Joshua Baergen <joshuabaergen@gentoo.org>
  +files/6.5-fix-radeon-PCIE.patch, +mesa-6.5-r4.ebuild:
  Add a fix for Radeons using PCIE.  (Thanks to Jochen Trumpf, bug #136315)

  19 Jul 2006; Guy Martin <gmsoft@gentoo.org> mesa-6.5-r3.ebuild:
  Stable on hppa.

  12 Jul 2006; Stefan Schweizer <genstef@gentoo.org> mesa-6.4.2-r2.ebuild,
  mesa-6.5-r3.ebuild:
  Do not use xargs because it does not work for functions

  12 Jul 2006; Donnie Berkholz <dberkholz@gentoo.org>; mesa-6.4.2-r2.ebuild,
  mesa-6.5-r3.ebuild:
  Stop PROVIDE-ing new-style virtuals.

  12 Jul 2006; Donnie Berkholz <dberkholz@gentoo.org>; mesa-6.4.2-r2.ebuild,
  mesa-6.5-r3.ebuild:
  (#120375) Pull in app-doc/opengl-manpages on USE=doc.

  10 Jul 2006; Aron Griffis <agriffis@gentoo.org> mesa-6.5-r3.ebuild:
  Mark 6.5-r3 stable on ia64

  02 Jul 2006; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.4.2-r2.ebuild,
  mesa-6.5-r3.ebuild:
  Also disable ASM_API on USE=hardened (Kevin F. Quinn).

  30 Jun 2006; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.5-r3.ebuild:
  ppc/sparc/mips/alpha/arm/sh stable

  30 Jun 2006; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.4.2-r2.ebuild:
  ppc/sparc/mips/alpha/arm/sh stable

  30 Jun 2006; Markus Rothe <corsair@gentoo.org> mesa-6.5-r3.ebuild:
  Stable on ppc64

  30 Jun 2006; Chris Gianelloni <wolf31o2@gentoo.org> mesa-6.4.2-r2.ebuild:
  Stable on amd64.

  30 Jun 2006; Markus Rothe <corsair@gentoo.org> mesa-6.4.2-r2.ebuild:
  Stable on ppc64

  30 Jun 2006; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.4.2-r2.ebuild:
  x86 stable.

  30 Jun 2006; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.4.2-r2.ebuild,
  mesa-6.5-r3.ebuild:
  Add hardened USE flag to deactivate assembly code.

  21 Jun 2006; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.5-r3.ebuild:
  (#130951) Fix libGLU symlink (Torsten Veller).

  27 Apr 2006; Marien Zwart <marienz@gentoo.org> Manifest:
  Fixing SHA256 digest, pass four

  21 Apr 2006; Donnie Berkholz <spyderous@gentoo.org>; -mesa-6.5.ebuild,
  -mesa-6.5-r1.ebuild, -mesa-6.5-r2.ebuild:
  Pull old masked ebuilds.

*mesa-6.5-r3 (21 Apr 2006)

  21 Apr 2006; Donnie Berkholz <spyderous@gentoo.org>; +mesa-6.5-r3.ebuild:
  Add USE=nptl to build with TLS. Note that AIGLX will not work unless both
  xorg-server and mesa are built with the same setting of the nptl flag.

  16 Apr 2006; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.5.ebuild,
  mesa-6.5-r1.ebuild, mesa-6.5-r2.ebuild:
  (#130174) Update glproto dep to minimum 1.4.4.

  16 Apr 2006; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.4.2-r2.ebuild,
  mesa-6.5.ebuild, mesa-6.5-r1.ebuild, mesa-6.5-r2.ebuild:
  Split out ATI cards into mach64, r128 and radeon.

  16 Apr 2006; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.4.2-r2.ebuild,
  mesa-6.5.ebuild, mesa-6.5-r1.ebuild:
  Alphabetize drivers in the other ebuilds as well, for easier application of
  other patches.

  16 Apr 2006; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.5-r2.ebuild:
  Append -fno-strict-aliasing, many drivers have issues.

  16 Apr 2006; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.5-r2.ebuild:
  Alphabetize ordering of drivers for easier parsing.

  16 Apr 2006; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.5-r2.ebuild:
  Don't need to sed dprintf anymore, it's fixed upstream.

*mesa-6.5-r2 (14 Apr 2006)

  14 Apr 2006; Joshua Baergen <joshuabaergen@gentoo.org>
  +files/change-default-dri-driver-dir-X7.1.patch, +mesa-6.5-r2.ebuild:
  Revision bump to use new paths for drivers.  Drivers now sit in
  /usr/$(get_libdir)/dri, rather than /usr/$(get_libdir)/xorg/modules/dri .

*mesa-6.5-r1 (12 Apr 2006)

  12 Apr 2006; Joshua Baergen <joshuabaergen@gentoo.org>
  +files/6.5-re-order-context-destruction.patch, +mesa-6.5-r1.ebuild:
  Add some upstream fixes that re-order GL context destruction in the ati
  drivers to avoid a possible NULL dereference.
  
  I've also restored the entire ChangeLog, as it appears to have been truncated
  during Diego's last commit.

  08 Apr 2006; Diego Pettenò <flameeyes@gentoo.org> mesa-6.4.2-r2.ebuild,
  mesa-6.5.ebuild:
  Add a simple sed to replace -ldl with the right call for the libc used with
  dlopen_lib() function in portability eclass. This allows to link correctly
  to libGL when using libtool on Gentoo/FreeBSD.

  03 Apr 2006; Diego Pettenò <flameeyes@gentoo.org> mesa-6.4.2-r2.ebuild,
  mesa-6.5.ebuild:
  Add special case for FreeBSD where libGL has only major soversion.

  01 Apr 2006; Joshua Baergen <joshuabaergen@gentoo.org> mesa-6.5.ebuild:
  Bump the libdrm dependency and fix the i810 chip series driver compile.  (Bug
  #128328, Alex Rostovtsev)

  01 Apr 2006; Joshua Baergen <joshuabaergen@gentoo.org>
  mesa-6.4.2-r2.ebuild, mesa-6.5.ebuild:
  Add some missing x11-proto dependencies.  (bug #128336, Steven Jenkins)

*mesa-6.5 (01 Apr 2006)

  01 Apr 2006; Donnie Berkholz <spyderous@gentoo.org>; +mesa-6.5.ebuild:
  Bump for masked development release, needed for newer i810 drivers. Also
  adds some GLSL (OpenGL Shading Language) support and lots of development in
  r300 driver, among others.

  31 Mar 2006; Diego Pettenò <flameeyes@gentoo.org> mesa-6.4.2-r2.ebuild:
  Add ~x86-fbsd keyword.

*mesa-6.4.2-r2 (12 Mar 2006)

  12 Mar 2006; Joshua Baergen <joshuabaergen@gentoo.org>
  +files/radeon-texture-problem.patch, -mesa-6.4.2-r1.ebuild,
  +mesa-6.4.2-r2.ebuild:
  Fix a Radeon crash in certain applications (such as Croquet 0.3), and don't
  compile debug code into the drivers if USE=-debug (Santiago Gala, bug
  #125004).  Also, fix a naming conflict between SGI GLU code and glibc 2.4
  (SpanKY, KIMURA Masaru / hiyuh, bug #125809).

  28 Feb 2006; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.4.2-r1.ebuild:
  Make USE=debug work more nicely with FEATURES=splitdebug.

*mesa-6.4.2-r1 (16 Feb 2006)

  16 Feb 2006; Donnie Berkholz <spyderous@gentoo.org>;
  +files/64bit-fix-have-dix-config.patch,
  +files/64bit-fix-indirect-vertex-array.patch,
  -files/6.4.1-amd64-include-assyntax.patch, -mesa-6.4.1-r1.ebuild,
  -mesa-6.4.2.ebuild, +mesa-6.4.2-r1.ebuild:
  Really fix direct rendering on amd64. Also remove old versions.

  14 Feb 2006; Markus Rothe <corsair@gentoo.org> mesa-6.4.1-r1.ebuild,
  mesa-6.4.2.ebuild:
  Added ~ppc64

  06 Feb 2006; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.4.2.ebuild:
  Add mach64 and tdfx to ppc defaults. Some evidence that glide-v3 works on
  ppc exists; needs testing, and is required for tdfx 3D to work.

  06 Feb 2006; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.4.2.ebuild:
  Add arch-dependent defaults for building 3D drivers.

  03 Feb 2006; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.4.2.ebuild:
  Add a fake video_cards_none for people who don't want any DRI drivers, e.g.
  if they're using binary drivers.

*mesa-6.4.2 (03 Feb 2006)

  03 Feb 2006; Donnie Berkholz <spyderous@gentoo.org>; +mesa-6.4.2.ebuild:
  Bump. Port to VIDEO_CARDS. Not really any relevant upstream changes, except
  a change in the install script to install GLw headers. Also,
  6.4.1-amd64-include-assyntax.patch was incorporated into this release.

  02 Feb 2006; Herbie Hopkins <herbs@gentoo.org> mesa-6.4.1-r1.ebuild:
  Fix setting of the default dri drivers directory.

  02 Feb 2006; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.4.1-r1.ebuild:
  Add USE=debug support.

  31 Jan 2006; Rene Nussbaumer <killerfox@gentoo.org> mesa-6.4.1-r1.ebuild:
  Unstable on hppa.

  23 Jan 2006; Donnie Berkholz <spyderous@gentoo.org>;
  -files/configurable-dri-dir.patch, mesa-6.4.1-r1.ebuild:
  Some people don't understand what #ifndef means.

  26 Dec 2005; Stefaan De Roeck <stefaan@gentoo.org> mesa-6.4.1-r1.ebuild:
  Marked ~alpha

  16 Dec 2005; Herbie Hopkins <herbs@gentoo.org>
  +files/6.4-multilib-fix.patch, +files/configurable-dri-dir.patch,
  mesa-6.4.1-r1.ebuild:
  Cleaned up multilib fixes, made default dri drivers directory configurable
  so we can set it to lib64 on multilib systems.

*mesa-6.4.1-r1 (12 Dec 2005)

  12 Dec 2005; Donnie Berkholz <spyderous@gentoo.org>; -mesa-6.4.1.ebuild,
  +mesa-6.4.1-r1.ebuild:
  Install correct libGLU.so.1.3.

  09 Dec 2005; Donnie Berkholz <spyderous@gentoo.org>; -mesa-6.4-r1.ebuild:
  Pull old versions.

  02 Dec 2005; Donnie Berkholz <spyderous@gentoo.org>;
  files/6.4.1-amd64-include-assyntax.patch:
  Add more info to patch.

  02 Dec 2005; Donnie Berkholz <spyderous@gentoo.org>;
  +files/6.4.1-amd64-include-assyntax.patch, mesa-6.4.1.ebuild:
  (#114066) Add 6.4.1-amd64-include-assyntax.patch to fix amd64 build.

*mesa-6.4.1 (30 Nov 2005)

  30 Nov 2005; Donnie Berkholz <spyderous@gentoo.org>; +mesa-6.4.1.ebuild:
  New version. This is the one that's expected to be in X.Org 7.0. Fix libGL.*
  symlink deletion so the dot really matches a dot instead of any character,
  so other symlinks don't get deleted. (#110840) Build with PIC, since it
  hasn't been shown to slow it down. Remove commented-out lines about OSMesa.
  Keep using 6.4-dont-install-gles-headers.patch, so don't delete it when
  pulling 6.4.

  27 Nov 2005; Joshua Baergen <joshuabaergen@gentoo.org> mesa-6.4-r1.ebuild:
  Added Diego's patch for FreeBSD support. Closes bug #111145.

  16 Nov 2005; Joshua Baergen <joshuabaergen@gentoo.org> mesa-6.4-r1.ebuild:
  Changed xorg-x11 blocker for clarity.

*mesa-6.4-r1 (14 Nov 2005)

  14 Nov 2005; Donnie Berkholz <spyderous@gentoo.org>; -mesa-6.4.ebuild,
  +mesa-6.4-r1.ebuild:
  Install GLwDrawA.h, and if USE=motif, install GLwMDrawA.h. Reported by
  Stefaan De Roeck <stefaan@gentoo.org>.

  14 Nov 2005; Donnie Berkholz <spyderous@gentoo.org>;
  -files/dont-install-gles-headers.patch,
  -files/mesa-add-dri-asm-files.patch, -mesa-6.3.2-r1.ebuild:
  Pull old version.

  11 Nov 2005; MATSUU Takuto <matsuu@gentoo.org> mesa-6.4.ebuild:
  added ~sh keyword

  01 Nov 2005; Joshua Baergen <joshuabaergen@gentoo.org> mesa-6.4.ebuild:
  Change xorg-x11 blocker to allow for rc metabuilds.

*mesa-6.4 (31 Oct 2005)

  31 Oct 2005; Donnie Berkholz <spyderous@gentoo.org>;
  +files/6.4-dont-install-gles-headers.patch, +mesa-6.4.ebuild:
  Bump.

  30 Oct 2005; Joshua Baergen <joshuabaergen@gentoo.org>
  mesa-6.3.2-r1.ebuild:
  Change xorg-x11 blocker to allow for metabuilds.

  19 Oct 2005; Stephen P. Becker <geoman@gentoo.org> mesa-6.3.2-r1.ebuild:
  added ~mips keyword

  12 Oct 2005; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.3.2-r1.ebuild:
  Add runtime blocker for !<x11-base/xorg-x11-7.

  12 Oct 2005; Donnie Berkholz <spyderous@gentoo.org>;
  -files/lib/libOSMesa.la, -mesa-6.3.1.1-r3.ebuild, -mesa-6.3.2.ebuild:
  Pull old ebuilds. Current versions aren't using libOSMesa.la either, so pull
  that too.

*mesa-6.3.2-r1 (20 Sep 2005)

  20 Sep 2005; Donnie Berkholz <spyderous@gentoo.org>;
  +mesa-6.3.2-r1.ebuild:
  Mesa isn't making libGLU.so -> libGLU.so.# unversioned to versioned symlink.
  This makes stuff trying to link against libGLU break.

  09 Sep 2005; Donnie Berkholz <spyderous@gentoo.org>; +metadata.xml:
  Add metadata.

  06 Sep 2005; Donnie Berkholz <spyderous@gentoo.org>;
  mesa-6.3.1.1-r3.ebuild, mesa-6.3.2.ebuild:
  Add missing 'set' argument to eselect.

  06 Sep 2005; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.3.2.ebuild:
  (#104367) Add xf86vidmodeproto and libICE to deps.

  04 Sep 2005; Luca Barbato <lu_zero@gentoo.org> mesa-6.3.2.ebuild:
  Marked ~ppc

  03 Sep 2005; Jeremy Huddleston <eradicator@gentoo.org>
  mesa-6.3.1.1-r3.ebuild, mesa-6.3.2.ebuild:
  Switching to use eselect over opengl-update.

  22 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.3.2.ebuild:
  Split out an arch-specific variable DRI_DRIVERS_${ARCH} for defining which
  drivers to build. Put it up at the top, to try separating data from code.
  Perhaps doing something similar in pkg_setup(), but having if...elif and
  just DRI_DRIVERS, would work reasonably, but it doesn't isolate the data as
  well.

  22 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.3.2.ebuild:
  Move EXTRA_LIB_PATH blanking out from within a sparc block, because it
  should be used for everyone. Also move arch-specific section away from
  generic sections.

*mesa-6.3.2 (22 Aug 2005)

  22 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>;
  +files/mesa-add-dri-asm-files.patch, +mesa-6.3.2.ebuild:
  Bump to latest devel release. The assembly files in DRI drivers didn't get
  packaged, so add mesa-add-dri-asm-files.patch to patch them in. I think this
  release will also fix 32/64 systems, if they also have the latest DRM.

  22 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>;
  -files/fix-include-locations.patch, -files/fix-xthreads-location.patch,
  -files/use-xthreads.patch, -mesa-6.3.1.1.ebuild, -mesa-6.3.1.1-r1.ebuild,
  -mesa-6.3.1.1-r2.ebuild:
  Pull old versions.

  20 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>;
  mesa-6.3.1.1-r3.ebuild:
  Stop installing glut headers to avoid conflicts with virtual/glut providers.
  Reported by Andrej Kacian <ticho@gentoo.org>.

  17 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>;
  mesa-6.3.1.1-r3.ebuild:
  Add x11-proto/printproto to DEPEND on USE=motif.

  16 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>;
  mesa-6.3.1.1-r3.ebuild:
  libOSMesa isn't building anymore, so stop symlinking and installing libtool
  archives.

*mesa-6.3.1.1-r3 (16 Aug 2005)

  16 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>;
  +mesa-6.3.1.1-r3.ebuild:
  Fix direct rendering on r200 by adding USING_EGL=0. Turning off EGL takes a
  lot of work.

  15 Aug 2005; Herbie Hopkins <herbs@gentoo.org> mesa-6.3.1.1-r2.ebuild:
  Fix multilib issue and add ~amd64 keyword.

  15 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>;
  mesa-6.3.1.1-r2.ebuild:
  Install libGL.la to /usr/lib/opengl/xorg-x11/lib, where libGL.so really is,
  instead of /usr/lib. This only seems necessary because of the LDPATH hack in
  opengl-update.

*mesa-6.3.1.1-r2 (14 Aug 2005)

  14 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>;
  +files/change-default-dri-driver-dir.patch,
  +files/dont-install-gles-headers.patch, +mesa-6.3.1.1-r2.ebuild:
  Stop building EGL things, because they aren't ready upstream. Also the EGL
  demos rely on glut, which creates a circular dependency. Change the default
  DRI driver directory to the one we actually use. This should be enough to
  get direct rendering working.

*mesa-6.3.1.1-r1 (12 Aug 2005)

  12 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>;
  +mesa-6.3.1.1-r1.ebuild:
  Bump to update to CVS head as of yesterday.

  12 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.3.1.1.ebuild:
  Turn parallel build back off. Can get problems with depend files not existing.

  12 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.3.1.1.ebuild:
  Test out parallel make. fmccor says it works.

  12 Aug 2005; Ferris McCormick <fmccor@gentoo.org> mesa-6.3.1.1.ebuild:
  1. General cleanup for sparc, get rid of the ill-considered
     IUSE=dri;
  2. Make sure to install the actual dri drivers as well as the
     base libGL package.

  11 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>; Manifest:
  Fix manifest.

  11 Aug 2005; Ferris McCormick <fmccor@gentoo.org> mesa-6.3.1.1.ebuild:
  Following changes build a reunning libGL for sparc testing and set
  a sane set of DRI drivers, depending on USE=dri flag:
  1.	With dri, sparc assembly appears to be unusable.  This is because
  	the build and directory structures have been changed so that the
  	actual initialization code moves to the dri drivers themselves
  	when sparc assembly is built.  Correcting this is nontrivial,
  	because the glx build uses hard-defined source names and paths.
  2.	With USE=dri, on sparc build only a subset of the full complement
  	of drivers.  For now, DRI_DIRS = fb ffb mach64 mga radeon savage
  3.  Without USE=dri, change the target to (generic) linux-sparc.  In
  	this case, architecture is actually set by CFLAGS passed in to the
  	configure target, and both glx-capable and stand-alone versions
  	of libGL are built.
  4.  For testing, and perhaps ultimately for performance, on sparc, unless
  	USE=dri, do not fix_opengl_symlinks
  With these changes in place,
  LD_LIBRARY_PATH=<path-to-libGL>:<path-to-libGLU> some-libGL-program
  works fine.

  10 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>;
  +files/fix-include-locations.patch, mesa-6.3.1.1.ebuild:
  Add fix-include-locations.patch to standardize include locations to
  <X11/extensions/foo.h> instead of some mixture of <foo.h> and "foo.h."

  10 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>;
  +files/makedepend-location.patch, mesa-6.3.1.1.ebuild:
  Add makedepend-location.patch to stop mesa from looking in /usr/X11R6/bin.

  10 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.3.1.1.ebuild:
  Add dep on >=x11-proto/glproto-1.4-r1.

  10 Aug 2005; Ferris McCormick <fmccor@gentoo.org> mesa-6.3.1.1.ebuild:
  1.  Correct echo "$(...)" to echo "\$(...)";
  2.  When building for sparc, make sure that:
  	a.  Use sparc assembly versions where appropriate;
  	b.  Make sure sparc-specific sources are built;
  	c.  For testing, don't actually build the dri drivers
  	    because they are known not to work.
  	d.  TODO:  Figure out why two versions of libGL are built,
  		and why the install ends up linking to the incorrect
  		version (the one with the undefined externals).

  10 Aug 2005; Ferris McCormick <fmccor@gentoo.org> mesa-6.3.1.1.ebuild:
  Add ~sparc keyword (X modular testing).

  10 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.3.1.1.ebuild:
  Add dep on >=opengl-update-2.2.2.

  10 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.3.1.1.ebuild:
  Add fix_opengl_symlinks() from xorg-x11, to set up the libGL symlinks.

  10 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>; mesa-6.3.1.1.ebuild:
  Stop cleaning out /usr/lib/opengl/xorg-x11, now that two other packages also
  install to it.

  10 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>; -mesa-3.5.ebuild:
  Drop old version.

*mesa-6.3.1.1 (10 Aug 2005)

  10 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>;
  +files/fix-xthreads-location.patch, +files/lib/libGL.la,
  +files/lib/libGLU.la, +files/lib/libOSMesa.la, +files/use-xthreads.patch,
  +mesa-6.3.1.1.ebuild:
  Add for modular X.

  07 Jun 2004; Aron Griffis <agriffis@gentoo.org> mesa-3.5.ebuild:
  Fix use invocation

  24 Nov 2003; Aron Griffis <agriffis@gentoo.org> mesa-3.5.ebuild:
  Add ~alpha

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
 
*mesa-3.5 (22 Jul 2002)

  22 Jul 2002; Seemant Kulleen <seemant@gentoo.org> mesa-3.5.ebuild
  files/digest-mesa-3.5 :

  This was updated a while ago. I repoman'd it, and cleaned up spacing and
  syntax a little.

*mesa-3.4.2 (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.