libXcursor-vl.spec 7.5 KB

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