Ticket #23642: Portfile.3

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

Updated Portfile representing CVS build 2010-02-23

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-23
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 9b5d1eb4129f5cb4929744a8f9bf213b2af1e92c \
27                md5 42654929685fa5f784b67b70667b33dc \
28                rmd160 b26fb792d44eacd12edd30623bedf27263189ef0
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}