# -*- 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 # $Id$ PortSystem 1.0 PortGroup python 1.0 name py-pyface version 4.1.0 categories-append devel maintainers vcn.com:jjstickel openmaintainer description The Enthought pyface package long_description The pyface project contains a toolkit-independent GUI\ abstraction layer, which is used to support the\ "visualization" features of the Traits package. platforms darwin homepage https://github.com/enthought/pyface master_sites http://www.enthought.com/repo/ets/ distname pyface-${version} checksums md5 a9bb01a9e6468374473a5bb608496621 \ sha1 926c43e953d40d95a1e35a44889b81cec6ea9e6c \ rmd160 8e73b2cedffadccc37437834ad2f3fa6089090cf python.versions 25 26 27 python.default_version 27 if {$subport != $name} { depends_build-append port:py${python.version}-distribute depends_lib-append port:py${python.version}-traits } variant wx description {Use wxWidgets backend} { if {$subport != $name} { depends_lib-append port:py${python.version}-wxpython } } variant pyqt4 conflicts pyside description "Qt backend using PyQt4" { if {$subport != $name} { depends_lib-append port:py${python.version}-pyqt4 } } variant pyside conflicts pyqt4 description "Qt backend using PySide" { if {$subport != $name} { depends_lib-append port:py${python.version}-pyside } } default_variants-append +pyqt4