1 | # $Id:$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python 1.0 |
---|
5 | |
---|
6 | categories-append graphics math |
---|
7 | name py-pyqtgraph |
---|
8 | version 0.9.7 |
---|
9 | homepage http://pyqtgraph.org/ |
---|
10 | maintainers openmaintainer |
---|
11 | platforms darwin |
---|
12 | license MIT |
---|
13 | supported_archs noarch |
---|
14 | |
---|
15 | description scientific graphics and GUI library for Python |
---|
16 | long_description PyQtGraph is a pure-python graphics and GUI library \ |
---|
17 | built on PyQt4 and numpy. It is intended for use in \ |
---|
18 | mathematics / scientific / engineering applications. \ |
---|
19 | It is very fast due to its heavy leverage of numpy \ |
---|
20 | for number crunching and Qt's GraphicsView framework \ |
---|
21 | for fast display. |
---|
22 | |
---|
23 | master_sites http://pyqtgraph.org/downloads |
---|
24 | distname pyqtgraph-${version} |
---|
25 | checksums md5 53f1e9c5ad5ea52dd66d120aff2c617a \ |
---|
26 | rmd160 68b37d7cac4caa27098aee7b8d55c56c30bfd607 |
---|
27 | |
---|
28 | python.versions 27 |
---|
29 | |
---|
30 | if {$subport != $name} { |
---|
31 | variant pyqt4 conflicts pyside description "Qt interface via PyQt4" { |
---|
32 | depends_lib-append port:py${python.version}-pyqt4 |
---|
33 | } |
---|
34 | |
---|
35 | variant pyside conflicts pyqt4 description "Qt interface via PySide" { |
---|
36 | depends_lib-append port:py${python.version}-pyside |
---|
37 | } |
---|
38 | |
---|
39 | variant opengl description "support for 3D graphics" { |
---|
40 | depends_lib-append port:py${python.version}-opengl |
---|
41 | } |
---|
42 | } |
---|
43 | |
---|
44 | if {![variant_isset pyside]} { |
---|
45 | default_variants +pyqt4 |
---|
46 | } |
---|
47 | |
---|
48 | default_variants-append +opengl |
---|