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