libXdmcp-vl.spec 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  2. Summary: X.Org X11 libXdmcp runtime library
  3. Summary(ja): X.Org X11 libXdmcp ランタイムライブラリ
  4. Name: libXdmcp
  5. Version: 1.1.0
  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. Obsoletes: XFree86-libs, XOrg-libs
  15. Vendor: Project Vine
  16. Distribution: Vine Linux
  17. Packager: Daisuke SUZUKI <daisuke@linux.or.jp>
  18. %description
  19. X.Org X11 libXdmcp runtime library
  20. %package devel
  21. Summary: X.Org X11 libXdmcp development package
  22. Group: Development/Libraries
  23. Requires(pre): xorg-x11-filesystem
  24. Requires: %{name} = %{version}-%{release}
  25. Requires: xorg-x11-proto-devel
  26. Obsoletes: XFree86-devel, XOrg-devel
  27. %description devel
  28. X.Org X11 libXdmcp development package
  29. # compat32
  30. %package -n compat32-%{name}
  31. Summary: X.Org X11 libXdmcp runtime library
  32. Summary(ja): X.Org X11 libXdmcp ランタイムライブラリ
  33. Group: System Environment/Libraries
  34. %description -n compat32-%{name}
  35. X.Org X11 libXdmcp runtime library
  36. %package -n compat32-%{name}-devel
  37. Summary: X.Org X11 libXdmcp development package
  38. Group: Development/Libraries
  39. Requires(pre): xorg-x11-filesystem
  40. Requires: compat32-%{name} = %{version}-%{release}
  41. Requires: %{name}-devel = %{version}-%{release}
  42. %description -n compat32-%{name}-devel
  43. X.Org X11 libXdmcp development package
  44. %prep
  45. %setup -q
  46. # Disable static library creation by default.
  47. %define with_static 0
  48. %build
  49. %configure \
  50. %if ! %{with_static}
  51. --disable-static
  52. %endif
  53. make
  54. %install
  55. rm -rf $RPM_BUILD_ROOT
  56. make install DESTDIR=$RPM_BUILD_ROOT
  57. # We intentionally don't ship *.la files
  58. rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
  59. # remove xml and txt file
  60. rm -rf $RPM_BUILD_ROOT%{_docdir}/%{name}
  61. %clean
  62. rm -rf $RPM_BUILD_ROOT
  63. %post -p /sbin/ldconfig
  64. %postun -p /sbin/ldconfig
  65. %post -n compat32-%{name} -p /sbin/ldconfig
  66. %postun -n compat32-%{name} -p /sbin/ldconfig
  67. %files
  68. %defattr(-,root,root,-)
  69. %doc AUTHORS COPYING README ChangeLog
  70. %{_libdir}/libXdmcp.so.6
  71. %{_libdir}/libXdmcp.so.6.0.0
  72. %files devel
  73. %defattr(-,root,root,-)
  74. %dir %{_includedir}/X11/
  75. %{_includedir}/X11/Xdmcp.h
  76. %if %{with_static}
  77. %{_libdir}/libXdmcp.a
  78. %endif
  79. %{_libdir}/libXdmcp.so
  80. %{_libdir}/pkgconfig/xdmcp.pc
  81. # compat32
  82. %if %{build_compat32}
  83. %files -n compat32-%{name}
  84. %defattr(-,root,root,-)
  85. %{_libdir}/libXdmcp.so.6
  86. %{_libdir}/libXdmcp.so.6.0.0
  87. %files -n compat32-%{name}-devel
  88. %defattr(-,root,root,-)
  89. %if %{with_static}
  90. %{_libdir}/libXdmcp.a
  91. %endif
  92. %{_libdir}/libXdmcp.so
  93. %{_libdir}/pkgconfig/xdmcp.pc
  94. %endif
  95. %changelog
  96. * Sun Nov 07 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.0-1
  97. - new upstream release
  98. * Fri Sep 24 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.3-2
  99. - rebuild with rpm-4.8.1 for pkg-config file
  100. - fix typo
  101. * Tue Nov 17 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.3-1
  102. - new upstream release
  103. * Sun May 03 2009 NAKAMURA Kenta <kenta@vinelinux.org> 1.0.2-3
  104. - added compat32 package for x86_64 arch support
  105. * Tue Mar 31 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.2-2
  106. - spec in utf-8
  107. * Sun May 18 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.2-1
  108. - new versioning policy
  109. * Sun Jan 13 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.2-0vl1
  110. - initial build for Vine Linux
  111. * Tue Aug 21 2007 Adam Jackson <ajax@redhat.com> - 1.0.2-4
  112. - Rebuild for build id
  113. * Sat Apr 21 2007 Matthias Clasen <mclasen@redhat.com> 1.0.2-3
  114. - Don't install INSTALL
  115. * Mon Nov 20 2006 Adam Jackson <ajax@redhat.com> 1.0.2-2.fc7
  116. - libXdmcp-1.0.2-namespace-pollution.patch: Hide Xalloc and friends from the
  117. dynamic linker.
  118. * Mon Nov 20 2006 Adam Jackson <ajax@redhat.com> 1.0.2-1
  119. - Update to 1.0.2
  120. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> 1.0.1-2.1
  121. - rebuild
  122. * Wed Jun 07 2006 Mike A. Harris <mharris@redhat.com> 1.0.1-2
  123. - Added "BuildRequires: xorg-x11-proto-devel"
  124. - Added "Requires: xorg-x11-proto-devel" to devel package, needed by xdmcp.pc
  125. - Replace "makeinstall" with "make install DESTDIR=..."
  126. - Remove package ownership of mandir/libdir/etc.
  127. * Thu Apr 27 2006 Adam Jackson <ajackson@redhat.com> 1.0.1-1
  128. - Update to 1.0.1
  129. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.0.0-2.2
  130. - bump again for double-long bug on ppc(64)
  131. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.0.0-2.1
  132. - rebuilt for new gcc4.1 snapshot and glibc changes
  133. * Mon Jan 23 2006 Mike A. Harris <mharris@redhat.com> 1.0.0-2
  134. - Bumped and rebuilt
  135. * Fri Dec 16 2005 Mike A. Harris <mharris@redhat.com> 1.0.0-1
  136. - Updated libXdmcp to version 1.0.0 from X11R7 RC4
  137. * Tue Dec 13 2005 Mike A. Harris <mharris@redhat.com> 0.99.2-1
  138. - Updated libXdmcp to version 0.99.2 from X11R7 RC3
  139. - Added "Requires(pre): xorg-x11-filesystem >= 0.99.2-3", to ensure
  140. that /usr/lib/X11 and /usr/include/X11 pre-exist.
  141. - Removed 'x' suffix from manpage directories to match RC3 upstream.
  142. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
  143. - rebuilt
  144. * Fri Nov 11 2005 Mike A. Harris <mharris@redhat.com> 0.99.1-2
  145. - Changed 'Conflicts: XFree86-devel, xorg-x11-devel' to 'Obsoletes'
  146. - Changed 'Conflicts: XFree86-libs, xorg-x11-libs' to 'Obsoletes'
  147. * Fri Oct 21 2005 Mike A. Harris <mharris@redhat.com> 0.99.1-1
  148. - Update to libXdmcp-0.99.1 from X11R7 RC1 release.
  149. * Thu Sep 29 2005 Mike A. Harris <mharris@redhat.com> 0.99.0-3
  150. - Renamed package to remove xorg-x11 from the name due to unanimous decision
  151. between developers.
  152. - Use Fedora Extras style BuildRoot tag.
  153. - Disable static library creation by default.
  154. - Add missing defattr to devel subpackage
  155. - Add missing documentation files to doc macro
  156. * Tue Aug 23 2005 Mike A. Harris <mharris@redhat.com> 0.99.0-2
  157. - Renamed package to prepend "xorg-x11" to the name for consistency with
  158. the rest of the X11R7 packages.
  159. - Added "Requires: %%{name} = %%{version}-%%{release}" dependency to devel
  160. subpackage to ensure the devel package matches the installed shared libs.
  161. - Added virtual "Provides: lib<name>" and "Provides: lib<name>-devel" to
  162. allow applications to use implementation agnostic dependencies.
  163. - Added post/postun scripts which call ldconfig.
  164. - Added Conflicts with XFree86-libs and xorg-x11-libs to runtime package,
  165. and Conflicts with XFree86-devel and xorg-x11-devel to devel package.
  166. * Mon Aug 22 2005 Mike A. Harris <mharris@redhat.com> 0.99.0-1
  167. - Initial build.