dblatex-vl.spec 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
  2. Name: dblatex
  3. Version: 0.3.2
  4. Release: 3%{?_dist_release}
  5. Summary: DocBook to LaTeX/ConTeXt Publishing
  6. BuildArch: noarch
  7. Group: Applications/Publishing
  8. License: GPLv2+
  9. URL: http://dblatex.sourceforge.net/
  10. Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2
  11. #Source1: http://docbook.sourceforge.net/release/xsl/current/COPYING
  12. Source1: COPYING-docbook-xsl
  13. Patch0: dblatex-0.2.7-external-which.patch
  14. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
  15. BuildRequires: python-devel
  16. BuildRequires: python-which
  17. BuildRequires: libxslt docbook-dtds ImageMagick
  18. ## Need epstopdf, fig2dev
  19. BuildRequires: texlive-collection-fontutils
  20. BuildRequires: transfig
  21. ##BuildRequires: tex(latex)
  22. ##BuildRequires: tex(xetex)
  23. BuildRequires: texlive-common >= 2009
  24. ## appendix.sty, changebar.sty, footmisc.sty, multirow.sty,
  25. ## overpic.sty, subfigure.sty, titlesec.sty
  26. BuildRequires: texlive-collection-latexextra
  27. ## stmaryrd.sty
  28. BuildRequires: texlive-collection-mathextra
  29. BuildRequires: texlive-collection-htmlxml
  30. Requires: libxslt docbook-dtds ImageMagick
  31. ##Requires: tex(xetex)
  32. Requires: texlive-common >= 2009
  33. Requires: texlive-collection-latexextra
  34. Requires: transfig
  35. BuildRequires: texlive-collection-mathextra
  36. ##Requires: passivetex
  37. Requires: texlive-collection-htmlxml
  38. ## $ rpm -qf --qf "%{name}\n" $(kpsewhich $(grep "usepackage" $(rpm -ql dblatex | grep sty) | sed -e "s,.*{,," -e "s,}.*$,.sty,")) | sort | uniq
  39. Requires: texlive-collection-langcjk texlive-collection-bibtexextra
  40. %description
  41. dblatex is a program that transforms your SGML/XMLDocBook
  42. documents to DVI, PostScript or PDF by translating them
  43. into pure LaTeX as a first process. MathML 2.0 markups
  44. are supported, too. It started as a clone of DB2LaTeX.
  45. Authors:
  46. --------
  47. Benoît Guillon <marsgui at users dot sourceforge dot net>
  48. Andreas Hoenen <andreas dot hoenen at arcor dot de>
  49. %prep
  50. %setup -q
  51. %patch0 -p1 -b .external-which
  52. %__rm -rf lib/contrib
  53. %build
  54. %{__python} setup.py build
  55. %install
  56. %__rm -rf $RPM_BUILD_ROOT
  57. #%{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT
  58. %{__python} setup.py install --root $RPM_BUILD_ROOT
  59. # these are already in tetex-latex:
  60. for file in bibtopic.sty enumitem.sty ragged2e.sty passivetex/ xelatex/; do
  61. %__rm -rf $RPM_BUILD_ROOT%{_datadir}/dblatex/latex/misc/$file
  62. done
  63. %__mkdir_p $RPM_BUILD_ROOT%{_datadir}/texmf/tex/latex/dblatex
  64. for file in ` find $RPM_BUILD_ROOT%{_datadir}/dblatex/latex/ -name '*.sty' ` ; do
  65. %__mv $file $RPM_BUILD_ROOT%{_datadir}/texmf/tex/latex/dblatex/`basename $file` || exit 1;
  66. done
  67. ## also move .xetex files
  68. for file in ` find $RPM_BUILD_ROOT%{_datadir}/dblatex/latex/ -name '*.xetex' ` ; do
  69. %__mv $file $RPM_BUILD_ROOT%{_datadir}/texmf/tex/latex/dblatex/`basename $file` || exit 1;
  70. done
  71. %__rm -rf $RPM_BUILD_ROOT%{_datadir}/dblatex/latex/{misc,contrib/example,style}
  72. %__mkdir_p $RPM_BUILD_ROOT%{_sysconfdir}/dblatex
  73. # shipped in %%docs
  74. %__rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/
  75. %__sed -e 's/\r//' xsl/mathml2/README > README-xsltml
  76. touch -r xsl/mathml2/README README-xsltml
  77. %__cp -p %{SOURCE1} COPYING-docbook-xsl
  78. %clean
  79. %__rm -rf $RPM_BUILD_ROOT
  80. %files
  81. %defattr(-,root,root,-)
  82. %{_mandir}/man1/dblatex.1*
  83. %doc COPYRIGHT docs/manual.pdf COPYING-docbook-xsl README-xsltml
  84. %{python_sitelib}/dbtexmf/
  85. %{python_sitelib}/dblatex-*.egg-info
  86. %{_bindir}/dblatex
  87. %{_datadir}/dblatex/
  88. %{_datadir}/texmf/tex/latex/dblatex/
  89. %dir %{_sysconfdir}/dblatex
  90. %post -p /usr/bin/texhash
  91. %postun -p /usr/bin/texhash
  92. %changelog
  93. * Fri Dec 28 2012 Munehiro Yamamoto <munepi@vinelinux.org> 0.3.2-3
  94. - added R: texlive-collection-langcjk texlive-collection-bibtexextra [Vine Linux 0002511]
  95. * Sat Feb 25 2012 Munehiro Yamamoto <munepi@vinelinux.org> 0.3.2-2
  96. - rebuild with Python 2.7.2
  97. * Fri Jan 20 2012 Munehiro Yamamoto <munepi@vinelinux.org> 0.3.2-1
  98. - new upstream release
  99. * Thu Jul 14 2011 Munehiro Yamamoto <munepi@vinelinux.org> - 0.3-1
  100. - initial build
  101. * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3-3
  102. - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
  103. * Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.3-2
  104. - Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
  105. * Mon Apr 12 2010 Alex Lancaster <alexlan[AT]fedoraproject org> - 0.3-1
  106. - Update to 0.3
  107. - Cleanup spec: drop some unnecessary conditionals for old releases (< F-11)
  108. * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.10-3
  109. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  110. * Sun May 10 2009 Neal Becker <ndbecker2@gmail.com> - 0.2.10-2
  111. - remove dblatex-0.2.9-xetex.patch
  112. * Sun May 10 2009 Neal Becker <ndbecker2@gmail.com> - 0.2.10-1
  113. - Update to 0.2.10
  114. * Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.9-4
  115. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  116. * Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.2.9-3
  117. - Rebuild for Python 2.6
  118. * Fri Jul 4 2008 Alex Lancaster <alexlan[AT]fedoraproject org> - 0.2.9-2
  119. - BR: texlive-xetex -> tex(xetex) for F-10 and later
  120. * Thu Jun 12 2008 Alex Lancaster <alexlan[AT]fedoraproject org> - 0.2.9-1
  121. - Update to latest upstream (0.2.9) (#448953)
  122. - Remove some redundant Requires and BuildRequires (passivetex pulls
  123. in the tetex/tex requires, python dep added automatically)
  124. - For F-9+ BR on tex(latex) and texlive-xetex, fix the installation
  125. scripts to install extra new files.
  126. - Add patch from dblatex mailing list for better handling of a missing
  127. xetex.
  128. - Conditionally add .egg-info file only if F9+ to allow for unified
  129. spec file
  130. * Sun Dec 16 2007 Patrice Dumas <pertusus@free.fr> - 0.2.8-2.1
  131. - don't install in docbook directory, it is a link to a versioned
  132. directory and may break upon docbook update (#425251,#389231)
  133. * Sun Nov 25 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.8-1
  134. - Update to 0.2.8
  135. * Mon Nov 12 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-16
  136. - convert spec to utf8
  137. - change to gplv2+
  138. * Mon Nov 12 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-15
  139. - Add copyright info
  140. * Mon Nov 5 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-14
  141. - Req tetex-fonts for texhash
  142. - Fix post, postun
  143. * Sun Nov 4 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-13
  144. - Add texhash
  145. * Sun Nov 4 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-12
  146. - Fix xsl link
  147. * Sat Nov 3 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-12
  148. - Various fixes from pertusus@free.fr:
  149. - rm iconv stuff
  150. - simplify docs installation
  151. * Fri Nov 2 2007 <ndbecker2@gmail.com> - 0.2.7-11
  152. - Various minor fixes
  153. * Thu Nov 1 2007 <ndbecker2@gmail.com> - 0.2.7-10
  154. - Add some reqs and brs
  155. - rmdir /usr/share/dblatex/latex/{misc,contrib/example,style}
  156. * Sat Oct 27 2007 <ndbecker2@gmail.com> - 0.2.7-9
  157. - link /usr/share/dblatex/xsl -> /usr/share/sgml/docbook/xsl-stylesheets/dblatex
  158. - rmdir /usr/share/dblatex/latex/{misc,specs,style}
  159. - own /etc/dblatex
  160. - change $(...) -> `...`
  161. - Preserve timestamps on iconv
  162. * Mon Oct 15 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-9
  163. - mv all .sty files to datadir/texmf/tex/latex/dblatex
  164. - Add Conflicts tetex-tex4ht
  165. - mv all xsl stuff to datadir/sgml/docbook/xsl-stylesheets/dblatex/
  166. * Mon Oct 15 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-8
  167. - rm redundant latex files
  168. * Tue Sep 25 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-8
  169. - Fixed encodings in docs directory
  170. - Install docs at correct location
  171. * Fri Sep 21 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-7
  172. - Revert back to GPLv2
  173. - untabify
  174. * Fri Sep 21 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-6
  175. - Fix source URL
  176. - Install all docs
  177. - Tabify
  178. * Thu Sep 20 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-5
  179. - Add BR tetex-latex
  180. * Thu Sep 20 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-4
  181. - Add BR tetex, ImageMagick
  182. * Thu Sep 20 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-3
  183. - Add BR libxslt
  184. * Wed Sep 19 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-2
  185. - Add BR python-devel
  186. * Fri Sep 7 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-1
  187. - Initial