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 | PortGroup github 1.0 |
---|
7 | |
---|
8 | github.setup drufat triangle 2015.03.28 |
---|
9 | |
---|
10 | name py-triangle |
---|
11 | |
---|
12 | categories-append science math |
---|
13 | |
---|
14 | platforms darwin |
---|
15 | supported_archs noarch |
---|
16 | license LGPL |
---|
17 | maintainers fusion.gat.com:smithsp openmaintainer |
---|
18 | description Python binding to the triangle library |
---|
19 | long_description \ |
---|
20 | Documentation at http://dzhelil.info/triangle/index.html |
---|
21 | |
---|
22 | distname triangle-${version} |
---|
23 | checksums md5 d5be66c182e21ba0457de83cfc5c6afd \ |
---|
24 | rmd160 06eeeeb56b11cb2106539cba8e6086bf1ad34936 \ |
---|
25 | sha256 9a4876399fbf24d1e64cfa35eb9bb1d393802865ef092e2537c52805412a8e4c |
---|
26 | |
---|
27 | python.versions 27 |
---|
28 | |
---|
29 | if {$subport != $name} { |
---|
30 | depends_lib-append port:triangle |
---|
31 | depends_build-append port:py${python.version}-setuptools |
---|
32 | depends_build-append port:py${python.version}-cython |
---|
33 | livecheck.type none |
---|
34 | } |
---|