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

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