Ticket #23642: Portfile

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

pgf-devel Portfile

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-01-17
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    ed8da7b4cb816a1869dc7706657961c703c28189 \
27                md5     11c240042aebd7c88bab501c67672f3d \
28                rmd160  90aaf0d4b6e3edafaf43099b073a33336d5da5e9
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}