mesa-vl.spec 45 KB

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