source: projects/specs/trunk/m/mesa/mesa-vl.spec @ 521

Revision 521, 35.5 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1# When bootstrapping an arch, omit the -demos subpackage.
2
3# S390 doesn't have video cards, so it's not much use building DRI there.
4%define with_dri 1
5%define driver dri
6
7%define manpages gl-manpages-1.0.1
8
9%define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
10
11Summary: Mesa graphics libraries
12Summary(ja): Mesa グラフィックスライブラリ
13Name: mesa
14Version: 7.6.1
15Release: 1%{?_dist_release}
16License: MIT
17Group: System Environment/Libraries
18URL: http://www.mesa3d.org
19
20Source0: http://www.mesa3d.org/beta/MesaLib-%{version}.tar.bz2
21Source1: http://www.mesa3d.org/beta/MesaDemos-%{version}.tar.bz2
22Source2: %{manpages}.tar.bz2
23Source3: make-git-snapshot.sh
24
25Patch1: mesa-7.4.4-osmesa-version.patch
26Patch2: mesa-7.1-nukeglthread-debug.patch
27Patch3: mesa-no-mach64.patch
28
29Patch7: mesa-7.1-link-shared.patch
30Patch9: intel-revert-vbl.patch
31
32BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
33BuildRequires: pkgconfig
34%if %{with_dri}
35BuildRequires: libdrm-devel >= 2.4.9
36%endif
37BuildRequires: libXxf86vm-devel
38BuildRequires: expat-devel >= 2.0
39BuildRequires: xorg-x11-proto-devel >= 7.4
40BuildRequires: makedepend
41BuildRequires: libXext-devel
42BuildRequires: freeglut-devel
43BuildRequires: libXfixes-devel
44BuildRequires: libXdamage-devel
45BuildRequires: libXi-devel
46BuildRequires: libXmu-devel
47
48%description
49Mesa
50
51%package libGL
52Summary: Mesa libGL runtime libraries and DRI drivers
53Summary(ja): Mesa libGL ランタイプライブラリおよび DRI ドライバ
54Group: System Environment/Libraries
55Requires(post): /sbin/ldconfig
56Requires(postun): /sbin/ldconfig
57Provides: libGL
58Obsoletes: Mesa, XFree86-gl, XOrg-gl
59%if %{with_dri}
60Requires: libdrm >= 2.4.5
61%endif
62
63%description libGL
64Mesa libGL runtime libraries and DRI drivers.
65
66%package libGL-devel
67Summary: Mesa libGL development package
68Summary(ja): Mesa libGL 開発パッケージ
69Group: Development/Libraries
70Provides: libGL-devel
71Requires: mesa-libGL = %{version}-%{release}
72Requires: libX11-devel
73Requires: libXxf86vm-devel
74Requires: libXdamage-devel
75Requires: libXfixes-devel
76Requires: libXext-devel
77Requires: libdrm-devel
78Obsoletes: Mesa-devel, XFree86-gl-devel, XOrg-gl-devel
79
80
81%description libGL-devel
82Mesa libGL development package
83
84
85%package libGLU
86Summary: Mesa libGLU runtime library
87Summary(ja): Mesa libGLU ランタイムライブラリ
88Group: System Environment/Libraries
89Requires(post): /sbin/ldconfig
90Requires(postun): /sbin/ldconfig
91Provides: libGLU
92Obsoletes: Mesa, XFree86-gl, XOrg-gl
93
94%description libGLU
95Mesa libGLU runtime library
96
97
98%package libGLU-devel
99Summary: Mesa libGLU development package
100Summary(ja): Mesa libGLU 開発パッケージ
101Group: Development/Libraries
102Requires: mesa-libGLU = %{version}-%{release}
103Requires: libGL-devel
104Provides: libGLU-devel
105Obsoletes: Mesa-devel, XFree86-gl-devel, XOrg-gl-devel
106
107%description libGLU-devel
108Mesa libGLU development package
109
110
111%package libOSMesa
112Summary: Mesa offscreen rendering libraries
113Summary(ja): Mesa オフスクリーンレンダリングライブラリ
114Group: System Environment/Libraries
115Requires(post): /sbin/ldconfig
116Requires(postun): /sbin/ldconfig
117Provides: libOSMesa
118
119%description libOSMesa
120Mesa offscreen rendering libraries
121
122
123%package libOSMesa-devel
124Summary: Mesa offscreen rendering development package
125Summary(ja): Mesa オフスクリーンレンダリング開発パッケージ
126Group: Development/Libraries
127Requires: mesa-libOSMesa = %{version}-%{release}
128
129%description libOSMesa-devel
130Mesa offscreen rendering development package
131
132
133%package source
134Summary: Mesa source code required to build X server
135Summary(ja): X サーバをビルドするために必要な Mesa ソースコード
136Group: Development/Libraries
137
138%description source
139The mesa-source package provides the minimal source code needed to
140build DRI enabled X servers, etc.
141
142
143%package -n glx-utils
144Summary: GLX utilities
145Summary(ja): GLX ユーティリティ
146Group: Development/Libraries
147
148%description -n glx-utils
149The glx-utils package provides the glxinfo and glxgears utilities.
150
151
152%package demos
153Summary: Mesa demos
154Summary(ja): Mesa デモ
155Group: Development/Libraries
156
157%description demos
158This package provides some demo applications for testing Mesa.
159
160
161# compat32
162%package -n compat32-%{name}-libGL
163Summary: Mesa libGL runtime libraries and DRI drivers
164Summary(ja): Mesa libGL ランタイプライブラリおよび DRI ドライバ
165Group: System Environment/Libraries
166Requires(post): /sbin/ldconfig
167Requires(postun): /sbin/ldconfig
168Requires: %{name}-libGL = %{version}-%{release}
169%if %{with_dri}
170Requires: compat32-libdrm >= 2.4.5
171%endif
172
173%description -n compat32-%{name}-libGL
174Mesa libGL runtime libraries and DRI drivers.
175
176%package -n compat32-%{name}-libGL-devel
177Summary: Mesa libGL development package
178Summary(ja): Mesa libGL 開発パッケージ
179Group: Development/Libraries
180Requires: compat32-%{name}-libGL = %{version}-%{release}
181Requires: %{name}-libGL-devel = %{version}-%{release}
182Requires: compat32-libX11-devel
183Requires: compat32-libdrm-devel
184
185%description -n compat32-%{name}-libGL-devel
186Mesa libGL development package
187
188
189%package -n compat32-%{name}-libGLU
190Summary: Mesa libGLU runtime library
191Summary(ja): Mesa libGLU ランタイムライブラリ
192Group: System Environment/Libraries
193Requires(post): /sbin/ldconfig
194Requires(postun): /sbin/ldconfig
195Requires: %{name}-libGLU = %{version}-%{release}
196
197%description -n compat32-%{name}-libGLU
198Mesa libGLU runtime library
199
200
201%package -n compat32-%{name}-libGLU-devel
202Summary: Mesa libGLU development package
203Summary(ja): Mesa libGLU 開発パッケージ
204Group: Development/Libraries
205Requires: compat32-%{name}-libGL  = %{version}-%{release}
206Requires: compat32-%{name}-libGLU = %{version}-%{release}
207Requires: %{name}-libGL-devel  = %{version}-%{release}
208Requires: %{name}-libGLU-devel = %{version}-%{release}
209
210%description -n compat32-%{name}-libGLU-devel
211Mesa libGLU development package
212
213
214%package -n compat32-%{name}-libOSMesa
215Summary: Mesa offscreen rendering libraries
216Summary(ja): Mesa オフスクリーンレンダリングライブラリ
217Group: System Environment/Libraries
218Requires(post): /sbin/ldconfig
219Requires(postun): /sbin/ldconfig
220Requires: %{name}-libOSMesa
221
222%description -n compat32-%{name}-libOSMesa
223Mesa offscreen rendering libraries
224
225
226%package -n compat32-%{name}-libOSMesa-devel
227Summary: Mesa offscreen rendering development package
228Summary(ja): Mesa オフスクリーンレンダリング開発パッケージ
229Group: Development/Libraries
230Requires: compat32-%{name}-libOSMesa = %{version}-%{release}
231Requires: %{name}-libOSMesa-devel = %{version}-%{release}
232
233%description -n compat32-%{name}-libOSMesa-devel
234Mesa offscreen rendering development package
235
236%prep
237%setup -q -n Mesa-%{version} -b1 -b2
238%patch1 -p1 -b .osmesa
239%patch2 -p1 -b .intel-glthread
240%patch3 -p1 -b .no-mach64
241#%patch6 -p1 -b .radeon-rewrite
242%patch7 -p1 -b .dricore
243%patch9 -p1 -b .intel-vbl
244
245# Hack the demos to use installed data files
246sed -i 's,../images,%{_libdir}/mesa-demos-data,' progs/demos/*.c
247sed -i 's,geartrain.dat,%{_libdir}/mesa-demos-data/&,' progs/demos/geartrain.c
248sed -i 's,isosurf.dat,%{_libdir}/mesa-demos-data/&,' progs/demos/isosurf.c
249sed -i 's,terrain.dat,%{_libdir}/mesa-demos-data/&,' progs/demos/terrain.c
250
251%build
252
253autoreconf --install
254
255export CFLAGS="$RPM_OPT_FLAGS -fvisibility=hidden -Os"
256export CXXFLAGS="$RPM_OPT_FLAGS -fvisibility=hidden -Os"
257%define common_flags --enable-pic
258%define osmesa_flags --with-driver=osmesa --disable-asm %{common_flags}
259
260# first, build the osmesa variants. XXX this is overkill.  osmesa32 is
261# sufficient to render to any of the channel sizes, according to the
262# docs.  should fix this someday.
263
264%configure --with-driver=osmesa --with-osmesa-bits=8
265make %{_smp_mflags} SRC_DIRS=mesa
266mv %{_lib} osmesa8
267make clean
268
269%configure --with-driver=osmesa --with-osmesa-bits=16
270make %{_smp_mflags} SRC_DIRS=mesa
271mv %{_lib} osmesa16
272make clean
273
274%configure --with-driver=osmesa --with-osmesa-bits=32
275make %{_smp_mflags} SRC_DIRS=mesa
276mv %{_lib} osmesa32
277make clean
278
279# just to be sure...
280[ `find . -name \*.o | wc -l` -eq 0 ] || exit "make cleaner plz"
281
282# XXX should get visibility working again post-dricore.
283export CFLAGS="$RPM_OPT_FLAGS -Os"
284export CXXFLAGS="$RPM_OPT_FLAGS -Os"
285
286# now build the rest of mesa
287%configure \
288    --disable-glw \
289    --disable-glut \
290    --disable-gl-osmesa \
291    --disable-gallium \
292    --with-driver=%{driver} \
293    --with-dri-driverdir=%{_libdir}/dri
294
295make #{?_smp_mflags}
296
297make -C progs/xdemos glxgears glxinfo
298make %{?_smp_mflags} -C progs/demos
299
300pushd ../%{manpages}
301%configure
302make %{?_smp_mflags}
303popd
304
305%install
306rm -rf $RPM_BUILD_ROOT
307
308# core libs and headers, but not drivers.
309make install DESTDIR=$RPM_BUILD_ROOT DRI_DIRS=
310
311# just the DRI drivers that are sane
312%if %{with_dri}
313install -d $RPM_BUILD_ROOT%{_libdir}/dri
314install -m 0755 -t $RPM_BUILD_ROOT%{_libdir}/dri %{_lib}/libdricore.so >& /dev/null
315for f in i810 i915 i965 mga r128 r200 r300 radeon savage sis swrast tdfx unichrome; do
316    so=%{_lib}/${f}_dri.so
317    test -e $so && echo $so
318done | xargs install -m 0755 -t $RPM_BUILD_ROOT%{_libdir}/dri >& /dev/null || :
319%endif
320
321# strip out undesirable headers
322pushd $RPM_BUILD_ROOT%{_includedir}/GL
323rm -f [a-fh-np-wyz]*.h gg*.h glf*.h glew.h glxew.h
324popd
325
326# remove EGL stuff
327pushd $RPM_BUILD_ROOT%{_libdir}
328rm -f libEGL*
329popd
330pushd $RPM_BUILD_ROOT%{_libdir}/dri
331rm -f EGL_*.so
332popd
333
334# XXX demos, since they don't install automatically.  should fix that.
335install -d $RPM_BUILD_ROOT%{_bindir}
336install -m 0755 progs/xdemos/glxgears $RPM_BUILD_ROOT%{_bindir}
337install -m 0755 progs/xdemos/glxinfo $RPM_BUILD_ROOT%{_bindir}
338find progs/demos/ -type f -perm /0111 |
339    xargs install -m 0755 -t $RPM_BUILD_ROOT/%{_bindir}
340# bah, name conflicts
341mv $RPM_BUILD_ROOT/%{_bindir}/{rain,mesa-rain}
342install -d $RPM_BUILD_ROOT/%{_libdir}/mesa-demos-data
343install -m 0644 progs/images/*.rgb $RPM_BUILD_ROOT/%{_libdir}/mesa-demos-data
344install -m 0644 progs/demos/*.dat $RPM_BUILD_ROOT/%{_libdir}/mesa-demos-data
345
346# and osmesa
347mv osmesa*/* $RPM_BUILD_ROOT%{_libdir}
348
349# man pages
350pushd ../%{manpages}
351make %{?_smp_mflags} install DESTDIR=$RPM_BUILD_ROOT
352popd
353
354# Install the source needed to build the X server.  The egreps are just
355# stripping out unnecessary dirs; only tricky bit is the [^c] to make sure
356# .../dri/common is included.
357%define mesasourcedir %{_datadir}/mesa/source
358mkdir -p $RPM_BUILD_ROOT/%{mesasourcedir}
359( find src -name \*.[ch] ; find include -name \*.h ) |
360    egrep -v '^src/(glu|glw)' |
361    egrep -v '^src/mesa/drivers/(directfb|dos|fbdev|glide|ggi|osmesa)' |
362    egrep -v '^src/mesa/drivers/(windows|dri/[^c])' |
363    xargs tar cf - --mode a=r |
364        (cd $RPM_BUILD_ROOT/%{mesasourcedir} && tar xf -)
365
366%clean
367rm -rf $RPM_BUILD_ROOT
368
369%check
370
371%post libGL -p /sbin/ldconfig
372%postun libGL -p /sbin/ldconfig
373%post libGLU -p /sbin/ldconfig
374%postun libGLU -p /sbin/ldconfig
375%post libOSMesa -p /sbin/ldconfig
376%postun libOSMesa -p /sbin/ldconfig
377
378%post -n compat32-%{name}-libGL -p /sbin/ldconfig
379%postun -n compat32-%{name}-libGL -p /sbin/ldconfig
380%post -n compat32-%{name}-libGLU -p /sbin/ldconfig
381%postun -n compat32-%{name}-libGLU -p /sbin/ldconfig
382%post -n compat32-%{name}-libOSMesa -p /sbin/ldconfig
383%postun -n compat32-%{name}-libOSMesa -p /sbin/ldconfig
384
385%files libGL
386%defattr(-,root,root,-)
387%{_libdir}/libGL.so.1
388%{_libdir}/libGL.so.1.2
389%if %{with_dri}
390%dir %{_libdir}/dri
391%{_libdir}/dri/libdricore.so
392%{_libdir}/dri/*_dri.so
393%endif
394
395%files libGL-devel
396%defattr(-,root,root,-)
397%{_includedir}/GL/gl.h
398%{_includedir}/GL/gl_mangle.h
399%{_includedir}/GL/glext.h
400%{_includedir}/GL/glx.h
401%{_includedir}/GL/glx_mangle.h
402%{_includedir}/GL/glxext.h
403%dir %{_includedir}/GL/internal
404%{_includedir}/GL/internal/dri_interface.h
405%{_libdir}/libGL.so
406%{_libdir}/pkgconfig/gl.pc
407%{_libdir}/pkgconfig/dri.pc
408%{_datadir}/man/man3/gl[^uX]*.3gl*
409%{_datadir}/man/man3/glX*.3gl*
410
411%files libGLU
412%defattr(-,root,root,-)
413%{_libdir}/libGLU.so.1
414%{_libdir}/libGLU.so.1.3.*
415
416%files libGLU-devel
417%defattr(-,root,root,-)
418%{_libdir}/libGLU.so
419%{_libdir}/pkgconfig/glu.pc
420%{_includedir}/GL/glu.h
421%{_includedir}/GL/glu_mangle.h
422%{_datadir}/man/man3/glu*.3gl*
423
424%files libOSMesa
425%defattr(-,root,root,-)
426%{_libdir}/libOSMesa.so.6*
427%{_libdir}/libOSMesa16.so.6*
428%{_libdir}/libOSMesa32.so.6*
429
430%files libOSMesa-devel
431%defattr(-,root,root,-)
432%{_includedir}/GL/osmesa.h
433%{_libdir}/libOSMesa.so
434%{_libdir}/libOSMesa16.so
435%{_libdir}/libOSMesa32.so
436
437# We constructed this dir carefully, so just slurp in the whole thing.
438%files source
439%defattr(-,root,root,-)
440%{mesasourcedir}
441
442%files -n glx-utils
443%defattr(-,root,root,-)
444%{_bindir}/glxgears
445%{_bindir}/glxinfo
446
447%files demos
448%defattr(-,root,root,-)
449%{_bindir}/arbfplight
450%{_bindir}/arbfslight
451%{_bindir}/arbocclude
452%{_bindir}/bounce
453%{_bindir}/clearspd
454%{_bindir}/copypix
455%{_bindir}/cubemap
456%{_bindir}/dinoshade
457%{_bindir}/drawpix
458%{_bindir}/engine
459%{_bindir}/fbo_firecube
460%{_bindir}/fbotexture
461%{_bindir}/fire
462%{_bindir}/fogcoord
463%{_bindir}/fplight
464%{_bindir}/fslight
465%{_bindir}/gamma
466%{_bindir}/gearbox
467%{_bindir}/gears
468%{_bindir}/geartrain
469%{_bindir}/glinfo
470%{_bindir}/gloss
471%{_bindir}/gltestperf
472%{_bindir}/ipers
473%{_bindir}/isosurf
474%{_bindir}/lodbias
475%{_bindir}/morph3d
476%{_bindir}/multiarb
477%{_bindir}/paltex
478%{_bindir}/pointblast
479%{_bindir}/projtex
480%{_bindir}/mesa-rain
481%{_bindir}/ray
482%{_bindir}/readpix
483%{_bindir}/reflect
484%{_bindir}/renormal
485%{_bindir}/shadowtex
486%{_bindir}/singlebuffer
487%{_bindir}/spectex
488%{_bindir}/spriteblast
489%{_bindir}/stex3d
490%{_bindir}/teapot
491%{_bindir}/terrain
492%{_bindir}/tessdemo
493%{_bindir}/texcyl
494%{_bindir}/texenv
495%{_bindir}/textures
496%{_bindir}/trispd
497%{_bindir}/tunnel
498%{_bindir}/tunnel2
499%{_bindir}/vao_demo
500%{_bindir}/winpos
501%{_libdir}/mesa-demos-data
502
503# compat32
504%if %{build_compat32}
505%files -n compat32-%{name}-libGL
506%defattr(-,root,root,-)
507%{_libdir}/libGL.so.1
508%{_libdir}/libGL.so.1.2
509%if %{with_dri}
510%dir %{_libdir}/dri
511%{_libdir}/dri/libdricore.so
512%{_libdir}/dri/*_dri.so
513%endif
514
515%files -n compat32-%{name}-libGL-devel
516%defattr(-,root,root,-)
517%{_libdir}/libGL.so
518%{_libdir}/pkgconfig/gl.pc
519%{_libdir}/pkgconfig/dri.pc
520
521%files -n compat32-%{name}-libGLU
522%defattr(-,root,root,-)
523%{_libdir}/libGLU.so.1
524%{_libdir}/libGLU.so.1.3.*
525
526%files -n compat32-%{name}-libGLU-devel
527%defattr(-,root,root,-)
528%{_libdir}/libGLU.so
529%{_libdir}/pkgconfig/glu.pc
530
531%files -n compat32-%{name}-libOSMesa
532%defattr(-,root,root,-)
533%{_libdir}/libOSMesa.so.6*
534%{_libdir}/libOSMesa16.so.6*
535%{_libdir}/libOSMesa32.so.6*
536
537%files -n compat32-%{name}-libOSMesa-devel
538%defattr(-,root,root,-)
539%{_libdir}/libOSMesa.so
540%{_libdir}/libOSMesa16.so
541%{_libdir}/libOSMesa32.so
542%endif
543
544%changelog
545* Tue Jan 19 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 7.6.1-1
546- update to 7.6.1 release
547
548* Thu Dec 10 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 7.6.1-0.2.rc3
549- update to 7.6.1-rc3
550
551* Sat Nov 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 7.6.1-0.1.rc1
552- update to 7.6.1-rc1
553
554* Tue Nov 24 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 7.6-1
555- new upstream release
556- add R: libXxf86vm-devel, libXdamage-devel, libXfixes-devel,
557  libXext-devel and libdrm-devel to mesa-libGL-devel
558
559* Sat Sep 12 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 7.4.4-1
560- new upstream release
561
562* Sun Jun 28 2009 NAKAMURA Kenta <kenta@vinelinux.org> 7.4.1-2
563- added compat32 subpackage for x86_64 arch support.
564
565* Thu Apr 30 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 7.4.1-1
566- new upstream release
567- BR: libdrm-devel >= 2.4.9
568
569* Sun Mar 22 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 7.3-1
570- new upstream release
571- BR: libdrm-devel >= 2.4.5
572- drop mach64
573- update patches from fedora
574
575* Tue Oct 21 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.2-2
576- add BR: libdrm-devel >= 2.4.0-3
577
578* Mon Oct 20 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.2-1
579- new upstreal release
580
581* Thu Sep 04 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.1-4
582- update to 7.1 release
583
584* Thu Jul 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.1-3.rc3
585- update to 7.1-rc3
586
587* Sat Jul 05 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.1-2.rc1
588- include missing swrast_dri.so to %%files list
589
590* Tue Jul 01 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.1-1.rc1
591- update to 7.1-rc1
592
593* Thu May 22 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0.3-2
594- add Patch100 to disable 915tex driver
595
596* Mon May 12 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0.3-1
597- new upstream release
598
599* Sun Jan 20 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0.2-0vl1
600- build with freeglut
601
602* Thu Jan 17 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0.2-0vl0
603- initial build for Vine Linux(bootstrap)
604
605* Tue Jan 01 2008 Dave Airlie <airlied@redhat.com> 7.0.2-2
606- mesa-7.0.2-stable-branch.patch: add in mesa 7.0.2 stable patches so far
607
608* Tue Jan 01 2008 Dave Airlie <airlied@redhat.com> 7.0.2-1
609- update to Mesa 7.0.2 final
610- mesa-7.0.2-rx00-vertprog-num-temps-off-by-one.patch - fixes for maniadrive
611- mesa-7.0.2-t_vp_build-use-less-temps.patch - fixes for maniadrive
612
613* Thu Oct 18 2007 Dave Airlie <airlied@redhat.com> 7.0.1-7
614- mesa-7.0.1-stable-branch.patch - Updated with more fixes from stable
615- mesa-7.0.1-r300-fix-writemask.patch - fix r300 fragprog writemask
616- mesa-7.0.1-r200-settexoffset.patch - add zero-copy TFP support for r200
617
618* Fri Sep 28 2007 Dave Airlie <airlied@redhat.com> 7.0.1-6
619- mesa-7.0.1-stable-branch.patch - Updated to close to 7.0.2-rc1
620- This contains the fixes made to the upstream Mesa stable branch
621  including fixes for 965 vblank interrupt issues along with a fix
622  in the kernel - remove patches that already upstream.
623- mesa-6.5.2-hush-synthetic-visual-warning.patch - dropped
624- mesa-7.0-i-already-defined-glapi-you-twit.patch - dropped
625- mesa-7.0.1-965-sampler-crash.patch - dropped
626
627* Thu Sep 06 2007 Adam Jackson <ajax@redhat.com> 7.0.1-5
628- mesa-7.0.1-965-sampler-crash.patch: Fix a crash with 965 in Torcs. (#262941)
629
630* Tue Aug 28 2007 Adam Jackson <ajax@redhat.com> 7.0.1-4
631- Rebuild for new libexpat.
632
633* Wed Aug 15 2007 Dave Airlie <airlied@redhat.com> - 7.0.1-3
634- mesa-7.0.1-stable-branch.patch - Add patches from stable branch
635  includes support for some Intel chipsets
636- mesa-7.0-use_master-r300.patch - Add r300 driver from master
637
638* Tue Aug 14 2007 Dave Airlie <airlied@redhat.com> - 7.0.1-2
639- missing build requires for Xfixes-devel and Xdamage-devel
640
641* Mon Aug 13 2007 Dave Airlie <airlied@redhat.com> - 7.0.1-1
642- Rebase to upstream 7.0.1 release
643- ajax provided patches: for updated selinux awareness, build config
644- gl visibility and picify were fixed upstream
645- OS mesa library version are 6.5.3 not 7.0.1 - spec fix
646
647* Wed Jul 25 2007 Jesse Keating <jkeating@redhat.com> - 6.5.2-16
648- Rebuild for RH #249435
649
650* Tue Jul 24 2007 Adam Jackson <ajax@redhat.com> 6.5.2-15
651- Add dri_interface.h to mesa-libGL-devel, and conflict with
652  xorg-x11-proto-devel versions that attempted to provide it.
653
654* Tue Jul 10 2007 Adam Jackson <ajax@redhat.com> 6.5.2-14
655- Add mesa-demos subpackage. (#247252)
656
657* Mon Jul 09 2007 Adam Jackson <ajax@redhat.com> 6.5.2-13
658- mesa-6.5.2-radeon-backports-231787.patch: One more fix for r300. (#231787)
659
660* Mon Jul 09 2007 Adam Jackson <ajax@redhat.com> 6.5.2-12
661- Don't install header files for APIs that we don't provide. (#247390)
662
663* Fri Jul 06 2007 Adam Jackson <ajax@redhat.com> 6.5.2-11
664- mesa-6.5.2-via-respect-my-cliplist.patch: Backport a via fix. (#247254)
665
666* Tue Apr 10 2007 Adam Jackson <ajax@redhat.com> 6.5.2-10
667- mesa-6.5.2-radeon-backports-231787.patch: Backport various radeon bugfixes
668  from git. (#231787)
669
670* Wed Apr 04 2007 Adam Jackson <ajax@redhat.com> 6.5.2-9
671- mesa-6.5.2-bindcontext-paranoia.patch: Paper over a crash when doBindContext
672  fails, to avoid, for example, crashing the server when using tdfx but
673  without glide3 installed.
674
675* Thu Mar 08 2007 Adam Jackson <ajax@redhat.com> 6.5.2-8
676- Hush the (useless) warning about the synthetic visual not being supported.
677
678* Fri Mar 02 2007 Adam Jackson <ajax@redhat.com> 6.5.2-7
679- mesa-6.5.2-picify-dri-drivers.patch: Attempt to make the DRI drivers PIC.
680- mesa-6.5.1-build-config.patch: Apply RPM_OPT_FLAGS to OSMesa too.
681
682* Mon Feb 26 2007 Adam Jackson <ajax@redhat.com> 6.5.2-6
683- mesa-6.5.2-libgl-visibility.patch: Fix non-exported GLX symbols (#229808)
684- Require a sufficiently new libdrm at runtime too
685- Make the arch macros do something sensible in the general case
686
687* Tue Feb 20 2007 Adam Jackson <ajax@redhat.com> 6.5.2-5
688- General spec cleanups
689- Require current libdrm
690- Build with -fvisibility=hidden
691- Redo the way mesa-source is generated
692- Add %%{?_smp_mflags} where appropriate
693
694* Mon Dec 18 2006 Adam Jackson <ajax@redhat.com> 6.5.2-4
695- Add i915tex and mach64 to the install set.
696
697* Tue Dec 12 2006 Adam Jackson <ajax@redhat.com> 6.5.2-3
698- mesa-6.5.2-xserver-1.1-source-compat.patch: Add some source-compatibility
699  defines to dispatch.h so the X server will continue to build.
700
701* Mon Dec 4 2006 Adam Jackson <ajax@redhat.com> 6.5.2-2.fc6
702- Fix OSMesa file listing to use %%version for DSO number.  Note that this
703  will still break on Mesa 7; oh well.
704- Deleted file: directfbgl.h
705
706* Sun Dec  3 2006 Kristian Høgsberg <krh@redhat.com> 6.5.2-1.fc6
707- Update to 6.5.2.
708
709* Mon Oct 16 2006 Kristian <krh@redhat.com> - 6.5.1-8.fc6
710- Add i965-interleaved-arrays-fix.patch to fix (#209318).
711
712* Sat Sep 30 2006 Soren Sandmann <sandmann@redhat.com> - 6.5.1-7.fc6
713- Update to gl-manpages-1.0.1.tar.bz2 which doesn't use symlinks. (#184547)
714
715* Sat Sep 30 2006 Soren Sandmann <sandmann@redhat.com> - 6.5.1-7.fc6
716- Remove . after popd; add .gz in %%files section. (#184547)
717
718* Sat Sep 30 2006 Soren Sandmann <sandmann@redhat.com>
719- Use better tarball for gl man pages. (#184547)
720
721* Fri Sep 29 2006 Kristian <krh@redhat.com> - 6.5.1-6.fc6
722- Add -fno-strict-aliasing to compiler flags for i965 driver.
723- Add post-6.5.1-i965-fixes.patch backport of i965 fixes from mesa CVS.
724
725* Fri Sep 29 2006 Soren Sandmann <sandamnn@redhat.com> - 6.5.1-5.fc6
726- Give the correct path for man page file lists.
727
728* Thu Sep 28 2006 Soren Sandmann <sandmann@redhat.com> - 6.5.1-5.fc6
729- Add GL man pages from X R6.9.  (#184547)
730
731* Mon Sep 25 2006 Adam Jackson <ajackson@redhat.com> - 6.5.1-4.fc6
732- mesa-6.5.1-build-config.patch: Add -lselinux to osmesa builds.  (#207767)
733
734* Wed Sep 20 2006 Kristian Høgsberg <krh@redhat.com> - 6.5.1-3.fc6
735- Bump xorg-x11-proto-devel BuildRequires to 7.1-8 so we pick up the
736  latest GLX_EXT_texture_from_pixmap opcodes.
737
738* Wed Sep 20 2006 Kristian Høgsberg <krh@redhat.com> - 6.5.1-2.fc6
739- Remove mesa-6.5-drop-static-inline.patch.
740
741* Tue Sep 19 2006 Kristian Høgsberg <krh@redhat.com> 6.5.1-1.fc6
742- Bump to 6.5.1 final release.
743- Drop libGLw subpackage, it is now in Fedora Extras (#188974) and
744  tweak mesa-6.5.1-build-config.patch to not build libGLw.
745- Drop mesa-6.5.1-r300-smooth-line.patch, the smooth line fallback can
746  now be prevented by enabling disable_lowimpact_fallback in
747  /etc/drirc.
748- Drop mesa-6.4.1-radeon-use-right-texture-format.patch, now upstream.
749- Drop mesa-6.5-drop-static-inline.patch, workaround no longer necessary.
750
751* Thu Sep  7 2006 Kristian Høgsberg <krh@redhat.com>
752- Drop unused mesa-modular-dri-dir.patch.
753
754* Tue Aug 29 2006 Kristian Høgsberg <krh@redhat.com> - 6.5.1-0.rc2.fc6
755- Rebase to 6.5.1 RC2.
756- Get rid of redhat-mesa-driver-install and redhat-mesa-target helper
757  scripts and clean up specfile a bit.
758
759* Mon Aug 28 2006 Kristian Høgsberg <krh@redhat.com> - 6.5.1-0.rc1.2.fc6
760- Drop upstreamed patches mesa-6.5-texture-from-pixmap-fixes.patch and
761  mesa-6.5-tfp-fbconfig-attribs.patch and fix
762  mesa-6.4.1-radeon-use-right-texture-format.patch to not break 16bpp
763  transparency.
764
765* Fri Aug 25 2006 Adam Jackson <ajackson@redhat.com> - 6.5.1-0.rc1.1.fc6
766- mesa-6.5.1-build-config.patch: Add i965 to x86-64 config.
767
768* Wed Aug 23 2006 Kristian Høgsberg <krh@redhat.com> - 6.5.1-0.rc1.fc6
769- Bump to 6.5.1 RC1.
770
771* Tue Aug 22 2006 Kristian Høgsberg <krh@redhat.com> 6.5-26.20060818cvs.fc6
772- Pull the vtxfmt patch into the selinux-awareness patch, handle exec
773  mem heap init failure correctly by releasing mutex.
774
775* Tue Aug 22 2006 Adam Jackson <ajackson@redhat.com> 6.5-25.20060818cvs.fc6
776- mesa-6.5.1-r300-smooth-line.patch: Added, fakes smooth lines with aliased
777  lines on R300+ cards, makes Google Earth tolerable.
778- mesa-6.5-force-r300.patch: Resurrect.
779
780* Tue Aug 22 2006 Adam Jackson <ajackson@redhat.com> 6.5-24.20060818cvs.fc6
781- mesa-6.5.1-radeon-vtxfmt-cleanup-properly.patch: Fix a segfault on context
782  destruction when selinux is enabled.
783
784* Mon Aug 21 2006 Adam Jackson <ajackson@redhat.com> 6.5-23.20060818cvs.fc6
785- redhat-mesa-driver-install: Reenable installing the tdfx driver. (#203295)
786
787* Fri Aug 18 2006 Adam Jackson <ajackson@redhat.com> 6.5-22.20060818cvs.fc6
788- Update to pre-6.5.1 snapshot.
789- Re-add libOSMesa{,16,32}. (#186366)
790- Add BuildReq: on libXp-devel due to openmotif header insanity.
791
792* Sun Aug 13 2006 Florian La Roche <laroche@redhat.com> 6.5-21.fc6
793- fix one Requires: to use the correct mesa-libGLw name
794
795* Thu Jul 27 2006 Mike A. Harris <mharris@redhat.com> 6.5-20.fc6
796- Conditionalized libGLw inclusion with new with_libGLw macro defaulting
797  to 1 (enabled) for now, however since nothing in Fedora Core uses libGLw
798  anymore, we will be transitioning libGLw to an external package maintained
799  in Fedora Extras soon.
800
801* Wed Jul 26 2006 Kristian Høgsberg <krh@redhat.com> 6.5-19.fc5.aiglx
802- Build for fc5 aiglx repo.
803
804* Tue Jul 25 2006 Adam Jackson <ajackson@redhat.com> 6.5-19.fc6
805- Disable TLS dispatch, it is selinux-hostile.
806
807* Tue Jul 25 2006 Adam Jackson <ajackson@redhat.com> 6.5-18.fc6
808- mesa-6.5-fix-glxinfo-link.patch: lib64 fix.
809
810* Tue Jul 25 2006 Adam Jackson <ajackson@redhat.com> 6.5-17.fc6
811- mesa-6.5-fix-linux-indirect-build.patch: Added.
812- mesa-6.5-fix-glxinfo-link.patch: Added.
813- Build libOSMesa never instead of inconsistently; to be fixed later.
814- Updates to redhat-mesa-target:
815  - Always select linux-indirect when not building for DRI
816  - Enable DRI to be built on PPC64 (still disabled in the spec file though)
817  - MIT licence boilerplate
818
819* Tue Jul 25 2006 Mike A. Harris <mharris@redhat.com> 6.5-16.fc6
820- Remove glut-devel dependency, as nothing actually uses it that we ship.
821- Added mesa-6.5-dont-libglut-me-harder-ok-thx-bye.patch to prevent libglut
822  and other libs from being linked into glxgears/glxinfo even though they
823  are not actually used.  This was the final package linking to freeglut in
824  Fedora Core, blocking freeglut from being moved to Extras.
825- Commented all of the virtual provides in the spec file to document clearly
826  how they should be used by other developers in specifying build and runtime
827  dependencies when packaging software which links to libGL, libGLU, and
828  libGLw. (#200069)
829
830* Mon Jul 24 2006 Adam Jackson <ajackson@redhat.com> 6.5-15.fc6
831- Attempt to add selinux awareness; check if we can map executable memory
832  and fail softly if not.  Removes the need for allow_execmem from huge
833  chunks of the desktop.
834- Disable the r300 gart fix for not compiling.
835
836* Mon Jul 24 2006 Kristian Høgsberg <krh@redhat.com> 6.5-14.fc6
837- Add mesa-6.5-r300-free-gart-mem.patch to make r300 driver free gart
838  memory on context destroy.
839
840* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> 6.5-13.1.fc6
841- rebuild
842
843* Wed Jul 05 2006 Mike A. Harris <mharris@redhat.com> 6.5-13.fc6
844- Added mesa-6.5-fix-opt-flags-bug197640.patch as 2nd attempt to fix OPT_FLAGS
845  for (#197640).
846- Ensure that redhat-mesa-driver-install creates $DRIMODULE_DESTDIR with
847  mode 0755.
848
849* Wed Jul 05 2006 Mike A. Harris <mharris@redhat.com> 6.5-12.fc6
850- Maybe actually, you know, apply the mesa-6.5-glx-use-tls.patch as that might
851  help to you know, actually solve the problem.  Duh.
852- Use {dist} tag in Release field now.
853
854* Wed Jul 05 2006 Mike A. Harris <mharris@redhat.com> 6.5-11
855- Added mesa-6.5-glx-use-tls.patch to hopefully get -DGLX_USE_TLS to really
856  work this time due to broken upstream linux-dri-* configs. (#193979)
857- Pass RPM_OPT_FLAGS via OPT_FLAGS instead of via CFLAGS also for (#193979)
858
859* Mon Jun 19 2006 Mike A. Harris <mharris@redhat.com> 6.5-10
860- Bump libdrm-devel dep to trigger new ExclusiveArch test with the new package.
861- Use Fedora Extras style BuildRoot tag.
862- Added "Requires(post): /sbin/ldconfig" and postun to all runtime lib packages.
863
864* Mon Jun 12 2006 Kristian Høsberg <krh@redhat.com> 6.5-9
865- Add mesa-6.5-fix-pbuffer-dispatch.patch to fix pbuffer marshalling code.
866
867* Mon May 29 2006 Kristian Høgsberg <krh@redhat.com> 6.5-8
868- Bump for rawhide build.
869
870* Mon May 29 2006 Kristian Høgsberg <krh@redhat.com> 6.5-7
871- Update mesa-6.5-texture-from-pixmap-fixes.patch to include new
872  tokens and change tfp functions to return void.  Yes, a new mesa
873  snapshot would be nice.
874
875* Wed May 17 2006 Mike A. Harris <mharris@redhat.com> 6.5-6
876- Add "BuildRequires: makedepend" for bug (#191967)
877
878* Tue Apr 11 2006 Kristian Høgsberg <krh@redhat.com> 6.5-5
879- Bump for fc5 build.
880
881* Tue Apr 11 2006 Adam Jackson <ajackson@redhat.com> 6.5-4
882- Disable R300_FORCE_R300 hack for wider testing.
883
884* Mon Apr 10 2006 Kristian Høgsberg <krh@redhat.com> 6.5-3
885- Add mesa-6.5-noexecstack.patch to prevent assembly files from making
886  libGL.so have executable stack.
887
888* Mon Apr 10 2006 Kristian Høgsberg <krh@redhat.com> 6.5-2
889- Bump for fc5 build.
890- Bump libdrm requires to 2.0.1.
891
892* Sat Apr 01 2006 Kristian Høgsberg <krh@redhat.com> 6.5-1
893- Update to mesa 6.5 snapshot.
894- Use -MG for generating deps and some files are not yet symlinked at
895  make depend time.
896- Drop mesa-6.4.2-dprintf-to-debugprintf-for-bug180122.patch and
897  mesa-6.4.2-xorg-server-uses-bad-datatypes-breaking-AMD64-fdo5835.patch
898  as these are upstream now.
899- Drop mesa-6.4.1-texture-from-drawable.patch and add
900  mesa-6.5-texture-from-pixmap-fixes.patch.
901- Update mesa-modular-dri-dir.patch to apply.
902- Widen libGLU glob.
903- Reenable r300 driver install.
904- Widen libOSMesa glob.
905- Go back to patching config/linux-dri, add mesa-6.5-build-config.patch,
906  drop mesa-6.3.2-build-configuration-v4.patch.
907- Disable sis dri driver for now, only builds on x86 and x86-64.
908
909* Fri Mar 24 2006 Kristian Høgsberg <krh@redhat.com> 6.4.2-7
910- Set ARCH_FLAGS=-DGLX_USE_TLS to enable TLS for GL contexts.
911
912* Wed Mar 01 2006 Karsten Hopp <karsten@redhat.de> 6.4.2-6
913- Buildrequires: libXt-devel (#183479)
914
915* Sat Feb 25 2006 Mike A. Harris <mharris@redhat.com> 6.4.2-5
916- Disable the expeimental r300 DRI driver, as it has turned out to cause
917  instability and system hangs for many users.
918
919* Wed Feb 22 2006 Adam Jackson <ajackson@redhat.com> 6.4.2-4
920- rebuilt
921
922* Sun Feb 19 2006 Ray Strode <rstrode@redhat.com> 6.4.2-3
923- enable texture-from-drawable patch
924- add glut-devel dependency
925
926* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 6.4.2-2.1
927- bump again for double-long bug on ppc(64)
928
929* Tue Feb 07 2006 Mike A. Harris <mharris@redhat.com> 6.4.2-2
930- Added new "glx-utils" subpackage with glxgears and glxinfo (#173510)
931- Added mesa-6.4.2-dprintf-to-debugprintf-for-bug180122.patch to workaround
932  a Mesa namespace conflict with GNU_SOURCE (#180122)
933- Added mesa-6.4.2-xorg-server-uses-bad-datatypes-breaking-AMD64-fdo5835.patch
934  as an attempt to fix bugs (#176976,176414,fdo#5835)
935- Enabled inclusion of the *EXPERIMENTAL UNSUPPORTED* r300 DRI driver on
936  x86, x86_64, and ppc architectures, however the 2D Radeon driver will soon
937  be modified to require the user to manually turn experimental DRI support
938  on with Option "dri" in xorg.conf to test it out and report all X bugs that
939  occur while using it directly to X.Org bugzilla.  (#179712)
940- Use "libOSMesa.so.6.4.0604*" glob in file manifest, to avoid having to
941  update it each upstream release.
942
943* Sat Feb 04 2006 Mike A. Harris <mharris@redhat.com> 6.4.2-1
944- Updated to Mesa 6.4.2
945- Use "libGLU.so.1.3.0604*" glob in file manifest, to avoid having to update it
946  each upstream release.
947
948* Tue Jan 24 2006 Mike A. Harris <mharris@redhat.com> 6.4.1-5
949- Added missing "BuildRequires: expat-devel" for bug (#178525)
950- Temporarily disabled mesa-6.4.1-texture-from-drawable.patch, as it fails
951  to compile on at least ia64, and possibly other architectures.
952
953* Tue Jan 17 2006 Kristian Høgsberg <krh@redhat.com> 6.4.1-4
954- Add mesa-6.4.1-texture-from-drawable.patch to implement protocol
955  support for GLX_EXT_texture_from_drawable extension.
956
957* Sat Dec 24 2005 Mike A. Harris <mharris@redhat.com> 6.4.1-3
958- Manually copy libGLw headers that Mesa forgets to install, to fix (#173879).
959- Added mesa-6.4.1-libGLw-enable-motif-support.patch to fix (#175251).
960- Removed "Conflicts" lines from libGL package, as they are "Obsoletes" now.
961- Do not rename swrast libGL .so version, as it is the OpenGL version.
962
963* Tue Dec 20 2005 Mike A. Harris <mharris@redhat.com> 6.4.1-2
964- Rebuild to ensure libGLU gets rebuilt with new gcc with C++ compiler fixes.
965- Changed the 3 devel packages to use Obsoletes instead of Conflicts for the
966  packages the files used to be present in, as this is more friendy for
967  OS upgrades.
968- Added "Requires: libX11-devel" to mesa-libGL-devel package (#173712)
969- Added "Requires: libGL-devel" to mesa-libGLU-devel package (#175253)
970
971* Sat Dec 17 2005 Mike A. Harris <mharris@redhat.com> 6.4.1-1
972- Updated MesaLib tarball to version 6.4.1 from Mesa project for X11R7 RC4.
973- Added pkgconfig dependency.
974- Updated "BuildRequires: libdrm-devel >= 2.0-1"
975- Added Obsoletes lines to all the subpackages to have cleaner upgrades.
976- Added mesa-6.4.1-amd64-assyntax-fix.patch to work around a build problem on
977  AMD64, which is fixed in the 6.4 branch of Mesa CVS.
978- Conditionalize libOSMesa inclusion, and default to not including it for now.
979
980* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com> 6.4-5.1
981- rebuilt
982
983* Sun Nov 20 2005 Jeremy Katz <katzj@redhat.com> 6.4-5
984- fix directory used for loading dri modules (#173679)
985- install dri drivers as executable so they get stripped (#173292)
986
987* Thu Nov 03 2005 Mike A. Harris <mharris@redhat.com> 6.4-4
988- Wrote redhat-mesa-source-filelist-generator to dynamically generate the
989  files to be included in the mesa-source subpackage, to minimize future
990  maintenance.
991- Fixed detection and renaming of software mesa .so version.
992
993* Wed Nov 02 2005 Mike A. Harris <mharris@redhat.com> 6.4-3
994- Hack: autodetect if libGL was given .so.1.5* and rename it to 1.2 for
995  consistency on all architectures, and to avoid upgrade problems if we
996  ever disable DRI on an arch and then re-enable it later.
997
998* Wed Nov 02 2005 Mike A. Harris <mharris@redhat.com> 6.4-2
999- Added mesa-6.4-multilib-fix.patch to instrument and attempt to fix Mesa
1000  bin/installmesa script to work properly with multilib lib64 architectures.
1001- Set and export LIB_DIR and INCLUDE_DIR in spec file 'install' section,
1002  and invoke our modified bin/installmesa directly instead of using
1003  "make install".
1004- Remove "include/GL/uglglutshapes.h", as it uses the GLUT license, and seems
1005  like an extraneous file anyway.
1006- Conditionalize the file manifest to include libGL.so.1.2 on DRI enabled
1007  builds, but use libGL.so.1.5.060400 instead on DRI disabled builds, as
1008  this is how upstream builds the library, although it is not clear to me
1009  why this difference exists yet (which was not in Xorg 6.8.2 Mesa).
1010
1011* Thu Oct 27 2005 Mike A. Harris <mharris@redhat.com> 6.4-1
1012- Updated to new upstream MesaLib-6.4
1013- Updated libGLU.so.1.3.060400 entry in file manifest
1014- Updated "BuildRequires: libdrm-devel >= 1.0.5" to pick up fixes for the
1015  unichrome driver.
1016
1017* Tue Sep 13 2005 Mike A. Harris <mharris@redhat.com> 6.3.2-6
1018- Fix redhat-mesa-driver-install and spec file to work right on multilib
1019  systems.
1020 
1021* Mon Sep 05 2005 Mike A. Harris <mharris@redhat.com> 6.3.2-5
1022- Fix mesa-libGL-devel to depend on mesa-libGL instead of mesa-libGLU.
1023- Added virtual "Provides: libGL..." entries for each subpackage as relevant.
1024
1025* Mon Sep 05 2005 Mike A. Harris <mharris@redhat.com> 6.3.2-4
1026- Added the mesa-source subpackage, which contains part of the Mesa source
1027  code needed by other packages such as the X server to build stuff.
1028
1029* Mon Sep 05 2005 Mike A. Harris <mharris@redhat.com> 6.3.2-3
1030- Added Conflicts/Obsoletes lines to all of the subpackages to make upgrades
1031  from previous OS releases, and piecemeal upgrades work as nicely as
1032  possible.
1033
1034* Mon Sep 05 2005 Mike A. Harris <mharris@redhat.com> 6.3.2-2
1035- Wrote redhat-mesa-target script to simplify mesa build target selection.
1036- Wrote redhat-mesa-driver-install to install the DRI drivers and simplify
1037  per-arch conditionalization, etc.
1038
1039* Sun Sep 04 2005 Mike A. Harris <mharris@redhat.com> 6.3.2-1
1040- Initial build.
Note: See TracBrowser for help on using the repository browser.