libXft-vl.spec 7.1 KB

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