1 | # $Id:$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python24 1.0 |
---|
5 | |
---|
6 | name py-gnuplot |
---|
7 | version 1.7 |
---|
8 | categories python devel math |
---|
9 | maintainers whoever@somewhere |
---|
10 | platforms darwin |
---|
11 | description A Python interface to the gnuplot plotting program. |
---|
12 | long_description Gnuplot.py is a Python package that allows you to \ |
---|
13 | create graphs from within Python using the gnuplot \ |
---|
14 | plotting program. |
---|
15 | |
---|
16 | homepage http://gnuplot-py.sourceforge.net/ |
---|
17 | master_sites sourceforge:gnuplot-py |
---|
18 | distname gnuplot-py-${version} |
---|
19 | checksums md5 724f9eee164d6ff763777b22a5851572 |
---|
20 | |
---|
21 | depends_lib-append port:py-numeric |
---|
22 | depends_run port:gnuplot |
---|
23 | |
---|
24 | post-destroot { |
---|
25 | xinstall -m 644 -W ${worksrcpath} \ |
---|
26 | ANNOUNCE.txt CREDITS.txt FAQ.txt Gnuplot.html \ |
---|
27 | LICENSE.txt NEWS.txt README.txt TODO.txt \ |
---|
28 | ${destroot}/${prefix}/share/doc/${name} |
---|
29 | file copy ${worksrcpath}/doc \ |
---|
30 | ${destroot}/${prefix}/share/doc/${name} |
---|
31 | } |
---|
32 | |
---|