libXcursor-vl.spec 7.3 KB

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