libXcursor-vl.spec 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  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.13
  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. * Fri Mar 09 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.13-1
  112. - new upstream release
  113. * Sun Aug 14 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.12-1
  114. - new upstream release
  115. * Sun Nov 07 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.11-1
  116. - new upstream release
  117. * Fri Sep 24 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.10-2
  118. - rebuild with rpm-4.8.1 for pkg-config file
  119. * Tue Nov 17 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.10-1
  120. - new upstream release
  121. * Sun May 03 2009 NAKAMURA Kenta <kenta@vinelinux.org> 1.1.9-3
  122. - added compat32 package for x86_64 arch support
  123. * Wed Oct 08 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.9-2
  124. - set default cursor theme to Vine
  125. - spec in utf8
  126. * Sun May 18 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.9-1
  127. - new versioning policy
  128. * Mon Jan 14 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.9-0vl1
  129. - initial build for Vine Linux
  130. * Mon Sep 24 2007 Adam Jackson <ajax@redhat.com> 1.1.9-1
  131. - libXcursor 1.1.9
  132. * Wed Aug 22 2007 Adam Jackson <ajax@redhat.com> - 1.1.8-3
  133. - Rebuild for PPC toolchain bug
  134. * Sat Jul 7 2007 Matthias Clasen <mclasen@redhat.com> 1.1.8-3
  135. - Don't own /usr/share/icons
  136. - Require pkgconfig in -devel
  137. * Sat Apr 21 2007 Matthias Clasen <mclasen@redhat.com> 1.1.8-2
  138. - Don't install INSTALL
  139. * Mon Nov 20 2006 Adam Jackson <ajax@redhat.com> 1.1.8-1
  140. - Update to 1.1.8
  141. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> 1.1.7-1.1
  142. - rebuild
  143. * Wed Jun 07 2006 Mike A. Harris <mharris@redhat.com> 1.1.7-1
  144. - Update to 1.1.7 from X11R7.1
  145. * Wed Jun 07 2006 Mike A. Harris <mharris@redhat.com> 1.1.6-2
  146. - Added "BuildRequires: xorg-x11-proto-devel"
  147. - Added "Requires: xorg-x11-proto-devel" to devel package, needed by xcursor.pc
  148. - Replace "makeinstall" with "make install DESTDIR=..."
  149. - Remove package ownership of mandir/libdir/etc.
  150. * Thu Apr 27 2006 Adam Jackson <ajackson@redhat.com> 1.1.6-1
  151. - Update to 1.1.6
  152. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> 1.1.5.2-2.2
  153. - bump again for double-long bug on ppc(64)
  154. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> 1.1.5.2-2.1
  155. - rebuilt for new gcc4.1 snapshot and glibc changes
  156. * Mon Jan 23 2006 Mike A. Harris <mharris@redhat.com> 1.1.5.2-2
  157. - Bumped and rebuilt
  158. * Fri Dec 16 2005 Mike A. Harris <mharris@redhat.com> 1.1.5.2-1
  159. - Updated libXcursor to version 1.1.5.2 from X11R7 RC4
  160. * Tue Dec 13 2005 Mike A. Harris <mharris@redhat.com> 1.1.5.1-1
  161. - Updated libXcursor to version 1.1.5.1 from X11R7 RC3
  162. - Added "Requires(pre): xorg-x11-filesystem >= 0.99.2-3", to ensure
  163. that /usr/lib/X11 and /usr/include/X11 pre-exist.
  164. - Removed 'x' suffix from manpage directories to match RC3 upstream.
  165. - Added default index.theme file to set BlueCurve as the default cursor theme
  166. to fix bug (#175532).
  167. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
  168. - rebuilt
  169. * Fri Nov 11 2005 Mike A. Harris <mharris@redhat.com> 1.1.5-1
  170. - Updated libXcursor to version 1.1.5 from X11R7 RC2
  171. - Changed 'Conflicts: XFree86-devel, xorg-x11-devel' to 'Obsoletes'
  172. - Changed 'Conflicts: XFree86-libs, xorg-x11-libs' to 'Obsoletes'
  173. * Mon Oct 24 2005 Mike A. Harris <mharris@redhat.com> 1.1.4-1
  174. - Updated libXcursor to version 1.1.4 from X11R7 RC1
  175. * Thu Sep 29 2005 Mike A. Harris <mharris@redhat.com> 1.1.3-3
  176. - Renamed package to remove xorg-x11 from the name due to unanimous decision
  177. between developers.
  178. - Use Fedora Extras style BuildRoot tag.
  179. - Disable static library creation by default.
  180. - Add missing defattr to devel subpackage
  181. - Add missing documentation files to doc macro
  182. * Tue Aug 23 2005 Mike A. Harris <mharris@redhat.com> 1.1.3-2
  183. - Renamed package to prepend "xorg-x11" to the name for consistency with
  184. the rest of the X11R7 packages.
  185. - Added "Requires: %%{name} = %%{version}-%%{release}" dependency to devel
  186. subpackage to ensure the devel package matches the installed shared libs.
  187. - Added virtual "Provides: lib<name>" and "Provides: lib<name>-devel" to
  188. allow applications to use implementation agnostic dependencies.
  189. - Added post/postun scripts which call ldconfig.
  190. - Added Conflicts with XFree86-libs and xorg-x11-libs to runtime package,
  191. and Conflicts with XFree86-devel and xorg-x11-devel to devel package.
  192. * Mon Aug 22 2005 Mike A. Harris <mharris@redhat.com> 1.1.3-1
  193. - Initial build.