Ticket #3903: Portfile

File Portfile, 1.1 KB (added by persamuelsson@…, 19 years ago)

Portfile for py-gnuplot

Line 
1# $Id:$
2
3PortSystem 1.0
4PortGroup python24 1.0
5
6name                    py-gnuplot
7version                 1.7
8categories              python devel math
9maintainers             whoever@somewhere
10platforms               darwin
11description             A Python interface to the gnuplot plotting program.
12long_description        Gnuplot.py is a Python package that allows you to \
13                        create graphs from within Python using the gnuplot \
14                        plotting program.
15
16homepage                http://gnuplot-py.sourceforge.net/
17master_sites            sourceforge:gnuplot-py
18distname                gnuplot-py-${version}
19checksums               md5 724f9eee164d6ff763777b22a5851572
20
21depends_lib-append      port:py-numeric
22depends_run             port:gnuplot
23
24post-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