|
@@ -0,0 +1,234 @@
|
|
|
+%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
|
|
+
|
|
|
+Name: dblatex
|
|
|
+Version: 0.3
|
|
|
+Release: 1%{?_dist_release}
|
|
|
+Summary: DocBook to LaTeX/ConTeXt Publishing
|
|
|
+BuildArch: noarch
|
|
|
+Group: Applications/Publishing
|
|
|
+License: GPLv2+
|
|
|
+URL: http://dblatex.sourceforge.net/
|
|
|
+Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2
|
|
|
+#Source1: http://docbook.sourceforge.net/release/xsl/current/COPYING
|
|
|
+Source1: COPYING-docbook-xsl
|
|
|
+Patch0: dblatex-0.2.7-external-which.patch
|
|
|
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
+
|
|
|
+BuildRequires: python-devel
|
|
|
+BuildRequires: python-which
|
|
|
+BuildRequires: libxslt docbook-dtds ImageMagick
|
|
|
+## Need epstopdf, fig2dev
|
|
|
+BuildRequires: texlive-collection-fontutils
|
|
|
+BuildRequires: transfig
|
|
|
+##BuildRequires: tex(latex)
|
|
|
+##BuildRequires: tex(xetex)
|
|
|
+BuildRequires: texlive-common >= 2009
|
|
|
+## appendix.sty, changebar.sty, footmisc.sty, multirow.sty,
|
|
|
+## overpic.sty, subfigure.sty, titlesec.sty
|
|
|
+BuildRequires: texlive-collection-latexextra
|
|
|
+## stmaryrd.sty
|
|
|
+BuildRequires: texlive-collection-mathextra
|
|
|
+BuildRequires: texlive-collection-htmlxml
|
|
|
+Requires: libxslt docbook-dtds ImageMagick
|
|
|
+##Requires: tex(xetex)
|
|
|
+Requires: texlive-common >= 2009
|
|
|
+Requires: texlive-collection-latexextra
|
|
|
+Requires: transfig
|
|
|
+BuildRequires: texlive-collection-mathextra
|
|
|
+##Requires: passivetex
|
|
|
+Requires: texlive-collection-htmlxml
|
|
|
+
|
|
|
+%description
|
|
|
+dblatex is a program that transforms your SGML/XMLDocBook
|
|
|
+documents to DVI, PostScript or PDF by translating them
|
|
|
+into pure LaTeX as a first process. MathML 2.0 markups
|
|
|
+are supported, too. It started as a clone of DB2LaTeX.
|
|
|
+
|
|
|
+Authors:
|
|
|
+--------
|
|
|
+ Benoît Guillon <marsgui at users dot sourceforge dot net>
|
|
|
+ Andreas Hoenen <andreas dot hoenen at arcor dot de>
|
|
|
+
|
|
|
+
|
|
|
+%prep
|
|
|
+%setup -q
|
|
|
+%patch0 -p1 -b .external-which
|
|
|
+%__rm -rf lib/contrib
|
|
|
+
|
|
|
+%build
|
|
|
+%{__python} setup.py build
|
|
|
+
|
|
|
+
|
|
|
+%install
|
|
|
+%__rm -rf $RPM_BUILD_ROOT
|
|
|
+#%{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT
|
|
|
+%{__python} setup.py install --root $RPM_BUILD_ROOT
|
|
|
+# these are already in tetex-latex:
|
|
|
+for file in bibtopic.sty enumitem.sty ragged2e.sty passivetex/ xelatex/; do
|
|
|
+ %__rm -rf $RPM_BUILD_ROOT%{_datadir}/dblatex/latex/misc/$file
|
|
|
+done
|
|
|
+
|
|
|
+%__mkdir_p $RPM_BUILD_ROOT%{_datadir}/texmf/tex/latex/dblatex
|
|
|
+for file in ` find $RPM_BUILD_ROOT%{_datadir}/dblatex/latex/ -name '*.sty' ` ; do
|
|
|
+ %__mv $file $RPM_BUILD_ROOT%{_datadir}/texmf/tex/latex/dblatex/`basename $file`;
|
|
|
+done
|
|
|
+
|
|
|
+## also move .xetex files
|
|
|
+for file in ` find $RPM_BUILD_ROOT%{_datadir}/dblatex/latex/ -name '*.xetex' ` ; do
|
|
|
+ %__mv $file $RPM_BUILD_ROOT%{_datadir}/texmf/tex/latex/dblatex/`basename $file`;
|
|
|
+done
|
|
|
+
|
|
|
+%__rm -rf $RPM_BUILD_ROOT%{_datadir}/dblatex/latex/{misc,contrib/example,style}
|
|
|
+
|
|
|
+%__mkdir_p $RPM_BUILD_ROOT%{_sysconfdir}/dblatex
|
|
|
+# shipped in %%docs
|
|
|
+%__rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/
|
|
|
+
|
|
|
+%__sed -e 's/\r//' xsl/mathml2/README > README-xsltml
|
|
|
+touch -r xsl/mathml2/README README-xsltml
|
|
|
+%__cp -p %{SOURCE1} COPYING-docbook-xsl
|
|
|
+
|
|
|
+
|
|
|
+%clean
|
|
|
+%__rm -rf $RPM_BUILD_ROOT
|
|
|
+
|
|
|
+
|
|
|
+%files
|
|
|
+%defattr(-,root,root,-)
|
|
|
+%{_mandir}/man1/dblatex.1*
|
|
|
+%doc COPYRIGHT docs/manual.pdf COPYING-docbook-xsl README-xsltml
|
|
|
+%{python_sitelib}/dbtexmf/
|
|
|
+%{python_sitelib}/dblatex-*.egg-info
|
|
|
+%{_bindir}/dblatex
|
|
|
+%{_datadir}/dblatex/
|
|
|
+%{_datadir}/texmf/tex/latex/dblatex/
|
|
|
+%dir %{_sysconfdir}/dblatex
|
|
|
+
|
|
|
+%post -p /usr/bin/texhash
|
|
|
+
|
|
|
+%postun -p /usr/bin/texhash
|
|
|
+
|
|
|
+%changelog
|
|
|
+* Thu Jul 14 2011 Munehiro Yamamoto <munepi@vinelinux.org> - 0.3-1
|
|
|
+- initial build
|
|
|
+
|
|
|
+* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3-3
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
+
|
|
|
+* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.3-2
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
+
|
|
|
+* Mon Apr 12 2010 Alex Lancaster <alexlan[AT]fedoraproject org> - 0.3-1
|
|
|
+- Update to 0.3
|
|
|
+- Cleanup spec: drop some unnecessary conditionals for old releases (< F-11)
|
|
|
+
|
|
|
+* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.10-3
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
+
|
|
|
+* Sun May 10 2009 Neal Becker <ndbecker2@gmail.com> - 0.2.10-2
|
|
|
+- remove dblatex-0.2.9-xetex.patch
|
|
|
+
|
|
|
+* Sun May 10 2009 Neal Becker <ndbecker2@gmail.com> - 0.2.10-1
|
|
|
+- Update to 0.2.10
|
|
|
+
|
|
|
+* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.9-4
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
+
|
|
|
+* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.2.9-3
|
|
|
+- Rebuild for Python 2.6
|
|
|
+
|
|
|
+* Fri Jul 4 2008 Alex Lancaster <alexlan[AT]fedoraproject org> - 0.2.9-2
|
|
|
+- BR: texlive-xetex -> tex(xetex) for F-10 and later
|
|
|
+
|
|
|
+* Thu Jun 12 2008 Alex Lancaster <alexlan[AT]fedoraproject org> - 0.2.9-1
|
|
|
+- Update to latest upstream (0.2.9) (#448953)
|
|
|
+- Remove some redundant Requires and BuildRequires (passivetex pulls
|
|
|
+ in the tetex/tex requires, python dep added automatically)
|
|
|
+- For F-9+ BR on tex(latex) and texlive-xetex, fix the installation
|
|
|
+ scripts to install extra new files.
|
|
|
+- Add patch from dblatex mailing list for better handling of a missing
|
|
|
+ xetex.
|
|
|
+- Conditionally add .egg-info file only if F9+ to allow for unified
|
|
|
+ spec file
|
|
|
+
|
|
|
+* Sun Dec 16 2007 Patrice Dumas <pertusus@free.fr> - 0.2.8-2.1
|
|
|
+- don't install in docbook directory, it is a link to a versioned
|
|
|
+ directory and may break upon docbook update (#425251,#389231)
|
|
|
+
|
|
|
+* Sun Nov 25 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.8-1
|
|
|
+- Update to 0.2.8
|
|
|
+
|
|
|
+* Mon Nov 12 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-16
|
|
|
+- convert spec to utf8
|
|
|
+- change to gplv2+
|
|
|
+
|
|
|
+* Mon Nov 12 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-15
|
|
|
+- Add copyright info
|
|
|
+
|
|
|
+* Mon Nov 5 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-14
|
|
|
+- Req tetex-fonts for texhash
|
|
|
+- Fix post, postun
|
|
|
+
|
|
|
+* Sun Nov 4 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-13
|
|
|
+- Add texhash
|
|
|
+
|
|
|
+* Sun Nov 4 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-12
|
|
|
+- Fix xsl link
|
|
|
+
|
|
|
+* Sat Nov 3 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-12
|
|
|
+- Various fixes from pertusus@free.fr:
|
|
|
+- rm iconv stuff
|
|
|
+- simplify docs installation
|
|
|
+
|
|
|
+* Fri Nov 2 2007 <ndbecker2@gmail.com> - 0.2.7-11
|
|
|
+- Various minor fixes
|
|
|
+
|
|
|
+* Thu Nov 1 2007 <ndbecker2@gmail.com> - 0.2.7-10
|
|
|
+- Add some reqs and brs
|
|
|
+- rmdir /usr/share/dblatex/latex/{misc,contrib/example,style}
|
|
|
+
|
|
|
+* Sat Oct 27 2007 <ndbecker2@gmail.com> - 0.2.7-9
|
|
|
+- link /usr/share/dblatex/xsl -> /usr/share/sgml/docbook/xsl-stylesheets/dblatex
|
|
|
+- rmdir /usr/share/dblatex/latex/{misc,specs,style}
|
|
|
+- own /etc/dblatex
|
|
|
+- change $(...) -> `...`
|
|
|
+- Preserve timestamps on iconv
|
|
|
+
|
|
|
+* Mon Oct 15 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-9
|
|
|
+- mv all .sty files to datadir/texmf/tex/latex/dblatex
|
|
|
+- Add Conflicts tetex-tex4ht
|
|
|
+- mv all xsl stuff to datadir/sgml/docbook/xsl-stylesheets/dblatex/
|
|
|
+
|
|
|
+* Mon Oct 15 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-8
|
|
|
+- rm redundant latex files
|
|
|
+
|
|
|
+* Tue Sep 25 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-8
|
|
|
+- Fixed encodings in docs directory
|
|
|
+- Install docs at correct location
|
|
|
+
|
|
|
+* Fri Sep 21 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-7
|
|
|
+- Revert back to GPLv2
|
|
|
+- untabify
|
|
|
+
|
|
|
+* Fri Sep 21 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-6
|
|
|
+- Fix source URL
|
|
|
+- Install all docs
|
|
|
+- Tabify
|
|
|
+
|
|
|
+* Thu Sep 20 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-5
|
|
|
+- Add BR tetex-latex
|
|
|
+
|
|
|
+* Thu Sep 20 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-4
|
|
|
+- Add BR tetex, ImageMagick
|
|
|
+
|
|
|
+* Thu Sep 20 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-3
|
|
|
+- Add BR libxslt
|
|
|
+
|
|
|
+* Wed Sep 19 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-2
|
|
|
+- Add BR python-devel
|
|
|
+
|
|
|
+* Fri Sep 7 2007 Neal Becker <ndbecker2@gmail.com> - 0.2.7-1
|
|
|
+- Initial
|
|
|
+
|
|
|
+
|
|
|
+
|