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 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-ode |
---|
8 | version 1.2.1 |
---|
9 | categories-append games graphics |
---|
10 | platforms darwin |
---|
11 | |
---|
12 | license { LGPL-2.1+ BSD } |
---|
13 | maintainers jameskyle |
---|
14 | |
---|
15 | description Python bindings for The Open Dynamics Engine |
---|
16 | |
---|
17 | long_description ${description}, an open-source physics engine. |
---|
18 | |
---|
19 | homepage http://pyode.sourceforge.net/ |
---|
20 | |
---|
21 | master_sites http://pypi.python.org/packages/source/P/PyODE |
---|
22 | distname PyODE-${version} |
---|
23 | |
---|
24 | checksums md5 02015056f80121c4730178e8198c19c8 \ |
---|
25 | rmd160 ae23ba127a472407aa8fde7e33c5115f3efbacbe \ |
---|
26 | sha256 29062581255e1bf3cd91e5630225f1e5bc3e7e9446f94a325f9467cb9b08be67 |
---|
27 | |
---|
28 | python.versions 25 26 27 |
---|
29 | |
---|
30 | if {$subport ne $name} { |
---|
31 | depends_lib-append port:ode |
---|
32 | |
---|
33 | patchfiles patch-setup-py.diff |
---|
34 | post-patch { |
---|
35 | reinplace "s|@@PREFIX@@|${prefix}|g" ${worksrcpath}/setup.py |
---|
36 | } |
---|
37 | } |
---|