1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name pgf |
---|
6 | version 2.00 |
---|
7 | categories tex textproc |
---|
8 | platforms darwin |
---|
9 | maintainers nomaintainer |
---|
10 | description PGF and TikZ -- Graphic systems for TeX |
---|
11 | long_description \ |
---|
12 | PGF is a TeX macro package for generating graphics. It is platform- and \ |
---|
13 | format-independent and works together with the most important TeX backend \ |
---|
14 | drivers, including pdftex and dvips. It comes with a user-friedly syntax \ |
---|
15 | layer called TikZ. |
---|
16 | |
---|
17 | homepage http://pgf.sourceforge.net/ |
---|
18 | master_sites sourceforge:pgf |
---|
19 | checksums md5 fb8cb62462f8248e327bf23ee5b9ccda \ |
---|
20 | sha1 8c50ac3196380d164105ec96646c8e9424faa63c \ |
---|
21 | rmd160 b7b18fded6ba819c2d79e7b0740d7fdfd0b9c94c |
---|
22 | |
---|
23 | livecheck.regex <title>pgf version (.*) released.*</title> |
---|
24 | |
---|
25 | depends_lib bin:texhash:texlive |
---|
26 | |
---|
27 | configure { } |
---|
28 | build { } |
---|
29 | |
---|
30 | destroot { |
---|
31 | set latex_local ${destroot}${prefix}/share/texmf-local |
---|
32 | set r ${workpath}/${name}-${version} |
---|
33 | file mkdir ${latex_local}/tex |
---|
34 | file copy ${r}/latex ${latex_local}/tex/ |
---|
35 | file copy ${r}/generic ${latex_local}/tex/ |
---|
36 | file copy ${r}/context ${latex_local}/tex/ |
---|
37 | file copy ${r}/plain ${latex_local}/tex/ |
---|
38 | file copy ${r}/doc ${latex_local}/ |
---|
39 | } |
---|
40 | |
---|
41 | post-activate { |
---|
42 | system "texhash" |
---|
43 | } |
---|