Ticket #23642: Portfile.2

File Portfile.2, 1.5 KB (added by fracai, 14 years ago)

Updated Portfile representing CVS build 2010-02-12

Line 
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
4PortSystem      1.0
5
6name            pgf-devel
7conflicts       pgf
8version         2010-02-12
9categories      tex textproc
10platforms       darwin
11maintainers     alum.wpi.edu:arno+macports openmaintainer
12description     PGF and TikZ -- Graphic systems for TeX (development version)
13
14long_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
21homepage        http://www.texample.net/tikz/builds/
22master_sites    http://media.texample.net/pgf/builds/
23distfiles       pgfCVS${version}_TDS.zip
24use_zip         yes
25
26checksums       sha1 d802b86e77416900d41a7d05f69a5af07fa8a749 \
27                md5 5e09fddebd6ed2daf9c8383b83a4ca88 \
28                rmd160 21c3721f05866a5d00dffcb155f84bdc96b1516e
29
30livecheck.type  regex
31livecheck.url   ${homepage}
32livecheck.regex Build date (.*)</a></dt>
33
34depends_lib     bin:texhash:texlive
35
36use_configure   no
37build { }
38
39destroot {
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
47post-activate {
48    system "texhash"
49}