xorg-x11-drv-openchrome-vl.spec 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. %define tarball xf86-video-openchrome
  2. %define moduledir %(pkg-config xorg-server --variable=moduledir )
  3. %define driverdir %{moduledir}/drivers
  4. %define cvsdate xxxxxxx
  5. %define with_xvmc 1
  6. Summary: Xorg X11 openchrome video driver
  7. Summary(ja): Xorg X11 openchrome ビデオドライバ
  8. Name: xorg-x11-drv-openchrome
  9. Version: 0.3.3
  10. Release: 5%{?_dist_release}
  11. URL: http://www.openchrome.org
  12. License: MIT
  13. Group: User Interface/X Hardware Support
  14. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  15. Source0: http://www.openchrome.org/releases/%{tarball}-%{version}.tar.bz2
  16. Source1: openchrome.xinf
  17. # Patches from Fedora :
  18. Patch13: openchrome-0.2.904-fix_tvout_flickering.patch
  19. ExclusiveArch: %{ix86} x86_64
  20. BuildRequires: pkgconfig
  21. BuildRequires: xorg-x11-server-sdk
  22. BuildRequires: automake
  23. BuildRequires: libtool
  24. BuildRequires: libX11-devel
  25. BuildRequires: libXext-devel
  26. BuildRequires: mesa-libGL-devel
  27. %if %{with_xvmc}
  28. BuildRequires: libXvMC-devel
  29. %endif
  30. BuildRequires: libdrm-devel >= 2.0-1
  31. BuildRequires: eudev-libudev-devel
  32. Requires: xorg-x11-server-Xorg
  33. Obsoletes: XOrg-drv-via <= 0.2.2-4
  34. Provides: xorg-x11-drv-via = 0.2.2-5
  35. Vendor: Project Vine
  36. Distribution: Vine Linux
  37. %description
  38. X.Org X11 openchrome video driver.
  39. %if %{with_xvmc}
  40. %package devel
  41. Summary: Xorg X11 openchrome video driver XvMC development package
  42. Summary(ja): Xorg X11 openchrome ビデオドライバ XvMC 開発パッケージ
  43. Group: Development/System
  44. Requires: %{name} = %{version}-%{release}
  45. Obsoletes: XOrg-drv-via-devel <= 0.2.2-4
  46. Provides: xorg-x11-drv-via-devel = 0.2.2-5
  47. %description devel
  48. X.Org X11 openchrome video driver XvMC development package.
  49. %endif
  50. %prep
  51. %setup -q -n %{tarball}-%{version}
  52. #%patch0 -p0
  53. %patch13 -p0
  54. %build
  55. %configure --disable-static --enable-dri
  56. make
  57. %install
  58. rm -rf $RPM_BUILD_ROOT
  59. make install DESTDIR=$RPM_BUILD_ROOT
  60. mkdir -p $RPM_BUILD_ROOT%{_datadir}/hwdata/videoaliases
  61. install -m 0644 %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/hwdata/videoaliases/openchrome.xinf
  62. # FIXME: Remove all libtool archives (*.la) from modules directory. This
  63. # should be fixed in upstream Makefile.am or whatever.
  64. find $RPM_BUILD_ROOT -regex ".*\.la$" | xargs rm -f --
  65. %clean
  66. rm -rf $RPM_BUILD_ROOT
  67. %post
  68. if [ -e /etc/X11/xorg.conf ]; then
  69. sed -i "/Driver/s/via/openchrome/" /etc/X11/xorg.conf || :
  70. fi
  71. %files
  72. %defattr(-,root,root,-)
  73. %doc COPYING NEWS README
  74. %{driverdir}/openchrome_drv.so
  75. %{_datadir}/hwdata/videoaliases/openchrome.xinf
  76. %if %{with_xvmc}
  77. %{_libdir}/libchromeXvMC.so.1
  78. %{_libdir}/libchromeXvMC.so.1.0.0
  79. %{_libdir}/libchromeXvMCPro.so.1
  80. %{_libdir}/libchromeXvMCPro.so.1.0.0
  81. %endif
  82. %{_mandir}/man4/openchrome.4.gz
  83. %if %{with_xvmc}
  84. %files devel
  85. %defattr(-,root,root,-)
  86. %{_libdir}/libchromeXvMC.so
  87. %{_libdir}/libchromeXvMCPro.so
  88. %endif
  89. %changelog
  90. * Sat Nov 22 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.3-5
  91. - rebuild with xserver-1.16.2
  92. * Thu Jul 10 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.3-4
  93. - rebuild with xserver-1.15.2
  94. * Tue Jun 17 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.3-3
  95. - change BuildRequires: eudev-libudev-devel instead of libudev-devel
  96. * Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.3-2
  97. - rebuild with VineSeed environment
  98. * Sun Jun 02 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.3-1
  99. - new upstream release
  100. (including security fix for CVE-2013-1994)
  101. * Sun May 05 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.2-1
  102. - new upstream release
  103. * Sun Aug 05 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.0-1
  104. - new upstream release
  105. - add BuildRequires: libudev-devel
  106. * Wed May 30 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.906-1
  107. - new upstream release
  108. - remove Patch1
  109. * Sun Mar 25 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.905-1
  110. - new upstream release
  111. - remove Patch20 (openchrome-0.2.904-I420_Xv_surface_for_CME.patch)
  112. - add Patch1 (openchrome-0.2.905-xv_support_for_vx900.patch) from fedora
  113. * Wed Nov 02 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.904-8
  114. - rebuild with xserver-1.11.1.902
  115. * Thu May 12 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.904-7
  116. - rebuild (missing to replace patch).
  117. * Wed May 11 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.904-6
  118. - update to svn trunk (r925)
  119. - delete Patch1
  120. * Mon Feb 28 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.904-5
  121. - rebuild with xserver-1.10.0
  122. * Sun Nov 07 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.904-4
  123. - rebuild with xserver-1.9.2
  124. * Tue Oct 12 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 0.2.904-3
  125. - update to svn trunk (r854)
  126. - add patch13,20 from fedora
  127. * Sun Mar 28 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.904-2
  128. - rebuild with xserver-1.8rc
  129. * Thu Nov 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.2.904-1
  130. - new upstream release
  131. * Mon Mar 23 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.2.903-2
  132. - rebuild with X server 1.6.0
  133. * Sun Aug 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.2.903-1
  134. - new upstream release
  135. * Sat May 17 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.2.902-1
  136. - initial build for Vine Linux
  137. * Thu Apr 17 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.902-3
  138. - Strip leading /trunk/ from patch #2 and #3.
  139. * Sun Apr 13 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.902-2
  140. - Add patch to properly report driver version in the libpciaccess code path.
  141. - Add patch to properly report chipset revision in the libpciaccess code path.
  142. * Wed Apr 09 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.902-1
  143. - New upstream release.
  144. - Re-enable AGPDMA for K8M800 and VM800, as the drm bug is fixed in kernel
  145. >= 2.6.25rc7 (Patch #1).
  146. * Mon Mar 17 2008 Jesse Keating <jkeating@redhat.com> - 0.2.901-16
  147. - Remove dangerous unversioned obsoletes/provides.
  148. * Sun Mar 16 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-15
  149. - Update to latest svn snapshot (Rev. 553).
  150. * Sun Mar 09 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-14
  151. - Revert to last good version of the libpciaccess patch.
  152. * Sun Mar 09 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-13
  153. - Temporarily revert to old memory detection method. We need something that
  154. works out of the box for F9 Beta.
  155. * Sat Mar 08 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-12
  156. - Yet another revision of the libpciaccess patch.
  157. * Fri Mar 07 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-11
  158. - Fix a typo in libpciaccess patch.
  159. * Fri Mar 07 2008 Adam Jackson <ajax@redhat.com> 0.2.901-10
  160. - Fix -devel subpackage to obsolete via-devel properly.
  161. * Thu Mar 06 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-9
  162. - Fix libpciaccess patch.
  163. * Thu Mar 06 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-8
  164. - Add patch to fix XV on LCD for VM800.
  165. - Improved libpciaccess patch.
  166. * Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.2.901-7
  167. - Autorebuild for GCC 4.3
  168. * Wed Jan 23 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-6
  169. - Add patch to properly set fifo on P4M900.
  170. * Sat Jan 19 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-5
  171. - Add patch to replace xf86memcpy by plain memcpy.
  172. * Thu Jan 10 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-4
  173. - Another try at fixing the libpciaccess patch.
  174. * Mon Jan 07 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-3
  175. - And now fix patch filename...
  176. * Mon Jan 07 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-2
  177. - Fix broken libpciaccess patch.
  178. * Wed Jan 02 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-1
  179. - Update to 0.2.901.
  180. - Remove obsoleted patches.
  181. - Update libpciaccess patch.
  182. * Sat Dec 08 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-9
  183. - Add patch for preliminary libpciaccess support.
  184. * Wed Nov 28 2007 Adam Jackson <ajax@redhat.com> 0.2.900-8
  185. - Obsolete xorg-x11-drv-via. The king is dead, long live the king.
  186. - Munge xorg.conf in %%post to change from via to openchrome.
  187. - Drive-by spec cleanups.
  188. * Fri Nov 02 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-7
  189. - Replace broken VT1625 NTSC patch.
  190. - Add patch to announce as release not as development build.
  191. - First official Fedora build.
  192. * Thu Oct 18 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-6
  193. - Update to official 0.2.900
  194. * Wed Oct 10 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-5
  195. - Update to release_0_3_0 branch rev. 410
  196. - Add VT1625 patch for 720x576 PAL
  197. * Mon Sep 10 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-4
  198. - Update to release_0_3_0 branch rev. 384 plus all changes from experimental
  199. merged back
  200. - Remove upstream patch #2
  201. * Wed Aug 01 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-3
  202. - Update to release_0_3_0 branch rev. 380 (fix a bug with XvMC acceleration)
  203. - Add a patch to allow proper detection of DDR667 (patch #2)
  204. * Mon Jul 16 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-2
  205. - Update to release_0_3_0 branch rev. 373
  206. - Add release notes to %%doc
  207. * Thu Jul 05 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-1
  208. - Initial build (release_0_3_0 branch rev. 365)
  209. - Add some NTSC modes for the VT1625 (patch #1)