Ticket #37721: Portfile.2

File Portfile.2, 1.0 KB (added by cooljeanius (Eric Gallager), 11 years ago)

latest portfile for port-depgraph

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 macports
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
24
25worksrcdir          ${name}
26
27use_configure       no
28
29build {}
30
31destroot {
32   xinstall -m 755 ${worksrcpath}/${name} ${destroot}${prefix}/bin/${name}
33}
34
35depends_lib-append  path:bin/dot:graphviz
36