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