libXvMC-vl.spec 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. Summary: X.Org X11 libXvMC runtime library
  2. Summary(ja): X.Org X11 libXvMC ランタイムライブラリ
  3. Name: libXvMC
  4. Version: 1.0.6
  5. Release: 1%{?_dist_release}
  6. License: MIT/X11
  7. Group: System Environment/Libraries
  8. URL: http://www.x.org
  9. Source0: ftp://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  11. BuildRequires: pkgconfig
  12. BuildRequires: xorg-x11-proto-devel
  13. BuildRequires: libX11-devel
  14. BuildRequires: libXext-devel
  15. BuildRequires: libXv-devel
  16. Obsoletes: XFree86-libs, XOrg-libs
  17. %description
  18. X.Org X11 libXvMC runtime library
  19. %package devel
  20. Summary: X.Org X11 libXvMC development package
  21. Summary(ja): X.Org X11 libXvMC 開発パッケージ
  22. Group: Development/Libraries
  23. Requires(pre): xorg-x11-filesystem
  24. Requires: %{name} = %{version}-%{release}
  25. Requires: libXv-devel, xorg-x11-proto-devel
  26. Obsoletes: XFree86-devel, XOrg-devel
  27. %description devel
  28. X.Org X11 libXvMC development package
  29. %prep
  30. %setup -q
  31. # Disable static library creation by default.
  32. %define with_static 0
  33. %build
  34. %configure \
  35. %if ! %{with_static}
  36. --disable-static
  37. %endif
  38. make
  39. %install
  40. rm -rf $RPM_BUILD_ROOT
  41. make install DESTDIR=$RPM_BUILD_ROOT
  42. # Touch XvMCConfig for rpm to package the ghost file. (#192254)
  43. {
  44. mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/X11
  45. touch $RPM_BUILD_ROOT%{_sysconfdir}/X11/XvMCConfig
  46. }
  47. # We intentionally don't ship *.la files
  48. rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
  49. # remove xml and txt file
  50. rm -rf $RPM_BUILD_ROOT%{_docdir}/%{name}
  51. %clean
  52. rm -rf $RPM_BUILD_ROOT
  53. %post -p /sbin/ldconfig
  54. %postun -p /sbin/ldconfig
  55. %files
  56. %defattr(-,root,root,-)
  57. %doc AUTHORS COPYING README ChangeLog
  58. %{_libdir}/libXvMC.so.1
  59. %{_libdir}/libXvMC.so.1.0.0
  60. %{_libdir}/libXvMCW.so.1
  61. %{_libdir}/libXvMCW.so.1.0.0
  62. %ghost %config(missingok,noreplace) %verify (not md5 size mtime) %{_sysconfdir}/X11/XvMCConfig
  63. %files devel
  64. %defattr(-,root,root,-)
  65. %dir %{_includedir}/X11
  66. %dir %{_includedir}/X11/extensions
  67. %{_includedir}/X11/extensions/XvMClib.h
  68. %if %{with_static}
  69. %{_libdir}/libXvMC.a
  70. %{_libdir}/libXvMCW.a
  71. %endif
  72. %{_libdir}/libXvMC.so
  73. %{_libdir}/libXvMCW.so
  74. %{_libdir}/pkgconfig/xvmc.pc
  75. %changelog
  76. * Sun Nov 07 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.6-1
  77. - new upstream release
  78. * Fri Sep 24 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.5-2
  79. - rebuild with rpm-4.8.1 for pkg-config file
  80. * Wed Nov 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.5-1
  81. - new upstream release
  82. * Tue Mar 31 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-2
  83. - spec in utf-8
  84. * Sun May 18 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-1
  85. - new versioning policy
  86. * Thu Jan 17 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-0vl1
  87. - initial build for Vine Linux
  88. * Tue Aug 21 2007 Adam Jackson <ajax@redhat.com> - 1.0.4-3
  89. - Rebuild for build id
  90. * Sat Apr 21 2007 Matthias Clasen <mclasen@redhat.com> 1.0.4-2
  91. - Don't install INSTALL
  92. * Fri Jan 05 2007 Adam Jackson <ajax@redhat.com> 1.0.4-1
  93. - Update to 1.0.4
  94. * Mon Nov 20 2006 Adam Jackson <ajax@redhat.com> 1.0.3-1
  95. - Update to 1.0.3
  96. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> 1.0.2-2.1
  97. - rebuild
  98. * Mon Jun 05 2006 Mike A. Harris <mharris@redhat.com> 1.0.2-2
  99. - Added "BuildRequires: pkgconfig" for (#193506)
  100. - Replace "makeinstall" with "make install DESTDIR=..."
  101. - Touch XvMCConfig during install phase, and add to file manifest as a ghost
  102. file, so that it is owned by the package if the user creates it. (#192254)
  103. * Thu Apr 27 2006 Adam Jackson <ajackson@redhat.com> 1.0.2-1
  104. - Update to 1.0.2. Drop #180902 patch, already fixed upstream.
  105. * Tue Feb 21 2006 Mike A. Harris <mharris@redhat.com> 1.0.1-3
  106. - Added libXvMC-1.0.1-libXvMC-XConfigDir-fix-bug180902.patch to fix (#180902)
  107. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.0.1-2.2
  108. - bump again for double-long bug on ppc(64)
  109. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.0.1-2.1
  110. - rebuilt for new gcc4.1 snapshot and glibc changes
  111. * Tue Jan 31 2006 Mike A. Harris <mharris@redhat.com> 1.0.1-2
  112. - Added "Requires: libXv-devel, xorg-x11-proto-devel" to fix (#176862)
  113. * Wed Jan 18 2006 Mike A. Harris <mharris@redhat.com> 1.0.1-1
  114. - Updated libXvMC to version 1.0.1 from X11R7.0
  115. * Fri Dec 16 2005 Mike A. Harris <mharris@redhat.com> 1.0.0-1
  116. - Updated libXvMC to version 1.0.0 from X11R7 RC4
  117. * Tue Dec 13 2005 Mike A. Harris <mharris@redhat.com> 0.99.2-1
  118. - Updated libXvMC to version 0.99.2 from X11R7 RC3
  119. - Added "Requires(pre): xorg-x11-filesystem >= 0.99.2-3", to ensure
  120. that /usr/lib/X11 and /usr/include/X11 pre-exist.
  121. - Removed 'x' suffix from manpage directories to match RC3 upstream.
  122. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
  123. - rebuilt
  124. * Fri Nov 11 2005 Mike A. Harris <mharris@redhat.com> 0.99.1-2
  125. - Changed 'Conflicts: XFree86-devel, xorg-x11-devel' to 'Obsoletes'
  126. - Changed 'Conflicts: XFree86-libs, xorg-x11-libs' to 'Obsoletes'
  127. * Mon Oct 24 2005 Mike A. Harris <mharris@redhat.com> 0.99.1-1
  128. - Updated libXvMC to version 0.99.1 from X11R7 RC1
  129. * Thu Sep 29 2005 Mike A. Harris <mharris@redhat.com> 0.99.0-3
  130. - Renamed package to remove xorg-x11 from the name due to unanimous decision
  131. between developers.
  132. - Use Fedora Extras style BuildRoot tag.
  133. - Disable static library creation by default.
  134. - Add missing defattr to devel subpackage
  135. - Add missing documentation files to doc macro
  136. * Tue Aug 23 2005 Mike A. Harris <mharris@redhat.com> 0.99.0-2
  137. - Renamed package to prepend "xorg-x11" to the name for consistency with
  138. the rest of the X11R7 packages.
  139. - Added "Requires: %%{name} = %%{version}-%%{release}" dependency to devel
  140. subpackage to ensure the devel package matches the installed shared libs.
  141. - Added virtual "Provides: lib<name>" and "Provides: lib<name>-devel" to
  142. allow applications to use implementation agnostic dependencies.
  143. - Added post/postun scripts which call ldconfig.
  144. - Added Conflicts with XFree86-libs and xorg-x11-libs to runtime package,
  145. and Conflicts with XFree86-devel and xorg-x11-devel to devel package.
  146. * Mon Aug 22 2005 Mike A. Harris <mharris@redhat.com> 0.99.0-1
  147. - Initial build.