mesa-vl.spec 40 KB

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