libXcursor-vl.spec 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  2. Summary: X.Org X11 libXcursor runtime library
  3. Summary(ja): X.Org X11 libXcursor ランタイムライブラリ
  4. Name: libXcursor
  5. Version: 1.1.10
  6. Release: 2%{?_dist_release}
  7. License: MIT/X11
  8. Group: System Environment/Libraries
  9. URL: http://www.x.org
  10. Source0: ftp://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  12. BuildRequires: pkgconfig
  13. BuildRequires: xorg-x11-util-macros
  14. BuildRequires: xorg-x11-proto-devel
  15. BuildRequires: libX11-devel
  16. BuildRequires: libXfixes-devel
  17. BuildRequires: libXrender-devel
  18. Obsoletes: XFree86-libs, XOrg-libs
  19. %description
  20. X.Org X11 libXcursor runtime library
  21. %package devel
  22. Summary: X.Org X11 libXcursor development package
  23. Summary(ja): X.Org X11 libXcursor 開発パッケージ
  24. Group: Development/Libraries
  25. Requires(pre): xorg-x11-filesystem
  26. Requires: %{name} = %{version}-%{release}
  27. Requires: pkgconfig
  28. Requires: xorg-x11-proto-devel
  29. Obsoletes: XFree86-devel, XOrg-devel
  30. %description devel
  31. X.Org X11 libXcursor development package
  32. # compat32
  33. %package -n compat32-%{name}
  34. Summary: X.Org X11 libXcursor runtime library
  35. Summary(ja): X.Org X11 libXcursor ランタイムライブラリ
  36. Group: System Environment/Libraries
  37. %description -n compat32-%{name}
  38. X.Org X11 libXcursor runtime library
  39. %package -n compat32-%{name}-devel
  40. Summary: X.Org X11 libXcursor development package
  41. Summary(ja): X.Org X11 libXcursor 開発パッケージ
  42. Group: Development/Libraries
  43. Requires(pre): xorg-x11-filesystem
  44. Requires: compat32-%{name} = %{version}-%{release}
  45. Requires: %{name}-devel = %{version}-%{release}
  46. %description -n compat32-%{name}-devel
  47. X.Org X11 libXcursor development package
  48. %prep
  49. %setup -q
  50. # Disable static library creation by default.
  51. %define with_static 0
  52. %build
  53. #export CFLAGS="$RPM_OPT_FLAGS -DICONDIR=\"/usr/share/icons\""
  54. %configure \
  55. %if ! %{with_static}
  56. --disable-static
  57. %endif
  58. make
  59. %install
  60. rm -rf $RPM_BUILD_ROOT
  61. make install DESTDIR=$RPM_BUILD_ROOT
  62. mkdir -p $RPM_BUILD_ROOT/usr/share/icons/default
  63. cat <<EOF > $RPM_BUILD_ROOT/usr/share/icons/default/index.theme
  64. [Icon Theme]
  65. Inherits=Vine
  66. EOF
  67. # We intentionally don't ship *.la files
  68. rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
  69. %clean
  70. rm -rf $RPM_BUILD_ROOT
  71. %post -p /sbin/ldconfig
  72. %postun -p /sbin/ldconfig
  73. %post -n compat32-%{name} -p /sbin/ldconfig
  74. %postun -n compat32-%{name} -p /sbin/ldconfig
  75. %files
  76. %defattr(-,root,root,-)
  77. %doc AUTHORS COPYING README ChangeLog
  78. %{_libdir}/libXcursor.so.1
  79. %{_libdir}/libXcursor.so.1.0.*
  80. %dir %{_datadir}/icons/default
  81. %config(noreplace) %verify(not md5 size mtime) %{_datadir}/icons/default/index.theme
  82. %files devel
  83. %defattr(-,root,root,-)
  84. %dir %{_includedir}/X11
  85. %dir %{_includedir}/X11/Xcursor
  86. %{_includedir}/X11/Xcursor/Xcursor.h
  87. %if %{with_static}
  88. %{_libdir}/libXcursor.a
  89. %endif
  90. %{_libdir}/libXcursor.so
  91. %{_libdir}/pkgconfig/xcursor.pc
  92. #%dir %{_mandir}/man3x
  93. %{_mandir}/man3/Xcursor*.3*
  94. # compat32
  95. %if %{build_compat32}
  96. %files -n compat32-%{name}
  97. %defattr(-,root,root,-)
  98. %{_libdir}/libXcursor.so.1
  99. %{_libdir}/libXcursor.so.1.0.*
  100. %files -n compat32-%{name}-devel
  101. %defattr(-,root,root,-)
  102. %if %{with_static}
  103. %{_libdir}/libXcursor.a
  104. %endif
  105. %{_libdir}/libXcursor.so
  106. %{_libdir}/pkgconfig/xcursor.pc
  107. %endif
  108. %changelog
  109. * Fri Sep 24 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.10-2
  110. - rebuild with rpm-4.8.1 for pkg-config file
  111. * Tue Nov 17 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.10-1
  112. - new upstream release
  113. * Sun May 03 2009 NAKAMURA Kenta <kenta@vinelinux.org> 1.1.9-3
  114. - added compat32 package for x86_64 arch support
  115. * Wed Oct 08 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.9-2
  116. - set default cursor theme to Vine
  117. - spec in utf8
  118. * Sun May 18 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.9-1
  119. - new versioning policy
  120. * Mon Jan 14 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.9-0vl1
  121. - initial build for Vine Linux
  122. * Mon Sep 24 2007 Adam Jackson <ajax@redhat.com> 1.1.9-1
  123. - libXcursor 1.1.9
  124. * Wed Aug 22 2007 Adam Jackson <ajax@redhat.com> - 1.1.8-3
  125. - Rebuild for PPC toolchain bug
  126. * Sat Jul 7 2007 Matthias Clasen <mclasen@redhat.com> 1.1.8-3
  127. - Don't own /usr/share/icons
  128. - Require pkgconfig in -devel
  129. * Sat Apr 21 2007 Matthias Clasen <mclasen@redhat.com> 1.1.8-2
  130. - Don't install INSTALL
  131. * Mon Nov 20 2006 Adam Jackson <ajax@redhat.com> 1.1.8-1
  132. - Update to 1.1.8
  133. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> 1.1.7-1.1
  134. - rebuild
  135. * Wed Jun 07 2006 Mike A. Harris <mharris@redhat.com> 1.1.7-1
  136. - Update to 1.1.7 from X11R7.1
  137. * Wed Jun 07 2006 Mike A. Harris <mharris@redhat.com> 1.1.6-2
  138. - Added "BuildRequires: xorg-x11-proto-devel"
  139. - Added "Requires: xorg-x11-proto-devel" to devel package, needed by xcursor.pc
  140. - Replace "makeinstall" with "make install DESTDIR=..."
  141. - Remove package ownership of mandir/libdir/etc.
  142. * Thu Apr 27 2006 Adam Jackson <ajackson@redhat.com> 1.1.6-1
  143. - Update to 1.1.6
  144. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> 1.1.5.2-2.2
  145. - bump again for double-long bug on ppc(64)
  146. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> 1.1.5.2-2.1
  147. - rebuilt for new gcc4.1 snapshot and glibc changes
  148. * Mon Jan 23 2006 Mike A. Harris <mharris@redhat.com> 1.1.5.2-2
  149. - Bumped and rebuilt
  150. * Fri Dec 16 2005 Mike A. Harris <mharris@redhat.com> 1.1.5.2-1
  151. - Updated libXcursor to version 1.1.5.2 from X11R7 RC4
  152. * Tue Dec 13 2005 Mike A. Harris <mharris@redhat.com> 1.1.5.1-1
  153. - Updated libXcursor to version 1.1.5.1 from X11R7 RC3
  154. - Added "Requires(pre): xorg-x11-filesystem >= 0.99.2-3", to ensure
  155. that /usr/lib/X11 and /usr/include/X11 pre-exist.
  156. - Removed 'x' suffix from manpage directories to match RC3 upstream.
  157. - Added default index.theme file to set BlueCurve as the default cursor theme
  158. to fix bug (#175532).
  159. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
  160. - rebuilt
  161. * Fri Nov 11 2005 Mike A. Harris <mharris@redhat.com> 1.1.5-1
  162. - Updated libXcursor to version 1.1.5 from X11R7 RC2
  163. - Changed 'Conflicts: XFree86-devel, xorg-x11-devel' to 'Obsoletes'
  164. - Changed 'Conflicts: XFree86-libs, xorg-x11-libs' to 'Obsoletes'
  165. * Mon Oct 24 2005 Mike A. Harris <mharris@redhat.com> 1.1.4-1
  166. - Updated libXcursor to version 1.1.4 from X11R7 RC1
  167. * Thu Sep 29 2005 Mike A. Harris <mharris@redhat.com> 1.1.3-3
  168. - Renamed package to remove xorg-x11 from the name due to unanimous decision
  169. between developers.
  170. - Use Fedora Extras style BuildRoot tag.
  171. - Disable static library creation by default.
  172. - Add missing defattr to devel subpackage
  173. - Add missing documentation files to doc macro
  174. * Tue Aug 23 2005 Mike A. Harris <mharris@redhat.com> 1.1.3-2
  175. - Renamed package to prepend "xorg-x11" to the name for consistency with
  176. the rest of the X11R7 packages.
  177. - Added "Requires: %%{name} = %%{version}-%%{release}" dependency to devel
  178. subpackage to ensure the devel package matches the installed shared libs.
  179. - Added virtual "Provides: lib<name>" and "Provides: lib<name>-devel" to
  180. allow applications to use implementation agnostic dependencies.
  181. - Added post/postun scripts which call ldconfig.
  182. - Added Conflicts with XFree86-libs and xorg-x11-libs to runtime package,
  183. and Conflicts with XFree86-devel and xorg-x11-devel to devel package.
  184. * Mon Aug 22 2005 Mike A. Harris <mharris@redhat.com> 1.1.3-1
  185. - Initial build.