Ticket #16819: Portfile.2

File Portfile.2, 955 bytes (added by nerdling (Jeremy Lavergne), 15 years ago)

updated for new patch: added reinplace functionality.

Line 
1# $Id$
2
3PortSystem          1.0
4PortGroup           python25 1.0
5
6name                py25-igraph
7version             0.5.1
8categories-append   math
9maintainers         nomaintainer
10description         Python interface to the igraph library
11
12long_description    Python interface to the igraph high performance \
13                    graph library
14
15homepage            http://pypi.python.org/pypi/python-igraph/
16master_sites        http://pypi.python.org/packages/source/p/python-igraph/
17
18distname            python-igraph-${version}
19
20checksums           md5     9cc4364d656db67add07dd474c8b0f11 \
21                    sha1    406c70c4dc09176782c8234d1161b62625a3acd7 \
22                    rmd160  356964caa38c312bbd01c0c528a815d0ec7ee62b
23
24platforms           darwin
25
26depends_lib         port:igraph \
27                    port:py25-setuptools
28
29patchfiles          patch-setup.py.diff
30
31post-patch {
32        reinplace s|@PREFIX@|${prefix}|g ${worksrcpath}/setup.py
33}