Ticket #47941: Portfile

File Portfile, 1.1 KB (added by smithsp (Sterling Smith), 8 years ago)

Revised portfile for python versions, remove pypi, and possible whitespace error

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