dblatex-vl.spec 7.5 KB

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