libXft-vl.spec 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  2. Summary: X.Org X11 libXft runtime library
  3. Summary(ja): X.Org X11 libXft ランタイムライブラリ
  4. Name: libXft
  5. Version: 2.3.1
  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-proto-devel
  14. BuildRequires: xorg-x11-util-macros
  15. BuildRequires: libX11-devel
  16. BuildRequires: libXrender-devel
  17. BuildRequires: freetype2-devel >= 2.3
  18. BuildRequires: fontconfig-devel
  19. Requires: fontconfig
  20. Obsoletes: XFree86-libs, XOrg-libs
  21. %description
  22. X.Org X11 libXft runtime library
  23. %package devel
  24. Summary: X.Org X11 libXft development package
  25. Summary(ja): X.Org X11 libXft 開発パッケージ
  26. Group: Development/Libraries
  27. Requires(pre): xorg-x11-filesystem
  28. Requires: %{name} = %{version}-%{release}
  29. Requires: xorg-x11-proto-devel
  30. Requires: libXrender-devel
  31. Requires: fontconfig-devel
  32. Requires: freetype2-devel
  33. Obsoletes: XFree86-devel, XOrg-devel
  34. %description devel
  35. X.Org X11 libXft development package
  36. # compat32
  37. %package -n compat32-%{name}
  38. Summary: X.Org X11 libXft runtime library
  39. Summary(ja): X.Org X11 libXft ランタイムライブラリ
  40. Group: System Environment/Libraries
  41. %description -n compat32-%{name}
  42. X.Org X11 libXft runtime library
  43. %package -n compat32-%{name}-devel
  44. Summary: X.Org X11 libXft development package
  45. Summary(ja): X.Org X11 libXft 開発パッケージ
  46. Group: Development/Libraries
  47. Requires(pre): xorg-x11-filesystem
  48. Requires: compat32-%{name} = %{version}-%{release}
  49. Requires: %{name}-devel = %{version}-%{release}
  50. Requires: compat32-libXrender-devel
  51. Requires: compat32-fontconfig-devel
  52. Requires: compat32-freetype2-devel
  53. %description -n compat32-%{name}-devel
  54. X.Org X11 libXft development package
  55. %prep
  56. %setup -q
  57. # Disable static library creation by default.
  58. %define with_static 0
  59. %build
  60. %configure \
  61. %if ! %{with_static}
  62. --disable-static
  63. %endif
  64. make
  65. %install
  66. rm -rf $RPM_BUILD_ROOT
  67. make install DESTDIR=$RPM_BUILD_ROOT
  68. # FIXME: There's no real good reason to ship these anymore, as pkg-config
  69. # is the official way to detect flags, etc. now.
  70. rm -f $RPM_BUILD_ROOT%{_bindir}/xft-config
  71. rm -f $RPM_BUILD_ROOT%{_mandir}/man1/xft-config*
  72. # We intentionally don't ship *.la files
  73. rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
  74. %clean
  75. rm -rf $RPM_BUILD_ROOT
  76. %post -p /sbin/ldconfig
  77. %postun -p /sbin/ldconfig
  78. %post -n compat32-%{name} -p /sbin/ldconfig
  79. %postun -n compat32-%{name} -p /sbin/ldconfig
  80. %files
  81. %defattr(-,root,root,-)
  82. %doc AUTHORS COPYING README ChangeLog NEWS
  83. %{_libdir}/libXft.so.*
  84. %files devel
  85. %defattr(-,root,root,-)
  86. #%{_bindir}/xft-config
  87. %dir %{_includedir}/X11
  88. %dir %{_includedir}/X11/Xft
  89. %{_includedir}/X11/Xft/Xft.h
  90. %{_includedir}/X11/Xft/XftCompat.h
  91. %if %{with_static}
  92. %{_libdir}/libXft.a
  93. %endif
  94. %{_libdir}/libXft.so
  95. %{_libdir}/pkgconfig/xft.pc
  96. #%{_mandir}/man1/xft-config.1.gz
  97. %{_mandir}/man3/Xft.3*
  98. # compat32
  99. %if %{build_compat32}
  100. %files -n compat32-%{name}
  101. %defattr(-,root,root,-)
  102. %{_libdir}/libXft.so.*
  103. %files -n compat32-%{name}-devel
  104. %defattr(-,root,root,-)
  105. %if %{with_static}
  106. %{_libdir}/libXft.a
  107. %endif
  108. %{_libdir}/libXft.so
  109. %{_libdir}/pkgconfig/xft.pc
  110. %endif
  111. %changelog
  112. * Wed Jun 06 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.3.1-1
  113. - new upstream release
  114. * Fri Mar 09 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.3.0-1
  115. - new upstream release
  116. - add BuildRequires: xorg-x11-util-macros
  117. * Sun Nov 07 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.0-1
  118. - new upstream release
  119. * Tue Sep 21 2010 IWAI, Masaharu <iwai@alib.jp> 2.1.14-2
  120. - build with rpm-4.8.1-1 for pkg-config file
  121. * Wed Nov 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.14-1
  122. - new upstream release
  123. * Sun May 03 2009 NAKAMURA Kenta <kenta@vinelinux.org> 2.1.13-2
  124. - added compat32 package for x86_64 arch support
  125. * Fri Jul 04 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.13-1
  126. - new upstream release
  127. * Sun May 18 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.12-1
  128. - new versioning policy
  129. * Mon Jan 14 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.12-0vl1
  130. - initial build for Vine Linux
  131. * Tue Aug 21 2007 Adam Jackson <ajax@redhat.com> - 2.1.12-3
  132. - Rebuild for build id
  133. * Sat Apr 21 2007 Matthias Clasen <mclasen@redhat.com> 2.1.12-2
  134. - Don't install INSTALL
  135. * Fri Jan 05 2007 Adam Jackson <ajax@redhat.com> 2.1.12-1.fc7
  136. - Update to 2.1.12
  137. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - sh: line 0: fg: no job control
  138. - rebuild
  139. * Wed Jun 21 2006 Mike A. Harris <mharris@redhat.com> 2.1.10
  140. - Updated libXft to version 2.1.10
  141. - Specify freetype dependencies as >= 2.1.9-1
  142. - Futureproof builds by adding release number to fontconfig dependencies.
  143. * Fri Jun 09 2006 Mike A. Harris <mharris@redhat.com> 2.1.8.2-4
  144. - Replace "makeinstall" with "make install DESTDIR=..."
  145. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> 2.1.8.2-3.2
  146. - bump again for double-long bug on ppc(64)
  147. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> 2.1.8.2-3.1
  148. - rebuilt for new gcc4.1 snapshot and glibc changes
  149. * Thu Feb 02 2006 Mike A. Harris <mharris@redhat.com> 2.1.8.2-3
  150. - Added missing dependencies to devel subpackage to fix (#176744)
  151. * Mon Jan 23 2006 Mike A. Harris <mharris@redhat.com> 2.1.8.2-2
  152. - Bumped and rebuilt
  153. * Fri Dec 16 2005 Mike A. Harris <mharris@redhat.com> 2.1.8.2-1
  154. - Updated libXft to version 2.1.8.2 from X11R7 RC4
  155. * Tue Dec 13 2005 Mike A. Harris <mharris@redhat.com> 2.1.8.1-1
  156. - Updated libXft to version 2.1.8.1 from X11R7 RC3
  157. - Added "Requires(pre): xorg-x11-filesystem >= 0.99.2-3", to ensure
  158. that /usr/lib/X11 and /usr/include/X11 pre-exist.
  159. - Removed 'x' suffix from manpage directories to match RC3 upstream.
  160. - Added "Requires: libXrender-devel" to -devel subpackage for (#175465)
  161. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
  162. - rebuilt
  163. * Fri Nov 11 2005 Mike A. Harris <mharris@redhat.com> 2.1.8-2
  164. - Changed 'Conflicts: XFree86-devel, xorg-x11-devel' to 'Obsoletes'
  165. - Changed 'Conflicts: XFree86-libs, xorg-x11-libs' to 'Obsoletes'
  166. * Mon Oct 24 2005 Mike A. Harris <mharris@redhat.com> 2.1.8-1
  167. - Updated libXft to version 2.1.8 from X11R7 RC1
  168. * Thu Sep 29 2005 Mike A. Harris <mharris@redhat.com> 2.1.7-5
  169. - Renamed package to remove xorg-x11 from the name due to unanimous decision
  170. between developers.
  171. - Use Fedora Extras style BuildRoot tag.
  172. - Disable static library creation by default.
  173. - Add missing defattr to devel subpackage
  174. - Add missing documentation files to doc macro
  175. - Fix BuildRequires to use new style X library package names
  176. * Sun Sep 04 2005 Mike A. Harris <mharris@redhat.com> 2.1.7-4
  177. - Added "BuildRequires: fontconfig-devel >= 2.2" dependency that was
  178. previously missed. Also added "Requires: fontconfig >= 2.2" runtime
  179. dependency.
  180. - Added missing defattr to devel subpackage.
  181. * Wed Aug 24 2005 Mike A. Harris <mharris@redhat.com> 2.1.7-3
  182. - Added freetype-devel build dependency.
  183. * Tue Aug 23 2005 Mike A. Harris <mharris@redhat.com> 2.1.7-2
  184. - Renamed package to prepend "xorg-x11" to the name for consistency with
  185. the rest of the X11R7 packages.
  186. - Added "Requires: %%{name} = %%{version}-%%{release}" dependency to devel
  187. subpackage to ensure the devel package matches the installed shared libs.
  188. - Added virtual "Provides: lib<name>" and "Provides: lib<name>-devel" to
  189. allow applications to use implementation agnostic dependencies.
  190. - Added post/postun scripts which call ldconfig.
  191. - Added Conflicts with XFree86-libs and xorg-x11-libs to runtime package,
  192. and Conflicts with XFree86-devel and xorg-x11-devel to devel package.
  193. * Mon Aug 22 2005 Mike A. Harris <mharris@redhat.com> 2.1.7-1
  194. - Initial build.