libXft-vl.spec 7.9 KB

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