libXcursor-vl.spec 7.6 KB

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