debian/0000755000000000000000000000000011412226174007166 5ustar debian/source/0000755000000000000000000000000011412226174010466 5ustar debian/source/format0000644000000000000000000000001411407561611011676 0ustar 3.0 (quilt) debian/README.source0000644000000000000000000000030111407561611011341 0ustar latexml for Debian ------------------ debian/control0000644000000000000000000000171111407605541010574 0ustar Source: latexml Section: tex Priority: extra Maintainer: Atsuhito KOHDA Build-Depends: debhelper (>= 7.0.50~), libparse-recdescent-perl Standards-Version: 3.8.4 Homepage: http://dlmf.nist.gov/LaTeXML/ Package: latexml Architecture: all Depends: ${perl:Depends}, ${misc:Depends}, libparse-recdescent-perl, libxml2, libxml-libxml-perl, libxslt1.1, libxml-libxslt-perl, imagemagick, perlmagick Description: LaTeX to XML Converter latexml is a program, written in Perl, that attempts to faithfully mimic TeX's behaviour, but produces XML instead of dvi. The document model of the target XML makes explicit the model implied by LaTeX. . The processing and model are both extensible; you can define the mapping between TeX constructs and the XML fragments to be created. A postprocessor, latexmlpost converts this XML into other formats such as HTML or XHTML, with options to convert the math into MathML (currently only presentation) or images. debian/docs0000644000000000000000000000000711407561611010040 0ustar README debian/copyright0000644000000000000000000000413711412224571011125 0ustar This work was packaged for Debian by: Atsuhito KOHDA on Wed, 09 Jun 2010 08:15:06 +0900 It was downloaded from http://dlmf.nist.gov/LaTeXML/ Upstream Author: Bruce Miller License: Public domain software, produced as part of work done by the United States Government & not subject to copyright in the US. LaTeXML contains files with different copyright. * t/theorem/amstheorem.tex %%% author = "American Mathematical Society", %%% copyright = "Copyright 1996, 2004 American Mathematical Society, %%% all rights reserved. Copying of this file is %%% authorized only if either: %%% (1) you make absolutely no changes to your copy, %%% including name; OR %%% (2) if you do make changes, you first rename it %%% to some other name.", License: This work may be distributed and/or modified under the conditions of the LaTeX Project Public License, either version 1.3c of this license or (at your option) any later version. The latest version of this license is in http://www.latex-project.org/lppl.txt and version 1.3c or later is part of all distributions of LaTeX version 2005/12/01 or later. Under lib/LaTeXML/Package/ * revsymb.sty.ltxml revtex.cls.ltxml amscd.sty.ltxml amsthm.sty.ltxml # | Copyright (c) 2006 arXMLiv group | # # | Released under the GNU Public License | # * revtex.sty.ltxml # | Copyright (c) 2008 arXMLiv group | # # | Released under the Public Domain | # # | Catalin David c.david@jacobs-university.de | # * revtex4_support.sty.ltxml revtex4.cls.ltxml revtex4.sty.ltxml revtex3_support.sty.ltxml # | Copyright (c) 2008 arXMLiv group | # # | Catalin David | # # | Released to Public Domain | # The Debian packaging is: Copyright (C) 2010 Atsuhito KOHDA and is licensed under the GPL version 3, see "/usr/share/common-licenses/GPL-3". debian/changelog0000644000000000000000000000113511412226014011031 0ustar latexml (0.7.0-1) unstable; urgency=low * Initial release. (Closes: #585702) * Added comments on the files with different copyright in debian/copyright. + t/theorem/amstheorem.tex (generated from thmtest.tex) This file is used only for test latexml. + files under lib/LaTeXML/Package/. There are three kind of groups. - revsymb.sty.ltxml revtex.cls.ltxml amscd.sty.ltxml amsthm.sty.ltxml - revtex.sty.ltxml - revtex4_support.sty.ltxml revtex4.cls.ltxml revtex4.sty.ltxml revtex3_support.sty.ltxml -- Atsuhito KOHDA Wed, 09 Jun 2010 08:15:06 +0900 debian/README.Debian0000644000000000000000000000065711407561611011241 0ustar latexml for Debian ------------------ To convert a TeX file, mydoc.tex to XML, and then to XHTML+MathML would be: latexml --dest=mydoc.xml mydoc latexmlpost -dest=somewhere/mydoc.xhtml mydoc.xml This will carry out a default transformation into XHTML+MathML. If you give the destination extension with html, it will generate HTML+images. -- Atsuhito KOHDA Wed, 09 Jun 2010 08:15:06 +0900 debian/rules0000755000000000000000000000347411407605561010263 0ustar #!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # This file was originally written by Joey Hess and Craig Small. # As a special exception, when this file is copied by dh-make into a # dh-make output file, you may use that output file without restriction. # This special exception was added by Craig Small in version 0.37 of dh-make. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 build: build-stamp build-stamp: dh_testdir # Add here commands to compile the package. perl Makefile.PL $(MAKE) touch build-stamp clean: dh_testdir dh_testroot rm -f build-stamp # Add here commands to clean up after the build process. if [ -f Makefile ]; then $(MAKE) clean ;fi rm -f Makefile.old dh_clean install: build dh_testdir dh_testroot dh_prep dh_installdirs # Add here commands to install the package into debian/. $(MAKE) INSTALLDIRS=vendor VENDORPREFIX=`pwd`/debian/`dh_listpackages`/usr \ INSTALLTEXMFDIR=`pwd`/debian/`dh_listpackages`/usr/share/texmf/tex/latex/latexml install find debian/latexml -type f -name .packlist | xargs rm -f # Build architecture-independent files here. binary-indep: build install dh_testdir dh_testroot dh_installchangelogs dh_installdocs dh_installexamples # dh_installmenu # dh_installdebconf # dh_installlogrotate # dh_installemacsen # dh_installcatalogs # dh_installpam # dh_installmime # dh_installinit # dh_installcron # dh_installinfo # dh_installwm # dh_installudev # dh_lintian # dh_bugfiles # dh_undocumented dh_installman dh_link dh_compress dh_fixperms dh_perl dh_installdeb dh_gencontrol dh_md5sums dh_builddeb # Build architecture-dependent files here. binary-arch: build install # We have nothing to do by default. binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install debian/compat0000644000000000000000000000000211407561611010366 0ustar 7