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 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python 1.0 |
---|
5 | PortGroup github 1.0 |
---|
6 | |
---|
7 | github.setup enthought enable 4.8.1 |
---|
8 | |
---|
9 | name py-enable |
---|
10 | categories-append devel |
---|
11 | maintainers nomaintainer |
---|
12 | description The Enthought enable package |
---|
13 | long_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. |
---|
18 | license BSD |
---|
19 | platforms darwin |
---|
20 | |
---|
21 | checksums rmd160 ea4fd9c64f198c02ef8be770504d13aceb9ad4c0 \ |
---|
22 | sha256 dc8c2651bbaa5df287ce825cee6b878b479018225dd8da7cc3189bac46f5174e \ |
---|
23 | size 2755489 |
---|
24 | |
---|
25 | python.versions 36 37 |
---|
26 | # 38 needs https://github.com/enthought/enable/pull/376 |
---|
27 | |
---|
28 | if {${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 | |
---|