1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name pgf-devel |
---|
7 | conflicts pgf |
---|
8 | version 2010-01-17 |
---|
9 | categories tex textproc |
---|
10 | platforms darwin |
---|
11 | maintainers alum.wpi.edu:arno+macports openmaintainer |
---|
12 | description PGF and TikZ -- Graphic systems for TeX (development version) |
---|
13 | |
---|
14 | long_description \ |
---|
15 | PGF is a TeX macro package for generating graphics. It is platform- and \ |
---|
16 | format-independent and works together with the most important TeX backend \ |
---|
17 | drivers, including pdftex and dvips. It comes with a user-friedly syntax \ |
---|
18 | layer called TikZ. This development build provides the latest features \ |
---|
19 | and bug-fixes. |
---|
20 | |
---|
21 | homepage http://www.texample.net/tikz/builds/ |
---|
22 | master_sites http://media.texample.net/pgf/builds/ |
---|
23 | distfiles pgfCVS${version}_TDS.zip |
---|
24 | use_zip yes |
---|
25 | |
---|
26 | checksums sha1 ed8da7b4cb816a1869dc7706657961c703c28189 \ |
---|
27 | md5 11c240042aebd7c88bab501c67672f3d \ |
---|
28 | rmd160 90aaf0d4b6e3edafaf43099b073a33336d5da5e9 |
---|
29 | |
---|
30 | livecheck.type regex |
---|
31 | livecheck.url ${homepage} |
---|
32 | livecheck.regex Build date (.*)</a></dt> |
---|
33 | |
---|
34 | depends_lib bin:texhash:texlive |
---|
35 | |
---|
36 | use_configure no |
---|
37 | build { } |
---|
38 | |
---|
39 | destroot { |
---|
40 | set latex_local ${destroot}${prefix}/share/texmf-local |
---|
41 | set r ${workpath} |
---|
42 | file mkdir ${latex_local}/ |
---|
43 | file copy ${r}/tex ${latex_local}/ |
---|
44 | file copy ${r}/doc ${latex_local}/ |
---|
45 | } |
---|
46 | |
---|
47 | post-activate { |
---|
48 | system "texhash" |
---|
49 | } |
---|