1 | # $Id: Portfile 32794 2008-01-13 12:47:01Z ryandesign@macports.org $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name tth |
---|
5 | version 3.80 |
---|
6 | categories textproc print |
---|
7 | maintainers nomaintainer |
---|
8 | description a TeX to HTML transaltor |
---|
9 | long_description \ |
---|
10 | TTH translates TEX, the predominant mark-up language for \ |
---|
11 | expressing mathematics, into HTML, the language of \ |
---|
12 | world-wide-web browsers. It thereby enables mathematical \ |
---|
13 | documents to be made available on the web. Document structure, \ |
---|
14 | using either the Plain or LaTeX macro packages, is also \ |
---|
15 | translated and incorporated in the form of hyperlinks. |
---|
16 | platforms darwin freebsd |
---|
17 | homepage http://hutchinson.belmont.ma.us/tth/ |
---|
18 | |
---|
19 | dist_subdir ${name}/${version} |
---|
20 | |
---|
21 | master_sites http://hutchinson.belmont.ma.us/tth/tth-noncom/ |
---|
22 | checksums md5 54d0a9fbbe67d7f198288a8cf2c32ad3 |
---|
23 | distname ${name}_C |
---|
24 | extract.suffix .tgz |
---|
25 | |
---|
26 | use_configure no |
---|
27 | |
---|
28 | build { |
---|
29 | system "cd ${workpath}/${distname} && cc -o ${name} ${name}.c" |
---|
30 | } |
---|
31 | |
---|
32 | destroot { |
---|
33 | xinstall -m 755 ${workpath}/${distname}/tth ${destroot}${prefix}/bin |
---|
34 | xinstall -m 755 ${workpath}/${distname}/latex2gif ${destroot}${prefix}/bin |
---|
35 | xinstall -m 755 ${workpath}/${distname}/ps2gif ${destroot}${prefix}/bin |
---|
36 | xinstall -m 755 ${workpath}/${distname}/ps2png ${destroot}${prefix}/bin |
---|
37 | xinstall -m 644 ${workpath}/${distname}/tth.1 ${destroot}${prefix}/share/man/man1 |
---|
38 | } |
---|