dblatex-vl.spec 8.2 KB

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