mesa-vl.spec 36 KB

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