Ticket #37721: Portfile

File Portfile, 1.1 KB (added by cooljeanius (Eric Gallager), 11 years ago)

New, working version of 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                port-depgraph
7version             0.1.0
8categories          sysutils
9maintainers         gwmail.gwu.edu:egall openmaintainer
10platforms           darwin
11license             BSD
12supported_archs     noarch
13
14description         Create a Graphviz graph description of a port's rdeps list
15long_description    Run a recursive dependency listing against a given port, \
16                    outputing a Graphviz graph description.
17homepage            http://svn.macports.org/repository/macports/contrib/port-depgraph
18
19livecheck.type      none
20
21fetch.type          svn
22svn.url             https://svn.macports.org/repository/macports/contrib/port-depgraph
23svn.revision        101883
24dist_subdir         ${name}/${version}
25
26use_configure       no
27
28build {}
29
30destroot {
31   xinstall -m 755 ${workpath}/${name}/${name} ${destroot}${prefix}/bin/${name}
32}
33
34depends_lib-append  path:bin/dot:graphviz
35depends_run-append  port:tcl
36