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

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