1 | # $Id: $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name latexdiff |
---|
5 | version 0.4 |
---|
6 | revision 0 |
---|
7 | categories textproc |
---|
8 | maintainers darwinports@opendarwin.org |
---|
9 | description determine and mark up significant differences between latex files |
---|
10 | long_description latexdiff is a Perl script, which compares two latex files and marks \ |
---|
11 | up significant differences between them (i.e. a diff for latex files). \ |
---|
12 | Various options are available for visual markup using standard latex \ |
---|
13 | packages such as color.sty. Changes not directly affecting visible \ |
---|
14 | text, for example in formatting commands, are still marked in the \ |
---|
15 | latex source. |
---|
16 | master_sites ftp://tug.ctan.org/pub/tex-archive/support/ |
---|
17 | checksums md5 dbe6ec4e50aef70f8319ad87e9694b2a |
---|
18 | extract.suffix .zip |
---|
19 | distname ${name} |
---|
20 | use_zip yes |
---|
21 | |
---|
22 | depends_run bin:perl:perl5.8 |
---|
23 | |
---|
24 | configure { |
---|
25 | reinplace "s|/usr/local|${destroot}${prefix}|g" ${worksrcpath}/Makefile |
---|
26 | reinplace "s|(INSTALLPATH)/man|(INSTALLPATH)/share/man|g" ${worksrcpath}/Makefile |
---|
27 | } |
---|
28 | |
---|
29 | build { } |
---|
30 | |
---|
31 | destroot { |
---|
32 | system "cd ${worksrcpath} && make install" |
---|
33 | } |
---|