Ticket #61828: Portfile

File Portfile, 1.6 KB (added by jjstickel (Jonathan Stickel), 3 years ago)

py-enable

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
3PortSystem          1.0
4PortGroup           python 1.0
5PortGroup           github 1.0
6
7github.setup        enthought enable 4.8.1
8
9name                py-enable
10categories-append   devel
11maintainers         nomaintainer
12description         The Enthought enable package
13long_description    The Enable project provides two related multi-platform\
14                    packages for drawing GUI objects.  Enable: An object\
15                    drawing library that supports containment and event\
16                    notification.  Kiva: A multi-platform DisplayPDF vector\
17                    drawing engine.
18license             BSD
19platforms           darwin
20
21checksums           rmd160  ea4fd9c64f198c02ef8be770504d13aceb9ad4c0 \
22                    sha256  dc8c2651bbaa5df287ce825cee6b878b479018225dd8da7cc3189bac46f5174e \
23                    size    2755489
24
25python.versions     36 37
26# 38 needs  https://github.com/enthought/enable/pull/376
27
28if {${name} ne ${subport}} {
29    # also needs python package "fonttools" that is not yet in Macports (as of 12/28/20)
30    depends_build-append    port:py${python.version}-setuptools \
31                            port:py${python.version}-cython \
32                            port:swig-python
33    depends_lib-append      port:py${python.version}-traitsui \
34                            port:py${python.version}-reportlab \
35                            port:py${python.version}-pillow \
36                            port:py${python.version}-kiwisolver
37}
38