libXp-vl.spec 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. # libXp will be removed from future release.
  2. %define without_devel 0
  3. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  4. Summary: X.Org X11 libXp runtime library
  5. Summary(ja): X.Org X11 libXp ランタイムライブラリ
  6. Name: libXp
  7. Version: 1.0.2
  8. Release: 2%{?_dist_release}
  9. License: MIT/X11
  10. Group: System Environment/Libraries
  11. URL: http://www.x.org
  12. Source0: ftp://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2
  13. Patch0: libXp-1.0.2-add-proto-files.patch
  14. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  15. BuildRequires: pkgconfig
  16. BuildRequires: xorg-x11-util-macros
  17. BuildRequires: xorg-x11-proto-devel
  18. BuildRequires: libX11-devel
  19. BuildRequires: libXext-devel
  20. BuildRequires: libXau-devel
  21. BuildRequires: libtool automake autoconf gettext
  22. Obsoletes: XFree86-libs, XOrg-libs
  23. Vendor: Project Vine
  24. Distribution: Vine Linux
  25. Packager: Takemikaduchi
  26. %description
  27. X.Org X11 libXp runtime library
  28. %package devel
  29. Summary: X.Org X11 libXp development package
  30. Summary(ja): X.Org X11 libXp 開発パッケージ
  31. Group: Development/Libraries
  32. Requires(pre): xorg-x11-filesystem
  33. Requires: libXau-devel
  34. Requires: libXext-devel
  35. Requires: %{name} = %{version}-%{release}
  36. BuildRequires: xorg-x11-proto-devel
  37. Obsoletes: XFree86-devel, XOrg-devel
  38. %description devel
  39. X.Org X11 libXp development package
  40. # compat32
  41. %package -n compat32-%{name}
  42. Summary: X.Org X11 libXp runtime library
  43. Summary(ja): X.Org X11 libXp ランタイムライブラリ
  44. Group: System Environment/Libraries
  45. Requires: %{name} = %{version}-%{release}
  46. %description -n compat32-%{name}
  47. X.Org X11 libXp runtime library
  48. %package -n compat32-%{name}-devel
  49. Summary: X.Org X11 libXp development package
  50. Summary(ja): X.Org X11 libXp 開発パッケージ
  51. Group: Development/Libraries
  52. Requires(pre): xorg-x11-filesystem
  53. Requires: %{name}-devel = %{version}-%{release}
  54. Requires: compat32-%{name} = %{version}-%{release}
  55. Requires: compat32-libXau-devel
  56. %description -n compat32-%{name}-devel
  57. X.Org X11 libXp development package
  58. %prep
  59. %setup -q
  60. %patch0 -p1 -b .add-proto-files
  61. # Disable static library creation by default.
  62. %define with_static 0
  63. %build
  64. # There is a patch that changes configure.ac, so we have
  65. # run autoreconf
  66. autoreconf -if
  67. CPPFLAGS="$CPPFLAGS -I$RPM_BUILD_ROOT%{_includedir}"
  68. export CPPFLAGS
  69. autoreconf -v --install
  70. %configure \
  71. %if ! %{with_static}
  72. --disable-static
  73. %endif
  74. make
  75. %install
  76. rm -rf $RPM_BUILD_ROOT
  77. make install DESTDIR=$RPM_BUILD_ROOT
  78. %if %{without_devel}
  79. {
  80. rm -f $RPM_BUILD_ROOT%{_libdir}/libXp.a
  81. rm -f $RPM_BUILD_ROOT%{_libdir}/libXp.so
  82. rm -rf $RPM_BUILD_ROOT%{_libdir}/pkgconfig
  83. rm -rf $RPM_BUILD_ROOT%{_mandir}
  84. }
  85. %endif
  86. # Don't encourage people to use the deprecated Xprint APIs.
  87. rm -rf $RPM_BUILD_ROOT%{_mandir}
  88. # We intentionally don't ship *.la files
  89. rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
  90. %clean
  91. rm -rf $RPM_BUILD_ROOT
  92. %post -p /sbin/ldconfig
  93. %postun -p /sbin/ldconfig
  94. %post -n compat32-%{name} -p /sbin/ldconfig
  95. %postun -n compat32-%{name} -p /sbin/ldconfig
  96. %files
  97. %defattr(-,root,root,-)
  98. %doc AUTHORS COPYING README INSTALL ChangeLog
  99. %{_libdir}/libXp.so.6
  100. %{_libdir}/libXp.so.6.2.0
  101. %if ! %{without_devel}
  102. %files devel
  103. %defattr(-,root,root,-)
  104. %if %{with_static}
  105. %{_libdir}/libXp.a
  106. %endif
  107. %{_includedir}/X11/extensions/Print.h
  108. %{_includedir}/X11/extensions/Printstr.h
  109. %{_libdir}/pkgconfig/printproto.pc
  110. # FIXME: Should we remove the shared lib during deprecation, so that things
  111. # that keep linking to libXp, will always get the static lib and not break
  112. # when we eventually drop libXp?
  113. %{_libdir}/libXp.so
  114. %{_libdir}/pkgconfig/xp.pc
  115. #%dir %{_mandir}/man3x
  116. #%{_mandir}/man3/*.3x*
  117. %endif
  118. # compat32
  119. %if %{build_compat32}
  120. %files -n compat32-%{name}
  121. %defattr(-,root,root,-)
  122. %{_libdir}/libXp.so.6
  123. %{_libdir}/libXp.so.6.2.0
  124. %if ! %{without_devel}
  125. %files -n compat32-%{name}-devel
  126. %defattr(-,root,root,-)
  127. %if %{with_static}
  128. %{_libdir}/libXp.a
  129. %endif
  130. # FIXME: Should we remove the shared lib during deprecation, so that things
  131. # that keep linking to libXp, will always get the static lib and not break
  132. # when we eventually drop libXp?
  133. %{_libdir}/libXp.so
  134. %endif
  135. %endif
  136. %changelog
  137. * Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.2-2
  138. - rebuild with VineSeed environment
  139. * Sun Jun 02 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.2-1
  140. - new upstream release
  141. (including security fix for CVE-2013-2062)
  142. - update Patch0 (libXp-1.0.2-add-proto-files.patch)
  143. * Sat Jan 22 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.1-1
  144. - new upstream release
  145. - update Patch0 (libXp-1.0.1-add-proto-files.patch)
  146. - add Requires: libXext-devel (devel package)
  147. * Fri Sep 24 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.0-4
  148. - rebuild with rpm-4.8.1 for pkg-config file
  149. * Mon Jul 20 2009 NAKAMURA Kenta <kenta@vinelinux.org> 1.0.0-3
  150. - added compat32 package for x86_64 arch support
  151. * Tue Mar 31 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.0-2
  152. - spec in utf-8
  153. * Sun May 18 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.0-1
  154. - new versioning policy
  155. * Mon Jan 14 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.0-0vl1
  156. - initial build for Vine Linux
  157. * Tue Aug 21 2007 Adam Jackson <ajax@redhat.com> - 1.0.0-8
  158. - Rebuild for build id
  159. * Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 1.0.0-8
  160. - rebuilt for unwind info generation, broken in gcc-4.1.1-21
  161. * Wed Sep 20 2006 Soren Sandmann <sandmann@redhat.com> - 1.0.0.7
  162. - Add requires for the devel package on libXau-devel (173530)
  163. * Fri Aug 18 2006 Soren Sandmann <sandmann@redhat.com> - 1.0.0-6
  164. - Add the proto files directly instead of attempting to build a separate
  165. tarball. Also remove last traces of printproto-1.0.3.tar.gz
  166. * Fri Aug 18 2006 Soren Sandmann <sandmann@redhat.com>
  167. - Remove printproto source.
  168. * Fri Aug 18 2006 Soren Sandmann <sandmann@redhat.com> - 1.0.0-6
  169. - BuildRequire autoconf automake libtool gettext
  170. * Fri Aug 18 2006 Soren Sandmann <sandmann@redhat.com> - 1.0.0-6
  171. - Run autoreconf to make sure changes to configure.ac take effect
  172. * Fri Aug 18 2006 Soren Sandmann <sandmann@redhat.com> - 1.0.0-6
  173. - Add patch to not check for printproto.pc. (Since it's part of this
  174. package now, it isn't installed at the time libXp is configured).
  175. * Thu Aug 17 2006 Soren Sandmann <sandmann@redhat.com> - 1.0.0-5
  176. - Moved Print.h, Printstr.h and printproto.pc into the devel package here
  177. (they used to be in xorg-x11-proto-devel).
  178. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - sh: line 0: fg: no job control
  179. - rebuild
  180. * Mon Jul 10 2006 Mike A. Harris <mharris@redhat.com> 1.0.0-4
  181. - Renamed libXp_deprecated rpm macro to "with_devel" to avoid confusion. This
  182. library is still deprecated, we just decided to remove the word "deprecated"
  183. from the package name for library naming consistency.
  184. * Fri Jun 09 2006 Mike A. Harris <mharris@redhat.com> 1.0.0-3
  185. - Replace "makeinstall" with "make install DESTDIR=..."
  186. - Added "Requires: xorg-x11-proto-devel" to devel for xp.pc
  187. - Remove package ownership of mandir/libdir/etc.
  188. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> 1.0.0-2.2
  189. - bump again for double-long bug on ppc(64)
  190. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> 1.0.0-2.1
  191. - rebuilt for new gcc4.1 snapshot and glibc changes
  192. * Mon Jan 23 2006 Mike A. Harris <mharris@redhat.com> 1.0.0-2
  193. - Bumped and rebuilt
  194. * Fri Dec 16 2005 Mike A. Harris <mharris@redhat.com> 1.0.0-1
  195. - Updated libXp to version 1.0.0 from X11R7 RC4
  196. * Tue Dec 13 2005 Mike A. Harris <mharris@redhat.com> 0.99.2-1
  197. - Updated libXp to version 0.99.2 from X11R7 RC3
  198. - Added "Requires(pre): xorg-x11-filesystem >= 0.99.2-3", to ensure
  199. that /usr/lib/X11 and /usr/include/X11 pre-exist.
  200. - Removed 'x' suffix from manpage directories to match RC3 upstream.
  201. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
  202. - rebuilt
  203. * Wed Nov 16 2005 Mike A. Harris <mharris@redhat.com> 0.99.1-3
  204. - Added "Obsoletes: xorg-x11-deprecated-libs" to runtime package, and
  205. "Obsoletes: xorg-x11-deprecated-libs-devel" to devel package.
  206. * Fri Nov 11 2005 Mike A. Harris <mharris@redhat.com> 0.99.1-2
  207. - Changed 'Conflicts: XFree86-devel, xorg-x11-devel' to 'Obsoletes'
  208. - Changed 'Conflicts: XFree86-libs, xorg-x11-libs' to 'Obsoletes'
  209. * Mon Oct 24 2005 Mike A. Harris <mharris@redhat.com> 0.99.1-1
  210. - Updated libXp to version 0.99.1 from X11R7 RC1
  211. * Thu Sep 29 2005 Mike A. Harris <mharris@redhat.com> 0.99.0-3
  212. - Renamed package to remove xorg-x11 from the name due to unanimous decision
  213. between developers.
  214. - Use Fedora Extras style BuildRoot tag.
  215. - Disable static library creation by default.
  216. - Add missing defattr to devel subpackage
  217. - Add missing documentation files to doc macro
  218. * Tue Aug 23 2005 Mike A. Harris <mharris@redhat.com> 0.99.0-2
  219. - Renamed package to prepend "xorg-x11" to the name for consistency with
  220. the rest of the X11R7 packages.
  221. - Added "Requires: %%{name} = %%{version}-%%{release}" dependency to devel
  222. subpackage to ensure the devel package matches the installed shared libs.
  223. - Added virtual "Provides: lib<name>" and "Provides: lib<name>-devel" to
  224. allow applications to use implementation agnostic dependencies.
  225. - Added post/postun scripts which call ldconfig.
  226. - Added Conflicts with XFree86-libs and xorg-x11-libs to runtime package,
  227. and Conflicts with XFree86-devel and xorg-x11-devel to devel package.
  228. * Mon Aug 22 2005 Mike A. Harris <mharris@redhat.com> 0.99.0-1
  229. - Initial build.