Ticket #18197: Portfile.2

File Portfile.2, 1.4 KB (added by nerdling (Jeremy Lavergne), 15 years ago)

configure {} -> use_configure no

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