opensp-vl.spec 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. Summary: SGML and XML parser
  2. Summary(ja): SGML, XML パーサ
  3. Name: opensp
  4. Version: 1.5.2
  5. Release: 9%{?_dist_release}
  6. License: MIT
  7. Group: Applications/Text
  8. URL: http://openjade.sourceforge.net/
  9. Source: http://download.sourceforge.net/openjade/OpenSP-%{version}.tar.gz
  10. Patch0: opensp-multilib.patch
  11. Patch1: opensp-nodeids.patch
  12. Patch2: opensp-sigsegv.patch
  13. Patch3: opensp-manpage.patch
  14. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  15. BuildRequires: jadetex
  16. BuildRequires: xmlto
  17. Requires: sgml-common >= 0.5
  18. Vendor: Project Vine
  19. Distribution: Vine Linux
  20. %description
  21. OpenSP is an implementation of the ISO/IEC 8879:1986 standard SGML
  22. (Standard Generalized Markup Language). OpenSP is based on James
  23. Clark's SP implementation of SGML. OpenSP is a command-line
  24. application and a set of components, including a generic API.
  25. %package devel
  26. Summary: Files for developing applications that use OpenSP
  27. Summary(ja): OpenSP を用いるアプリケーションの開発に必要なファイル
  28. Group: Development/Libraries
  29. Requires: %{name} = %{version}-%{release}
  30. %description devel
  31. Header files and libtool library for developing applications that use OpenSP.
  32. %prep
  33. %setup -q -n OpenSP-%{version}
  34. %patch0 -p1 -b .multilib
  35. %patch1 -p1 -b .nodeids
  36. %patch2 -p1 -b .sigsegv
  37. %patch3 -p1 -b .manpage
  38. # convert files to UTF-8
  39. iconv -f latin1 -t utf8 ChangeLog -o ChangeLog.tmp
  40. mv -f ChangeLog.tmp ChangeLog
  41. %build
  42. %configure --disable-dependency-tracking --disable-static --enable-http \
  43. --enable-default-catalog=%{_sysconfdir}/sgml/catalog \
  44. --enable-default-search-path=%{_datadir}/sgml:%{_datadir}/xml
  45. # specify --skip-validation option
  46. make %{?_smp_mflags} XMLTO="%{_bindir}/xmlto --skip-validation"
  47. %install
  48. rm -rf $RPM_BUILD_ROOT
  49. make install DESTDIR=$RPM_BUILD_ROOT
  50. # Get rid of libtool libraries
  51. rm $RPM_BUILD_ROOT%{_libdir}/*.la
  52. # oMy, othis ois osilly.
  53. for file in nsgmls sgmlnorm spam spent sx ; do
  54. ln -s o$file $RPM_BUILD_ROOT%{_bindir}/$file
  55. echo ".so man1/o${file}.1" > $RPM_BUILD_ROOT%{_mandir}/man1/${file}.1
  56. done
  57. #
  58. # Rename sx to sgml2xml.
  59. mv $RPM_BUILD_ROOT%{_bindir}/sx $RPM_BUILD_ROOT%{_bindir}/sgml2xml
  60. mv $RPM_BUILD_ROOT%{_mandir}/man1/{sx,sgml2xml}.1
  61. #
  62. # Clean out (installed) redundant copies of the docs and DTDs.
  63. rm -rf $RPM_BUILD_ROOT%{_docdir}/OpenSP
  64. rm -rf $RPM_BUILD_ROOT%{_datadir}/OpenSP
  65. %find_lang sp5
  66. %check
  67. make check || : # failures as of 1.5.2pre1 :(
  68. %clean
  69. rm -rf $RPM_BUILD_ROOT
  70. %post -p /sbin/ldconfig
  71. %postun -p /sbin/ldconfig
  72. %files -f sp5.lang
  73. %defattr(-,root,root)
  74. %doc doc/*.htm
  75. %doc docsrc/releasenotes.html
  76. %doc AUTHORS BUGS COPYING ChangeLog NEWS README
  77. %doc pubtext/opensp-implied.dcl
  78. %{_bindir}/*
  79. %{_libdir}/libosp.so.*
  80. %{_mandir}/man1/*.1*
  81. %files devel
  82. %defattr(-,root,root)
  83. %{_includedir}/OpenSP/
  84. %{_libdir}/libosp.so
  85. %changelog
  86. * Mon Nov 3 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 1.5.2-9
  87. - converted doc files to UTF
  88. - added XMLTO option to build on current xmlto
  89. - added Patch3 from FC
  90. * Thu Aug 15 2013 Ondrej Vasik <ovasik@redhat.com> - 1.5.2-18
  91. - fix the inconsistency between man page and help (#854941)
  92. * Mon Dec 30 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.5.2-8
  93. - rebuild with VineSeed environment
  94. * Sun Apr 17 2011 Shu KONNO <owa@bg.wakwak.com> 1.5.2-7
  95. - rebuilt with rpm-4.8.1-3
  96. * Fri Feb 19 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.5.2-6
  97. - rebuilt with new toolchain
  98. * Fri Sep 26 2008 Shu KONNO <owa@bg.wakwak.com> 1.5.2-5vl5
  99. - removed *.la
  100. - spec in utf-8
  101. * Sun May 11 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.5.2-4vl5
  102. - added Patch1 and 2 from Fedora
  103. * Thu Jun 21 2007 Ondrej Vasik <ovasik@redhat.com>
  104. - fixed SIGSEGV (bug #245104)
  105. * Mon Feb 12 2007 Tim Waugh <twaugh@redhat.com>
  106. - Give IDs to nodes in the release notes source to prevent releasenotes.html
  107. having multilib conflicts (bug #228320).
  108. * Wed May 09 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.5.2-3vl1
  109. - based on FC6 1.5.2-3.1, built on new toolchain
  110. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.5.2-3.1
  111. - rebuild
  112. * Tue Jun 13 2006 Tim Waugh <twaugh@redhat.com> 1.5.2-3
  113. - Fixed multilib fix (bug #194702).
  114. * Fri May 26 2006 Tim Waugh <twaugh@redhat.com> 1.5.2-2
  115. - Fixed multilib devel conflicts (bug #192741).
  116. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.5.2-1.2
  117. - bump again for double-long bug on ppc(64)
  118. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.5.2-1.1
  119. - rebuilt for new gcc4.1 snapshot and glibc changes
  120. * Thu Jan 5 2006 Tim Waugh <twaugh@redhat.com> 1.5.2-1
  121. - 1.5.2.
  122. * Wed Dec 14 2005 Tim Waugh <twaugh@redhat.com> 1.5.1-2
  123. - Backported patch from 1.5.2pre1 to fix ArcEngine crash.
  124. * Tue Dec 13 2005 Tim Waugh <twaugh@redhat.com> 1.5.1-1
  125. - Back down to 1.5.1 for now.
  126. - Fixes for GCC4.1.
  127. * Sun Dec 4 2005 Ville Skytt辰 <ville.skytta at iki.fi> - 1.5.2-0.1.pre1
  128. - Fix build dependencies.
  129. - Require exact version of main package in -devel.
  130. - Build with dependency tracking disabled.
  131. - Add %%{_datadir}/xml to default search path.
  132. - Run test suite during build.
  133. - Add URL tag.
  134. - Use %%find_lang.
  135. - Cosmetic improvements.
  136. * Tue Nov 29 2005 Terje Bless <link@pobox.com> 1.5.2-0.pre1
  137. - New package OpenSP.