Ticket #46896: LaTeXML-1.8.1.Portfile.diff
File LaTeXML-1.8.1.Portfile.diff, 2.2 KB (added by mojca (Mojca Miklavec), 10 years ago) |
---|
-
Portfile
4 4 # Portfile for LaTeXML 5 5 #====================================================================== 6 6 PortSystem 1.0 7 PortGroup perl5 1.0 7 8 8 9 name LaTeXML 9 version 0.8.0 10 revision 1 10 version 0.8.1 11 11 categories tex 12 12 maintainers nist.gov:bruce.miller 13 13 description LaTeXML converts TeX to XML/HTML/MathML 14 long_description \ 15 LaTeXML converts TeX to XML, including HTML, XHTML, ePub with MathML. 14 long_description LaTeXML converts TeX to XML, including HTML, XHTML, ePub with MathML. 16 15 17 16 # Written in Perl, but it is an application, not just modules 18 PortGroup perl5 1.0 19 perl5.branches 5.8 5.10 5.12 5.14 5.16 5.18 5.20 20 perl5.setup ${name} ${version} 17 perl5.require_variant yes 18 perl5.conflict_variants yes 19 perl5.branches 5.16 5.18 5.20 20 perl5.create_variants ${perl5.branches} 21 perl5.setup ${name} ${version} 21 22 perl5.link_binaries_suffix 22 23 23 24 homepage http://dlmf.nist.gov/LaTeXML/ … … 24 25 25 26 platforms darwin 26 27 master_sites ${homepage}/releases/ 27 checksums rmd160 cfafc6f4f5e276543333f907a1ec0db3c25e424f \ 28 sha256 a495019f2828f0734e9e41f0398f6c8d60ba6a934d4ccad4fea7d588ab060388 28 29 checksums rmd160 312f0a3d74db75a9210220ab8ea4a1c3f95c6f71 \ 30 sha256 ea264e1c11210e219a46b7699a578d8632c7bbb6eaea5b06d2eb094122cbab2f 31 29 32 # Use: 30 33 # openssl rmd160 LaTeXML-0.8.0.tar.gz 31 34 # openssl sha256 LaTeXML-0.8.0.tar.gz … … 32 35 33 36 #============================================================ 34 37 # Dependencies 35 if {${perl5.major} ne ""} { 36 depends_lib-append \ 38 depends_lib-append \ 37 39 port:p${perl5.major}-archive-zip \ 38 40 port:p${perl5.major}-file-which \ 39 41 port:p${perl5.major}-getopt-long \ … … 47 49 port:p${perl5.major}-xml-libxml \ 48 50 port:p${perl5.major}-xml-libxslt \ 49 51 port:p${perl5.major}-perlmagick 50 } 52 51 53 # Also requires: DB_File, Pod::Parser and Test::More 52 54 # but those should be in Perl's core modules. 53 55