Index: Mk/Uses/pyqt.mk =================================================================== --- Mk/Uses/pyqt.mk +++ Mk/Uses/pyqt.mk @@ -0,0 +1,247 @@ +# $FreeBSD$ +# +# Handle PyQt related ports +# +# Feature: pyqt +# Usage: USES=pyqt:ARGS +# Valid ARGS: 4,5 +# +# MAINTAINER: kde@FreeBSD.org +# +# Internal Port variables for PyQt ports: +# PYQT_DIST - This port is part of PyQt4/5 itself. Variables and +# targets are then set assuming a certain tarball and +# port layout. +# USE_PYQT - List of PyQt components to depend on +# * foo_build only build depend +# * foo_run only run depend +# * foo both (default) +# SIPDIR - Absolute path where sip files will be installed +# SIPDIR_REL - Relative version of SIPDIR +# +# Also PYQT_SIPDIR=${SIPDIR_REL} will be added to PLIST_SUB. +# + +.if !defined(_INCLUDE_USES_PYQT_MK) +_INCLUDE_USES_PYQT_MK= yes + +# At the moment we support PyQt bindings versions 4 and 5, sip +# option is for internal use by the py-sip ports. +_PYQT_SUPPORTED= 4 5 sip + +.if empty(pyqt_ARGS) +IGNORE= pyqt needs a qt-version (${_PYQT_SUPPORTED}) +.endif + +# At the moment we support PyQt bindings versions 4 and 5 +.for ver in ${_PYQT_SUPPORTED:O:u} +. if ${pyqt_ARGS:M${ver}} +. if empty(_PYQT_VERSION) +_PYQT_VERSION= ${ver} +. else +IGNORE?= cannot be installed: different PYQT versions specified via pyqt:[${_PYQT_SUPPORTED:S/ //g}] +. endif +. endif +.endfor + +.if empty(_PYQT_VERSION) +IGNORE?= USES=pyqt needs a version number (valid values: ${_PYQT_SUPPORTED}) +.endif + +PYQT_MAINTAINER= kde@FreeBSD.org + +MASTER_SITE_RIVERBANK= http://www.riverbankcomputing.com/static/Downloads/%SUBDIR%/ + +MASTER_SITES_SIP= SF/pyqt/sip/sip-${PORTVERSION} \ + GENTOO +MASTER_SITES_PYQT4= SF/pyqt/PyQt4/PyQt-${PORTVERSION} \ + GENTOO +MASTER_SITES_PYQT5= SF/pyqt/PyQt5/PyQt-${PORTVERSION} \ + GENTOO +MASTER_SITES_QSCI2= SF/pyqt/QScintilla2/QScintilla-${PORTVERSION} \ + GENTOO + +SIP_VERSION= 4.17 +QSCI2_VERSION= 2.9 +PYQT4_VERSION= 4.11.4 +PYQT5_VERSION= 5.5.1 + +SIP_DISTNAME= sip-${SIP_VERSION} +PYQT4_DISTNAME= PyQt-x11-gpl-${PYQT4_VERSION} +PYQT4_DISTINFO_FILE= ${.CURDIR}/../../devel/${PYQT_RELNAME}/distinfo +PYQT5_DISTNAME= PyQt-gpl-${PYQT5_VERSION} +PYQT5_DISTINFO_FILE= ${.CURDIR}/../../devel/py-qt5/distinfo +QSCI2_DISTNAME= QScintilla-gpl-${QSCI2_VERSION} +QSCI2_DISTINFO_FILE= ${.CURDIR}/../../devel/qscintilla2-qt${_PYQT_VERSION}/distinfo + +# PyQt components split up into pyqt4/pyqt5/... +_USE_PYQT_ALL= core dbus demo designer doc gui \ + multimedia network opengl qscintilla2 \ + sql svg test webkit xml xmlpatterns sip +# List of components only in pyqt4 +_USE_PYQT4_ONLY= assistant declarative dbussupport \ + designerplugin help phonon script \ + scripttools +# List of components only in pyqt5 +_USE_PYQT5_ONLY= printsupport serialport \ + webkitwidgets widgets + +# Unversioned variables for the rest of the file +PYQT_VERSION= ${PYQT${_PYQT_VERSION}_VERSION} +PYQT_RELNAME= py-qt${_PYQT_VERSION} +PYQT_PY_RELNAME= ${PYTHON_PKGNAMEPREFIX}qt${_PYQT_VERSION} +PYQT_MASTERSITES= ${MASTER_SITES_PYQT${_PYQT_VERSION}} +PYQT_DISTNAME= ${PYQT${_PYQT_VERSION}_DISTNAME} +PYQT_DISTINFO_FILE= ${PYQT${_PYQT_VERSION}_DISTINFO_FILE} + +py-sip_PATH= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION} + +py-assistant_PATH= ${PYQT_PY_RELNAME}-assistant>=${PYQT_VERSION} +py-core_PATH= ${PYQT_PY_RELNAME}-core>=${PYQT_VERSION} +py-dbus_PATH= ${PYQT_PY_RELNAME}-dbus>=${PYQT_VERSION} +py-dbussupport_PATH= ${PYQT_PY_RELNAME}-dbussupport>=${PYQT_VERSION} +py-declarative_PATH= ${PYQT_PY_RELNAME}-declarative>=${PYQT_VERSION} +py-demo_PATH= ${PYQT_PY_RELNAME}-demo>=${PYQT_VERSION} +py-designer_PATH= ${PYQT_PY_RELNAME}-designer>=${PYQT_VERSION} +py-designerplugin_PATH= ${PYQT_PY_RELNAME}-designerplugin>=${PYQT_VERSION} +py-doc_PATH= ${PYQT_PY_RELNAME}-doc>=${PYQT_VERSION} +py-gui_PATH= ${PYQT_PY_RELNAME}-gui>=${PYQT_VERSION} +py-help_PATH= ${PYQT_PY_RELNAME}-help>=${PYQT_VERSION} +py-multimedia_PATH= ${PYQT_PY_RELNAME}-multimedia>=${PYQT_VERSION} +py-network_PATH= ${PYQT_PY_RELNAME}-network>=${PYQT_VERSION} +py-opengl_PATH= ${PYQT_PY_RELNAME}-opengl>=${PYQT_VERSION} +py-phonon_PATH= ${PYQT_PY_RELNAME}-phonon>=${PYQT_VERSION} +py-qscintilla2_PATH= ${PYQT_PY_RELNAME}-qscintilla2>=${QSCI2_VERSION} +py-script_PATH= ${PYQT_PY_RELNAME}-script>=${PYQT_VERSION} +py-scripttools_PATH= ${PYQT_PY_RELNAME}-scripttools>=${PYQT_VERSION} +py-sql_PATH= ${PYQT_PY_RELNAME}-sql>=${PYQT_VERSION} +py-svg_PATH= ${PYQT_PY_RELNAME}-svg>=${PYQT_VERSION} +py-test_PATH= ${PYQT_PY_RELNAME}-test>=${PYQT_VERSION} +py-webkit_PATH= ${PYQT_PY_RELNAME}-webkit>=${PYQT_VERSION} +py-xml_PATH= ${PYQT_PY_RELNAME}-xml>=${PYQT_VERSION} +py-xmlpatterns_PATH= ${PYQT_PY_RELNAME}-xmlpatterns>=${PYQT_VERSION} + +py-printsupport_PATH= ${PYQT_PY_RELNAME}-printsupport>=${PYQT_VERSION} +py-serialport_PATH= ${PYQT_PY_RELNAME}-serialport>=${PYQT_VERSION} +py-webkitwidgets_PATH= ${PYQT_PY_RELNAME}-webkitwidgets>=${PYQT_VERSION} +py-widgets_PATH= ${PYQT_PY_RELNAME}-widgets>=${PYQT_VERSION} + +py-sip_PORT= devel/py-sip + +py-assistant_PORT= devel/${PYQT_RELNAME}-assistant +py-core_PORT= devel/${PYQT_RELNAME}-core +py-dbus_PORT= devel/${PYQT_RELNAME}-dbus +py-dbussupport_PORT= devel/${PYQT_RELNAME}-dbussupport +py-declarative_PORT= devel/${PYQT_RELNAME}-declarative +py-demo_PORT= misc/${PYQT_RELNAME}-demo +py-designer_PORT= devel/${PYQT_RELNAME}-designer +py-designerplugin_PORT= devel/${PYQT_RELNAME}-designerplugin +py-doc_PORT= misc/${PYQT_RELNAME}-doc +py-gui_PORT= x11-toolkits/${PYQT_RELNAME}-gui +py-help_PORT= devel/${PYQT_RELNAME}-help +py-multimedia_PORT= multimedia/${PYQT_RELNAME}-multimedia +py-network_PORT= net/${PYQT_RELNAME}-network +py-opengl_PORT= x11/${PYQT_RELNAME}-opengl +py-phonon_PORT= multimedia/${PYQT_RELNAME}-phonon +py-qscintilla2_PORT= devel/${PYQT_RELNAME}-qscintilla2 +py-script_PORT= devel/${PYQT_RELNAME}-script +py-scripttools_PORT= devel/${PYQT_RELNAME}-scripttools +py-sql_PORT= databases/${PYQT_RELNAME}-sql +py-svg_PORT= graphics/${PYQT_RELNAME}-svg +py-test_PORT= devel/${PYQT_RELNAME}-test +py-webkit_PORT= www/${PYQT_RELNAME}-webkit +py-xml_PORT= textproc/${PYQT_RELNAME}-xml +py-xmlpatterns_PORT= textproc/${PYQT_RELNAME}-xmlpatterns + +py-printsupport_PORT= print/py-qt5-printsupport +py-serialport_PORT= comms/py-qt5-serialport +py-webkitwidgets_PORT= www/py-qt5-webkitwidgets +py-widgets_PORT= x11-toolkits/py-qt5-widgets + +py-assistant_DESC= Python bindings for QtAssistant module +py-core_DESC= Python bindings for QtCore module +py-dbus_DESC= Python bindings for QtDBus module +py-dbussupport_DESC= Python bindings for D-Bus +py-declarative_DESC= Python bindings for QtDeclarative module +py-demo_DESC= PyQt demo and examples +py-designer_DESC= Python bindings for QtDesigner module +py-designerplugin_DESC= Python bindings for QtDesigner plugin +py-doc_DESC= PyQt documentation +py-gui_DESC= Python bindings for QtGui module +py-help_DESC= Python bindings for QtHelp module +py-multimedia_DESC= Python bindings for Multimedia module +py-network_DESC= Python bindings for QtNetwork module +py-opengl_DESC= Python bindings for QtOpenGL module +py-phonon_DESC= Python bindings for Phonon module +py-qscintilla2_DESC= Python bindings for QScintilla2 +py-script_DESC= Python bindings for QtScript module +py-scripttools_DESC= Python bindings for QtScriptTools module +py-sql_DESC= Python bindings for QtSql module +py-svg_DESC= Python bindings for QtSvg module +py-test_DESC= Python bindings for QtTest module +py-webkit_DESC= Python bindings for QtWebKit module +py-xml_DESC= Python bindings for QtXml module +py-xmlpatterns_DESC= Python bindings for QtXmlPatterns module + +py-printsupport_DESC= Python bindings for Printsupport module +py-serialport_DESC= Python bindings for QtSerialPort +py-webkitwidgets_DESC= Python bindings for QtWebKitWidgets module +py-widgets_DESC= Python bindings for QTWidgets module + +SIPDIR_REL= share/py-sip/PyQt${_PYQT_VERSION} +SIPDIR= ${PREFIX}/${SIPDIR_REL} +PLIST_SUB+= PYQT_SIPDIR=${SIPDIR_REL} + +.if defined(PYQT_DIST) +PORTVERSION= ${PYQT_VERSION} +MASTER_SITES= ${PYQT_MASTERSITES} +PKGNAMEPREFIX= ${PYQT_PY_RELNAME}- +DISTNAME= ${PYQT_DISTNAME} +DISTINFO_FILE= ${PYQT_DISTINFO_FILE} +HAS_CONFIGURE= yes +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. + +PATCHDIR= ${.CURDIR}/../../devel/${PYQT_RELNAME}-core/files +QSCIDIR= ${PREFIX}/share/qt${_PYQT_VERSION}/qsci +CONFIGURE_ARGS+=-b ${PREFIX}/bin \ + -d ${PYTHONPREFIX_SITELIBDIR} \ + -q ${QMAKE} \ + --confirm-license \ + --sipdir ${SIPDIR} + +# One of the things PyQt looks for to determine whether to build the Qt DBus +# main loop module (${PYQT_RELNAME}-dbussupport) is whether the dbus/ directory is +# present. Only extract it for that port then. +.if ${PORTNAME} != "dbussupport" +EXTRACT_AFTER_ARGS+= --exclude "${DISTNAME}/dbus" +.endif # ${PORTNAME} != "dbussupport" + +.if !target(do-configure) +do-configure: + cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \ + ${PYTHON_CMD} configure.py ${CONFIGURE_ARGS} +.endif # !target(do-configure) +.endif # defined(PYQT_DIST) + +# Set build and run depends -- we need to prefix them internally with "py-" +# else we conflict with the ones defined in bsd.qt.mk with the same name +_USE_PYQT_ALL+= ${_USE_PYQT${_PYQT_VERSION}_ONLY} +.for comp in ${_USE_PYQT_ALL:O:u} +_USE_PYQT_ALL_SUFFIXED+= py-${comp} py-${comp}_build py-${comp}_run +py-${comp}_BUILD_DEPENDS?= ${py-${comp}_PATH}:${PORTSDIR}/${py-${comp}_PORT} +py-${comp}_RUN_DEPENDS?= ${py-${comp}_PATH}:${PORTSDIR}/${py-${comp}_PORT} +py-${comp}_build_BUILD_DEPENDS?= ${py-${comp}_BUILD_DEPENDS} +py-${comp}_run_RUN_DEPENDS?= ${py-${comp}_RUN_DEPENDS} +.endfor + +_USE_PYQT= ${USE_PYQT:O:u} +.for comp in ${_USE_PYQT} +. if ${_USE_PYQT_ALL_SUFFIXED:Mpy-${comp}} +BUILD_DEPENDS+= ${py-${comp}_BUILD_DEPENDS} +RUN_DEPENDS+= ${py-${comp}_RUN_DEPENDS} +. else +IGNORE?= cannot be installed: unknown USE_PYQT component ${comp} #' +. endif +.endfor + +.endif # defined(_INCLUDE_USES_PYQT_MK) Index: cad/openscad/Makefile =================================================================== --- cad/openscad/Makefile +++ cad/openscad/Makefile @@ -3,7 +3,7 @@ PORTNAME= openscad PORTVERSION= 2015.03 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= cad MASTER_SITES= http://files.openscad.org/ DISTNAME= openscad-${PORTVERSION}.src @@ -20,7 +20,7 @@ LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp \ libmpfr.so:${PORTSDIR}/math/mpfr \ libCGAL.so:${PORTSDIR}/math/cgal \ - libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 \ + libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 \ libharfbuzz.so:${PORTSDIR}/print/harfbuzz \ libopencsg.so:${PORTSDIR}/graphics/opencsg Index: comms/Makefile =================================================================== --- comms/Makefile +++ comms/Makefile @@ -132,6 +132,7 @@ SUBDIR += py-libconcord SUBDIR += py-libimobiledevice SUBDIR += py-lirc + SUBDIR += py-qt5-serialport SUBDIR += py-serial SUBDIR += pyla SUBDIR += qico Index: comms/py-qt5-serialport/Makefile =================================================================== --- comms/py-qt5-serialport/Makefile +++ comms/py-qt5-serialport/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= serialport +CATEGORIES= comms devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtSerialPort module + +CONFIGURE_ARGS= --enable QtSerialPort +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes + +USES= python pyqt:5 qmake +USE_PYQT= sip_build core_run +USE_QT5= gui serialport + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtSerialPort API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include Index: comms/py-qt5-serialport/pkg-descr =================================================================== --- comms/py-qt5-serialport/pkg-descr +++ comms/py-qt5-serialport/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtSerialPort module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ Index: comms/py-qt5-serialport/pkg-plist =================================================================== --- comms/py-qt5-serialport/pkg-plist +++ comms/py-qt5-serialport/pkg-plist @@ -0,0 +1,5 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtSerialPort.so +%%PYQT_SIPDIR%%/QtSerialPort/QtSerialPortmod.sip +%%PYQT_SIPDIR%%/QtSerialPort/qserialport.sip +%%PYQT_SIPDIR%%/QtSerialPort/qserialportinfo.sip +%%API%%share/qt5/qsci/api/python/QtSerialPort.api Index: databases/Makefile =================================================================== --- databases/Makefile +++ databases/Makefile @@ -758,6 +758,7 @@ SUBDIR += py-python-rrdtool SUBDIR += py-python-sql SUBDIR += py-qt4-sql + SUBDIR += py-qt5-sql SUBDIR += py-redis SUBDIR += py-riak SUBDIR += py-rrdtool_lgpl Index: databases/py-qt4-sql/Makefile =================================================================== --- databases/py-qt4-sql/Makefile +++ databases/py-qt4-sql/Makefile @@ -8,11 +8,12 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt4 toolkit, QtSql module -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip -RUN_DEPENDS= ${PKGNAMEPREFIX}gui>=${PYQT4_VERSION}:${PORTSDIR}/x11-toolkits/py-qt4-gui +CONFIGURE_ARGS= --enable QtSql +QT_NONSTANDARD= YES +PYQT_DIST= yes -CONFIGURE_ARGS= --enable QtSql -PYQT4_DIST= yes +USES= python pyqt:4 +USE_PYQT= sip_build gui_run USE_QT4= moc_build gui sql qmake_build OPTIONS_DEFINE= API DEBUG @@ -22,8 +23,7 @@ API_DESC= Install QtSql API for QScintilla2 API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} API_CONFIGURE_OFF= --no-qsci-api -API_LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 +API_LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 DEBUG_CONFIGURE_ON= --debug --trace -.include "${.CURDIR}/../../devel/py-qt4/bsd.pyqt.mk" .include Index: databases/py-qt4-sql/pkg-plist =================================================================== --- databases/py-qt4-sql/pkg-plist +++ databases/py-qt4-sql/pkg-plist @@ -1,16 +1,16 @@ %%PYTHON_SITELIBDIR%%/PyQt4/QtSql.so -share/py-sip/QtSql/QtSqlmod.sip -share/py-sip/QtSql/qsql.sip -share/py-sip/QtSql/qsqldatabase.sip -share/py-sip/QtSql/qsqldriver.sip -share/py-sip/QtSql/qsqlerror.sip -share/py-sip/QtSql/qsqlfield.sip -share/py-sip/QtSql/qsqlindex.sip -share/py-sip/QtSql/qsqlquery.sip -share/py-sip/QtSql/qsqlquerymodel.sip -share/py-sip/QtSql/qsqlrecord.sip -share/py-sip/QtSql/qsqlrelationaldelegate.sip -share/py-sip/QtSql/qsqlrelationaltablemodel.sip -share/py-sip/QtSql/qsqlresult.sip -share/py-sip/QtSql/qsqltablemodel.sip +%%PYQT_SIPDIR%%/QtSql/QtSqlmod.sip +%%PYQT_SIPDIR%%/QtSql/qsql.sip +%%PYQT_SIPDIR%%/QtSql/qsqldatabase.sip +%%PYQT_SIPDIR%%/QtSql/qsqldriver.sip +%%PYQT_SIPDIR%%/QtSql/qsqlerror.sip +%%PYQT_SIPDIR%%/QtSql/qsqlfield.sip +%%PYQT_SIPDIR%%/QtSql/qsqlindex.sip +%%PYQT_SIPDIR%%/QtSql/qsqlquery.sip +%%PYQT_SIPDIR%%/QtSql/qsqlquerymodel.sip +%%PYQT_SIPDIR%%/QtSql/qsqlrecord.sip +%%PYQT_SIPDIR%%/QtSql/qsqlrelationaldelegate.sip +%%PYQT_SIPDIR%%/QtSql/qsqlrelationaltablemodel.sip +%%PYQT_SIPDIR%%/QtSql/qsqlresult.sip +%%PYQT_SIPDIR%%/QtSql/qsqltablemodel.sip %%API%%share/qt4/qsci/api/python/QtSql.api Index: databases/py-qt5-sql/Makefile =================================================================== --- databases/py-qt5-sql/Makefile +++ databases/py-qt5-sql/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= sql +CATEGORIES= databases devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtSql module + +CONFIGURE_ARGS= --enable QtSql +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes + +USES= python pyqt:5 qmake +USE_PYQT= sip widgets_run +USE_QT5= buildtools_build sql widgets + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtSql API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include Index: databases/py-qt5-sql/pkg-descr =================================================================== --- databases/py-qt5-sql/pkg-descr +++ databases/py-qt5-sql/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtSql module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ Index: databases/py-qt5-sql/pkg-plist =================================================================== --- databases/py-qt5-sql/pkg-plist +++ databases/py-qt5-sql/pkg-plist @@ -0,0 +1,16 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtSql.so +%%PYQT_SIPDIR%%/QtSql/QtSqlmod.sip +%%PYQT_SIPDIR%%/QtSql/qsql.sip +%%PYQT_SIPDIR%%/QtSql/qsqldatabase.sip +%%PYQT_SIPDIR%%/QtSql/qsqldriver.sip +%%PYQT_SIPDIR%%/QtSql/qsqlerror.sip +%%PYQT_SIPDIR%%/QtSql/qsqlfield.sip +%%PYQT_SIPDIR%%/QtSql/qsqlindex.sip +%%PYQT_SIPDIR%%/QtSql/qsqlquery.sip +%%PYQT_SIPDIR%%/QtSql/qsqlquerymodel.sip +%%PYQT_SIPDIR%%/QtSql/qsqlrecord.sip +%%PYQT_SIPDIR%%/QtSql/qsqlrelationaldelegate.sip +%%PYQT_SIPDIR%%/QtSql/qsqlrelationaltablemodel.sip +%%PYQT_SIPDIR%%/QtSql/qsqlresult.sip +%%PYQT_SIPDIR%%/QtSql/qsqltablemodel.sip +%%API%%share/qt5/qsci/api/python/QtSql.api Index: databases/sqliteman/Makefile =================================================================== --- databases/sqliteman/Makefile +++ databases/sqliteman/Makefile @@ -3,7 +3,7 @@ PORTNAME= sqliteman PORTVERSION= 1.2.2 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= databases MASTER_SITES= SF @@ -10,7 +10,7 @@ MAINTAINER= wen@FreeBSD.org COMMENT= Admin's GUI tool for Sqlite3 -LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 +LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 USES= cmake USE_SQLITE= yes @@ -19,4 +19,8 @@ GNU_CONFIGURE= yes USE_LDCONFIG= yes +post-patch: + @${REINPLACE_CMD} -e 's/qscintilla2/&-qt4/g' \ + ${WRKSRC}/cmake/modules/FindQScintilla.cmake + .include Index: databases/tora/Makefile =================================================================== --- databases/tora/Makefile +++ databases/tora/Makefile @@ -3,7 +3,7 @@ PORTNAME= tora PORTVERSION= 2.1.3 -PORTREVISION= 10 +PORTREVISION= 11 PORTEPOCH= 1 CATEGORIES= databases MASTER_SITES= SF @@ -14,7 +14,7 @@ LICENSE= GPLv2 BUILD_DEPENDS= cppunit-config:${PORTSDIR}/devel/cppunit -LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 \ +LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 \ libpcre.so:${PORTSDIR}/devel/pcre OPTIONS_DEFINE= PGSQL MYSQL DOCS @@ -50,4 +50,7 @@ post-patch-DOCS-off: @${REINPLACE_CMD} 's|test doc|test|' ${WRKSRC}/Makefile.am +post-patch: + @${REINPLACE_CMD} 's|-lqscintilla2|&-qt4|' ${WRKSRC}/config/m4/qtkde.m4 + .include Index: devel/Makefile =================================================================== --- devel/Makefile +++ devel/Makefile @@ -4254,6 +4254,12 @@ SUBDIR += py-qt4-script SUBDIR += py-qt4-scripttools SUBDIR += py-qt4-test + SUBDIR += py-qt5 + SUBDIR += py-qt5-core + SUBDIR += py-qt5-dbus + SUBDIR += py-qt5-designer + SUBDIR += py-qt5-qscintilla2 + SUBDIR += py-qt5-test SUBDIR += py-rauth SUBDIR += py-raven SUBDIR += py-rednose @@ -4518,8 +4524,9 @@ SUBDIR += qmake5 SUBDIR += qprog SUBDIR += qross - SUBDIR += qscintilla2 - SUBDIR += qscintilla2-designerplugin + SUBDIR += qscintilla2-qt4 + SUBDIR += qscintilla2-qt4-designerplugin + SUBDIR += qscintilla2-qt5 SUBDIR += qt4 SUBDIR += qt4-assistant SUBDIR += qt4-assistant-adp Index: devel/p5-perlqt/Makefile =================================================================== --- devel/p5-perlqt/Makefile +++ devel/p5-perlqt/Makefile @@ -2,6 +2,7 @@ PORTNAME= perlqt PORTVERSION= ${KDE4_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde perl5 MASTER_SITES= KDE/${KDE4_BRANCH}/${PORTVERSION}/src PKGNAMEPREFIX= p5- @@ -10,7 +11,7 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Perl bindings for Qt -LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 \ +LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 \ libqwt.so:${PORTSDIR}/x11-toolkits/qwt5 USE_KDE4= kdeprefix smokeqt qimageblitz Index: devel/py-qt4-assistant/Makefile =================================================================== --- devel/py-qt4-assistant/Makefile +++ devel/py-qt4-assistant/Makefile @@ -8,12 +8,12 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt4 toolkit, QtAssistant module -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip -RUN_DEPENDS= ${PKGNAMEPREFIX}gui>=${PYQT4_VERSION}:${PORTSDIR}/x11-toolkits/py-qt4-gui \ - ${PKGNAMEPREFIX}network>=${PYQT4_VERSION}:${PORTSDIR}/net/py-qt4-network +CONFIGURE_ARGS= --enable QtAssistant +QT_NONSTANDARD= YES +PYQT_DIST= yes -CONFIGURE_ARGS= --enable QtAssistant -PYQT4_DIST= yes +USES= python pyqt:4 +USE_PYQT= sip_build gui_run network_run USE_QT4= assistantclient moc_build qmake_build OPTIONS_DEFINE= API DEBUG @@ -23,8 +23,7 @@ API_DESC= Install QtAssistant API for QScintilla2 API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} API_CONFIGURE_OFF= --no-qsci-api -API_LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 +API_LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 DEBUG_CONFIGURE_ON= --debug --trace -.include "${.CURDIR}/../py-qt4/bsd.pyqt.mk" .include Index: devel/py-qt4-assistant/pkg-plist =================================================================== --- devel/py-qt4-assistant/pkg-plist +++ devel/py-qt4-assistant/pkg-plist @@ -1,4 +1,4 @@ %%PYTHON_SITELIBDIR%%/PyQt4/QtAssistant.so -share/py-sip/QtAssistant/QtAssistantmod.sip -share/py-sip/QtAssistant/qassistantclient.sip +%%PYQT_SIPDIR%%/QtAssistant/QtAssistantmod.sip +%%PYQT_SIPDIR%%/QtAssistant/qassistantclient.sip %%API%%share/qt4/qsci/api/python/QtAssistant.api Index: devel/py-qt4-core/Makefile =================================================================== --- devel/py-qt4-core/Makefile +++ devel/py-qt4-core/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= core +PORTVERSION= ${PYQT4_VERSION} PORTEPOCH= 1 CATEGORIES= devel python @@ -8,12 +9,13 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt4 toolkit, QtCore module -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip -RUN_DEPENDS:= ${BUILD_DEPENDS} +CONFIGURE_ARGS= --enable QtCore +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes -CONFIGURE_ARGS= --enable QtCore -PYQT4_DIST= yes -USE_PYTHON+= py3kplist +USES= python pyqt:4 +USE_PYTHON= py3kplist +USE_PYQT= sip USE_QT4= corelib qmake_build moc_build OPTIONS_DEFINE= API DEBUG @@ -23,10 +25,9 @@ API_DESC= Install QtCore API for QScintilla2 API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} API_CONFIGURE_OFF= --no-qsci-api -API_LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 +API_LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 DEBUG_CONFIGURE_ON= --debug --trace -.include "${.CURDIR}/../py-qt4/bsd.pyqt.mk" .include # Bug 180467: We need to remove the port_v${VERSION} directory that does not Index: devel/py-qt4-core/pkg-plist =================================================================== --- devel/py-qt4-core/pkg-plist +++ devel/py-qt4-core/pkg-plist @@ -99,102 +99,102 @@ %%PYTHON_SITELIBDIR%%/PyQt4/uic/widget-plugins/qtwebkit.py %%PYTHON_SITELIBDIR%%/PyQt4/uic/widget-plugins/qtwebkit.pyc %%PYTHON_SITELIBDIR%%/PyQt4/uic/widget-plugins/qtwebkit.pyo -share/py-sip/QtCore/QtCoremod.sip -share/py-sip/QtCore/qabstractanimation.sip -share/py-sip/QtCore/qabstracteventdispatcher.sip -share/py-sip/QtCore/qabstractfileengine.sip -share/py-sip/QtCore/qabstractitemmodel.sip -share/py-sip/QtCore/qabstractnativeeventfilter.sip -share/py-sip/QtCore/qabstractstate.sip -share/py-sip/QtCore/qabstracttransition.sip -share/py-sip/QtCore/qanimationgroup.sip -share/py-sip/QtCore/qbasictimer.sip -share/py-sip/QtCore/qbitarray.sip -share/py-sip/QtCore/qbuffer.sip -share/py-sip/QtCore/qbytearray.sip -share/py-sip/QtCore/qbytearraymatcher.sip -share/py-sip/QtCore/qchar.sip -share/py-sip/QtCore/qcoreapplication.sip -share/py-sip/QtCore/qcoreevent.sip -share/py-sip/QtCore/qcryptographichash.sip -share/py-sip/QtCore/qdatastream.sip -share/py-sip/QtCore/qdatetime.sip -share/py-sip/QtCore/qdir.sip -share/py-sip/QtCore/qdiriterator.sip -share/py-sip/QtCore/qeasingcurve.sip -share/py-sip/QtCore/qelapsedtimer.sip -share/py-sip/QtCore/qeventloop.sip -share/py-sip/QtCore/qeventtransition.sip -share/py-sip/QtCore/qfile.sip -share/py-sip/QtCore/qfiledevice.sip -share/py-sip/QtCore/qfileinfo.sip -share/py-sip/QtCore/qfilesystemwatcher.sip -share/py-sip/QtCore/qfinalstate.sip -share/py-sip/QtCore/qfsfileengine.sip -share/py-sip/QtCore/qglobal.sip -share/py-sip/QtCore/qhash.sip -share/py-sip/QtCore/qhistorystate.sip -share/py-sip/QtCore/qiodevice.sip -share/py-sip/QtCore/qlibrary.sip -share/py-sip/QtCore/qlibraryinfo.sip -share/py-sip/QtCore/qline.sip -share/py-sip/QtCore/qlist.sip -share/py-sip/QtCore/qlocale.sip -share/py-sip/QtCore/qmap.sip -share/py-sip/QtCore/qmargins.sip -share/py-sip/QtCore/qmetaobject.sip -share/py-sip/QtCore/qmetatype.sip -share/py-sip/QtCore/qmimedata.sip -share/py-sip/QtCore/qmutex.sip -share/py-sip/QtCore/qnamespace.sip -share/py-sip/QtCore/qnumeric.sip -share/py-sip/QtCore/qobject.sip -share/py-sip/QtCore/qobjectcleanuphandler.sip -share/py-sip/QtCore/qobjectdefs.sip -share/py-sip/QtCore/qpair.sip -share/py-sip/QtCore/qparallelanimationgroup.sip -share/py-sip/QtCore/qpauseanimation.sip -share/py-sip/QtCore/qpluginloader.sip -share/py-sip/QtCore/qpoint.sip -share/py-sip/QtCore/qprocess.sip -share/py-sip/QtCore/qpropertyanimation.sip -share/py-sip/QtCore/qpynullvariant.sip -share/py-sip/QtCore/qreadwritelock.sip -share/py-sip/QtCore/qrect.sip -share/py-sip/QtCore/qregexp.sip -share/py-sip/QtCore/qresource.sip -share/py-sip/QtCore/qrunnable.sip -share/py-sip/QtCore/qsemaphore.sip -share/py-sip/QtCore/qsequentialanimationgroup.sip -share/py-sip/QtCore/qset.sip -share/py-sip/QtCore/qsettings.sip -share/py-sip/QtCore/qsharedmemory.sip -share/py-sip/QtCore/qsignalmapper.sip -share/py-sip/QtCore/qsignaltransition.sip -share/py-sip/QtCore/qsize.sip -share/py-sip/QtCore/qsocketnotifier.sip -share/py-sip/QtCore/qstate.sip -share/py-sip/QtCore/qstatemachine.sip -share/py-sip/QtCore/qstring.sip -share/py-sip/QtCore/qstringlist.sip -share/py-sip/QtCore/qstringmatcher.sip -share/py-sip/QtCore/qsystemsemaphore.sip -share/py-sip/QtCore/qtemporaryfile.sip -share/py-sip/QtCore/qtextboundaryfinder.sip -share/py-sip/QtCore/qtextcodec.sip -share/py-sip/QtCore/qtextstream.sip -share/py-sip/QtCore/qthread.sip -share/py-sip/QtCore/qthreadpool.sip -share/py-sip/QtCore/qtimeline.sip -share/py-sip/QtCore/qtimer.sip -share/py-sip/QtCore/qtranslator.sip -share/py-sip/QtCore/qurl.sip -share/py-sip/QtCore/qurlquery.sip -share/py-sip/QtCore/quuid.sip -share/py-sip/QtCore/qvariant.sip -share/py-sip/QtCore/qvariantanimation.sip -share/py-sip/QtCore/qvector.sip -share/py-sip/QtCore/qwaitcondition.sip -share/py-sip/QtCore/qwineventnotifier.sip -share/py-sip/QtCore/qxmlstream.sip +%%PYQT_SIPDIR%%/QtCore/QtCoremod.sip +%%PYQT_SIPDIR%%/QtCore/qabstractanimation.sip +%%PYQT_SIPDIR%%/QtCore/qabstracteventdispatcher.sip +%%PYQT_SIPDIR%%/QtCore/qabstractfileengine.sip +%%PYQT_SIPDIR%%/QtCore/qabstractitemmodel.sip +%%PYQT_SIPDIR%%/QtCore/qabstractnativeeventfilter.sip +%%PYQT_SIPDIR%%/QtCore/qabstractstate.sip +%%PYQT_SIPDIR%%/QtCore/qabstracttransition.sip +%%PYQT_SIPDIR%%/QtCore/qanimationgroup.sip +%%PYQT_SIPDIR%%/QtCore/qbasictimer.sip +%%PYQT_SIPDIR%%/QtCore/qbitarray.sip +%%PYQT_SIPDIR%%/QtCore/qbuffer.sip +%%PYQT_SIPDIR%%/QtCore/qbytearray.sip +%%PYQT_SIPDIR%%/QtCore/qbytearraymatcher.sip +%%PYQT_SIPDIR%%/QtCore/qchar.sip +%%PYQT_SIPDIR%%/QtCore/qcoreapplication.sip +%%PYQT_SIPDIR%%/QtCore/qcoreevent.sip +%%PYQT_SIPDIR%%/QtCore/qcryptographichash.sip +%%PYQT_SIPDIR%%/QtCore/qdatastream.sip +%%PYQT_SIPDIR%%/QtCore/qdatetime.sip +%%PYQT_SIPDIR%%/QtCore/qdir.sip +%%PYQT_SIPDIR%%/QtCore/qdiriterator.sip +%%PYQT_SIPDIR%%/QtCore/qeasingcurve.sip +%%PYQT_SIPDIR%%/QtCore/qelapsedtimer.sip +%%PYQT_SIPDIR%%/QtCore/qeventloop.sip +%%PYQT_SIPDIR%%/QtCore/qeventtransition.sip +%%PYQT_SIPDIR%%/QtCore/qfile.sip +%%PYQT_SIPDIR%%/QtCore/qfiledevice.sip +%%PYQT_SIPDIR%%/QtCore/qfileinfo.sip +%%PYQT_SIPDIR%%/QtCore/qfilesystemwatcher.sip +%%PYQT_SIPDIR%%/QtCore/qfinalstate.sip +%%PYQT_SIPDIR%%/QtCore/qfsfileengine.sip +%%PYQT_SIPDIR%%/QtCore/qglobal.sip +%%PYQT_SIPDIR%%/QtCore/qhash.sip +%%PYQT_SIPDIR%%/QtCore/qhistorystate.sip +%%PYQT_SIPDIR%%/QtCore/qiodevice.sip +%%PYQT_SIPDIR%%/QtCore/qlibrary.sip +%%PYQT_SIPDIR%%/QtCore/qlibraryinfo.sip +%%PYQT_SIPDIR%%/QtCore/qline.sip +%%PYQT_SIPDIR%%/QtCore/qlist.sip +%%PYQT_SIPDIR%%/QtCore/qlocale.sip +%%PYQT_SIPDIR%%/QtCore/qmap.sip +%%PYQT_SIPDIR%%/QtCore/qmargins.sip +%%PYQT_SIPDIR%%/QtCore/qmetaobject.sip +%%PYQT_SIPDIR%%/QtCore/qmetatype.sip +%%PYQT_SIPDIR%%/QtCore/qmimedata.sip +%%PYQT_SIPDIR%%/QtCore/qmutex.sip +%%PYQT_SIPDIR%%/QtCore/qnamespace.sip +%%PYQT_SIPDIR%%/QtCore/qnumeric.sip +%%PYQT_SIPDIR%%/QtCore/qobject.sip +%%PYQT_SIPDIR%%/QtCore/qobjectcleanuphandler.sip +%%PYQT_SIPDIR%%/QtCore/qobjectdefs.sip +%%PYQT_SIPDIR%%/QtCore/qpair.sip +%%PYQT_SIPDIR%%/QtCore/qparallelanimationgroup.sip +%%PYQT_SIPDIR%%/QtCore/qpauseanimation.sip +%%PYQT_SIPDIR%%/QtCore/qpluginloader.sip +%%PYQT_SIPDIR%%/QtCore/qpoint.sip +%%PYQT_SIPDIR%%/QtCore/qprocess.sip +%%PYQT_SIPDIR%%/QtCore/qpropertyanimation.sip +%%PYQT_SIPDIR%%/QtCore/qpynullvariant.sip +%%PYQT_SIPDIR%%/QtCore/qreadwritelock.sip +%%PYQT_SIPDIR%%/QtCore/qrect.sip +%%PYQT_SIPDIR%%/QtCore/qregexp.sip +%%PYQT_SIPDIR%%/QtCore/qresource.sip +%%PYQT_SIPDIR%%/QtCore/qrunnable.sip +%%PYQT_SIPDIR%%/QtCore/qsemaphore.sip +%%PYQT_SIPDIR%%/QtCore/qsequentialanimationgroup.sip +%%PYQT_SIPDIR%%/QtCore/qset.sip +%%PYQT_SIPDIR%%/QtCore/qsettings.sip +%%PYQT_SIPDIR%%/QtCore/qsharedmemory.sip +%%PYQT_SIPDIR%%/QtCore/qsignalmapper.sip +%%PYQT_SIPDIR%%/QtCore/qsignaltransition.sip +%%PYQT_SIPDIR%%/QtCore/qsize.sip +%%PYQT_SIPDIR%%/QtCore/qsocketnotifier.sip +%%PYQT_SIPDIR%%/QtCore/qstate.sip +%%PYQT_SIPDIR%%/QtCore/qstatemachine.sip +%%PYQT_SIPDIR%%/QtCore/qstring.sip +%%PYQT_SIPDIR%%/QtCore/qstringlist.sip +%%PYQT_SIPDIR%%/QtCore/qstringmatcher.sip +%%PYQT_SIPDIR%%/QtCore/qsystemsemaphore.sip +%%PYQT_SIPDIR%%/QtCore/qtemporaryfile.sip +%%PYQT_SIPDIR%%/QtCore/qtextboundaryfinder.sip +%%PYQT_SIPDIR%%/QtCore/qtextcodec.sip +%%PYQT_SIPDIR%%/QtCore/qtextstream.sip +%%PYQT_SIPDIR%%/QtCore/qthread.sip +%%PYQT_SIPDIR%%/QtCore/qthreadpool.sip +%%PYQT_SIPDIR%%/QtCore/qtimeline.sip +%%PYQT_SIPDIR%%/QtCore/qtimer.sip +%%PYQT_SIPDIR%%/QtCore/qtranslator.sip +%%PYQT_SIPDIR%%/QtCore/qurl.sip +%%PYQT_SIPDIR%%/QtCore/qurlquery.sip +%%PYQT_SIPDIR%%/QtCore/quuid.sip +%%PYQT_SIPDIR%%/QtCore/qvariant.sip +%%PYQT_SIPDIR%%/QtCore/qvariantanimation.sip +%%PYQT_SIPDIR%%/QtCore/qvector.sip +%%PYQT_SIPDIR%%/QtCore/qwaitcondition.sip +%%PYQT_SIPDIR%%/QtCore/qwineventnotifier.sip +%%PYQT_SIPDIR%%/QtCore/qxmlstream.sip %%API%%share/qt4/qsci/api/python/QtCore.api Index: devel/py-qt4-dbus/Makefile =================================================================== --- devel/py-qt4-dbus/Makefile +++ devel/py-qt4-dbus/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= dbus +PORTVERSION= ${PYQT4_VERSION} PORTEPOCH= 1 CATEGORIES= devel python @@ -8,13 +9,15 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt4 toolkit, QtDBus module -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip \ - ${PYTHON_PKGNAMEPREFIX}dbus>=0.8:${PORTSDIR}/devel/py-dbus -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.8:${PORTSDIR}/devel/py-dbus \ - ${PKGNAMEPREFIX}core>=${PYQT4_VERSION}:${PORTSDIR}/devel/py-qt4-core +CONFIGURE_ARGS= --enable QtDBus +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes -CONFIGURE_ARGS= --enable QtDBus -PYQT4_DIST= yes +BUIKD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.8:${PORTSDIR}/devel/py-dbus +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.8:${PORTSDIR}/devel/py-dbus + +USES= python pyqt:4 +USE_PYQT= sip_build core_run USE_QT4= dbus moc_build qmake_build OPTIONS_DEFINE= API DEBUG @@ -24,8 +27,7 @@ API_DESC= Install QtDBus API for QScintilla2 API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} API_CONFIGURE_OFF= --no-qsci-api -API_LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 +API_LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 DEBUG_CONFIGURE_ON= --debug --trace -.include "${.CURDIR}/../py-qt4/bsd.pyqt.mk" .include Index: devel/py-qt4-dbus/pkg-plist =================================================================== --- devel/py-qt4-dbus/pkg-plist +++ devel/py-qt4-dbus/pkg-plist @@ -1,17 +1,17 @@ %%PYTHON_SITELIBDIR%%/PyQt4/QtDBus.so -share/py-sip/QtDBus/QtDBusmod.sip -share/py-sip/QtDBus/qdbusabstractadaptor.sip -share/py-sip/QtDBus/qdbusabstractinterface.sip -share/py-sip/QtDBus/qdbusargument.sip -share/py-sip/QtDBus/qdbusconnection.sip -share/py-sip/QtDBus/qdbusconnectioninterface.sip -share/py-sip/QtDBus/qdbuserror.sip -share/py-sip/QtDBus/qdbusextratypes.sip -share/py-sip/QtDBus/qdbusinterface.sip -share/py-sip/QtDBus/qdbusmessage.sip -share/py-sip/QtDBus/qdbuspendingcall.sip -share/py-sip/QtDBus/qdbusservicewatcher.sip -share/py-sip/QtDBus/qdbusunixfiledescriptor.sip -share/py-sip/QtDBus/qpydbuspendingreply.sip -share/py-sip/QtDBus/qpydbusreply.sip +%%PYQT_SIPDIR%%/QtDBus/QtDBusmod.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusabstractadaptor.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusabstractinterface.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusargument.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusconnection.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusconnectioninterface.sip +%%PYQT_SIPDIR%%/QtDBus/qdbuserror.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusextratypes.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusinterface.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusmessage.sip +%%PYQT_SIPDIR%%/QtDBus/qdbuspendingcall.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusservicewatcher.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusunixfiledescriptor.sip +%%PYQT_SIPDIR%%/QtDBus/qpydbuspendingreply.sip +%%PYQT_SIPDIR%%/QtDBus/qpydbusreply.sip %%API%%share/qt4/qsci/api/python/QtDBus.api Index: devel/py-qt4-dbussupport/Makefile =================================================================== --- devel/py-qt4-dbussupport/Makefile +++ devel/py-qt4-dbussupport/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= dbussupport +PORTVERSION= ${PYQT4_VERSION} CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org @@ -8,14 +9,12 @@ CONFLICTS_INSTALL= py*-qt4-dbus-4.9.1* -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip \ - ${PYTHON_PKGNAMEPREFIX}dbus>=0.8:${PORTSDIR}/devel/py-dbus -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.8:${PORTSDIR}/devel/py-dbus \ - ${PKGNAMEPREFIX}core>=${PYQT4_VERSION}:${PORTSDIR}/devel/py-qt4-core +CONFIGURE_ARGS= --enable QtCore +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes -CONFIGURE_ARGS= --enable QtCore -PYQT4_DIST= yes -USES= pkgconfig +USES= pkgconfig python pyqt:4 +USE_PYQT= sip_build dbus core_run USE_QT4= corelib qmake_build moc_build OPTIONS_DEFINE= DEBUG @@ -26,5 +25,4 @@ PLIST_FILES= %%PYTHON_SITELIBDIR%%/dbus/mainloop/qt.so -.include "${.CURDIR}/../py-qt4/bsd.pyqt.mk" .include Index: devel/py-qt4-declarative/Makefile =================================================================== --- devel/py-qt4-declarative/Makefile +++ devel/py-qt4-declarative/Makefile @@ -1,17 +1,18 @@ # $FreeBSD$ PORTNAME= declarative +PORTVERSION= ${PYQT4_VERSION} CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt4 toolkit, QtDeclarative module -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip -RUN_DEPENDS= ${PKGNAMEPREFIX}gui>=${PYQT4_VERSION}:${PORTSDIR}/x11-toolkits/py-qt4-gui \ - ${PKGNAMEPREFIX}network>=${PYQT4_VERSION}:${PORTSDIR}/net/py-qt4-network +CONFIGURE_ARGS= --enable QtDeclarative +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes -CONFIGURE_ARGS= --enable QtDeclarative -PYQT4_DIST= yes +USES= python pyqt:4 +USE_PYQT= sip_build gui_run network_run USE_QT4= declarative qmake_build moc_build OPTIONS_DEFINE= API DEBUG @@ -21,8 +22,7 @@ API_DESC= Install QtDeclarative API for QScintilla2 API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} API_CONFIGURE_OFF= --no-qsci-api -API_LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 +API_LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 DEBUG_CONFIGURE_ON= --debug --trace -.include "${.CURDIR}/../py-qt4/bsd.pyqt.mk" .include Index: devel/py-qt4-declarative/pkg-plist =================================================================== --- devel/py-qt4-declarative/pkg-plist +++ devel/py-qt4-declarative/pkg-plist @@ -1,21 +1,21 @@ %%PYTHON_SITELIBDIR%%/PyQt4/QtDeclarative.so -share/py-sip/QtDeclarative/QtDeclarativemod.sip -share/py-sip/QtDeclarative/qdeclarativecomponent.sip -share/py-sip/QtDeclarative/qdeclarativecontext.sip -share/py-sip/QtDeclarative/qdeclarativeengine.sip -share/py-sip/QtDeclarative/qdeclarativeerror.sip -share/py-sip/QtDeclarative/qdeclarativeexpression.sip -share/py-sip/QtDeclarative/qdeclarativeextensionplugin.sip -share/py-sip/QtDeclarative/qdeclarativeimageprovider.sip -share/py-sip/QtDeclarative/qdeclarativeitem.sip -share/py-sip/QtDeclarative/qdeclarativelist.sip -share/py-sip/QtDeclarative/qdeclarativenetworkaccessmanagerfactory.sip -share/py-sip/QtDeclarative/qdeclarativeparserstatus.sip -share/py-sip/QtDeclarative/qdeclarativeproperty.sip -share/py-sip/QtDeclarative/qdeclarativepropertymap.sip -share/py-sip/QtDeclarative/qdeclarativepropertyvaluesource.sip -share/py-sip/QtDeclarative/qdeclarativescriptstring.sip -share/py-sip/QtDeclarative/qdeclarativeview.sip -share/py-sip/QtDeclarative/qpydeclarativelistproperty.sip -share/py-sip/QtDeclarative/qpydeclarativepropertyvaluesource.sip +%%PYQT_SIPDIR%%/QtDeclarative/QtDeclarativemod.sip +%%PYQT_SIPDIR%%/QtDeclarative/qdeclarativecomponent.sip +%%PYQT_SIPDIR%%/QtDeclarative/qdeclarativecontext.sip +%%PYQT_SIPDIR%%/QtDeclarative/qdeclarativeengine.sip +%%PYQT_SIPDIR%%/QtDeclarative/qdeclarativeerror.sip +%%PYQT_SIPDIR%%/QtDeclarative/qdeclarativeexpression.sip +%%PYQT_SIPDIR%%/QtDeclarative/qdeclarativeextensionplugin.sip +%%PYQT_SIPDIR%%/QtDeclarative/qdeclarativeimageprovider.sip +%%PYQT_SIPDIR%%/QtDeclarative/qdeclarativeitem.sip +%%PYQT_SIPDIR%%/QtDeclarative/qdeclarativelist.sip +%%PYQT_SIPDIR%%/QtDeclarative/qdeclarativenetworkaccessmanagerfactory.sip +%%PYQT_SIPDIR%%/QtDeclarative/qdeclarativeparserstatus.sip +%%PYQT_SIPDIR%%/QtDeclarative/qdeclarativeproperty.sip +%%PYQT_SIPDIR%%/QtDeclarative/qdeclarativepropertymap.sip +%%PYQT_SIPDIR%%/QtDeclarative/qdeclarativepropertyvaluesource.sip +%%PYQT_SIPDIR%%/QtDeclarative/qdeclarativescriptstring.sip +%%PYQT_SIPDIR%%/QtDeclarative/qdeclarativeview.sip +%%PYQT_SIPDIR%%/QtDeclarative/qpydeclarativelistproperty.sip +%%PYQT_SIPDIR%%/QtDeclarative/qpydeclarativepropertyvaluesource.sip %%API%%share/qt4/qsci/api/python/QtDeclarative.api Index: devel/py-qt4-designer/Makefile =================================================================== --- devel/py-qt4-designer/Makefile +++ devel/py-qt4-designer/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= designer +PORTVERSION= ${PYQT4_VERSION} PORTEPOCH= 1 CATEGORIES= devel python @@ -8,13 +9,12 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt4 toolkit, QtDesigner module -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip -RUN_DEPENDS= ${PKGNAMEPREFIX}gui>=${PYQT4_VERSION}:${PORTSDIR}/x11-toolkits/py-qt4-gui \ - ${PKGNAMEPREFIX}xml>=${PYQT4_VERSION}:${PORTSDIR}/textproc/py-qt4-xml \ - ${PKGNAMEPREFIX}script>=${PYQT4_VERSION}:${PORTSDIR}/devel/py-qt4-script +CONFIGURE_ARGS= --enable QtDesigner --no-designer-plugin +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes -CONFIGURE_ARGS= --enable QtDesigner --no-designer-plugin -PYQT4_DIST= yes +USES= python pyqt:4 +USE_PYQT= sip_build gui_run script_run xml_run USE_QT4= gui xml designer moc_build qmake_build OPTIONS_DEFINE= API DEBUG @@ -24,8 +24,7 @@ API_DESC= Install QtDesigner API for QScintilla2 API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} API_CONFIGURE_OFF= --no-qsci-api -API_LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 +API_LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 DEBUG_CONFIGURE_ON= --debug --trace -.include "${.CURDIR}/../py-qt4/bsd.pyqt.mk" .include Index: devel/py-qt4-designer/pkg-plist =================================================================== --- devel/py-qt4-designer/pkg-plist +++ devel/py-qt4-designer/pkg-plist @@ -1,27 +1,27 @@ %%PYTHON_SITELIBDIR%%/PyQt4/QtDesigner.so -share/py-sip/QtDesigner/QtDesignermod.sip -share/py-sip/QtDesigner/abstractactioneditor.sip -share/py-sip/QtDesigner/abstractformbuilder.sip -share/py-sip/QtDesigner/abstractformeditor.sip -share/py-sip/QtDesigner/abstractformwindow.sip -share/py-sip/QtDesigner/abstractformwindowcursor.sip -share/py-sip/QtDesigner/abstractformwindowmanager.sip -share/py-sip/QtDesigner/abstractobjectinspector.sip -share/py-sip/QtDesigner/abstractpropertyeditor.sip -share/py-sip/QtDesigner/abstractwidgetbox.sip -share/py-sip/QtDesigner/container.sip -share/py-sip/QtDesigner/customwidget.sip -share/py-sip/QtDesigner/default_extensionfactory.sip -share/py-sip/QtDesigner/extension.sip -share/py-sip/QtDesigner/formbuilder.sip -share/py-sip/QtDesigner/membersheet.sip -share/py-sip/QtDesigner/propertysheet.sip -share/py-sip/QtDesigner/qextensionmanager.sip -share/py-sip/QtDesigner/qpydesignercontainerextension.sip -share/py-sip/QtDesigner/qpydesignercustomwidgetcollectionplugin.sip -share/py-sip/QtDesigner/qpydesignercustomwidgetplugin.sip -share/py-sip/QtDesigner/qpydesignermembersheetextension.sip -share/py-sip/QtDesigner/qpydesignerpropertysheetextension.sip -share/py-sip/QtDesigner/qpydesignertaskmenuextension.sip -share/py-sip/QtDesigner/taskmenu.sip +%%PYQT_SIPDIR%%/QtDesigner/QtDesignermod.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractactioneditor.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractformbuilder.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractformeditor.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractformwindow.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractformwindowcursor.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractformwindowmanager.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractobjectinspector.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractpropertyeditor.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractwidgetbox.sip +%%PYQT_SIPDIR%%/QtDesigner/container.sip +%%PYQT_SIPDIR%%/QtDesigner/customwidget.sip +%%PYQT_SIPDIR%%/QtDesigner/default_extensionfactory.sip +%%PYQT_SIPDIR%%/QtDesigner/extension.sip +%%PYQT_SIPDIR%%/QtDesigner/formbuilder.sip +%%PYQT_SIPDIR%%/QtDesigner/membersheet.sip +%%PYQT_SIPDIR%%/QtDesigner/propertysheet.sip +%%PYQT_SIPDIR%%/QtDesigner/qextensionmanager.sip +%%PYQT_SIPDIR%%/QtDesigner/qpydesignercontainerextension.sip +%%PYQT_SIPDIR%%/QtDesigner/qpydesignercustomwidgetcollectionplugin.sip +%%PYQT_SIPDIR%%/QtDesigner/qpydesignercustomwidgetplugin.sip +%%PYQT_SIPDIR%%/QtDesigner/qpydesignermembersheetextension.sip +%%PYQT_SIPDIR%%/QtDesigner/qpydesignerpropertysheetextension.sip +%%PYQT_SIPDIR%%/QtDesigner/qpydesignertaskmenuextension.sip +%%PYQT_SIPDIR%%/QtDesigner/taskmenu.sip %%API%%share/qt4/qsci/api/python/QtDesigner.api Index: devel/py-qt4-designerplugin/Makefile =================================================================== --- devel/py-qt4-designerplugin/Makefile +++ devel/py-qt4-designerplugin/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= designerplugin +PORTVERSION= ${PYQT4_VERSION} PORTEPOCH= 1 CATEGORIES= devel python @@ -8,15 +9,16 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt4 toolkit, QtDesigner plugin -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip -RUN_DEPENDS= ${PKGNAMEPREFIX}designer>=${PYQT4_VERSION}:${PORTSDIR}/devel/py-qt4-designer - BUILD_WRKSRC= ${WRKSRC}/designer INSTALL_WRKSRC= ${WRKSRC}/designer +DESTDIRNAME= INSTALL_ROOT CONFIGURE_ARGS= --enable QtDesigner -DESTDIRNAME= INSTALL_ROOT -PYQT4_DIST= yes +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes + +USES= python pyqt:4 +USE_PYQT= sip_build designer_run USE_QT4= gui xml designer moc_build qmake_build OPTIONS_DEFINE= DEBUG @@ -24,5 +26,4 @@ PLIST_FILES= %%QT_PLUGINDIR%%/designer/libpyqt4.so -.include "${.CURDIR}/../py-qt4/bsd.pyqt.mk" .include Index: devel/py-qt4-help/Makefile =================================================================== --- devel/py-qt4-help/Makefile +++ devel/py-qt4-help/Makefile @@ -1,16 +1,18 @@ # $FreeBSD$ PORTNAME= help +PORTVERSION= ${PYQT4_VERSION} CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt4 toolkit, QtHelp module -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip -RUN_DEPENDS= ${PKGNAMEPREFIX}gui>=${PYQT4_VERSION}:${PORTSDIR}/x11-toolkits/py-qt4-gui +CONFIGURE_ARGS= --enable QtHelp +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes -CONFIGURE_ARGS= --enable QtHelp -PYQT4_DIST= yes +USES= python pyqt:4 +USE_PYQT= sip_build gui_run USE_QT4= help moc_build qmake_build OPTIONS_DEFINE= API DEBUG @@ -20,8 +22,7 @@ API_DESC= Install QtHelp API for QScintilla2 API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} API_CONFIGURE_OFF= --no-qsci-api -API_LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 +API_LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 DEBUG_CONFIGURE_ON= --debug --trace -.include "${.CURDIR}/../py-qt4/bsd.pyqt.mk" .include Index: devel/py-qt4-help/pkg-plist =================================================================== --- devel/py-qt4-help/pkg-plist +++ devel/py-qt4-help/pkg-plist @@ -1,10 +1,10 @@ %%PYTHON_SITELIBDIR%%/PyQt4/QtHelp.so -share/py-sip/QtHelp/QtHelpmod.sip -share/py-sip/QtHelp/qhelpcontentwidget.sip -share/py-sip/QtHelp/qhelpengine.sip -share/py-sip/QtHelp/qhelpenginecore.sip -share/py-sip/QtHelp/qhelpindexwidget.sip -share/py-sip/QtHelp/qhelpsearchengine.sip -share/py-sip/QtHelp/qhelpsearchquerywidget.sip -share/py-sip/QtHelp/qhelpsearchresultwidget.sip +%%PYQT_SIPDIR%%/QtHelp/QtHelpmod.sip +%%PYQT_SIPDIR%%/QtHelp/qhelpcontentwidget.sip +%%PYQT_SIPDIR%%/QtHelp/qhelpengine.sip +%%PYQT_SIPDIR%%/QtHelp/qhelpenginecore.sip +%%PYQT_SIPDIR%%/QtHelp/qhelpindexwidget.sip +%%PYQT_SIPDIR%%/QtHelp/qhelpsearchengine.sip +%%PYQT_SIPDIR%%/QtHelp/qhelpsearchquerywidget.sip +%%PYQT_SIPDIR%%/QtHelp/qhelpsearchresultwidget.sip %%API%%share/qt4/qsci/api/python/QtHelp.api Index: devel/py-qt4-qscintilla2/Makefile =================================================================== --- devel/py-qt4-qscintilla2/Makefile +++ devel/py-qt4-qscintilla2/Makefile @@ -12,23 +12,22 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for QScintilla2 (PyQt4), QSci module -LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip \ - ${PYTHON_PKGNAMEPREFIX}qt4-core>=${PYQT_VERSION}:${PORTSDIR}/devel/py-qt4-core \ - ${PYTHON_PKGNAMEPREFIX}qt4-gui>=${PYQT_VERSION}:${PORTSDIR}/x11-toolkits/py-qt4-gui -RUN_DEPENDS:= ${BUILD_DEPENDS} +LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 +DISTINFO_FILE= ${QSCI2_DISTINFO_FILE} DESTDIRNAME= INSTALL_ROOT -DISTINFO_FILE= ${QSCI2_DISTINFO_FILE} + HAS_CONFIGURE= yes -USES= python -USE_QT4= gui moc_build qmake_build QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +USES= python pyqt:4 +USE_PYQT= sip core gui +USE_QT4= gui moc_build qmake_build + OPTIONS_DEFINE= DEBUG DEBUG_CONFIGURE_ON= --debug --trace -SIPDIR= ${PREFIX}/share/py-sip +OPTIONSFILE?= ${PORT_DBDIR}/py-qt4-${PORTNAME}/options QSCIDIR= ${PREFIX}/share/qt4/qsci CONFIGURE_ARGS= --pyqt PyQt4 -d ${PYTHONPREFIX_SITELIBDIR}/PyQt4 -v ${SIPDIR} \ --apidir ${QSCIDIR} --qmake ${QMAKE} --pyqt-sipdir ${SIPDIR} @@ -35,8 +34,6 @@ WRKSRC= ${WRKDIR}/${DISTNAME}/Python ALL_TARGET= #empty -.include "${.CURDIR}/../py-qt4/bsd.pyqt.mk" - do-configure: cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV}\ ${PYTHON_CMD} configure.py ${CONFIGURE_ARGS} Index: devel/py-qt4-qscintilla2/pkg-plist =================================================================== --- devel/py-qt4-qscintilla2/pkg-plist +++ devel/py-qt4-qscintilla2/pkg-plist @@ -1,56 +1,54 @@ %%PYTHON_SITELIBDIR%%/PyQt4/Qsci.so -share/py-sip/Qsci/qsciabstractapis.sip -share/py-sip/Qsci/qsciapis.sip -share/py-sip/Qsci/qscicommand.sip -share/py-sip/Qsci/qscicommandset.sip -share/py-sip/Qsci/qscidocument.sip -share/py-sip/Qsci/qscilexer.sip -share/py-sip/Qsci/qscilexeravs.sip -share/py-sip/Qsci/qscilexerbash.sip -share/py-sip/Qsci/qscilexerbatch.sip -share/py-sip/Qsci/qscilexercmake.sip -share/py-sip/Qsci/qscilexercoffeescript.sip -share/py-sip/Qsci/qscilexercpp.sip -share/py-sip/Qsci/qscilexercsharp.sip -share/py-sip/Qsci/qscilexercss.sip -share/py-sip/Qsci/qscilexercustom.sip -share/py-sip/Qsci/qscilexerd.sip -share/py-sip/Qsci/qscilexerdiff.sip -share/py-sip/Qsci/qscilexerfortran.sip -share/py-sip/Qsci/qscilexerfortran77.sip -share/py-sip/Qsci/qscilexerhtml.sip -share/py-sip/Qsci/qscilexeridl.sip -share/py-sip/Qsci/qscilexerjava.sip -share/py-sip/Qsci/qscilexerjavascript.sip -share/py-sip/Qsci/qscilexerlua.sip -share/py-sip/Qsci/qscilexermakefile.sip -share/py-sip/Qsci/qscilexermatlab.sip -share/py-sip/Qsci/qscilexeroctave.sip -share/py-sip/Qsci/qscilexerpascal.sip -share/py-sip/Qsci/qscilexerperl.sip -share/py-sip/Qsci/qscilexerpo.sip -share/py-sip/Qsci/qscilexerpostscript.sip -share/py-sip/Qsci/qscilexerpov.sip -share/py-sip/Qsci/qscilexerproperties.sip -share/py-sip/Qsci/qscilexerpython.sip -share/py-sip/Qsci/qscilexerruby.sip -share/py-sip/Qsci/qscilexerspice.sip -share/py-sip/Qsci/qscilexersql.sip -share/py-sip/Qsci/qscilexertcl.sip -share/py-sip/Qsci/qscilexertex.sip -share/py-sip/Qsci/qscilexerverilog.sip -share/py-sip/Qsci/qscilexervhdl.sip -share/py-sip/Qsci/qscilexerxml.sip -share/py-sip/Qsci/qscilexeryaml.sip -share/py-sip/Qsci/qscimacro.sip -share/py-sip/Qsci/qscimod3.sip -share/py-sip/Qsci/qscimod4.sip -share/py-sip/Qsci/qscimod5.sip -share/py-sip/Qsci/qscimodcommon.sip -share/py-sip/Qsci/qsciprinter.sip -share/py-sip/Qsci/qsciscintilla.sip -share/py-sip/Qsci/qsciscintillabase3.sip -share/py-sip/Qsci/qsciscintillabase4.sip -share/py-sip/Qsci/qscistyle.sip -share/py-sip/Qsci/qscistyledtext.sip +%%PYQT_SIPDIR%%/Qsci/qsciabstractapis.sip +%%PYQT_SIPDIR%%/Qsci/qsciapis.sip +%%PYQT_SIPDIR%%/Qsci/qscicommand.sip +%%PYQT_SIPDIR%%/Qsci/qscicommandset.sip +%%PYQT_SIPDIR%%/Qsci/qscidocument.sip +%%PYQT_SIPDIR%%/Qsci/qscilexer.sip +%%PYQT_SIPDIR%%/Qsci/qscilexeravs.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerbash.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerbatch.sip +%%PYQT_SIPDIR%%/Qsci/qscilexercmake.sip +%%PYQT_SIPDIR%%/Qsci/qscilexercoffeescript.sip +%%PYQT_SIPDIR%%/Qsci/qscilexercpp.sip +%%PYQT_SIPDIR%%/Qsci/qscilexercsharp.sip +%%PYQT_SIPDIR%%/Qsci/qscilexercss.sip +%%PYQT_SIPDIR%%/Qsci/qscilexercustom.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerd.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerdiff.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerfortran.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerfortran77.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerhtml.sip +%%PYQT_SIPDIR%%/Qsci/qscilexeridl.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerjava.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerjavascript.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerlua.sip +%%PYQT_SIPDIR%%/Qsci/qscilexermakefile.sip +%%PYQT_SIPDIR%%/Qsci/qscilexermatlab.sip +%%PYQT_SIPDIR%%/Qsci/qscilexeroctave.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerpascal.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerperl.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerpo.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerpostscript.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerpov.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerproperties.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerpython.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerruby.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerspice.sip +%%PYQT_SIPDIR%%/Qsci/qscilexersql.sip +%%PYQT_SIPDIR%%/Qsci/qscilexertcl.sip +%%PYQT_SIPDIR%%/Qsci/qscilexertex.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerverilog.sip +%%PYQT_SIPDIR%%/Qsci/qscilexervhdl.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerxml.sip +%%PYQT_SIPDIR%%/Qsci/qscilexeryaml.sip +%%PYQT_SIPDIR%%/Qsci/qscimacro.sip +%%PYQT_SIPDIR%%/Qsci/qscimod4.sip +%%PYQT_SIPDIR%%/Qsci/qscimod5.sip +%%PYQT_SIPDIR%%/Qsci/qscimodcommon.sip +%%PYQT_SIPDIR%%/Qsci/qsciprinter.sip +%%PYQT_SIPDIR%%/Qsci/qsciscintilla.sip +%%PYQT_SIPDIR%%/Qsci/qsciscintillabase.sip +%%PYQT_SIPDIR%%/Qsci/qscistyle.sip +%%PYQT_SIPDIR%%/Qsci/qscistyledtext.sip share/qt4/qsci/api/python/QScintilla2.api Index: devel/py-qt4-script/Makefile =================================================================== --- devel/py-qt4-script/Makefile +++ devel/py-qt4-script/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= script +PORTVERSION= ${PYQT4_VERSION} PORTEPOCH= 1 CATEGORIES= devel python @@ -8,11 +9,12 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt4 toolkit, QtScript module -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip -RUN_DEPENDS= ${PKGNAMEPREFIX}core>=${PYQT4_VERSION}:${PORTSDIR}/devel/py-qt4-core +CONFIGURE_ARGS= --enable QtScript +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes -CONFIGURE_ARGS= --enable QtScript -PYQT4_DIST= yes +USES= python pyqt:4 +USE_PYQT= sip_build core_run USE_QT4= moc_build script qmake_build OPTIONS_DEFINE= API DEBUG @@ -22,8 +24,7 @@ API_DESC= Install QtScript API for QScintilla2 API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} API_CONFIGURE_OFF= --no-qsci-api -API_LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 +API_LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 DEBUG_CONFIGURE_ON= --debug --trace -.include "${.CURDIR}/../py-qt4/bsd.pyqt.mk" .include Index: devel/py-qt4-script/pkg-plist =================================================================== --- devel/py-qt4-script/pkg-plist +++ devel/py-qt4-script/pkg-plist @@ -1,12 +1,12 @@ %%PYTHON_SITELIBDIR%%/PyQt4/QtScript.so -share/py-sip/QtScript/QtScriptmod.sip -share/py-sip/QtScript/qscriptclass.sip -share/py-sip/QtScript/qscriptclasspropertyiterator.sip -share/py-sip/QtScript/qscriptcontext.sip -share/py-sip/QtScript/qscriptcontextinfo.sip -share/py-sip/QtScript/qscriptengine.sip -share/py-sip/QtScript/qscriptengineagent.sip -share/py-sip/QtScript/qscriptstring.sip -share/py-sip/QtScript/qscriptvalue.sip -share/py-sip/QtScript/qscriptvalueiterator.sip +%%PYQT_SIPDIR%%/QtScript/QtScriptmod.sip +%%PYQT_SIPDIR%%/QtScript/qscriptclass.sip +%%PYQT_SIPDIR%%/QtScript/qscriptclasspropertyiterator.sip +%%PYQT_SIPDIR%%/QtScript/qscriptcontext.sip +%%PYQT_SIPDIR%%/QtScript/qscriptcontextinfo.sip +%%PYQT_SIPDIR%%/QtScript/qscriptengine.sip +%%PYQT_SIPDIR%%/QtScript/qscriptengineagent.sip +%%PYQT_SIPDIR%%/QtScript/qscriptstring.sip +%%PYQT_SIPDIR%%/QtScript/qscriptvalue.sip +%%PYQT_SIPDIR%%/QtScript/qscriptvalueiterator.sip %%API%%share/qt4/qsci/api/python/QtScript.api Index: devel/py-qt4-scripttools/Makefile =================================================================== --- devel/py-qt4-scripttools/Makefile +++ devel/py-qt4-scripttools/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= scripttools +PORTVERSION= ${PYQT4_VERSION} PORTEPOCH= 1 CATEGORIES= devel python @@ -7,11 +8,12 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt4 toolkit, QtScriptTools module -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip -RUN_DEPENDS= ${PKGNAMEPREFIX}core>=${PYQT4_VERSION}:${PORTSDIR}/devel/py-qt4-core +CONFIGURE_ARGS= --enable QtScriptTools +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes -CONFIGURE_ARGS= --enable QtScriptTools -PYQT4_DIST= yes +USES= python pyqt:4 +USE_PYQT= sip_build core_run USE_QT4= moc_build scripttools qmake_build OPTIONS_DEFINE= API DEBUG @@ -21,8 +23,7 @@ API_DESC= Install QtScriptTools API for QScintilla2 API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} API_CONFIGURE_OFF= --no-qsci-api -API_LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 +API_LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 DEBUG_CONFIGURE_ON= --debug --trace -.include "${.CURDIR}/../py-qt4/bsd.pyqt.mk" .include Index: devel/py-qt4-scripttools/pkg-plist =================================================================== --- devel/py-qt4-scripttools/pkg-plist +++ devel/py-qt4-scripttools/pkg-plist @@ -1,4 +1,4 @@ %%PYTHON_SITELIBDIR%%/PyQt4/QtScriptTools.so -share/py-sip/QtScriptTools/QtScriptToolsmod.sip -share/py-sip/QtScriptTools/qscriptenginedebugger.sip +%%PYQT_SIPDIR%%/QtScriptTools/QtScriptToolsmod.sip +%%PYQT_SIPDIR%%/QtScriptTools/qscriptenginedebugger.sip %%API%%share/qt4/qsci/api/python/QtScriptTools.api Index: devel/py-qt4-test/Makefile =================================================================== --- devel/py-qt4-test/Makefile +++ devel/py-qt4-test/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= test +PORTVERSION= ${PYQT4_VERSION} PORTEPOCH= 1 CATEGORIES= devel python @@ -8,11 +9,12 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt4 toolkit, QtTest module -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip -RUN_DEPENDS= ${PKGNAMEPREFIX}gui>=${PYQT4_VERSION}:${PORTSDIR}/x11-toolkits/py-qt4-gui +CONFIGURE_ARGS= --enable QtTest +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes -CONFIGURE_ARGS= --enable QtTest -PYQT4_DIST= yes +USES= python pyqt:4 +USE_PYQT= sip_build gui_run USE_QT4= moc_build gui qtestlib qmake_build OPTIONS_DEFINE= API DEBUG @@ -22,8 +24,7 @@ API_DESC= Install QtTest API for QScintilla2 API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} API_CONFIGURE_OFF= --no-qsci-api -API_LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 +API_LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 DEBUG_CONFIGURE_ON= --debug --trace -.include "${.CURDIR}/../py-qt4/bsd.pyqt.mk" .include Index: devel/py-qt4-test/pkg-plist =================================================================== --- devel/py-qt4-test/pkg-plist +++ devel/py-qt4-test/pkg-plist @@ -1,7 +1,7 @@ %%PYTHON_SITELIBDIR%%/PyQt4/QtTest.so -share/py-sip/QtTest/QtTestmod.sip -share/py-sip/QtTest/qtestcase.sip -share/py-sip/QtTest/qtestkeyboard.sip -share/py-sip/QtTest/qtestmouse.sip -share/py-sip/QtTest/qtestsystem.sip +%%PYQT_SIPDIR%%/QtTest/QtTestmod.sip +%%PYQT_SIPDIR%%/QtTest/qtestcase.sip +%%PYQT_SIPDIR%%/QtTest/qtestkeyboard.sip +%%PYQT_SIPDIR%%/QtTest/qtestmouse.sip +%%PYQT_SIPDIR%%/QtTest/qtestsystem.sip %%API%%share/qt4/qsci/api/python/QtTest.api Index: devel/py-qt4/Makefile =================================================================== --- devel/py-qt4/Makefile +++ devel/py-qt4/Makefile @@ -9,17 +9,18 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt 4 toolkit (meta port) -USES= metaport python +USES= metaport python pyqt:4 -OPTIONS_DEFINE= ALL ${PYQT4_COMPONENTS} -OPTIONS_DEFAULT= ALL -ALL_DESC= All PyQt4 components +OPTIONS_DEFINE= assistant core dbus dbussupport declarative \ + demo designer designerplugin doc gui help \ + multimedia network opengl phonon qscintilla2 \ + script scripttools sql svg test webkit xml \ + xmlpatterns +OPTIONS_DEFAULT= ${OPTIONS_DEFINE} -.include "${.CURDIR}/bsd.pyqt.mk" - -.for component in ${PYQT4_COMPONENTS} -${component}_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}qt4-${component}>=0:${PORTSDIR}/${${component}_PORT} -ALL_RUN_DEPENDS+= ${${component}_RUN_DEPENDS} +.for opt in ${OPTIONS_DEFINE} +${opt}_USE= PYQT=${opt}_run +${opt}_DESC= ${py-${opt}_DESC} .endfor .include Index: devel/py-qt4/bsd.pyqt.mk =================================================================== --- devel/py-qt4/bsd.pyqt.mk +++ devel/py-qt4/bsd.pyqt.mk @@ -1,121 +0,0 @@ -# bsd.pyqt.mk - Global definitions for PyQt related ports -# -# $FreeBSD$ -# -# Port variables: -# PYQT4_DIST - This port is part of PyQt4 itself. Variables and -# targets are then set assuming a certain tarball and -# port layout. -# - -PYQT_MAINTAINER= kde@FreeBSD.org - -MASTER_SITE_RIVERBANK= http://www.riverbankcomputing.com/static/Downloads/%SUBDIR%/ - -MASTER_SITES_SIP= SF/pyqt/sip/sip-${PORTVERSION} \ - GENTOO -MASTER_SITES_PYQT4= SF/pyqt/PyQt4/PyQt-${PORTVERSION} \ - GENTOO -MASTER_SITES_QSCI2= SF/pyqt/QScintilla2/QScintilla-${PORTVERSION} \ - GENTOO - -SIP_VERSION= 4.16.5 -PYQT4_VERSION= 4.11.3 -QSCI2_VERSION= 2.8.4 - -SIP_DISTNAME= sip-${SIP_VERSION} -PYQT4_DISTNAME= PyQt-x11-gpl-${PYQT4_VERSION} -PYQT4_DISTINFO_FILE= ${.CURDIR}/../../devel/py-qt4/distinfo -QSCI2_DISTNAME= QScintilla-gpl-${QSCI2_VERSION} -QSCI2_DISTINFO_FILE= ${.CURDIR}/../../devel/qscintilla2/distinfo - -PYQT4_COMPONENTS= assistant core dbus dbussupport declarative \ - demo designer designerplugin doc gui help \ - multimedia network opengl phonon qscintilla2 \ - script scripttools sql svg test webkit xml \ - xmlpatterns - -assistant_PORT= devel/py-qt4-assistant -core_PORT= devel/py-qt4-core -dbus_PORT= devel/py-qt4-dbus -dbussupport_PORT= devel/py-qt4-dbussupport -declarative_PORT= devel/py-qt4-declarative -demo_PORT= misc/py-qt4-demo -designer_PORT= devel/py-qt4-designer -designerplugin_PORT= devel/py-qt4-designerplugin -doc_PORT= misc/py-qt4-doc -gui_PORT= x11-toolkits/py-qt4-gui -help_PORT= devel/py-qt4-help -multimedia_PORT= multimedia/py-qt4-multimedia -network_PORT= net/py-qt4-network -opengl_PORT= x11/py-qt4-opengl -phonon_PORT= multimedia/py-qt4-phonon -qscintilla2_PORT= devel/py-qt4-qscintilla2 -script_PORT= devel/py-qt4-script -scripttools_PORT= devel/py-qt4-scripttools -sql_PORT= databases/py-qt4-sql -svg_PORT= graphics/py-qt4-svg -test_PORT= devel/py-qt4-test -webkit_PORT= www/py-qt4-webkit -xml_PORT= textproc/py-qt4-xml -xmlpatterns_PORT= textproc/py-qt4-xmlpatterns - -assistant_DESC= Python bindings for QtAssistant module -core_DESC= Python bindings for QtCore module -dbus_DESC= Python bindings for QtDBus module -dbussupport_DESC= Python bindings for D-Bus -declarative_DESC= Python bindings for QtDeclarative module -demo_DESC= PyQt4 demo and examples -designer_DESC= Python bindings for QtDesigner module -designerplugin_DESC= Python bindings for QtDesigner plugin -doc_DESC= PyQt4 documentation -gui_DESC= Python bindings for QtGui module -help_DESC= Python bindings for QtHelp module -multimedia_DESC= Python bindings for Multimedia module -network_DESC= Python bindings for QtNetwork module -opengl_DESC= Python bindings for QtOpenGL module -phonon_DESC= Python bindings for Phonon module -qscintilla2_DESC= Python bindings for QScintilla2 -script_DESC= Python bindings for QtScript module -scripttools_DESC= Python bindings for QtScriptTools module -sql_DESC= Python bindings for QtSql module -svg_DESC= Python bindings for QtSvg module -test_DESC= Python bindings for QtTest module -webkit_DESC= Python bindings for QtWebKit module -xml_DESC= Python bindings for QtXml module -xmlpatterns_DESC= Python bindings for QtXmlPatterns module - -.if defined(PYQT4_DIST) -PORTVERSION= ${PYQT4_VERSION} -MASTER_SITES= ${MASTER_SITES_PYQT4} -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}qt4- -DISTNAME= ${PYQT4_DISTNAME} - -DISTINFO_FILE= ${PYQT4_DISTINFO_FILE} -HAS_CONFIGURE= yes -USES+= python - -QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. - -PATCHDIR= ${.CURDIR}/../../devel/py-qt4-core/files -SIPDIR= ${PREFIX}/share/py-sip -QSCIDIR= ${PREFIX}/share/qt4/qsci -CONFIGURE_ARGS+=-b ${PREFIX}/bin \ - -d ${PYTHONPREFIX_SITELIBDIR} \ - -q ${QMAKE} \ - --confirm-license \ - --sipdir ${SIPDIR} - -# One of the things PyQt4 looks for to determine whether to build the Qt DBus -# main loop module (py-qt4-dbussupport) is whether the dbus/ directory is -# present. Only extract it for that port then. -.if ${PORTNAME} != "dbussupport" -EXTRACT_AFTER_ARGS+= --exclude "${DISTNAME}/dbus" -.endif # ${PORTNAME} != "dbussupport" - -.if !target(do-configure) -do-configure: - cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \ - ${PYTHON_CMD} configure.py ${CONFIGURE_ARGS} -.endif # !target(do-configure) -.endif # defined(PYQT4_DIST) Index: devel/py-qt4/distinfo =================================================================== --- devel/py-qt4/distinfo +++ devel/py-qt4/distinfo @@ -1,2 +1,2 @@ -SHA256 (PyQt-x11-gpl-4.11.3.tar.gz) = 853780dcdbe2e6ba785d703d059b096e1fc49369d3e8d41a060be874b8745686 -SIZE (PyQt-x11-gpl-4.11.3.tar.gz) = 11120237 +SHA256 (PyQt-x11-gpl-4.11.4.tar.gz) = fc1fe77495432ba3b0d74ff5cb164d375a97f5dddb728256330f615a7cdcf407 +SIZE (PyQt-x11-gpl-4.11.4.tar.gz) = 11317088 Index: devel/py-qt5-core/Makefile =================================================================== --- devel/py-qt5-core/Makefile +++ devel/py-qt5-core/Makefile @@ -0,0 +1,51 @@ +# $FreeBSD$ + +PORTNAME= core +CATEGORIES= devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtCore module + +CONFIGURE_ARGS= --enable QtCore +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes + +USES= python pyqt:5 qmake +USE_PYTHON= py3kplist +USE_PYQT= sip +USE_QT5= core + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtCore API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 + +DEBUG_CONFIGURE_ON= --debug --trace + +.include + +# Bug 180467: We need to remove the port_v${VERSION} directory that does not +# correspond to the Python version being used to avoid failures in the +# bytecompilation calls in post-install. +PLIST_SUB+= PYTHON_MAJOR_VER="${PYTHON_MAJOR_VER}" +post-patch: +.if ${PYTHON_MAJOR_VER} == "2" + ${RM} -rf ${WRKSRC}/pyuic/uic/port_v3 +.elif ${PYTHON_MAJOR_VER} == "3" + ${RM} -rf ${WRKSRC}/pyuic/uic/port_v2 +.endif + +post-install: + ${INSTALL_DATA} ${FILESDIR}/Qt.py ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/PyQt5 + ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py \ + -f -d ${PYTHONPREFIX_SITELIBDIR} \ + ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/PyQt5 + ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py \ + -f -d ${PYTHONPREFIX_SITELIBDIR} \ + ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/PyQt5 + +.include Index: devel/py-qt5-core/files/Qt.py =================================================================== --- devel/py-qt5-core/files/Qt.py +++ devel/py-qt5-core/files/Qt.py @@ -0,0 +1,73 @@ +# Replacement for the composite module PyQt5.Qt for FreeBSD +# Provides namespace for all installed PyQt5 modules by importing them + +from PyQt5.QtCore import * + +try: + from PyQt5.QtGui import * +except ImportError: + pass +try: + from PyQt5.QtDBus import * +except ImportError: + pass +try: + from PyQt5.QtMultimedia import * +except ImportError: + pass +try: + from PyQt5.QtMultimediaWidgets import * +except ImportError: + pass +try: + from PyQt5.QtNetwork import * +except ImportError: + pass +try: + from PyQt5.QtOpenGL import * +except ImportError: + pass +try: + from PyQt5.QtPrintSupport import * +except ImportError: + pass +try: + from PyQt5.QtQml import * +except ImportError: + pass +try: + from PyQt5.QtSerialPort import * +except ImportError: + pass +try: + from PyQt5.QtSql import * +except ImportError: + pass +try: + from PyQt5.QtSvg import * +except ImportError: + pass +try: + from PyQt5.QtTest import * +except ImportError: + pass +try: + from PyQt5.QtWebKit import * +except ImportError: + pass +try: + from PyQt5.QtWebKitWidgets import * +except ImportError: + pass +try: + from PyQt5.QtWidgets import * +except ImportError: + pass +try: + from PyQt5.QtXml import * +except ImportError: + pass +try: + from PyQt5.QtXmlPatterns import * +except ImportError: + pass Index: devel/py-qt5-core/files/patch-configure.py =================================================================== --- devel/py-qt5-core/files/patch-configure.py +++ devel/py-qt5-core/files/patch-configure.py @@ -0,0 +1,109 @@ +--- configure.py.orig 2015-10-25 11:42:16 UTC ++++ configure.py +@@ -1234,7 +1234,7 @@ def check_modules(target_config, disable + if the output is to be displayed. + """ + +- target_config.pyqt_modules.append('QtCore') ++ check_module(target_config, verbose, 'QtCore', 'qobject.h', 'new QObject()') + + check_module(target_config, disabled_modules, verbose, 'QtGui', 'qfont.h', + 'new QFont()') +@@ -1458,16 +1458,17 @@ def generate_makefiles(target_config, ve + + generate_sip_module_code(target_config, verbose, no_timestamp, parts, + tracing, 'Qt', sip_flags) +- subdirs.append('Qt') + + if not target_config.no_tools: +- # Generate pylupdate5 and pyrcc5. +- for tool in ('pylupdate', 'pyrcc'): +- generate_application_makefile(target_config, verbose, tool) +- subdirs.append(tool) ++ if "QtXml" in target_config.pyqt_modules: ++ # Generate pylupdate5 and pyrcc5. ++ for tool in ('pylupdate', 'pyrcc'): ++ generate_application_makefile(target_config, verbose, tool) ++ subdirs.append(tool) + +- # Generate the pyuic5 wrapper. +- pyuic_wrapper = generate_pyuic5_wrapper(target_config) ++ if "QtCore" in target_config.pyqt_modules: ++ # Generate the pyuic5 wrapper. ++ pyuic_wrapper = generate_pyuic5_wrapper(target_config) + + # Generate the Qt Designer plugin. + if not target_config.no_designer_plugin and 'QtDesigner' in target_config.pyqt_modules: +@@ -1498,6 +1499,7 @@ def generate_makefiles(target_config, ve + os.remove(mname + '.api') + + f.close() ++ os.rename('PyQt5.api', mname + '.api') + + # Generate the Python dbus module. + if target_config.pydbus_module_dir != '': +@@ -1526,21 +1528,24 @@ def generate_makefiles(target_config, ve + out_f.write('''TEMPLATE = subdirs + CONFIG += ordered nostrip + SUBDIRS = %s ++''' % (' '.join(subdirs))) + ++ if "QtCore" in target_config.pyqt_modules: ++ out_f.write(''' + init_py.files = %s + init_py.path = %s/PyQt5 + INSTALLS += init_py +-''' % (' '.join(subdirs), source_path('__init__.py'), target_config.pyqt_module_dir)) ++''' % (source_path('__init__.py'), target_config.pyqt_module_dir)) + +- # Install the uic module and the pyuic5 wrapper. +- out_f.write(''' ++ # Install the uic module and the pyuic5 wrapper. ++ out_f.write(''' + uic_package.files = %s + uic_package.path = %s/PyQt5 + INSTALLS += uic_package + ''' % (source_path('pyuic', 'uic'), target_config.pyqt_module_dir)) + +- if not target_config.no_tools: +- out_f.write(''' ++ if not target_config.no_tools: ++ out_f.write(''' + pyuic5.files = %s + pyuic5.path = %s + INSTALLS += pyuic5 +@@ -1549,17 +1554,17 @@ INSTALLS += pyuic5 + # Install the QScintilla .api file. + if target_config.qsci_api: + out_f.write(''' +-qscintilla_api.files = PyQt5.api ++qscintilla_api.files = %s.api + qscintilla_api.path = %s/api/python + INSTALLS += qscintilla_api +-''' % target_config.qsci_api_dir) ++''' % (mname, target_config.qsci_api_dir)) + + out_f.close() + + # Make the pyuic5 wrapper executable on platforms that support it. If we + # did it after running qmake then (on Linux) the execute bits would be + # stripped on installation. +- if not target_config.no_tools and target_config.py_platform != 'win32': ++ if not target_config.no_tools and target_config.py_platform != 'win32' and "QtCore" in target_config.pyqt_modules: + inform("Making the %s wrapper executable..." % pyuic_wrapper) + + sbuf = os.stat(pyuic_wrapper) +@@ -2255,9 +2260,10 @@ def get_sip_flags(target_config): + sip_flags.append(version_to_sip_tag(target_config.qt_version)) + + # Handle any feature flags. +- for xf in target_config.pyqt_disabled_features: +- sip_flags.append('-x') +- sip_flags.append(xf) ++ # Disable for FreeBSD ports. ++ #for xf in target_config.pyqt_disabled_features: ++ # sip_flags.append('-x') ++ # sip_flags.append(xf) + + # Handle the version specific Python features. + if target_config.py_version < 0x030000: Index: devel/py-qt5-core/pkg-descr =================================================================== --- devel/py-qt5-core/pkg-descr +++ devel/py-qt5-core/pkg-descr @@ -0,0 +1,4 @@ +PyQt4 is a set of Python bindings for Digia's Qt4 application framework. +This package provides the QtCore module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ Index: devel/py-qt5-core/pkg-plist =================================================================== --- devel/py-qt5-core/pkg-plist +++ devel/py-qt5-core/pkg-plist @@ -0,0 +1,219 @@ +bin/pyuic5 +%%PYTHON_SITELIBDIR%%/PyQt5/Qt.py +%%PYTHON_SITELIBDIR%%/PyQt5/Qt.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/Qt.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/QtCore.so +%%PYTHON_SITELIBDIR%%/PyQt5/__init__.py +%%PYTHON_SITELIBDIR%%/PyQt5/__init__.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/__init__.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/__init__.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/__init__.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/__init__.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/compiler.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/compiler.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/compiler.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/indenter.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/indenter.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/indenter.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/misc.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/misc.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/misc.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/proxy_metaclass.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/proxy_metaclass.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/proxy_metaclass.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/qobjectcreator.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/qobjectcreator.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/qobjectcreator.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/qtproxies.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/qtproxies.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/qtproxies.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/__init__.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/__init__.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/__init__.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/loader.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/loader.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/loader.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/qobjectcreator.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/qobjectcreator.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/qobjectcreator.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/__init__.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/__init__.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/__init__.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/driver.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/driver.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/driver.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/exceptions.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/exceptions.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/exceptions.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/icon_cache.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/icon_cache.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/icon_cache.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/objcreator.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/objcreator.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/objcreator.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/__init__.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/__init__.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/__init__.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/as_string.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/as_string.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/as_string.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/ascii_upper.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/ascii_upper.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/ascii_upper.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/invoke.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/invoke.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/invoke.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/load_plugin.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/load_plugin.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/load_plugin.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/proxy_base.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/proxy_base.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/proxy_base.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/string_io.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/string_io.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/string_io.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/properties.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/properties.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/properties.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/pyuic.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/pyuic.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/pyuic.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/uiparser.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/uiparser.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/uiparser.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qaxcontainer.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qaxcontainer.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qaxcontainer.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qscintilla.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qscintilla.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qscintilla.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtprintsupport.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtprintsupport.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtprintsupport.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtquickwidgets.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtquickwidgets.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtquickwidgets.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtwebkit.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtwebkit.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtwebkit.pyo +%%PYQT_SIPDIR%%/QtCore/QtCoremod.sip +%%PYQT_SIPDIR%%/QtCore/qabstractanimation.sip +%%PYQT_SIPDIR%%/QtCore/qabstracteventdispatcher.sip +%%PYQT_SIPDIR%%/QtCore/qabstractitemmodel.sip +%%PYQT_SIPDIR%%/QtCore/qabstractnativeeventfilter.sip +%%PYQT_SIPDIR%%/QtCore/qabstractproxymodel.sip +%%PYQT_SIPDIR%%/QtCore/qabstractstate.sip +%%PYQT_SIPDIR%%/QtCore/qabstracttransition.sip +%%PYQT_SIPDIR%%/QtCore/qanimationgroup.sip +%%PYQT_SIPDIR%%/QtCore/qbasictimer.sip +%%PYQT_SIPDIR%%/QtCore/qbitarray.sip +%%PYQT_SIPDIR%%/QtCore/qbuffer.sip +%%PYQT_SIPDIR%%/QtCore/qbytearray.sip +%%PYQT_SIPDIR%%/QtCore/qbytearraymatcher.sip +%%PYQT_SIPDIR%%/QtCore/qchar.sip +%%PYQT_SIPDIR%%/QtCore/qcollator.sip +%%PYQT_SIPDIR%%/QtCore/qcommandlineoption.sip +%%PYQT_SIPDIR%%/QtCore/qcommandlineparser.sip +%%PYQT_SIPDIR%%/QtCore/qcoreapplication.sip +%%PYQT_SIPDIR%%/QtCore/qcoreevent.sip +%%PYQT_SIPDIR%%/QtCore/qcryptographichash.sip +%%PYQT_SIPDIR%%/QtCore/qdatastream.sip +%%PYQT_SIPDIR%%/QtCore/qdatetime.sip +%%PYQT_SIPDIR%%/QtCore/qdir.sip +%%PYQT_SIPDIR%%/QtCore/qdiriterator.sip +%%PYQT_SIPDIR%%/QtCore/qeasingcurve.sip +%%PYQT_SIPDIR%%/QtCore/qelapsedtimer.sip +%%PYQT_SIPDIR%%/QtCore/qeventloop.sip +%%PYQT_SIPDIR%%/QtCore/qeventtransition.sip +%%PYQT_SIPDIR%%/QtCore/qfile.sip +%%PYQT_SIPDIR%%/QtCore/qfiledevice.sip +%%PYQT_SIPDIR%%/QtCore/qfileinfo.sip +%%PYQT_SIPDIR%%/QtCore/qfileselector.sip +%%PYQT_SIPDIR%%/QtCore/qfilesystemwatcher.sip +%%PYQT_SIPDIR%%/QtCore/qfinalstate.sip +%%PYQT_SIPDIR%%/QtCore/qglobal.sip +%%PYQT_SIPDIR%%/QtCore/qhistorystate.sip +%%PYQT_SIPDIR%%/QtCore/qidentityproxymodel.sip +%%PYQT_SIPDIR%%/QtCore/qiodevice.sip +%%PYQT_SIPDIR%%/QtCore/qitemselectionmodel.sip +%%PYQT_SIPDIR%%/QtCore/qjsonarray.sip +%%PYQT_SIPDIR%%/QtCore/qjsondocument.sip +%%PYQT_SIPDIR%%/QtCore/qjsonobject.sip +%%PYQT_SIPDIR%%/QtCore/qjsonvalue.sip +%%PYQT_SIPDIR%%/QtCore/qlibrary.sip +%%PYQT_SIPDIR%%/QtCore/qlibraryinfo.sip +%%PYQT_SIPDIR%%/QtCore/qline.sip +%%PYQT_SIPDIR%%/QtCore/qlocale.sip +%%PYQT_SIPDIR%%/QtCore/qlockfile.sip +%%PYQT_SIPDIR%%/QtCore/qlogging.sip +%%PYQT_SIPDIR%%/QtCore/qmargins.sip +%%PYQT_SIPDIR%%/QtCore/qmessageauthenticationcode.sip +%%PYQT_SIPDIR%%/QtCore/qmetaobject.sip +%%PYQT_SIPDIR%%/QtCore/qmetatype.sip +%%PYQT_SIPDIR%%/QtCore/qmimedata.sip +%%PYQT_SIPDIR%%/QtCore/qmimedatabase.sip +%%PYQT_SIPDIR%%/QtCore/qmimetype.sip +%%PYQT_SIPDIR%%/QtCore/qmutex.sip +%%PYQT_SIPDIR%%/QtCore/qnamespace.sip +%%PYQT_SIPDIR%%/QtCore/qnumeric.sip +%%PYQT_SIPDIR%%/QtCore/qobject.sip +%%PYQT_SIPDIR%%/QtCore/qobjectcleanuphandler.sip +%%PYQT_SIPDIR%%/QtCore/qobjectdefs.sip +%%PYQT_SIPDIR%%/QtCore/qparallelanimationgroup.sip +%%PYQT_SIPDIR%%/QtCore/qpauseanimation.sip +%%PYQT_SIPDIR%%/QtCore/qpluginloader.sip +%%PYQT_SIPDIR%%/QtCore/qpoint.sip +%%PYQT_SIPDIR%%/QtCore/qprocess.sip +%%PYQT_SIPDIR%%/QtCore/qpropertyanimation.sip +%%PYQT_SIPDIR%%/QtCore/qpycore_qhash.sip +%%PYQT_SIPDIR%%/QtCore/qpycore_qlist.sip +%%PYQT_SIPDIR%%/QtCore/qpycore_qmap.sip +%%PYQT_SIPDIR%%/QtCore/qpycore_qpair.sip +%%PYQT_SIPDIR%%/QtCore/qpycore_qset.sip +%%PYQT_SIPDIR%%/QtCore/qpycore_qvector.sip +%%PYQT_SIPDIR%%/QtCore/qpycore_virtual_error_handler.sip +%%PYQT_SIPDIR%%/QtCore/qreadwritelock.sip +%%PYQT_SIPDIR%%/QtCore/qrect.sip +%%PYQT_SIPDIR%%/QtCore/qregexp.sip +%%PYQT_SIPDIR%%/QtCore/qregularexpression.sip +%%PYQT_SIPDIR%%/QtCore/qresource.sip +%%PYQT_SIPDIR%%/QtCore/qrunnable.sip +%%PYQT_SIPDIR%%/QtCore/qsavefile.sip +%%PYQT_SIPDIR%%/QtCore/qsemaphore.sip +%%PYQT_SIPDIR%%/QtCore/qsequentialanimationgroup.sip +%%PYQT_SIPDIR%%/QtCore/qsettings.sip +%%PYQT_SIPDIR%%/QtCore/qsharedmemory.sip +%%PYQT_SIPDIR%%/QtCore/qsignalmapper.sip +%%PYQT_SIPDIR%%/QtCore/qsignaltransition.sip +%%PYQT_SIPDIR%%/QtCore/qsize.sip +%%PYQT_SIPDIR%%/QtCore/qsocketnotifier.sip +%%PYQT_SIPDIR%%/QtCore/qsortfilterproxymodel.sip +%%PYQT_SIPDIR%%/QtCore/qstandardpaths.sip +%%PYQT_SIPDIR%%/QtCore/qstate.sip +%%PYQT_SIPDIR%%/QtCore/qstatemachine.sip +%%PYQT_SIPDIR%%/QtCore/qstorageinfo.sip +%%PYQT_SIPDIR%%/QtCore/qstring.sip +%%PYQT_SIPDIR%%/QtCore/qstringlist.sip +%%PYQT_SIPDIR%%/QtCore/qstringlistmodel.sip +%%PYQT_SIPDIR%%/QtCore/qsysinfo.sip +%%PYQT_SIPDIR%%/QtCore/qsystemsemaphore.sip +%%PYQT_SIPDIR%%/QtCore/qtemporarydir.sip +%%PYQT_SIPDIR%%/QtCore/qtemporaryfile.sip +%%PYQT_SIPDIR%%/QtCore/qtextboundaryfinder.sip +%%PYQT_SIPDIR%%/QtCore/qtextcodec.sip +%%PYQT_SIPDIR%%/QtCore/qtextstream.sip +%%PYQT_SIPDIR%%/QtCore/qthread.sip +%%PYQT_SIPDIR%%/QtCore/qthreadpool.sip +%%PYQT_SIPDIR%%/QtCore/qtimeline.sip +%%PYQT_SIPDIR%%/QtCore/qtimer.sip +%%PYQT_SIPDIR%%/QtCore/qtimezone.sip +%%PYQT_SIPDIR%%/QtCore/qtranslator.sip +%%PYQT_SIPDIR%%/QtCore/qurl.sip +%%PYQT_SIPDIR%%/QtCore/qurlquery.sip +%%PYQT_SIPDIR%%/QtCore/quuid.sip +%%PYQT_SIPDIR%%/QtCore/qvariant.sip +%%PYQT_SIPDIR%%/QtCore/qvariantanimation.sip +%%PYQT_SIPDIR%%/QtCore/qwaitcondition.sip +%%PYQT_SIPDIR%%/QtCore/qwineventnotifier.sip +%%PYQT_SIPDIR%%/QtCore/qxmlstream.sip +%%API%%share/qt5/qsci/api/python/QtCore.api Index: devel/py-qt5-dbus/Makefile =================================================================== --- devel/py-qt5-dbus/Makefile +++ devel/py-qt5-dbus/Makefile @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= dbus +CATEGORIES= devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtDBus module + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.8:${PORTSDIR}/devel/py-dbus +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.8:${PORTSDIR}/devel/py-dbus + +CONFIGURE_ARGS= --enable QtDBus +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes + +USES= python pyqt:5 qmake +USE_PYQT= sip_build core_run +USE_QT5= dbus + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtDBus API for QScintilla2 +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include Index: devel/py-qt5-dbus/pkg-descr =================================================================== --- devel/py-qt5-dbus/pkg-descr +++ devel/py-qt5-dbus/pkg-descr @@ -0,0 +1,4 @@ +PyQt4 is a set of Python bindings for Digia's Qt4 application framework. +This package provides the D-BUS module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ Index: devel/py-qt5-dbus/pkg-plist =================================================================== --- devel/py-qt5-dbus/pkg-plist +++ devel/py-qt5-dbus/pkg-plist @@ -0,0 +1,17 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtDBus.so +%%PYQT_SIPDIR%%/QtDBus/QtDBusmod.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusabstractadaptor.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusabstractinterface.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusargument.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusconnection.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusconnectioninterface.sip +%%PYQT_SIPDIR%%/QtDBus/qdbuserror.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusextratypes.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusinterface.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusmessage.sip +%%PYQT_SIPDIR%%/QtDBus/qdbuspendingcall.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusservicewatcher.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusunixfiledescriptor.sip +%%PYQT_SIPDIR%%/QtDBus/qpydbuspendingreply.sip +%%PYQT_SIPDIR%%/QtDBus/qpydbusreply.sip +%%API%%share/qt5/qsci/api/python/QtDBus.api Index: devel/py-qt5-designer/Makefile =================================================================== --- devel/py-qt5-designer/Makefile +++ devel/py-qt5-designer/Makefile @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= designer +CATEGORIES= devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtDesigner module + +CONFIGURE_ARGS= --enable QtDesigner +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes + +USES= python pyqt:5 qmake +USE_PYQT= sip_build gui_run xml_run network_run printsupport_run \ + webkit_run widgets_run +USE_QT5= buildtools gui designer network printsupport webkit \ + widgets xml + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtDesigner API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include Index: devel/py-qt5-designer/pkg-descr =================================================================== --- devel/py-qt5-designer/pkg-descr +++ devel/py-qt5-designer/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtDesigner module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ Index: devel/py-qt5-designer/pkg-plist =================================================================== --- devel/py-qt5-designer/pkg-plist +++ devel/py-qt5-designer/pkg-plist @@ -0,0 +1,28 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtDesigner.so +%%QT_PLUGINDIR%%/designer/libpyqt5.so +%%PYQT_SIPDIR%%/QtDesigner/QtDesignermod.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractactioneditor.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractformbuilder.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractformeditor.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractformwindow.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractformwindowcursor.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractformwindowmanager.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractobjectinspector.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractpropertyeditor.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractwidgetbox.sip +%%PYQT_SIPDIR%%/QtDesigner/container.sip +%%PYQT_SIPDIR%%/QtDesigner/customwidget.sip +%%PYQT_SIPDIR%%/QtDesigner/default_extensionfactory.sip +%%PYQT_SIPDIR%%/QtDesigner/extension.sip +%%PYQT_SIPDIR%%/QtDesigner/formbuilder.sip +%%PYQT_SIPDIR%%/QtDesigner/membersheet.sip +%%PYQT_SIPDIR%%/QtDesigner/propertysheet.sip +%%PYQT_SIPDIR%%/QtDesigner/qextensionmanager.sip +%%PYQT_SIPDIR%%/QtDesigner/qpydesignercontainerextension.sip +%%PYQT_SIPDIR%%/QtDesigner/qpydesignercustomwidgetcollectionplugin.sip +%%PYQT_SIPDIR%%/QtDesigner/qpydesignercustomwidgetplugin.sip +%%PYQT_SIPDIR%%/QtDesigner/qpydesignermembersheetextension.sip +%%PYQT_SIPDIR%%/QtDesigner/qpydesignerpropertysheetextension.sip +%%PYQT_SIPDIR%%/QtDesigner/qpydesignertaskmenuextension.sip +%%PYQT_SIPDIR%%/QtDesigner/taskmenu.sip +%%API%%share/qt5/qsci/api/python/QtDesigner.api Index: devel/py-qt5-qscintilla2/Makefile =================================================================== --- devel/py-qt5-qscintilla2/Makefile +++ devel/py-qt5-qscintilla2/Makefile @@ -0,0 +1,38 @@ +# $FreeBSD$ + +PORTNAME= qscintilla2 +PORTVERSION= ${QSCI2_VERSION} +CATEGORIES= devel python +MASTER_SITES= ${MASTER_SITES_QSCI2} +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}qt5- +DISTNAME= ${QSCI2_DISTNAME} + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for QScintilla2 (PyQt5), QSci module + +LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 + +DISTINFO_FILE= ${QSCI2_DISTINFO_FILE} +DESTDIRNAME= INSTALL_ROOT + +HAS_CONFIGURE= yes +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. + +USES= python pyqt:5 qmake +USE_PYQT= sip core gui printsupport widgets +USE_QT5= gui buildtools_build + +OPTIONS_DEFINE= DEBUG +DEBUG_CONFIGURE_ON= --debug --trace + +QSCIDIR= ${PREFIX}/share/qt5/qsci +CONFIGURE_ARGS= --pyqt PyQt5 -d ${PYTHONPREFIX_SITELIBDIR}/PyQt5 -v ${SIPDIR} \ + --apidir ${QSCIDIR} --qmake ${QMAKE} --pyqt-sipdir ${SIPDIR} +WRKSRC= ${WRKDIR}/${DISTNAME}/Python +ALL_TARGET= #empty + +do-configure: + cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV}\ + ${PYTHON_CMD} configure.py ${CONFIGURE_ARGS} + +.include Index: devel/py-qt5-qscintilla2/pkg-descr =================================================================== --- devel/py-qt5-qscintilla2/pkg-descr +++ devel/py-qt5-qscintilla2/pkg-descr @@ -0,0 +1,5 @@ +PyQt4 is a set of Python bindings for Digia's Qt4 application framework. +This package provides the Qsci module for the Qscintilla2 editor component. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ + http://www.riverbankcomputing.co.uk/software/qscintilla/ Index: devel/py-qt5-qscintilla2/pkg-plist =================================================================== --- devel/py-qt5-qscintilla2/pkg-plist +++ devel/py-qt5-qscintilla2/pkg-plist @@ -0,0 +1,54 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/Qsci.so +%%PYQT_SIPDIR%%/Qsci/qsciabstractapis.sip +%%PYQT_SIPDIR%%/Qsci/qsciapis.sip +%%PYQT_SIPDIR%%/Qsci/qscicommand.sip +%%PYQT_SIPDIR%%/Qsci/qscicommandset.sip +%%PYQT_SIPDIR%%/Qsci/qscidocument.sip +%%PYQT_SIPDIR%%/Qsci/qscilexer.sip +%%PYQT_SIPDIR%%/Qsci/qscilexeravs.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerbash.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerbatch.sip +%%PYQT_SIPDIR%%/Qsci/qscilexercmake.sip +%%PYQT_SIPDIR%%/Qsci/qscilexercoffeescript.sip +%%PYQT_SIPDIR%%/Qsci/qscilexercpp.sip +%%PYQT_SIPDIR%%/Qsci/qscilexercsharp.sip +%%PYQT_SIPDIR%%/Qsci/qscilexercss.sip +%%PYQT_SIPDIR%%/Qsci/qscilexercustom.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerd.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerdiff.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerfortran.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerfortran77.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerhtml.sip +%%PYQT_SIPDIR%%/Qsci/qscilexeridl.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerjava.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerjavascript.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerlua.sip +%%PYQT_SIPDIR%%/Qsci/qscilexermakefile.sip +%%PYQT_SIPDIR%%/Qsci/qscilexermatlab.sip +%%PYQT_SIPDIR%%/Qsci/qscilexeroctave.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerpascal.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerperl.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerpo.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerpostscript.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerpov.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerproperties.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerpython.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerruby.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerspice.sip +%%PYQT_SIPDIR%%/Qsci/qscilexersql.sip +%%PYQT_SIPDIR%%/Qsci/qscilexertcl.sip +%%PYQT_SIPDIR%%/Qsci/qscilexertex.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerverilog.sip +%%PYQT_SIPDIR%%/Qsci/qscilexervhdl.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerxml.sip +%%PYQT_SIPDIR%%/Qsci/qscilexeryaml.sip +%%PYQT_SIPDIR%%/Qsci/qscimacro.sip +%%PYQT_SIPDIR%%/Qsci/qscimod4.sip +%%PYQT_SIPDIR%%/Qsci/qscimod5.sip +%%PYQT_SIPDIR%%/Qsci/qscimodcommon.sip +%%PYQT_SIPDIR%%/Qsci/qsciprinter.sip +%%PYQT_SIPDIR%%/Qsci/qsciscintilla.sip +%%PYQT_SIPDIR%%/Qsci/qsciscintillabase.sip +%%PYQT_SIPDIR%%/Qsci/qscistyle.sip +%%PYQT_SIPDIR%%/Qsci/qscistyledtext.sip +%%QT_DATADIR%%/qsci/api/python/QScintilla2.api Index: devel/py-qt5-test/Makefile =================================================================== --- devel/py-qt5-test/Makefile +++ devel/py-qt5-test/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= test +CATEGORIES= devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtTest module + +CONFIGURE_ARGS= --enable QtTest +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes + +USES= python pyqt:5 qmake +USE_PYQT= sip_build widgets_run +USE_QT5= buildtools_build widgets testlib + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtTest API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include Index: devel/py-qt5-test/pkg-descr =================================================================== --- devel/py-qt5-test/pkg-descr +++ devel/py-qt5-test/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtTest module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ Index: devel/py-qt5-test/pkg-plist =================================================================== --- devel/py-qt5-test/pkg-plist +++ devel/py-qt5-test/pkg-plist @@ -0,0 +1,9 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtTest.so +%%PYQT_SIPDIR%%/QtTest/QtTestmod.sip +%%PYQT_SIPDIR%%/QtTest/qsignalspy.sip +%%PYQT_SIPDIR%%/QtTest/qtestcase.sip +%%PYQT_SIPDIR%%/QtTest/qtestkeyboard.sip +%%PYQT_SIPDIR%%/QtTest/qtestmouse.sip +%%PYQT_SIPDIR%%/QtTest/qtestsystem.sip +%%PYQT_SIPDIR%%/QtTest/qtesttouch.sip +%%API%%share/qt5/qsci/api/python/QtTest.api Index: devel/py-qt5/Makefile =================================================================== --- devel/py-qt5/Makefile +++ devel/py-qt5/Makefile @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= qt5 +PORTVERSION= ${PYQT5_VERSION} +CATEGORIES= devel python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt 5 toolkit (meta port) + +USES= metaport python pyqt:5 + +OPTIONS_DEFINE= core dbus \ + demo designer doc gui \ + multimedia network opengl qscintilla2 \ + sql svg test webkit xml \ + xmlpatterns \ + printsupport serialport webkitwidgets widgets +OPTIONS_DEFAULT= ${OPTIONS_DEFINE} + +.for opt in ${OPTIONS_DEFINE} +${opt}_USE= PYQT=${opt}_run +${opt}_DESC= ${py-${opt}_DESC} +.endfor + +.include Index: devel/py-qt5/distinfo =================================================================== --- devel/py-qt5/distinfo +++ devel/py-qt5/distinfo @@ -0,0 +1,2 @@ +SHA256 (PyQt-gpl-5.5.1.tar.gz) = 0a70ef94fbffcf674b0dde024aae2a2a7a3f5a8c42806109ff7df2c941bd8386 +SIZE (PyQt-gpl-5.5.1.tar.gz) = 3705749 Index: devel/py-qt5/pkg-descr =================================================================== --- devel/py-qt5/pkg-descr +++ devel/py-qt5/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the PyQt5 metaport. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ Index: devel/py-sip/Makefile =================================================================== --- devel/py-sip/Makefile +++ devel/py-sip/Makefile @@ -12,11 +12,10 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Python to C and C++ bindings generator -USES= python -USE_PYTHON= py3kplist +USES= python pyqt:sip +USE_PYTHON= concurrent py3kplist +USE_PYQT= # -DATADIR= ${PREFIX}/share/py-${PORTNAME} -DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} CONFIGURE_ARGS= -b ${PREFIX}/bin -d ${PYTHONPREFIX_SITELIBDIR} \ -e ${PYTHONPREFIX_INCLUDEDIR} -v ${DATADIR} \ CC="${CC}" CXX="${CXX}" LINK="${CXX}" LINK_SHLIB="${CXX}" \ @@ -28,7 +27,6 @@ OPTIONS_DEFINE= DOCS DEBUG DEBUG_CONFIGURE_ON= --debug -.include "${.CURDIR}/../py-qt4/bsd.pyqt.mk" do-configure: cd ${WRKSRC} && ${PYTHON_CMD} configure.py ${CONFIGURE_ARGS} Index: devel/py-sip/distinfo =================================================================== --- devel/py-sip/distinfo +++ devel/py-sip/distinfo @@ -1,2 +1,2 @@ -SHA256 (sip-4.16.5.tar.gz) = a00ba34c30bedc0f61916eb10bd12867b4754910a766647e3e58f88bd00f1e87 -SIZE (sip-4.16.5.tar.gz) = 859672 +SHA256 (sip-4.17.tar.gz) = 603026822adf8673fca6e0ea20b02c3c4a2dccb309647656f7269adc8de89060 +SIZE (sip-4.17.tar.gz) = 959835 Index: devel/qscintilla2-designerplugin/Makefile =================================================================== --- devel/qscintilla2-designerplugin/Makefile +++ devel/qscintilla2-designerplugin/Makefile @@ -1,33 +0,0 @@ -# Created by: Danny Pansters -# $FreeBSD$ - -PORTNAME= designerplugin -PORTVERSION= ${QSCI2_VERSION} -PORTEPOCH= 1 -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITES_QSCI2} -PKGNAMEPREFIX= qscintilla2- -DISTNAME= ${QSCI2_DISTNAME} - -MAINTAINER= kde@FreeBSD.org -COMMENT= Qt4 Designer plugin for QScintilla2 - -LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 - -DISTINFO_FILE= ${QSCI2_DISTINFO_FILE} -USES= qmake -USE_QT4= qmake_build moc_build gui xml designer -HAS_CONFIGURE= yes - -WRKSRC= ${WRKDIR}/${DISTNAME}/designer-Qt4Qt5 - -PLIST_FILES= %%QT_PLUGINDIR%%/designer/libqscintillaplugin.so - -.include "${.CURDIR}/../py-qt4/bsd.pyqt.mk" - -pre-configure: - ${REINPLACE_CMD} -e \ - 's|$$$$\[QT_INSTALL_PLUGINS\]|${PREFIX}/${QT_PLUGINDIR_REL}|' \ - ${WRKSRC}/designer.pro - -.include Index: devel/qscintilla2-designerplugin/pkg-descr =================================================================== --- devel/qscintilla2-designerplugin/pkg-descr +++ devel/qscintilla2-designerplugin/pkg-descr @@ -1,4 +0,0 @@ -The Qt Designer plugin allows QScintilla2 instances to be included in GUI -designs just like any other Qt4 widget. - -WWW: http://www.riverbankcomputing.co.uk/software/qscintilla/ Index: devel/qscintilla2-qt4-designerplugin/Makefile =================================================================== --- devel/qscintilla2-qt4-designerplugin/Makefile +++ devel/qscintilla2-qt4-designerplugin/Makefile @@ -12,10 +12,10 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Qt4 Designer plugin for QScintilla2 -LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 +LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 DISTINFO_FILE= ${QSCI2_DISTINFO_FILE} -USES= qmake +USES= qmake pyqt:4 USE_QT4= qmake_build moc_build gui xml designer HAS_CONFIGURE= yes @@ -23,8 +23,6 @@ PLIST_FILES= %%QT_PLUGINDIR%%/designer/libqscintillaplugin.so -.include "${.CURDIR}/../py-qt4/bsd.pyqt.mk" - pre-configure: ${REINPLACE_CMD} -e \ 's|$$$$\[QT_INSTALL_PLUGINS\]|${PREFIX}/${QT_PLUGINDIR_REL}|' \ Index: devel/qscintilla2-qt4/Makefile =================================================================== --- devel/qscintilla2-qt4/Makefile +++ devel/qscintilla2-qt4/Makefile @@ -1,8 +1,9 @@ # Created by: Danny Pansters # $FreeBSD$ -PORTNAME= qscintilla2 +PORTNAME= qscintilla2-qt4 PORTVERSION= ${QSCI2_VERSION} +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITES_QSCI2} @@ -11,7 +12,8 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Qt 4 port of the Scintilla C++ editor class -USES= qmake +USES= qmake pyqt:4 +USE_PYQT= # USE_QT4= moc_build gui xml designer USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} @@ -25,10 +27,19 @@ OPTIONS_DEFINE= DOCS EXAMPLES NLS OPTIONS_SUB= yes -.include "${.CURDIR}/../py-qt4/bsd.pyqt.mk" .include + post-patch: +# rename qscintilla2.so to -qt[45] -- this needs modification in all depending ports TODO + ${REINPLACE_CMD} -e "/^TARGET =/ s#qscintilla2#${PORTNAME}#" \ + ${PATCH_WRKSRC}/Qt4Qt5/qscintilla.pro +# the following makes the lines for MAC/Win invalid... but we're neither... + ${REINPLACE_CMD} -e "/LIBS +=/ s#-lqscintilla2#-l${PORTNAME}#" \ + ${PATCH_WRKSRC}/Qt4Qt5/features/qscintilla2.prf + ${REINPLACE_CMD} -e "/features.path/ s#%%QT_MKSPECDIR%%#${QT_MKSPECDIR}#" \ + ${PATCH_WRKSRC}/Qt4Qt5/qscintilla.pro + cd ${BUILD_WRKSRC} && ${REINPLACE_CMD} -e \ 's|$$$$\[QT_INSTALL_HEADERS\]|${PREFIX}/${QT_INCDIR_REL}|; \ s|$$$$\[QT_INSTALL_LIBS\]|${PREFIX}/${QT_LIBDIR_REL}|; \ Index: devel/qscintilla2-qt4/distinfo =================================================================== --- devel/qscintilla2-qt4/distinfo +++ devel/qscintilla2-qt4/distinfo @@ -1,2 +1,2 @@ -SHA256 (QScintilla-gpl-2.8.4.tar.gz) = 9b7b2d7440cc39736bbe937b853506b3bd218af3b79095d4f710cccb0fabe80f -SIZE (QScintilla-gpl-2.8.4.tar.gz) = 3031919 +SHA256 (QScintilla-gpl-2.9.tar.gz) = d7c32e32582f93779de861006d87467b38b9ebc06e3d0b32e981cb24369fa417 +SIZE (QScintilla-gpl-2.9.tar.gz) = 2435116 Index: devel/qscintilla2-qt4/pkg-plist =================================================================== --- devel/qscintilla2-qt4/pkg-plist +++ devel/qscintilla2-qt4/pkg-plist @@ -48,10 +48,10 @@ %%QT_INCDIR%%/Qsci/qsciscintillabase.h %%QT_INCDIR%%/Qsci/qscistyle.h %%QT_INCDIR%%/Qsci/qscistyledtext.h -%%QT_LIBDIR%%/libqscintilla2.so -%%QT_LIBDIR%%/libqscintilla2.so.11 -%%QT_LIBDIR%%/libqscintilla2.so.11.3 -%%QT_LIBDIR%%/libqscintilla2.so.11.3.0 +%%QT_LIBDIR%%/libqscintilla2-qt4.so +%%QT_LIBDIR%%/libqscintilla2-qt4.so.12 +%%QT_LIBDIR%%/libqscintilla2-qt4.so.12.0 +%%QT_LIBDIR%%/libqscintilla2-qt4.so.12.0.0 %%QT_MKSPECDIR%%/features/qscintilla2.prf share/qt4/qsci/api/python/Python-2.4.api share/qt4/qsci/api/python/Python-2.5.api Index: devel/qscintilla2-qt5/Makefile =================================================================== --- devel/qscintilla2-qt5/Makefile +++ devel/qscintilla2-qt5/Makefile @@ -0,0 +1,54 @@ +# $FreeBSD$ + +PORTNAME= qscintilla2-qt5 +PORTVERSION= ${QSCI2_VERSION} +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITES_QSCI2} +DISTNAME= ${QSCI2_DISTNAME} + +MAINTAINER= kde@FreeBSD.org +COMMENT= Qt 5 port of the Scintilla C++ editor class + +USES= qmake pyqt:5 +USE_PYQT= # +USE_QT5= buildtools_build gui printsupport widgets xml +USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} + +BUILD_WRKSRC= ${WRKSRC}/Qt4Qt5 +CONFIGURE_WRKSRC= ${BUILD_WRKSRC} +INSTALL_WRKSRC= ${BUILD_WRKSRC} + +PORTDOCS= * +PORTEXAMPLES= * + +OPTIONS_DEFINE= DOCS EXAMPLES NLS +OPTIONS_SUB= yes + +.include + +post-patch: + @${REINPLACE_CMD} -e "/features.path/ s#%%QT_MKSPECDIR%%#${QT_MKSPECDIR}#" \ + ${PATCH_WRKSRC}/Qt4Qt5/qscintilla.pro + @cd ${BUILD_WRKSRC} && ${REINPLACE_CMD} -e \ + 's|$$$$\[QT_INSTALL_HEADERS\]|${PREFIX}/${QT_INCDIR_REL}|; \ + s|$$$$\[QT_INSTALL_LIBS\]|${PREFIX}/${QT_LIBDIR_REL}|; \ + s|$$$$\[QT_INSTALL_TRANSLATIONS\]|${PREFIX}/share/qt5/translations|; \ + s|$$$$\[QT_INSTALL_DATA\]|${PREFIX}/share/qt5|' \ + qscintilla.pro +.if empty(PORT_OPTIONS:MNLS) + @cd ${BUILD_WRKSRC} && ${REINPLACE_CMD} -e \ + 's|trans qsci|qsci|' qscintilla.pro +.endif + +post-install: + cd ${WRKSRC} &&\ + ${MKDIR} ${STAGEDIR}${DOCSDIR}/html ${STAGEDIR}${DOCSDIR}/Scintilla &&\ + ${INSTALL_DATA} NEWS README ${STAGEDIR}${DOCSDIR} &&\ + ${INSTALL_DATA} doc/html-Qt4Qt5/* ${STAGEDIR}${DOCSDIR}/html &&\ + ${INSTALL_DATA} doc/Scintilla/* ${STAGEDIR}${DOCSDIR}/Scintilla + cd ${WRKSRC}/example-Qt4Qt5 &&\ + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/images &&\ + ${INSTALL_DATA} *.* ${STAGEDIR}${EXAMPLESDIR} &&\ + ${INSTALL_DATA} images/* ${STAGEDIR}${EXAMPLESDIR}/images + +.include Index: devel/qscintilla2-qt5/distinfo =================================================================== --- devel/qscintilla2-qt5/distinfo +++ devel/qscintilla2-qt5/distinfo @@ -0,0 +1,2 @@ +SHA256 (QScintilla-gpl-2.9.tar.gz) = d7c32e32582f93779de861006d87467b38b9ebc06e3d0b32e981cb24369fa417 +SIZE (QScintilla-gpl-2.9.tar.gz) = 2435116 Index: devel/qscintilla2-qt5/files/patch-Qt4Qt5_features_qscintilla2.prf =================================================================== --- devel/qscintilla2-qt5/files/patch-Qt4Qt5_features_qscintilla2.prf +++ devel/qscintilla2-qt5/files/patch-Qt4Qt5_features_qscintilla2.prf @@ -0,0 +1,22 @@ +--- Qt4Qt5/features/qscintilla2.prf.orig 2015-04-20 14:38:24 UTC ++++ Qt4Qt5/features/qscintilla2.prf +@@ -17,9 +17,17 @@ CONFIG(debug, debug|release) { + win32: { + LIBS += -lqscintilla2d + } else { +- LIBS += -lqscintilla2 ++ greaterThan(QT_MAJOR_VERSION, 4) { ++ LIBS += -lqscintilla2-qt$${QT_MAJOR_VERSION} ++ } else { ++ LIBS += -lqscintilla2 ++ } + } + } + } else { +- LIBS += -lqscintilla2 ++ greaterThan(QT_MAJOR_VERSION, 4) { ++ LIBS += -lqscintilla2-qt$${QT_MAJOR_VERSION} ++ } else { ++ LIBS += -lqscintilla2 ++ } + } Index: devel/qscintilla2-qt5/files/patch-Qt4Qt5_qscintilla.pro =================================================================== --- devel/qscintilla2-qt5/files/patch-Qt4Qt5_qscintilla.pro +++ devel/qscintilla2-qt5/files/patch-Qt4Qt5_qscintilla.pro @@ -0,0 +1,24 @@ +--- Qt4Qt5/qscintilla.pro.orig 2015-04-20 14:38:24 UTC ++++ Qt4Qt5/qscintilla.pro +@@ -23,7 +23,11 @@ + !win32:VERSION = 12.0.0 + + TEMPLATE = lib +-TARGET = qscintilla2 ++greaterThan(QT_MAJOR_VERSION, 4) { ++ TARGET = qscintilla2-qt$${QT_MAJOR_VERSION} ++} else { ++ TARGET = qscintilla2 ++} + CONFIG += qt warn_off release thread exceptions + INCLUDEPATH += . ../include ../lexlib ../src + +@@ -77,7 +81,7 @@ isEmpty(qsci.path) { + INSTALLS += header trans qsci target + + greaterThan(QT_MAJOR_VERSION, 3) { +- features.path = $$[QT_INSTALL_DATA]/mkspecs/features ++ features.path = %%QT_MKSPECDIR%%/features + features.files = $$PWD/features/qscintilla2.prf + INSTALLS += features + } Index: devel/qscintilla2-qt5/pkg-descr =================================================================== --- devel/qscintilla2-qt5/pkg-descr +++ devel/qscintilla2-qt5/pkg-descr @@ -0,0 +1,3 @@ +QScintilla2 is a port to Qt5 of Neil Hodgson's Scintilla C++ editor class. + +WWW: http://www.riverbankcomputing.co.uk/software/qscintilla/ Index: devel/qscintilla2-qt5/pkg-plist =================================================================== --- devel/qscintilla2-qt5/pkg-plist +++ devel/qscintilla2-qt5/pkg-plist @@ -0,0 +1,68 @@ +%%QT_INCDIR%%/Qsci/qsciabstractapis.h +%%QT_INCDIR%%/Qsci/qsciapis.h +%%QT_INCDIR%%/Qsci/qscicommand.h +%%QT_INCDIR%%/Qsci/qscicommandset.h +%%QT_INCDIR%%/Qsci/qscidocument.h +%%QT_INCDIR%%/Qsci/qsciglobal.h +%%QT_INCDIR%%/Qsci/qscilexer.h +%%QT_INCDIR%%/Qsci/qscilexeravs.h +%%QT_INCDIR%%/Qsci/qscilexerbash.h +%%QT_INCDIR%%/Qsci/qscilexerbatch.h +%%QT_INCDIR%%/Qsci/qscilexercmake.h +%%QT_INCDIR%%/Qsci/qscilexercoffeescript.h +%%QT_INCDIR%%/Qsci/qscilexercpp.h +%%QT_INCDIR%%/Qsci/qscilexercsharp.h +%%QT_INCDIR%%/Qsci/qscilexercss.h +%%QT_INCDIR%%/Qsci/qscilexercustom.h +%%QT_INCDIR%%/Qsci/qscilexerd.h +%%QT_INCDIR%%/Qsci/qscilexerdiff.h +%%QT_INCDIR%%/Qsci/qscilexerfortran.h +%%QT_INCDIR%%/Qsci/qscilexerfortran77.h +%%QT_INCDIR%%/Qsci/qscilexerhtml.h +%%QT_INCDIR%%/Qsci/qscilexeridl.h +%%QT_INCDIR%%/Qsci/qscilexerjava.h +%%QT_INCDIR%%/Qsci/qscilexerjavascript.h +%%QT_INCDIR%%/Qsci/qscilexerlua.h +%%QT_INCDIR%%/Qsci/qscilexermakefile.h +%%QT_INCDIR%%/Qsci/qscilexermatlab.h +%%QT_INCDIR%%/Qsci/qscilexeroctave.h +%%QT_INCDIR%%/Qsci/qscilexerpascal.h +%%QT_INCDIR%%/Qsci/qscilexerperl.h +%%QT_INCDIR%%/Qsci/qscilexerpo.h +%%QT_INCDIR%%/Qsci/qscilexerpostscript.h +%%QT_INCDIR%%/Qsci/qscilexerpov.h +%%QT_INCDIR%%/Qsci/qscilexerproperties.h +%%QT_INCDIR%%/Qsci/qscilexerpython.h +%%QT_INCDIR%%/Qsci/qscilexerruby.h +%%QT_INCDIR%%/Qsci/qscilexerspice.h +%%QT_INCDIR%%/Qsci/qscilexersql.h +%%QT_INCDIR%%/Qsci/qscilexertcl.h +%%QT_INCDIR%%/Qsci/qscilexertex.h +%%QT_INCDIR%%/Qsci/qscilexerverilog.h +%%QT_INCDIR%%/Qsci/qscilexervhdl.h +%%QT_INCDIR%%/Qsci/qscilexerxml.h +%%QT_INCDIR%%/Qsci/qscilexeryaml.h +%%QT_INCDIR%%/Qsci/qscimacro.h +%%QT_INCDIR%%/Qsci/qsciprinter.h +%%QT_INCDIR%%/Qsci/qsciscintilla.h +%%QT_INCDIR%%/Qsci/qsciscintillabase.h +%%QT_INCDIR%%/Qsci/qscistyle.h +%%QT_INCDIR%%/Qsci/qscistyledtext.h +%%QT_LIBDIR%%/libqscintilla2-qt5.so +%%QT_LIBDIR%%/libqscintilla2-qt5.so.12 +%%QT_LIBDIR%%/libqscintilla2-qt5.so.12.0 +%%QT_LIBDIR%%/libqscintilla2-qt5.so.12.0.0 +%%QT_MKSPECDIR%%/features/qscintilla2.prf +%%QT_DATADIR%%/qsci/api/python/Python-2.4.api +%%QT_DATADIR%%/qsci/api/python/Python-2.5.api +%%QT_DATADIR%%/qsci/api/python/Python-2.6.api +%%QT_DATADIR%%/qsci/api/python/Python-2.7.api +%%QT_DATADIR%%/qsci/api/python/Python-3.1.api +%%QT_DATADIR%%/qsci/api/python/Python-3.2.api +%%QT_DATADIR%%/qsci/api/python/Python-3.3.api +%%QT_DATADIR%%/qsci/api/python/Python-3.4.api +%%NLS%%%%QT_L10NDIR%%/qscintilla_cs.qm +%%NLS%%%%QT_L10NDIR%%/qscintilla_de.qm +%%NLS%%%%QT_L10NDIR%%/qscintilla_es.qm +%%NLS%%%%QT_L10NDIR%%/qscintilla_fr.qm +%%NLS%%%%QT_L10NDIR%%/qscintilla_pt_br.qm Index: devel/qscintilla2/Makefile =================================================================== --- devel/qscintilla2/Makefile +++ devel/qscintilla2/Makefile @@ -1,55 +0,0 @@ -# Created by: Danny Pansters -# $FreeBSD$ - -PORTNAME= qscintilla2 -PORTVERSION= ${QSCI2_VERSION} -PORTEPOCH= 1 -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITES_QSCI2} -DISTNAME= ${QSCI2_DISTNAME} - -MAINTAINER= kde@FreeBSD.org -COMMENT= Qt 4 port of the Scintilla C++ editor class - -USES= qmake -USE_QT4= moc_build gui xml designer -USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} - -BUILD_WRKSRC= ${WRKSRC}/Qt4Qt5 -CONFIGURE_WRKSRC= ${BUILD_WRKSRC} -INSTALL_WRKSRC= ${BUILD_WRKSRC} - -PORTDOCS= * -PORTEXAMPLES= * - -OPTIONS_DEFINE= DOCS EXAMPLES NLS -OPTIONS_SUB= yes - -.include "${.CURDIR}/../py-qt4/bsd.pyqt.mk" -.include - -post-patch: - cd ${BUILD_WRKSRC} && ${REINPLACE_CMD} -e \ - 's|$$$$\[QT_INSTALL_HEADERS\]|${PREFIX}/${QT_INCDIR_REL}|; \ - s|$$$$\[QT_INSTALL_LIBS\]|${PREFIX}/${QT_LIBDIR_REL}|; \ - s|$$$$\[QT_INSTALL_TRANSLATIONS\]|${PREFIX}/share/qt4/translations|; \ - s|$$$$\[QT_INSTALL_DATA\]|${PREFIX}/share/qt4|' \ - qscintilla.pro - -.if empty(PORT_OPTIONS:MNLS) - cd ${BUILD_WRKSRC} && ${REINPLACE_CMD} -e \ - 's|trans qsci|qsci|' qscintilla.pro -.endif - -post-install: - cd ${WRKSRC} &&\ - ${MKDIR} ${STAGEDIR}${DOCSDIR}/html ${STAGEDIR}${DOCSDIR}/Scintilla &&\ - ${INSTALL_DATA} NEWS README ${STAGEDIR}${DOCSDIR} &&\ - ${INSTALL_DATA} doc/html-Qt4Qt5/* ${STAGEDIR}${DOCSDIR}/html &&\ - ${INSTALL_DATA} doc/Scintilla/* ${STAGEDIR}${DOCSDIR}/Scintilla - cd ${WRKSRC}/example-Qt4Qt5 &&\ - ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/images &&\ - ${INSTALL_DATA} *.* ${STAGEDIR}${EXAMPLESDIR} &&\ - ${INSTALL_DATA} images/* ${STAGEDIR}${EXAMPLESDIR}/images - -.include Index: devel/qscintilla2/distinfo =================================================================== --- devel/qscintilla2/distinfo +++ devel/qscintilla2/distinfo @@ -1,2 +0,0 @@ -SHA256 (QScintilla-gpl-2.8.4.tar.gz) = 9b7b2d7440cc39736bbe937b853506b3bd218af3b79095d4f710cccb0fabe80f -SIZE (QScintilla-gpl-2.8.4.tar.gz) = 3031919 Index: devel/qscintilla2/pkg-descr =================================================================== --- devel/qscintilla2/pkg-descr +++ devel/qscintilla2/pkg-descr @@ -1,3 +0,0 @@ -QScintilla2 is a port to Qt4 of Neil Hodgson's Scintilla C++ editor class. - -WWW: http://www.riverbankcomputing.co.uk/software/qscintilla/ Index: devel/qscintilla2/pkg-plist =================================================================== --- devel/qscintilla2/pkg-plist +++ devel/qscintilla2/pkg-plist @@ -1,68 +0,0 @@ -%%QT_INCDIR%%/Qsci/qsciabstractapis.h -%%QT_INCDIR%%/Qsci/qsciapis.h -%%QT_INCDIR%%/Qsci/qscicommand.h -%%QT_INCDIR%%/Qsci/qscicommandset.h -%%QT_INCDIR%%/Qsci/qscidocument.h -%%QT_INCDIR%%/Qsci/qsciglobal.h -%%QT_INCDIR%%/Qsci/qscilexer.h -%%QT_INCDIR%%/Qsci/qscilexeravs.h -%%QT_INCDIR%%/Qsci/qscilexerbash.h -%%QT_INCDIR%%/Qsci/qscilexerbatch.h -%%QT_INCDIR%%/Qsci/qscilexercmake.h -%%QT_INCDIR%%/Qsci/qscilexercoffeescript.h -%%QT_INCDIR%%/Qsci/qscilexercpp.h -%%QT_INCDIR%%/Qsci/qscilexercsharp.h -%%QT_INCDIR%%/Qsci/qscilexercss.h -%%QT_INCDIR%%/Qsci/qscilexercustom.h -%%QT_INCDIR%%/Qsci/qscilexerd.h -%%QT_INCDIR%%/Qsci/qscilexerdiff.h -%%QT_INCDIR%%/Qsci/qscilexerfortran.h -%%QT_INCDIR%%/Qsci/qscilexerfortran77.h -%%QT_INCDIR%%/Qsci/qscilexerhtml.h -%%QT_INCDIR%%/Qsci/qscilexeridl.h -%%QT_INCDIR%%/Qsci/qscilexerjava.h -%%QT_INCDIR%%/Qsci/qscilexerjavascript.h -%%QT_INCDIR%%/Qsci/qscilexerlua.h -%%QT_INCDIR%%/Qsci/qscilexermakefile.h -%%QT_INCDIR%%/Qsci/qscilexermatlab.h -%%QT_INCDIR%%/Qsci/qscilexeroctave.h -%%QT_INCDIR%%/Qsci/qscilexerpascal.h -%%QT_INCDIR%%/Qsci/qscilexerperl.h -%%QT_INCDIR%%/Qsci/qscilexerpo.h -%%QT_INCDIR%%/Qsci/qscilexerpostscript.h -%%QT_INCDIR%%/Qsci/qscilexerpov.h -%%QT_INCDIR%%/Qsci/qscilexerproperties.h -%%QT_INCDIR%%/Qsci/qscilexerpython.h -%%QT_INCDIR%%/Qsci/qscilexerruby.h -%%QT_INCDIR%%/Qsci/qscilexerspice.h -%%QT_INCDIR%%/Qsci/qscilexersql.h -%%QT_INCDIR%%/Qsci/qscilexertcl.h -%%QT_INCDIR%%/Qsci/qscilexertex.h -%%QT_INCDIR%%/Qsci/qscilexerverilog.h -%%QT_INCDIR%%/Qsci/qscilexervhdl.h -%%QT_INCDIR%%/Qsci/qscilexerxml.h -%%QT_INCDIR%%/Qsci/qscilexeryaml.h -%%QT_INCDIR%%/Qsci/qscimacro.h -%%QT_INCDIR%%/Qsci/qsciprinter.h -%%QT_INCDIR%%/Qsci/qsciscintilla.h -%%QT_INCDIR%%/Qsci/qsciscintillabase.h -%%QT_INCDIR%%/Qsci/qscistyle.h -%%QT_INCDIR%%/Qsci/qscistyledtext.h -%%QT_LIBDIR%%/libqscintilla2.so -%%QT_LIBDIR%%/libqscintilla2.so.11 -%%QT_LIBDIR%%/libqscintilla2.so.11.3 -%%QT_LIBDIR%%/libqscintilla2.so.11.3.0 -%%QT_MKSPECDIR%%/features/qscintilla2.prf -share/qt4/qsci/api/python/Python-2.4.api -share/qt4/qsci/api/python/Python-2.5.api -share/qt4/qsci/api/python/Python-2.6.api -share/qt4/qsci/api/python/Python-2.7.api -share/qt4/qsci/api/python/Python-3.1.api -share/qt4/qsci/api/python/Python-3.2.api -share/qt4/qsci/api/python/Python-3.3.api -share/qt4/qsci/api/python/Python-3.4.api -%%NLS%%share/qt4/translations/qscintilla_cs.qm -%%NLS%%share/qt4/translations/qscintilla_de.qm -%%NLS%%share/qt4/translations/qscintilla_es.qm -%%NLS%%share/qt4/translations/qscintilla_fr.qm -%%NLS%%share/qt4/translations/qscintilla_pt_br.qm Index: devel/ruby-qtruby/Makefile =================================================================== --- devel/ruby-qtruby/Makefile +++ devel/ruby-qtruby/Makefile @@ -2,6 +2,7 @@ PORTNAME= qtruby PORTVERSION= ${KDE4_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde ruby MASTER_SITES= KDE/${KDE4_BRANCH}/${PORTVERSION}/src PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} @@ -11,7 +12,7 @@ COMMENT= Ruby bindings for Qt LIB_DEPENDS= libqwt.so:${PORTSDIR}/x11-toolkits/qwt5 \ - libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 + libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 USE_KDE4= kdeprefix smokeqt USE_QT4= corelib dbus declarative gui network phonon script webkit xml \ Index: devel/smokegen/Makefile =================================================================== --- devel/smokegen/Makefile +++ devel/smokegen/Makefile @@ -2,6 +2,7 @@ PORTNAME= smokegen PORTVERSION= ${KDE4_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde MASTER_SITES= KDE/${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE/${PORTVERSION} @@ -18,5 +19,7 @@ pre-configure: ${REINPLACE_CMD} -e 's|share/smoke/cmake|lib/cmake/smoke|g' \ ${WRKSRC}/smokebase/CMakeLists.txt + ${REINPLACE_CMD} -e 's|qscintilla2|&-qt4|g' \ + ${WRKSRC}/cmake/FindQScintilla.cmake .include Index: devel/smokeqt/Makefile =================================================================== --- devel/smokeqt/Makefile +++ devel/smokeqt/Makefile @@ -2,6 +2,7 @@ PORTNAME= smokeqt PORTVERSION= ${KDE4_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde MASTER_SITES= KDE/${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE/${PORTVERSION} @@ -9,7 +10,7 @@ MAINTAINER= kde@FreeBSD.org COMMENT= SMOKE bindings for Qt -LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 \ +LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 \ libqwt.so:${PORTSDIR}/x11-toolkits/qwt5 USE_KDE4= kdeprefix smokegen qimageblitz Index: devel/universalindentgui/Makefile =================================================================== --- devel/universalindentgui/Makefile +++ devel/universalindentgui/Makefile @@ -3,7 +3,7 @@ PORTNAME= universalindentgui PORTVERSION= 1.2.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MASTER_SITES= SF/universalindent/uigui/UniversalIndentGUI_${PORTVERSION} @@ -10,7 +10,7 @@ MAINTAINER= avg@icyb.net.ua COMMENT= Graphical UI for multiple source code indent/format/beautify tools -LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 +LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 USES= dos2unix qmake shebangfix SHEBANG_FILES= indenters/pindent.py \ @@ -25,6 +25,7 @@ @${REINPLACE_CMD} -e 's#/usr/#${PREFIX}/#g' -e 's#/share/man/#/man/#g' \ ${WRKSRC}/UniversalIndentGUI.pro ${WRKSRC}/src/SettingsPaths.cpp @${REINPLACE_CMD} -e 's#debug_and_release#release#g' \ + -e 's#-lqscintilla2#&-qt4#g' \ ${WRKSRC}/UniversalIndentGUI.pro .include Index: graphics/Makefile =================================================================== --- graphics/Makefile +++ graphics/Makefile @@ -863,6 +863,7 @@ SUBDIR += py-pygooglechart SUBDIR += py-pyproj SUBDIR += py-qt4-svg + SUBDIR += py-qt5-svg SUBDIR += py-rabbyt SUBDIR += py-sane SUBDIR += py-seqdiag Index: graphics/py-qt4-svg/Makefile =================================================================== --- graphics/py-qt4-svg/Makefile +++ graphics/py-qt4-svg/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= svg +PORTVERSION= ${PYQT4_VERSION} PORTEPOCH= 1 CATEGORIES= graphics devel python @@ -8,11 +9,12 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt4 toolkit, QtSvg module -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip -RUN_DEPENDS= ${PKGNAMEPREFIX}gui>=${PYQT4_VERSION}:${PORTSDIR}/x11-toolkits/py-qt4-gui +CONFIGURE_ARGS= --enable QtSvg +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes -CONFIGURE_ARGS= --enable QtSvg -PYQT4_DIST= yes +USES= python pyqt:4 +USE_PYQT= sip_build gui_run USE_QT4= moc_build svg qmake_build OPTIONS_DEFINE= API DEBUG @@ -22,8 +24,7 @@ API_DESC= Install QtSvg API for QScintilla2 API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} API_CONFIGURE_OFF= --no-qsci-api -API_LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 +API_LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 DEBUG_CONFIGURE_ON= --debug --trace -.include "${.CURDIR}/../../devel/py-qt4/bsd.pyqt.mk" .include Index: graphics/py-qt4-svg/pkg-plist =================================================================== --- graphics/py-qt4-svg/pkg-plist +++ graphics/py-qt4-svg/pkg-plist @@ -1,7 +1,7 @@ %%PYTHON_SITELIBDIR%%/PyQt4/QtSvg.so -share/py-sip/QtSvg/QtSvgmod.sip -share/py-sip/QtSvg/qgraphicssvgitem.sip -share/py-sip/QtSvg/qsvggenerator.sip -share/py-sip/QtSvg/qsvgrenderer.sip -share/py-sip/QtSvg/qsvgwidget.sip +%%PYQT_SIPDIR%%/QtSvg/QtSvgmod.sip +%%PYQT_SIPDIR%%/QtSvg/qgraphicssvgitem.sip +%%PYQT_SIPDIR%%/QtSvg/qsvggenerator.sip +%%PYQT_SIPDIR%%/QtSvg/qsvgrenderer.sip +%%PYQT_SIPDIR%%/QtSvg/qsvgwidget.sip %%API%%share/qt4/qsci/api/python/QtSvg.api Index: graphics/py-qt5-svg/Makefile =================================================================== --- graphics/py-qt5-svg/Makefile +++ graphics/py-qt5-svg/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= svg +CATEGORIES= graphics devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt4 toolkit, QtSvg module + +CONFIGURE_ARGS= --enable QtSvg +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes + +USES= python pyqt:5 qmake +USE_PYQT= sip_build gui_run +USE_QT5= svg + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtSvg API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include Index: graphics/py-qt5-svg/pkg-descr =================================================================== --- graphics/py-qt5-svg/pkg-descr +++ graphics/py-qt5-svg/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtSvg module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ Index: graphics/py-qt5-svg/pkg-plist =================================================================== --- graphics/py-qt5-svg/pkg-plist +++ graphics/py-qt5-svg/pkg-plist @@ -0,0 +1,7 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtSvg.so +%%PYQT_SIPDIR%%/QtSvg/QtSvgmod.sip +%%PYQT_SIPDIR%%/QtSvg/qgraphicssvgitem.sip +%%PYQT_SIPDIR%%/QtSvg/qsvggenerator.sip +%%PYQT_SIPDIR%%/QtSvg/qsvgrenderer.sip +%%PYQT_SIPDIR%%/QtSvg/qsvgwidget.sip +%%API%%share/qt5/qsci/api/python/QtSvg.api Index: graphics/qgis/Makefile =================================================================== --- graphics/qgis/Makefile +++ graphics/qgis/Makefile @@ -3,6 +3,7 @@ PORTNAME= qgis PORTVERSION= 2.12.0 +PORTREVISION= 1 CATEGORIES= graphics geography MAINTAINER= rhurlin@gwdg.de @@ -17,7 +18,7 @@ libgsl.so:${PORTSDIR}/math/gsl \ libproj.so:${PORTSDIR}/graphics/proj \ libqca.so:${PORTSDIR}/devel/qca \ - libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 \ + libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 \ libqwt.so:${PORTSDIR}/x11-toolkits/qwt5 \ libspatialindex.so:${PORTSDIR}/devel/spatialindex \ libspatialite.so:${PORTSDIR}/databases/spatialite @@ -128,5 +129,7 @@ pre-patch: @${REINPLACE_CMD} -e 's|tr( "QGIS code revision" ) + QString( "%1" ).arg( QGis::QGIS_DEV_VERSION )|tr( "QGIS code revision" ) + "" + tr( "${GH_TAGNAME}" ) + ""|g' \ ${WRKSRC}/src/app/qgisapp.cpp + @${REINPLACE_CMD} -e 's|qscintilla2 |qscintilla2-qt4 |g' \ + ${WRKSRC}/cmake/FindQScintilla.cmake .include Index: graphics/seexpr/Makefile =================================================================== --- graphics/seexpr/Makefile +++ graphics/seexpr/Makefile @@ -11,7 +11,7 @@ LICENSE= APACHE20 -BUILD_DEPENDS= ${LOCALBASE}/share/py-sip/QtGui/QtGuimod.sip:${PORTSDIR}/x11-toolkits/py-qt4-gui +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}qt4-gui>=0:${PORTSDIR}/x11-toolkits/py-qt4-gui USE_GITHUB= yes GH_ACCOUNT= wdas Index: lang/Makefile =================================================================== --- lang/Makefile +++ lang/Makefile @@ -256,6 +256,7 @@ SUBDIR += py-clojure SUBDIR += py-mx-base SUBDIR += py-prolog + SUBDIR += py-qt5-qml SUBDIR += pypy SUBDIR += pypy3-devel SUBDIR += python Index: lang/py-qt5-qml/Makefile =================================================================== --- lang/py-qt5-qml/Makefile +++ lang/py-qt5-qml/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= qml +CATEGORIES= lang devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, Qml module + +CONFIGURE_ARGS= --enable QtQml +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes + +USES= python pyqt:5 qmake +USE_PYQT= sip_build core_run +USE_QT5= buildtools_build gui qml + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtQml API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include Index: lang/py-qt5-qml/pkg-descr =================================================================== --- lang/py-qt5-qml/pkg-descr +++ lang/py-qt5-qml/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtQml module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ Index: lang/py-qt5-qml/pkg-plist =================================================================== --- lang/py-qt5-qml/pkg-plist +++ lang/py-qt5-qml/pkg-plist @@ -0,0 +1,27 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtQml.so +%%QT_PLUGINDIR%%/PyQt5/libpyqt5qmlplugin.so +%%PYQT_SIPDIR%%/QtQml/QtQmlmod.sip +%%PYQT_SIPDIR%%/QtQml/qjsengine.sip +%%PYQT_SIPDIR%%/QtQml/qjsvalue.sip +%%PYQT_SIPDIR%%/QtQml/qjsvalueiterator.sip +%%PYQT_SIPDIR%%/QtQml/qmlattachedpropertiesobject.sip +%%PYQT_SIPDIR%%/QtQml/qmlregistertype.sip +%%PYQT_SIPDIR%%/QtQml/qpyqmllistproperty.sip +%%PYQT_SIPDIR%%/QtQml/qqmlabstracturlinterceptor.sip +%%PYQT_SIPDIR%%/QtQml/qqmlapplicationengine.sip +%%PYQT_SIPDIR%%/QtQml/qqmlcomponent.sip +%%PYQT_SIPDIR%%/QtQml/qqmlcontext.sip +%%PYQT_SIPDIR%%/QtQml/qqmlengine.sip +%%PYQT_SIPDIR%%/QtQml/qqmlerror.sip +%%PYQT_SIPDIR%%/QtQml/qqmlexpression.sip +%%PYQT_SIPDIR%%/QtQml/qqmlextensionplugin.sip +%%PYQT_SIPDIR%%/QtQml/qqmlfileselector.sip +%%PYQT_SIPDIR%%/QtQml/qqmlincubator.sip +%%PYQT_SIPDIR%%/QtQml/qqmllist.sip +%%PYQT_SIPDIR%%/QtQml/qqmlnetworkaccessmanagerfactory.sip +%%PYQT_SIPDIR%%/QtQml/qqmlparserstatus.sip +%%PYQT_SIPDIR%%/QtQml/qqmlproperty.sip +%%PYQT_SIPDIR%%/QtQml/qqmlpropertymap.sip +%%PYQT_SIPDIR%%/QtQml/qqmlpropertyvaluesource.sip +%%PYQT_SIPDIR%%/QtQml/qqmlscriptstring.sip +%%API%%share/qt5/qsci/api/python/QtQml.api Index: math/octave/Makefile =================================================================== --- math/octave/Makefile +++ math/octave/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave PORTVERSION= 3.8.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= math MASTER_SITES= GNU @@ -33,7 +33,7 @@ libumfpack.so:${PORTSDIR}/math/suitesparse \ libglpk.so:${PORTSDIR}/math/glpk \ libgl2ps.so:${PORTSDIR}/print/gl2ps \ - libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 + libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 USES= charsetfix fortran gmake libtool perl5 pkgconfig tar:bzip2 USE_LDCONFIG= yes Index: misc/Makefile =================================================================== --- misc/Makefile +++ misc/Makefile @@ -380,6 +380,8 @@ SUBDIR += py-progressbar231 SUBDIR += py-qt4-demo SUBDIR += py-qt4-doc + SUBDIR += py-qt5-demo + SUBDIR += py-qt5-doc SUBDIR += py-yolk SUBDIR += pylize SUBDIR += pypanda Index: misc/py-qt4-demo/Makefile =================================================================== --- misc/py-qt4-demo/Makefile +++ misc/py-qt4-demo/Makefile @@ -14,16 +14,16 @@ DISTINFO_FILE= ${PYQT4_DISTINFO_FILE} -USES= python +USES= python pyqt:4 EXAMPLESDIR= ${PREFIX}/share/examples/py-qt4 -.include "${.CURDIR}/../../devel/py-qt4/bsd.pyqt.mk" +USE_PYQT= assistant_run core_run dbus_run dbussupport_run declarative_run \ + designer_run designerplugin_run doc_run gui_run help_run \ + multimedia_run network_run opengl_run phonon_run qscintilla2_run \ + script_run scripttools_run sql_run svg_run test_run webkit_run xml_run \ + xmlpatterns_run sip_run qscintilla2_run -.for component in ${PYQT4_COMPONENTS:Ndemo} -PYQT4_RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}qt4-${component}>=0:${PORTSDIR}/${${component}_PORT} -.endfor - do-build: ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/examples Index: misc/py-qt4-doc/Makefile =================================================================== --- misc/py-qt4-doc/Makefile +++ misc/py-qt4-doc/Makefile @@ -15,7 +15,8 @@ DISTINFO_FILE= ${PYQT4_DISTINFO_FILE} NO_BUILD= yes -USES= python +USES= python pyqt:4 +USE_PYQT= # DOCSDIR= ${PREFIX}/share/doc/py-qt4 @@ -22,12 +23,11 @@ do-install: cd ${WRKSRC} &&\ ${MKDIR} ${STAGEDIR}${DOCSDIR} &&\ - ${INSTALL_DATA} GPL_EXCEPTION.TXT\ - GPL_EXCEPTION_ADDENDUM.TXT NEWS\ - LICENSE.GPL2 LICENSE.GPL3\ - OPENSOURCE-NOTICE.TXT README THANKS\ + ${INSTALL_DATA} LICENSE \ + NEWS \ + README \ + THANKS\ ${STAGEDIR}${DOCSDIR} cd ${WRKSRC}/doc && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR} -.include "../../devel/py-qt4/bsd.pyqt.mk" .include Index: misc/py-qt4-doc/pkg-plist =================================================================== --- misc/py-qt4-doc/pkg-plist +++ misc/py-qt4-doc/pkg-plist @@ -1,9 +1,5 @@ -%%DOCSDIR%%/GPL_EXCEPTION.TXT -%%DOCSDIR%%/GPL_EXCEPTION_ADDENDUM.TXT -%%DOCSDIR%%/LICENSE.GPL2 -%%DOCSDIR%%/LICENSE.GPL3 +%%DOCSDIR%%/LICENSE %%DOCSDIR%%/NEWS -%%DOCSDIR%%/OPENSOURCE-NOTICE.TXT %%DOCSDIR%%/README %%DOCSDIR%%/THANKS %%DOCSDIR%%/html/_sources/buffer_interface.txt @@ -33,15 +29,16 @@ %%DOCSDIR%%/html/_sources/webkit.txt %%DOCSDIR%%/html/_static/ajax-loader.gif %%DOCSDIR%%/html/_static/basic.css +%%DOCSDIR%%/html/_static/classic.css %%DOCSDIR%%/html/_static/comment-bright.png %%DOCSDIR%%/html/_static/comment-close.png %%DOCSDIR%%/html/_static/comment.png -%%DOCSDIR%%/html/_static/default.css %%DOCSDIR%%/html/_static/doctools.js %%DOCSDIR%%/html/_static/down-pressed.png %%DOCSDIR%%/html/_static/down.png %%DOCSDIR%%/html/_static/file.png %%DOCSDIR%%/html/_static/jquery.js +%%DOCSDIR%%/html/_static/jquery-1.11.1.js %%DOCSDIR%%/html/_static/logo.png %%DOCSDIR%%/html/_static/logo_tn.ico %%DOCSDIR%%/html/_static/minus.png @@ -50,6 +47,7 @@ %%DOCSDIR%%/html/_static/searchtools.js %%DOCSDIR%%/html/_static/sidebar.js %%DOCSDIR%%/html/_static/underscore.js +%%DOCSDIR%%/html/_static/underscore-1.3.1.js %%DOCSDIR%%/html/_static/up-pressed.png %%DOCSDIR%%/html/_static/up.png %%DOCSDIR%%/html/_static/websupport.js Index: misc/py-qt5-demo/Makefile =================================================================== --- misc/py-qt5-demo/Makefile +++ misc/py-qt5-demo/Makefile @@ -0,0 +1,34 @@ +# $FreeBSD$ + +PORTNAME= demo +PORTVERSION= ${PYQT5_VERSION} +CATEGORIES= misc devel python +MASTER_SITES= ${MASTER_SITES_PYQT5} +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}qt5- +DISTNAME= ${PYQT_DISTNAME} + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, Qt demo and examples + +DISTINFO_FILE= ${PYQT_DISTINFO_FILE} + +USES= python pyqt:5 +USE_PYQT= # + +EXAMPLESDIR= ${PREFIX}/share/examples/py-qt5 + +USE_PYQT= core_run dbus_run \ + designer_run doc_run gui_run \ + multimedia_run network_run opengl_run qscintilla2_run \ + sql_run svg_run test_run webkit_run xml_run \ + xmlpatterns_run sip_run qscintilla2_run \ + printsupport_run serialport_run webkitwidgets_run widgets_run + +do-build: + ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/examples + +do-install: + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR} + +.include Index: misc/py-qt5-demo/files/patch-examples__designer__plugins__plugins.py =================================================================== --- misc/py-qt5-demo/files/patch-examples__designer__plugins__plugins.py +++ misc/py-qt5-demo/files/patch-examples__designer__plugins__plugins.py @@ -0,0 +1,13 @@ +--- examples/designer/plugins/plugins.py.orig 2015-10-25 11:42:25 UTC ++++ examples/designer/plugins/plugins.py +@@ -38,6 +38,10 @@ + ## + ############################################################################# + ++# FreeBSD check ++freebsd = False ++if sys.platform[:-1] == 'freebsd': freebsd = True ++ + + import sys + import os Index: misc/py-qt5-demo/pkg-descr =================================================================== --- misc/py-qt5-demo/pkg-descr +++ misc/py-qt5-demo/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the PyQt5 demo and examples. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ Index: misc/py-qt5-demo/pkg-plist =================================================================== --- misc/py-qt5-demo/pkg-plist +++ misc/py-qt5-demo/pkg-plist @@ -0,0 +1,981 @@ +%%EXAMPLESDIR%%/README +%%EXAMPLESDIR%%/activeqt/README +%%EXAMPLESDIR%%/activeqt/webbrowser/icons/image0.xpm +%%EXAMPLESDIR%%/activeqt/webbrowser/icons/image1.xpm +%%EXAMPLESDIR%%/activeqt/webbrowser/icons/image2.xpm +%%EXAMPLESDIR%%/activeqt/webbrowser/icons/image3.xpm +%%EXAMPLESDIR%%/activeqt/webbrowser/icons/image4.xpm +%%EXAMPLESDIR%%/activeqt/webbrowser/icons/image5.xpm +%%EXAMPLESDIR%%/activeqt/webbrowser/icons/image6.xpm +%%EXAMPLESDIR%%/activeqt/webbrowser/mainwindow.qrc +%%EXAMPLESDIR%%/activeqt/webbrowser/mainwindow.ui +%%EXAMPLESDIR%%/activeqt/webbrowser/mainwindow_rc.py +%%EXAMPLESDIR%%/activeqt/webbrowser/mainwindow_rc.pyc +%%EXAMPLESDIR%%/activeqt/webbrowser/ui_mainwindow.py +%%EXAMPLESDIR%%/activeqt/webbrowser/ui_mainwindow.pyc +%%EXAMPLESDIR%%/activeqt/webbrowser/webbrowser.py +%%EXAMPLESDIR%%/activeqt/webbrowser/webbrowser.pyc +%%EXAMPLESDIR%%/animation/README +%%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles.py +%%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles.pyc +%%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles.qrc +%%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles_rc.py +%%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles_rc.pyc +%%EXAMPLESDIR%%/animation/animatedtiles/images/Time-For-Lunch-2.jpg +%%EXAMPLESDIR%%/animation/animatedtiles/images/centered.png +%%EXAMPLESDIR%%/animation/animatedtiles/images/ellipse.png +%%EXAMPLESDIR%%/animation/animatedtiles/images/figure8.png +%%EXAMPLESDIR%%/animation/animatedtiles/images/kinetic.png +%%EXAMPLESDIR%%/animation/animatedtiles/images/random.png +%%EXAMPLESDIR%%/animation/animatedtiles/images/tile.png +%%EXAMPLESDIR%%/animation/appchooser/accessories-dictionary.png +%%EXAMPLESDIR%%/animation/appchooser/akregator.png +%%EXAMPLESDIR%%/animation/appchooser/appchooser.py +%%EXAMPLESDIR%%/animation/appchooser/appchooser.pyc +%%EXAMPLESDIR%%/animation/appchooser/appchooser.qrc +%%EXAMPLESDIR%%/animation/appchooser/appchooser_rc.py +%%EXAMPLESDIR%%/animation/appchooser/appchooser_rc.pyc +%%EXAMPLESDIR%%/animation/appchooser/digikam.png +%%EXAMPLESDIR%%/animation/appchooser/k3b.png +%%EXAMPLESDIR%%/animation/easing/easing.py +%%EXAMPLESDIR%%/animation/easing/easing.pyc +%%EXAMPLESDIR%%/animation/easing/easing.qrc +%%EXAMPLESDIR%%/animation/easing/easing_rc.py +%%EXAMPLESDIR%%/animation/easing/easing_rc.pyc +%%EXAMPLESDIR%%/animation/easing/form.ui +%%EXAMPLESDIR%%/animation/easing/images/qt-logo.png +%%EXAMPLESDIR%%/animation/easing/ui_form.py +%%EXAMPLESDIR%%/animation/easing/ui_form.pyc +%%EXAMPLESDIR%%/animation/moveblocks.py +%%EXAMPLESDIR%%/animation/moveblocks.pyc +%%EXAMPLESDIR%%/animation/states/accessories-dictionary.png +%%EXAMPLESDIR%%/animation/states/akregator.png +%%EXAMPLESDIR%%/animation/states/digikam.png +%%EXAMPLESDIR%%/animation/states/help-browser.png +%%EXAMPLESDIR%%/animation/states/k3b.png +%%EXAMPLESDIR%%/animation/states/kchart.png +%%EXAMPLESDIR%%/animation/states/states.py +%%EXAMPLESDIR%%/animation/states/states.pyc +%%EXAMPLESDIR%%/animation/states/states.qrc +%%EXAMPLESDIR%%/animation/states/states_rc.py +%%EXAMPLESDIR%%/animation/states/states_rc.pyc +%%EXAMPLESDIR%%/animation/stickman/animations/chilling +%%EXAMPLESDIR%%/animation/stickman/animations/dancing +%%EXAMPLESDIR%%/animation/stickman/animations/dead +%%EXAMPLESDIR%%/animation/stickman/animations/jumping +%%EXAMPLESDIR%%/animation/stickman/stickman.py +%%EXAMPLESDIR%%/animation/stickman/stickman.pyc +%%EXAMPLESDIR%%/animation/stickman/stickman.qrc +%%EXAMPLESDIR%%/animation/stickman/stickman_rc.py +%%EXAMPLESDIR%%/animation/stickman/stickman_rc.pyc +%%EXAMPLESDIR%%/dbus/chat/chat.py +%%EXAMPLESDIR%%/dbus/chat/chat.pyc +%%EXAMPLESDIR%%/dbus/chat/chatmainwindow.ui +%%EXAMPLESDIR%%/dbus/chat/chatsetnickname.ui +%%EXAMPLESDIR%%/dbus/chat/ui_chatmainwindow.py +%%EXAMPLESDIR%%/dbus/chat/ui_chatmainwindow.pyc +%%EXAMPLESDIR%%/dbus/chat/ui_chatsetnickname.py +%%EXAMPLESDIR%%/dbus/chat/ui_chatsetnickname.pyc +%%EXAMPLESDIR%%/dbus/listnames.py +%%EXAMPLESDIR%%/dbus/listnames.pyc +%%EXAMPLESDIR%%/dbus/pingpong/ping.py +%%EXAMPLESDIR%%/dbus/pingpong/ping.pyc +%%EXAMPLESDIR%%/dbus/pingpong/pong.py +%%EXAMPLESDIR%%/dbus/pingpong/pong.pyc +%%EXAMPLESDIR%%/dbus/remotecontrolledcar/car/car.py +%%EXAMPLESDIR%%/dbus/remotecontrolledcar/car/car.pyc +%%EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/controller.py +%%EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/controller.pyc +%%EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/controller.ui +%%EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/ui_controller.py +%%EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/ui_controller.pyc +%%EXAMPLESDIR%%/designer/README +%%EXAMPLESDIR%%/designer/calculatorform/calculatorform.py +%%EXAMPLESDIR%%/designer/calculatorform/calculatorform.pyc +%%EXAMPLESDIR%%/designer/calculatorform/calculatorform.ui +%%EXAMPLESDIR%%/designer/calculatorform/ui_calculatorform.py +%%EXAMPLESDIR%%/designer/calculatorform/ui_calculatorform.pyc +%%EXAMPLESDIR%%/designer/plugins/plugins.py +%%EXAMPLESDIR%%/designer/plugins/plugins.pyc +%%EXAMPLESDIR%%/designer/plugins/python/analogclockplugin.py +%%EXAMPLESDIR%%/designer/plugins/python/analogclockplugin.pyc +%%EXAMPLESDIR%%/designer/plugins/python/bubbleswidgetplugin.py +%%EXAMPLESDIR%%/designer/plugins/python/bubbleswidgetplugin.pyc +%%EXAMPLESDIR%%/designer/plugins/python/counterlabelplugin.py +%%EXAMPLESDIR%%/designer/plugins/python/counterlabelplugin.pyc +%%EXAMPLESDIR%%/designer/plugins/python/datetimeeditplugin.py +%%EXAMPLESDIR%%/designer/plugins/python/datetimeeditplugin.pyc +%%EXAMPLESDIR%%/designer/plugins/python/helloglwidgetplugin.py +%%EXAMPLESDIR%%/designer/plugins/python/helloglwidgetplugin.pyc +%%EXAMPLESDIR%%/designer/plugins/python/multipagewidgetplugin.py +%%EXAMPLESDIR%%/designer/plugins/python/multipagewidgetplugin.pyc +%%EXAMPLESDIR%%/designer/plugins/python/polygonwidgetplugin.py +%%EXAMPLESDIR%%/designer/plugins/python/polygonwidgetplugin.pyc +%%EXAMPLESDIR%%/designer/plugins/python/pydemoplugin.py +%%EXAMPLESDIR%%/designer/plugins/python/pydemoplugin.pyc +%%EXAMPLESDIR%%/designer/plugins/python/pythonconsoleplugin.py +%%EXAMPLESDIR%%/designer/plugins/python/pythonconsoleplugin.pyc +%%EXAMPLESDIR%%/designer/plugins/widgets/analogclock.py +%%EXAMPLESDIR%%/designer/plugins/widgets/analogclock.pyc +%%EXAMPLESDIR%%/designer/plugins/widgets/bubbleswidget.py +%%EXAMPLESDIR%%/designer/plugins/widgets/bubbleswidget.pyc +%%EXAMPLESDIR%%/designer/plugins/widgets/counterlabel.py +%%EXAMPLESDIR%%/designer/plugins/widgets/counterlabel.pyc +%%EXAMPLESDIR%%/designer/plugins/widgets/datetimeedit.py +%%EXAMPLESDIR%%/designer/plugins/widgets/datetimeedit.pyc +%%EXAMPLESDIR%%/designer/plugins/widgets/helloglwidget.py +%%EXAMPLESDIR%%/designer/plugins/widgets/helloglwidget.pyc +%%EXAMPLESDIR%%/designer/plugins/widgets/multipagewidget.py +%%EXAMPLESDIR%%/designer/plugins/widgets/multipagewidget.pyc +%%EXAMPLESDIR%%/designer/plugins/widgets/polygonwidget.py +%%EXAMPLESDIR%%/designer/plugins/widgets/polygonwidget.pyc +%%EXAMPLESDIR%%/designer/plugins/widgets/pydemo.py +%%EXAMPLESDIR%%/designer/plugins/widgets/pydemo.pyc +%%EXAMPLESDIR%%/designer/plugins/widgets/pythonconsolewidget.py +%%EXAMPLESDIR%%/designer/plugins/widgets/pythonconsolewidget.pyc +%%EXAMPLESDIR%%/desktop/README +%%EXAMPLESDIR%%/desktop/screenshot.py +%%EXAMPLESDIR%%/desktop/screenshot.pyc +%%EXAMPLESDIR%%/desktop/systray/images/bad.png +%%EXAMPLESDIR%%/desktop/systray/images/heart.png +%%EXAMPLESDIR%%/desktop/systray/images/trash.png +%%EXAMPLESDIR%%/desktop/systray/systray.py +%%EXAMPLESDIR%%/desktop/systray/systray.pyc +%%EXAMPLESDIR%%/desktop/systray/systray.qrc +%%EXAMPLESDIR%%/desktop/systray/systray_rc.py +%%EXAMPLESDIR%%/desktop/systray/systray_rc.pyc +%%EXAMPLESDIR%%/dialogs/README +%%EXAMPLESDIR%%/dialogs/classwizard/classwizard.py +%%EXAMPLESDIR%%/dialogs/classwizard/classwizard.pyc +%%EXAMPLESDIR%%/dialogs/classwizard/classwizard.qrc +%%EXAMPLESDIR%%/dialogs/classwizard/classwizard_rc.py +%%EXAMPLESDIR%%/dialogs/classwizard/classwizard_rc.pyc +%%EXAMPLESDIR%%/dialogs/classwizard/images/background.png +%%EXAMPLESDIR%%/dialogs/classwizard/images/banner.png +%%EXAMPLESDIR%%/dialogs/classwizard/images/logo1.png +%%EXAMPLESDIR%%/dialogs/classwizard/images/logo2.png +%%EXAMPLESDIR%%/dialogs/classwizard/images/logo3.png +%%EXAMPLESDIR%%/dialogs/classwizard/images/watermark1.png +%%EXAMPLESDIR%%/dialogs/classwizard/images/watermark2.png +%%EXAMPLESDIR%%/dialogs/configdialog/configdialog.py +%%EXAMPLESDIR%%/dialogs/configdialog/configdialog.pyc +%%EXAMPLESDIR%%/dialogs/configdialog/configdialog.qrc +%%EXAMPLESDIR%%/dialogs/configdialog/configdialog_rc.py +%%EXAMPLESDIR%%/dialogs/configdialog/configdialog_rc.pyc +%%EXAMPLESDIR%%/dialogs/configdialog/images/config.png +%%EXAMPLESDIR%%/dialogs/configdialog/images/query.png +%%EXAMPLESDIR%%/dialogs/configdialog/images/update.png +%%EXAMPLESDIR%%/dialogs/extension.py +%%EXAMPLESDIR%%/dialogs/extension.pyc +%%EXAMPLESDIR%%/dialogs/findfiles.py +%%EXAMPLESDIR%%/dialogs/findfiles.pyc +%%EXAMPLESDIR%%/dialogs/standarddialogs.py +%%EXAMPLESDIR%%/dialogs/standarddialogs.pyc +%%EXAMPLESDIR%%/dialogs/tabdialog.py +%%EXAMPLESDIR%%/dialogs/tabdialog.pyc +%%EXAMPLESDIR%%/dialogs/trivialwizard.py +%%EXAMPLESDIR%%/dialogs/trivialwizard.pyc +%%EXAMPLESDIR%%/draganddrop/README +%%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding.py +%%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding.pyc +%%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding.qrc +%%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding_rc.py +%%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding_rc.pyc +%%EXAMPLESDIR%%/draganddrop/delayedencoding/images/drag.png +%%EXAMPLESDIR%%/draganddrop/delayedencoding/images/example.svg +%%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons.py +%%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons.pyc +%%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons.qrc +%%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons_rc.py +%%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons_rc.pyc +%%EXAMPLESDIR%%/draganddrop/draggableicons/images/boat.png +%%EXAMPLESDIR%%/draganddrop/draggableicons/images/car.png +%%EXAMPLESDIR%%/draganddrop/draggableicons/images/house.png +%%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext.py +%%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext.pyc +%%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext.qrc +%%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext_rc.py +%%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext_rc.pyc +%%EXAMPLESDIR%%/draganddrop/draggabletext/words.txt +%%EXAMPLESDIR%%/draganddrop/dropsite.py +%%EXAMPLESDIR%%/draganddrop/dropsite.pyc +%%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets.py +%%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets.pyc +%%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets.qrc +%%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets_rc.py +%%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets_rc.pyc +%%EXAMPLESDIR%%/draganddrop/fridgemagnets/words.txt +%%EXAMPLESDIR%%/draganddrop/puzzle/example.jpg +%%EXAMPLESDIR%%/draganddrop/puzzle/puzzle.py +%%EXAMPLESDIR%%/draganddrop/puzzle/puzzle.pyc +%%EXAMPLESDIR%%/draganddrop/puzzle/puzzle.qrc +%%EXAMPLESDIR%%/draganddrop/puzzle/puzzle_rc.py +%%EXAMPLESDIR%%/draganddrop/puzzle/puzzle_rc.pyc +%%EXAMPLESDIR%%/effects/README +%%EXAMPLESDIR%%/effects/lighting.py +%%EXAMPLESDIR%%/effects/lighting.pyc +%%EXAMPLESDIR%%/graphicsview/README +%%EXAMPLESDIR%%/graphicsview/anchorlayout.py +%%EXAMPLESDIR%%/graphicsview/anchorlayout.pyc +%%EXAMPLESDIR%%/graphicsview/collidingmice/collidingmice.py +%%EXAMPLESDIR%%/graphicsview/collidingmice/collidingmice.pyc +%%EXAMPLESDIR%%/graphicsview/collidingmice/images/cheese.jpg +%%EXAMPLESDIR%%/graphicsview/collidingmice/mice.qrc +%%EXAMPLESDIR%%/graphicsview/collidingmice/mice_rc.py +%%EXAMPLESDIR%%/graphicsview/collidingmice/mice_rc.pyc +%%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene.py +%%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene.pyc +%%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene.qrc +%%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene_rc.py +%%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene_rc.pyc +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/background1.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/background2.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/background3.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/background4.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/bold.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/bringtofront.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/delete.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/floodfill.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/italic.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/linecolor.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/linepointer.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/pointer.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/sendtoback.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/textpointer.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/underline.png +%%EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot.py +%%EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot.pyc +%%EXAMPLESDIR%%/graphicsview/dragdroprobot/images/head.png +%%EXAMPLESDIR%%/graphicsview/elasticnodes.py +%%EXAMPLESDIR%%/graphicsview/elasticnodes.pyc +%%EXAMPLESDIR%%/graphicsview/embeddeddialogs/No-Ones-Laughing-3.jpg +%%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialog.py +%%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialog.pyc +%%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialog.ui +%%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs.py +%%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs.pyc +%%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs.qrc +%%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs_rc.py +%%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs_rc.pyc +%%EXAMPLESDIR%%/graphicsview/padnavigator/form.ui +%%EXAMPLESDIR%%/graphicsview/padnavigator/images/artsfftscope.png +%%EXAMPLESDIR%%/graphicsview/padnavigator/images/blue_angle_swirl.jpg +%%EXAMPLESDIR%%/graphicsview/padnavigator/images/kontact_contacts.png +%%EXAMPLESDIR%%/graphicsview/padnavigator/images/kontact_journal.png +%%EXAMPLESDIR%%/graphicsview/padnavigator/images/kontact_mail.png +%%EXAMPLESDIR%%/graphicsview/padnavigator/images/kontact_notes.png +%%EXAMPLESDIR%%/graphicsview/padnavigator/images/kopeteavailable.png +%%EXAMPLESDIR%%/graphicsview/padnavigator/images/metacontact_online.png +%%EXAMPLESDIR%%/graphicsview/padnavigator/images/minitools.png +%%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator.py +%%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator.pyc +%%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator.qrc +%%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator_rc.py +%%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator_rc.pyc +%%EXAMPLESDIR%%/graphicsview/padnavigator/ui_form.py +%%EXAMPLESDIR%%/graphicsview/padnavigator/ui_form.pyc +%%EXAMPLESDIR%%/ipc/README +%%EXAMPLESDIR%%/ipc/localfortuneclient.py +%%EXAMPLESDIR%%/ipc/localfortuneclient.pyc +%%EXAMPLESDIR%%/ipc/localfortuneserver.py +%%EXAMPLESDIR%%/ipc/localfortuneserver.pyc +%%EXAMPLESDIR%%/ipc/sharedmemory/dialog.py +%%EXAMPLESDIR%%/ipc/sharedmemory/dialog.pyc +%%EXAMPLESDIR%%/ipc/sharedmemory/dialog.ui +%%EXAMPLESDIR%%/ipc/sharedmemory/image.png +%%EXAMPLESDIR%%/ipc/sharedmemory/qt.png +%%EXAMPLESDIR%%/ipc/sharedmemory/sharedmemory.py +%%EXAMPLESDIR%%/ipc/sharedmemory/sharedmemory.pyc +%%EXAMPLESDIR%%/itemviews/README +%%EXAMPLESDIR%%/itemviews/basicsortfiltermodel.py +%%EXAMPLESDIR%%/itemviews/basicsortfiltermodel.pyc +%%EXAMPLESDIR%%/itemviews/chart/chart.py +%%EXAMPLESDIR%%/itemviews/chart/chart.pyc +%%EXAMPLESDIR%%/itemviews/chart/chart.qrc +%%EXAMPLESDIR%%/itemviews/chart/chart_rc.py +%%EXAMPLESDIR%%/itemviews/chart/chart_rc.pyc +%%EXAMPLESDIR%%/itemviews/chart/mydata.cht +%%EXAMPLESDIR%%/itemviews/chart/qtdata.cht +%%EXAMPLESDIR%%/itemviews/coloreditorfactory.py +%%EXAMPLESDIR%%/itemviews/coloreditorfactory.pyc +%%EXAMPLESDIR%%/itemviews/combowidgetmapper.py +%%EXAMPLESDIR%%/itemviews/combowidgetmapper.pyc +%%EXAMPLESDIR%%/itemviews/customsortfiltermodel.py +%%EXAMPLESDIR%%/itemviews/customsortfiltermodel.pyc +%%EXAMPLESDIR%%/itemviews/dirview.py +%%EXAMPLESDIR%%/itemviews/dirview.pyc +%%EXAMPLESDIR%%/itemviews/editabletreemodel/default.txt +%%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel.py +%%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel.pyc +%%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel.qrc +%%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel_rc.py +%%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel_rc.pyc +%%EXAMPLESDIR%%/itemviews/editabletreemodel/mainwindow.ui +%%EXAMPLESDIR%%/itemviews/editabletreemodel/ui_mainwindow.py +%%EXAMPLESDIR%%/itemviews/editabletreemodel/ui_mainwindow.pyc +%%EXAMPLESDIR%%/itemviews/fetchmore.py +%%EXAMPLESDIR%%/itemviews/fetchmore.pyc +%%EXAMPLESDIR%%/itemviews/pixelator/images/qt.png +%%EXAMPLESDIR%%/itemviews/pixelator/pixelator.py +%%EXAMPLESDIR%%/itemviews/pixelator/pixelator.pyc +%%EXAMPLESDIR%%/itemviews/pixelator/pixelator.qrc +%%EXAMPLESDIR%%/itemviews/pixelator/pixelator_rc.py +%%EXAMPLESDIR%%/itemviews/pixelator/pixelator_rc.pyc +%%EXAMPLESDIR%%/itemviews/puzzle/example.jpg +%%EXAMPLESDIR%%/itemviews/puzzle/puzzle.py +%%EXAMPLESDIR%%/itemviews/puzzle/puzzle.pyc +%%EXAMPLESDIR%%/itemviews/puzzle/puzzle.qrc +%%EXAMPLESDIR%%/itemviews/puzzle/puzzle_rc.py +%%EXAMPLESDIR%%/itemviews/puzzle/puzzle_rc.pyc +%%EXAMPLESDIR%%/itemviews/simpledommodel.py +%%EXAMPLESDIR%%/itemviews/simpledommodel.pyc +%%EXAMPLESDIR%%/itemviews/simpletreemodel/default.txt +%%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel.py +%%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel.pyc +%%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel.qrc +%%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel_rc.py +%%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel_rc.pyc +%%EXAMPLESDIR%%/itemviews/simplewidgetmapper.py +%%EXAMPLESDIR%%/itemviews/simplewidgetmapper.pyc +%%EXAMPLESDIR%%/itemviews/spinboxdelegate.py +%%EXAMPLESDIR%%/itemviews/spinboxdelegate.pyc +%%EXAMPLESDIR%%/itemviews/spreadsheet/images/interview.png +%%EXAMPLESDIR%%/itemviews/spreadsheet/printview.py +%%EXAMPLESDIR%%/itemviews/spreadsheet/printview.pyc +%%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet.py +%%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet.pyc +%%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet.qrc +%%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet_rc.py +%%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet_rc.pyc +%%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheetdelegate.py +%%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheetdelegate.pyc +%%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheetitem.py +%%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheetitem.pyc +%%EXAMPLESDIR%%/itemviews/spreadsheet/util.py +%%EXAMPLESDIR%%/itemviews/spreadsheet/util.pyc +%%EXAMPLESDIR%%/itemviews/stardelegate.py +%%EXAMPLESDIR%%/itemviews/stardelegate.pyc +%%EXAMPLESDIR%%/layouts/README +%%EXAMPLESDIR%%/layouts/basiclayouts.py +%%EXAMPLESDIR%%/layouts/basiclayouts.pyc +%%EXAMPLESDIR%%/layouts/borderlayout.py +%%EXAMPLESDIR%%/layouts/borderlayout.pyc +%%EXAMPLESDIR%%/layouts/flowlayout.py +%%EXAMPLESDIR%%/layouts/flowlayout.pyc +%%EXAMPLESDIR%%/mainwindows/README +%%EXAMPLESDIR%%/mainwindows/application/application.py +%%EXAMPLESDIR%%/mainwindows/application/application.pyc +%%EXAMPLESDIR%%/mainwindows/application/images/copy.png +%%EXAMPLESDIR%%/mainwindows/application/images/cut.png +%%EXAMPLESDIR%%/mainwindows/application/images/new.png +%%EXAMPLESDIR%%/mainwindows/application/images/open.png +%%EXAMPLESDIR%%/mainwindows/application/images/paste.png +%%EXAMPLESDIR%%/mainwindows/application/images/save.png +%%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets.py +%%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets.pyc +%%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets.qrc +%%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets_rc.py +%%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets_rc.pyc +%%EXAMPLESDIR%%/mainwindows/dockwidgets/images/new.png +%%EXAMPLESDIR%%/mainwindows/dockwidgets/images/print.png +%%EXAMPLESDIR%%/mainwindows/dockwidgets/images/save.png +%%EXAMPLESDIR%%/mainwindows/dockwidgets/images/undo.png +%%EXAMPLESDIR%%/mainwindows/mdi/images/copy.png +%%EXAMPLESDIR%%/mainwindows/mdi/images/cut.png +%%EXAMPLESDIR%%/mainwindows/mdi/images/new.png +%%EXAMPLESDIR%%/mainwindows/mdi/images/open.png +%%EXAMPLESDIR%%/mainwindows/mdi/images/paste.png +%%EXAMPLESDIR%%/mainwindows/mdi/images/save.png +%%EXAMPLESDIR%%/mainwindows/mdi/mdi.py +%%EXAMPLESDIR%%/mainwindows/mdi/mdi.pyc +%%EXAMPLESDIR%%/mainwindows/mdi/mdi.qrc +%%EXAMPLESDIR%%/mainwindows/mdi/mdi_rc.py +%%EXAMPLESDIR%%/mainwindows/mdi/mdi_rc.pyc +%%EXAMPLESDIR%%/mainwindows/menus.py +%%EXAMPLESDIR%%/mainwindows/menus.pyc +%%EXAMPLESDIR%%/mainwindows/recentfiles.py +%%EXAMPLESDIR%%/mainwindows/recentfiles.pyc +%%EXAMPLESDIR%%/mainwindows/sdi/images/copy.png +%%EXAMPLESDIR%%/mainwindows/sdi/images/cut.png +%%EXAMPLESDIR%%/mainwindows/sdi/images/new.png +%%EXAMPLESDIR%%/mainwindows/sdi/images/open.png +%%EXAMPLESDIR%%/mainwindows/sdi/images/paste.png +%%EXAMPLESDIR%%/mainwindows/sdi/images/save.png +%%EXAMPLESDIR%%/mainwindows/sdi/sdi.py +%%EXAMPLESDIR%%/mainwindows/sdi/sdi.pyc +%%EXAMPLESDIR%%/mainwindows/sdi/sdi.qrc +%%EXAMPLESDIR%%/mainwindows/sdi/sdi_rc.py +%%EXAMPLESDIR%%/mainwindows/sdi/sdi_rc.pyc +%%EXAMPLESDIR%%/mainwindows/separations.py +%%EXAMPLESDIR%%/mainwindows/separations.pyc +%%EXAMPLESDIR%%/multimedia/README +%%EXAMPLESDIR%%/multimedia/audiodevices/audiodevices.py +%%EXAMPLESDIR%%/multimedia/audiodevices/audiodevices.pyc +%%EXAMPLESDIR%%/multimedia/audiodevices/audiodevicesbase.ui +%%EXAMPLESDIR%%/multimedia/audiodevices/ui_audiodevicesbase.py +%%EXAMPLESDIR%%/multimedia/audiodevices/ui_audiodevicesbase.pyc +%%EXAMPLESDIR%%/multimedia/audiooutput.py +%%EXAMPLESDIR%%/multimedia/audiooutput.pyc +%%EXAMPLESDIR%%/multimediawidgets/README +%%EXAMPLESDIR%%/multimediawidgets/camera/camera.py +%%EXAMPLESDIR%%/multimediawidgets/camera/camera.pyc +%%EXAMPLESDIR%%/multimediawidgets/camera/camera.ui +%%EXAMPLESDIR%%/multimediawidgets/camera/imagesettings.ui +%%EXAMPLESDIR%%/multimediawidgets/camera/ui_camera.py +%%EXAMPLESDIR%%/multimediawidgets/camera/ui_camera.pyc +%%EXAMPLESDIR%%/multimediawidgets/camera/ui_imagesettings.py +%%EXAMPLESDIR%%/multimediawidgets/camera/ui_imagesettings.pyc +%%EXAMPLESDIR%%/multimediawidgets/camera/ui_videosettings.py +%%EXAMPLESDIR%%/multimediawidgets/camera/ui_videosettings.pyc +%%EXAMPLESDIR%%/multimediawidgets/camera/videosettings.ui +%%EXAMPLESDIR%%/multimediawidgets/player.py +%%EXAMPLESDIR%%/multimediawidgets/player.pyc +%%EXAMPLESDIR%%/multimediawidgets/videographicsitem.py +%%EXAMPLESDIR%%/multimediawidgets/videographicsitem.pyc +%%EXAMPLESDIR%%/multimediawidgets/videowidget.py +%%EXAMPLESDIR%%/multimediawidgets/videowidget.pyc +%%EXAMPLESDIR%%/network/README +%%EXAMPLESDIR%%/network/blockingfortuneclient.py +%%EXAMPLESDIR%%/network/blockingfortuneclient.pyc +%%EXAMPLESDIR%%/network/broadcastreceiver.py +%%EXAMPLESDIR%%/network/broadcastreceiver.pyc +%%EXAMPLESDIR%%/network/broadcastsender.py +%%EXAMPLESDIR%%/network/broadcastsender.pyc +%%EXAMPLESDIR%%/network/fortuneclient.py +%%EXAMPLESDIR%%/network/fortuneclient.pyc +%%EXAMPLESDIR%%/network/fortuneserver.py +%%EXAMPLESDIR%%/network/fortuneserver.pyc +%%EXAMPLESDIR%%/network/http/authenticationdialog.ui +%%EXAMPLESDIR%%/network/http/http.py +%%EXAMPLESDIR%%/network/http/http.pyc +%%EXAMPLESDIR%%/network/lightmaps.py +%%EXAMPLESDIR%%/network/lightmaps.pyc +%%EXAMPLESDIR%%/network/loopback.py +%%EXAMPLESDIR%%/network/loopback.pyc +%%EXAMPLESDIR%%/network/threadedfortuneserver.py +%%EXAMPLESDIR%%/network/threadedfortuneserver.pyc +%%EXAMPLESDIR%%/opengl/2dpainting.py +%%EXAMPLESDIR%%/opengl/2dpainting.pyc +%%EXAMPLESDIR%%/opengl/README +%%EXAMPLESDIR%%/opengl/grabber.py +%%EXAMPLESDIR%%/opengl/grabber.pyc +%%EXAMPLESDIR%%/opengl/hellogl.py +%%EXAMPLESDIR%%/opengl/hellogl.pyc +%%EXAMPLESDIR%%/opengl/openglwindow.py +%%EXAMPLESDIR%%/opengl/openglwindow.pyc +%%EXAMPLESDIR%%/opengl/overpainting.py +%%EXAMPLESDIR%%/opengl/overpainting.pyc +%%EXAMPLESDIR%%/opengl/textures/images/side1.png +%%EXAMPLESDIR%%/opengl/textures/images/side2.png +%%EXAMPLESDIR%%/opengl/textures/images/side3.png +%%EXAMPLESDIR%%/opengl/textures/images/side4.png +%%EXAMPLESDIR%%/opengl/textures/images/side5.png +%%EXAMPLESDIR%%/opengl/textures/images/side6.png +%%EXAMPLESDIR%%/opengl/textures/textures.py +%%EXAMPLESDIR%%/opengl/textures/textures.pyc +%%EXAMPLESDIR%%/painting/README +%%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing.py +%%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing.pyc +%%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing.qrc +%%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing_rc.py +%%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing_rc.pyc +%%EXAMPLESDIR%%/painting/basicdrawing/images/brick.png +%%EXAMPLESDIR%%/painting/basicdrawing/images/qt-logo.png +%%EXAMPLESDIR%%/painting/concentriccircles.py +%%EXAMPLESDIR%%/painting/concentriccircles.pyc +%%EXAMPLESDIR%%/painting/painterpaths.py +%%EXAMPLESDIR%%/painting/painterpaths.pyc +%%EXAMPLESDIR%%/painting/svgviewer/files/bubbles.svg +%%EXAMPLESDIR%%/painting/svgviewer/files/cubic.svg +%%EXAMPLESDIR%%/painting/svgviewer/files/spheres.svg +%%EXAMPLESDIR%%/painting/svgviewer/svgviewer.py +%%EXAMPLESDIR%%/painting/svgviewer/svgviewer.pyc +%%EXAMPLESDIR%%/painting/svgviewer/svgviewer.qrc +%%EXAMPLESDIR%%/painting/svgviewer/svgviewer_rc.py +%%EXAMPLESDIR%%/painting/svgviewer/svgviewer_rc.pyc +%%EXAMPLESDIR%%/painting/transformations.py +%%EXAMPLESDIR%%/painting/transformations.pyc +%%EXAMPLESDIR%%/pyuic/compile-on-the-fly.py +%%EXAMPLESDIR%%/pyuic/compile-on-the-fly.pyc +%%EXAMPLESDIR%%/pyuic/demo.ui +%%EXAMPLESDIR%%/pyuic/load_ui1.py +%%EXAMPLESDIR%%/pyuic/load_ui1.pyc +%%EXAMPLESDIR%%/pyuic/load_ui2.py +%%EXAMPLESDIR%%/pyuic/load_ui2.pyc +%%EXAMPLESDIR%%/qml/referenceexamples/adding.py +%%EXAMPLESDIR%%/qml/referenceexamples/adding.pyc +%%EXAMPLESDIR%%/qml/referenceexamples/attached.py +%%EXAMPLESDIR%%/qml/referenceexamples/attached.pyc +%%EXAMPLESDIR%%/qml/referenceexamples/binding.py +%%EXAMPLESDIR%%/qml/referenceexamples/binding.pyc +%%EXAMPLESDIR%%/qml/referenceexamples/coercion.py +%%EXAMPLESDIR%%/qml/referenceexamples/coercion.pyc +%%EXAMPLESDIR%%/qml/referenceexamples/default.py +%%EXAMPLESDIR%%/qml/referenceexamples/default.pyc +%%EXAMPLESDIR%%/qml/referenceexamples/grouped.py +%%EXAMPLESDIR%%/qml/referenceexamples/grouped.pyc +%%EXAMPLESDIR%%/qml/referenceexamples/methods.py +%%EXAMPLESDIR%%/qml/referenceexamples/methods.pyc +%%EXAMPLESDIR%%/qml/referenceexamples/properties.py +%%EXAMPLESDIR%%/qml/referenceexamples/properties.pyc +%%EXAMPLESDIR%%/qml/referenceexamples/signal.py +%%EXAMPLESDIR%%/qml/referenceexamples/signal.pyc +%%EXAMPLESDIR%%/qml/referenceexamples/valuesource.py +%%EXAMPLESDIR%%/qml/referenceexamples/valuesource.pyc +%%EXAMPLESDIR%%/qtdemo/colors.py +%%EXAMPLESDIR%%/qtdemo/colors.pyc +%%EXAMPLESDIR%%/qtdemo/demoitem.py +%%EXAMPLESDIR%%/qtdemo/demoitem.pyc +%%EXAMPLESDIR%%/qtdemo/demoitemanimation.py +%%EXAMPLESDIR%%/qtdemo/demoitemanimation.pyc +%%EXAMPLESDIR%%/qtdemo/demotextitem.py +%%EXAMPLESDIR%%/qtdemo/demotextitem.pyc +%%EXAMPLESDIR%%/qtdemo/examplecontent.py +%%EXAMPLESDIR%%/qtdemo/examplecontent.pyc +%%EXAMPLESDIR%%/qtdemo/examples.xml +%%EXAMPLESDIR%%/qtdemo/guide.py +%%EXAMPLESDIR%%/qtdemo/guide.pyc +%%EXAMPLESDIR%%/qtdemo/guidecircle.py +%%EXAMPLESDIR%%/qtdemo/guidecircle.pyc +%%EXAMPLESDIR%%/qtdemo/guideline.py +%%EXAMPLESDIR%%/qtdemo/guideline.pyc +%%EXAMPLESDIR%%/qtdemo/headingitem.py +%%EXAMPLESDIR%%/qtdemo/headingitem.pyc +%%EXAMPLESDIR%%/qtdemo/imageitem.py +%%EXAMPLESDIR%%/qtdemo/imageitem.pyc +%%EXAMPLESDIR%%/qtdemo/images/demobg.png +%%EXAMPLESDIR%%/qtdemo/images/qtlogo_small.png +%%EXAMPLESDIR%%/qtdemo/images/trolltech-logo.png +%%EXAMPLESDIR%%/qtdemo/itemcircleanimation.py +%%EXAMPLESDIR%%/qtdemo/itemcircleanimation.pyc +%%EXAMPLESDIR%%/qtdemo/letteritem.py +%%EXAMPLESDIR%%/qtdemo/letteritem.pyc +%%EXAMPLESDIR%%/qtdemo/mainwindow.py +%%EXAMPLESDIR%%/qtdemo/mainwindow.pyc +%%EXAMPLESDIR%%/qtdemo/menucontent.py +%%EXAMPLESDIR%%/qtdemo/menucontent.pyc +%%EXAMPLESDIR%%/qtdemo/menumanager.py +%%EXAMPLESDIR%%/qtdemo/menumanager.pyc +%%EXAMPLESDIR%%/qtdemo/qtdemo.py +%%EXAMPLESDIR%%/qtdemo/qtdemo.pyc +%%EXAMPLESDIR%%/qtdemo/scanitem.py +%%EXAMPLESDIR%%/qtdemo/scanitem.pyc +%%EXAMPLESDIR%%/qtdemo/score.py +%%EXAMPLESDIR%%/qtdemo/score.pyc +%%EXAMPLESDIR%%/qtdemo/textbutton.py +%%EXAMPLESDIR%%/qtdemo/textbutton.pyc +%%EXAMPLESDIR%%/quick/README +%%EXAMPLESDIR%%/quick/animation/animation.py +%%EXAMPLESDIR%%/quick/animation/animation.pyc +%%EXAMPLESDIR%%/quick/animation/animation.qml +%%EXAMPLESDIR%%/quick/animation/animation.qrc +%%EXAMPLESDIR%%/quick/animation/animation_rc.py +%%EXAMPLESDIR%%/quick/animation/animation_rc.pyc +%%EXAMPLESDIR%%/quick/animation/basics/color-animation.qml +%%EXAMPLESDIR%%/quick/animation/basics/images/face-smile.png +%%EXAMPLESDIR%%/quick/animation/basics/images/moon.png +%%EXAMPLESDIR%%/quick/animation/basics/images/shadow.png +%%EXAMPLESDIR%%/quick/animation/basics/images/star.png +%%EXAMPLESDIR%%/quick/animation/basics/images/sun.png +%%EXAMPLESDIR%%/quick/animation/basics/property-animation.qml +%%EXAMPLESDIR%%/quick/animation/behaviors/SideRect.qml +%%EXAMPLESDIR%%/quick/animation/behaviors/behavior-example.qml +%%EXAMPLESDIR%%/quick/animation/behaviors/tvtennis.qml +%%EXAMPLESDIR%%/quick/animation/behaviors/wigglytext.qml +%%EXAMPLESDIR%%/quick/animation/easing/easing.qml +%%EXAMPLESDIR%%/quick/animation/pathanimation/pathanimation.qml +%%EXAMPLESDIR%%/quick/animation/pathinterpolator/pathinterpolator.qml +%%EXAMPLESDIR%%/quick/animation/states/qt-logo.png +%%EXAMPLESDIR%%/quick/animation/states/states.qml +%%EXAMPLESDIR%%/quick/animation/states/transitions.qml +%%EXAMPLESDIR%%/quick/canvas/bezierCurve/bezierCurve.qml +%%EXAMPLESDIR%%/quick/canvas/canvas.py +%%EXAMPLESDIR%%/quick/canvas/canvas.pyc +%%EXAMPLESDIR%%/quick/canvas/canvas.qml +%%EXAMPLESDIR%%/quick/canvas/canvas.qrc +%%EXAMPLESDIR%%/quick/canvas/canvas_rc.py +%%EXAMPLESDIR%%/quick/canvas/canvas_rc.pyc +%%EXAMPLESDIR%%/quick/canvas/clip/clip.qml +%%EXAMPLESDIR%%/quick/canvas/contents/Button.qml +%%EXAMPLESDIR%%/quick/canvas/contents/ScrollBar.qml +%%EXAMPLESDIR%%/quick/canvas/contents/Slider.qml +%%EXAMPLESDIR%%/quick/canvas/contents/TitleBar.qml +%%EXAMPLESDIR%%/quick/canvas/contents/ToolBar.qml +%%EXAMPLESDIR%%/quick/canvas/contents/images/button-pressed.png +%%EXAMPLESDIR%%/quick/canvas/contents/images/button.png +%%EXAMPLESDIR%%/quick/canvas/contents/images/default.svg +%%EXAMPLESDIR%%/quick/canvas/contents/images/gloss.png +%%EXAMPLESDIR%%/quick/canvas/contents/images/lineedit.png +%%EXAMPLESDIR%%/quick/canvas/contents/images/lineedit.sci +%%EXAMPLESDIR%%/quick/canvas/contents/images/quit.png +%%EXAMPLESDIR%%/quick/canvas/contents/images/stripes.png +%%EXAMPLESDIR%%/quick/canvas/contents/images/titlebar.png +%%EXAMPLESDIR%%/quick/canvas/contents/images/titlebar.sci +%%EXAMPLESDIR%%/quick/canvas/contents/images/toolbutton.png +%%EXAMPLESDIR%%/quick/canvas/contents/images/toolbutton.sci +%%EXAMPLESDIR%%/quick/canvas/contents/qt-logo.png +%%EXAMPLESDIR%%/quick/canvas/quadraticCurveTo/quadraticCurveTo.qml +%%EXAMPLESDIR%%/quick/canvas/roundedrect/roundedrect.qml +%%EXAMPLESDIR%%/quick/canvas/smile/smile.qml +%%EXAMPLESDIR%%/quick/canvas/squircle/squircle.png +%%EXAMPLESDIR%%/quick/canvas/squircle/squircle.qml +%%EXAMPLESDIR%%/quick/canvas/tiger/tiger.js +%%EXAMPLESDIR%%/quick/canvas/tiger/tiger.qml +%%EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel.py +%%EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel.pyc +%%EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel.qrc +%%EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel_rc.py +%%EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel_rc.pyc +%%EXAMPLESDIR%%/quick/models/abstractitemmodel/view.qml +%%EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel.py +%%EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel.pyc +%%EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel.qrc +%%EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel_rc.py +%%EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel_rc.pyc +%%EXAMPLESDIR%%/quick/models/objectlistmodel/view.qml +%%EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel.py +%%EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel.pyc +%%EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel.qrc +%%EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel_rc.py +%%EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel_rc.pyc +%%EXAMPLESDIR%%/quick/models/stringlistmodel/view.qml +%%EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry.py +%%EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry.pyc +%%EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry.qrc +%%EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry_rc.py +%%EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry_rc.pyc +%%EXAMPLESDIR%%/quick/scenegraph/customgeometry/main.qml +%%EXAMPLESDIR%%/quick/shared/Button.qml +%%EXAMPLESDIR%%/quick/shared/LauncherList.qml +%%EXAMPLESDIR%%/quick/shared/SimpleLauncherDelegate.qml +%%EXAMPLESDIR%%/quick/shared/images/back.png +%%EXAMPLESDIR%%/quick/shared/images/next.png +%%EXAMPLESDIR%%/quick/shared/shared.qrc +%%EXAMPLESDIR%%/quick/shared/shared_rc.py +%%EXAMPLESDIR%%/quick/shared/shared_rc.pyc +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter1-basics/app.qml +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter1-basics/chapter1-basics.py +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter1-basics/chapter1-basics.pyc +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter2-methods/app.qml +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter2-methods/chapter2-methods.py +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter2-methods/chapter2-methods.pyc +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter3-bindings/app.qml +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter3-bindings/chapter3-bindings.py +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter3-bindings/chapter3-bindings.pyc +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter4-customPropertyTypes/app.qml +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter4-customPropertyTypes/chapter4-customPropertyTypes.py +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter4-customPropertyTypes/chapter4-customPropertyTypes.pyc +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter5-listproperties/app.qml +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter5-listproperties/chapter5-listproperties.py +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter5-listproperties/chapter5-listproperties.pyc +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/chartsplugin.py +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/chartsplugin.pyc +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/piechart.py +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/piechart.pyc +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/pieslice.py +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/pieslice.pyc +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/qmldir +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/app.qml +%%EXAMPLESDIR%%/richtext/README +%%EXAMPLESDIR%%/richtext/calendar.py +%%EXAMPLESDIR%%/richtext/calendar.pyc +%%EXAMPLESDIR%%/richtext/orderform.py +%%EXAMPLESDIR%%/richtext/orderform.pyc +%%EXAMPLESDIR%%/richtext/syntaxhighlighter.py +%%EXAMPLESDIR%%/richtext/syntaxhighlighter.pyc +%%EXAMPLESDIR%%/richtext/textedit/example.html +%%EXAMPLESDIR%%/richtext/textedit/images/logo.png +%%EXAMPLESDIR%%/richtext/textedit/images/logo32.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/editcopy.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/editcut.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/editpaste.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/editredo.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/editundo.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/exportpdf.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/filenew.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/fileopen.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/fileprint.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/filesave.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/textbold.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/textcenter.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/textitalic.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/textjustify.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/textleft.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/textright.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/textunder.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/zoomin.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/zoomout.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/editcopy.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/editcut.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/editpaste.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/editredo.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/editundo.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/exportpdf.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/filenew.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/fileopen.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/fileprint.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/filesave.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/textbold.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/textcenter.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/textitalic.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/textjustify.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/textleft.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/textright.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/textunder.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/zoomin.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/zoomout.png +%%EXAMPLESDIR%%/richtext/textedit/textedit.py +%%EXAMPLESDIR%%/richtext/textedit/textedit.pyc +%%EXAMPLESDIR%%/richtext/textedit/textedit.qrc +%%EXAMPLESDIR%%/richtext/textedit/textedit_rc.py +%%EXAMPLESDIR%%/richtext/textedit/textedit_rc.pyc +%%EXAMPLESDIR%%/richtext/textobject/files/heart.svg +%%EXAMPLESDIR%%/richtext/textobject/textobject.py +%%EXAMPLESDIR%%/richtext/textobject/textobject.pyc +%%EXAMPLESDIR%%/sql/README +%%EXAMPLESDIR%%/sql/cachedtable.py +%%EXAMPLESDIR%%/sql/cachedtable.pyc +%%EXAMPLESDIR%%/sql/connection.py +%%EXAMPLESDIR%%/sql/connection.pyc +%%EXAMPLESDIR%%/sql/querymodel.py +%%EXAMPLESDIR%%/sql/querymodel.pyc +%%EXAMPLESDIR%%/sql/relationaltablemodel.py +%%EXAMPLESDIR%%/sql/relationaltablemodel.pyc +%%EXAMPLESDIR%%/sql/tablemodel.py +%%EXAMPLESDIR%%/sql/tablemodel.pyc +%%EXAMPLESDIR%%/threads/README +%%EXAMPLESDIR%%/threads/mandelbrot.py +%%EXAMPLESDIR%%/threads/mandelbrot.pyc +%%EXAMPLESDIR%%/threads/semaphores.py +%%EXAMPLESDIR%%/threads/semaphores.pyc +%%EXAMPLESDIR%%/threads/waitconditions.py +%%EXAMPLESDIR%%/threads/waitconditions.pyc +%%EXAMPLESDIR%%/tools/README +%%EXAMPLESDIR%%/tools/codecs/codecs.py +%%EXAMPLESDIR%%/tools/codecs/codecs.pyc +%%EXAMPLESDIR%%/tools/codecs/encodedfiles/iso-8859-1.txt +%%EXAMPLESDIR%%/tools/codecs/encodedfiles/iso-8859-15.txt +%%EXAMPLESDIR%%/tools/codecs/encodedfiles/utf-16.txt +%%EXAMPLESDIR%%/tools/codecs/encodedfiles/utf-16be.txt +%%EXAMPLESDIR%%/tools/codecs/encodedfiles/utf-16le.txt +%%EXAMPLESDIR%%/tools/codecs/encodedfiles/utf-8.txt +%%EXAMPLESDIR%%/tools/customcompleter/customcompleter.py +%%EXAMPLESDIR%%/tools/customcompleter/customcompleter.pyc +%%EXAMPLESDIR%%/tools/customcompleter/customcompleter.qrc +%%EXAMPLESDIR%%/tools/customcompleter/customcompleter_rc.py +%%EXAMPLESDIR%%/tools/customcompleter/customcompleter_rc.pyc +%%EXAMPLESDIR%%/tools/customcompleter/resources/wordlist.txt +%%EXAMPLESDIR%%/tools/i18n/i18n.py +%%EXAMPLESDIR%%/tools/i18n/i18n.pyc +%%EXAMPLESDIR%%/tools/i18n/i18n.qrc +%%EXAMPLESDIR%%/tools/i18n/i18n_rc.py +%%EXAMPLESDIR%%/tools/i18n/i18n_rc.pyc +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_ar.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_ar.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_cs.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_cs.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_de.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_de.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_el.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_el.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_en.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_en.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_eo.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_eo.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_fr.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_fr.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_it.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_it.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_jp.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_jp.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_ko.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_ko.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_no.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_no.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_pt.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_pt.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_ru.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_ru.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_sv.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_sv.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_zh.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_zh.ts +%%EXAMPLESDIR%%/tools/regexp.py +%%EXAMPLESDIR%%/tools/regexp.pyc +%%EXAMPLESDIR%%/tools/settingseditor/inifiles/licensepage.ini +%%EXAMPLESDIR%%/tools/settingseditor/inifiles/qsa.ini +%%EXAMPLESDIR%%/tools/settingseditor/settingseditor.py +%%EXAMPLESDIR%%/tools/settingseditor/settingseditor.pyc +%%EXAMPLESDIR%%/tutorials/addressbook/README +%%EXAMPLESDIR%%/tutorials/addressbook/part1.py +%%EXAMPLESDIR%%/tutorials/addressbook/part1.pyc +%%EXAMPLESDIR%%/tutorials/addressbook/part2.py +%%EXAMPLESDIR%%/tutorials/addressbook/part2.pyc +%%EXAMPLESDIR%%/tutorials/addressbook/part3.py +%%EXAMPLESDIR%%/tutorials/addressbook/part3.pyc +%%EXAMPLESDIR%%/tutorials/addressbook/part4.py +%%EXAMPLESDIR%%/tutorials/addressbook/part4.pyc +%%EXAMPLESDIR%%/tutorials/addressbook/part5.py +%%EXAMPLESDIR%%/tutorials/addressbook/part5.pyc +%%EXAMPLESDIR%%/tutorials/addressbook/part6.py +%%EXAMPLESDIR%%/tutorials/addressbook/part6.pyc +%%EXAMPLESDIR%%/tutorials/addressbook/part7.py +%%EXAMPLESDIR%%/tutorials/addressbook/part7.pyc +%%EXAMPLESDIR%%/webkit/README +%%EXAMPLESDIR%%/webkit/domtraversal/domtraversal.py +%%EXAMPLESDIR%%/webkit/domtraversal/domtraversal.pyc +%%EXAMPLESDIR%%/webkit/domtraversal/ui_window.py +%%EXAMPLESDIR%%/webkit/domtraversal/ui_window.pyc +%%EXAMPLESDIR%%/webkit/domtraversal/window.ui +%%EXAMPLESDIR%%/webkit/fancybrowser/__pycache__/jquery_rc.cpython-34.pyc +%%EXAMPLESDIR%%/webkit/fancybrowser/fancybrowser.py +%%EXAMPLESDIR%%/webkit/fancybrowser/fancybrowser.pyc +%%EXAMPLESDIR%%/webkit/fancybrowser/jquery.min.js +%%EXAMPLESDIR%%/webkit/fancybrowser/jquery.qrc +%%EXAMPLESDIR%%/webkit/fancybrowser/jquery_rc.py +%%EXAMPLESDIR%%/webkit/fancybrowser/jquery_rc.pyc +%%EXAMPLESDIR%%/webkit/formextractor/form.html +%%EXAMPLESDIR%%/webkit/formextractor/formextractor.py +%%EXAMPLESDIR%%/webkit/formextractor/formextractor.pyc +%%EXAMPLESDIR%%/webkit/formextractor/formextractor.qrc +%%EXAMPLESDIR%%/webkit/formextractor/formextractor.ui +%%EXAMPLESDIR%%/webkit/formextractor/formextractor_rc.py +%%EXAMPLESDIR%%/webkit/formextractor/formextractor_rc.pyc +%%EXAMPLESDIR%%/webkit/formextractor/ui_formextractor.py +%%EXAMPLESDIR%%/webkit/formextractor/ui_formextractor.pyc +%%EXAMPLESDIR%%/webkit/framecapture.py +%%EXAMPLESDIR%%/webkit/framecapture.pyc +%%EXAMPLESDIR%%/webkit/previewer/previewer.py +%%EXAMPLESDIR%%/webkit/previewer/previewer.pyc +%%EXAMPLESDIR%%/webkit/previewer/previewer.ui +%%EXAMPLESDIR%%/webkit/previewer/ui_previewer.py +%%EXAMPLESDIR%%/webkit/previewer/ui_previewer.pyc +%%EXAMPLESDIR%%/webkit/simpleselector/simpleselector.py +%%EXAMPLESDIR%%/webkit/simpleselector/simpleselector.pyc +%%EXAMPLESDIR%%/webkit/simpleselector/ui_window.py +%%EXAMPLESDIR%%/webkit/simpleselector/ui_window.pyc +%%EXAMPLESDIR%%/webkit/simpleselector/window.ui +%%EXAMPLESDIR%%/widgets/README +%%EXAMPLESDIR%%/widgets/analogclock.py +%%EXAMPLESDIR%%/widgets/analogclock.pyc +%%EXAMPLESDIR%%/widgets/calculator.py +%%EXAMPLESDIR%%/widgets/calculator.pyc +%%EXAMPLESDIR%%/widgets/calendarwidget.py +%%EXAMPLESDIR%%/widgets/calendarwidget.pyc +%%EXAMPLESDIR%%/widgets/charactermap.py +%%EXAMPLESDIR%%/widgets/charactermap.pyc +%%EXAMPLESDIR%%/widgets/digitalclock.py +%%EXAMPLESDIR%%/widgets/digitalclock.pyc +%%EXAMPLESDIR%%/widgets/groupbox.py +%%EXAMPLESDIR%%/widgets/groupbox.pyc +%%EXAMPLESDIR%%/widgets/icons/icons.py +%%EXAMPLESDIR%%/widgets/icons/icons.pyc +%%EXAMPLESDIR%%/widgets/icons/images/designer.png +%%EXAMPLESDIR%%/widgets/icons/images/find_disabled.png +%%EXAMPLESDIR%%/widgets/icons/images/find_normal.png +%%EXAMPLESDIR%%/widgets/icons/images/monkey_off_128x128.png +%%EXAMPLESDIR%%/widgets/icons/images/monkey_off_16x16.png +%%EXAMPLESDIR%%/widgets/icons/images/monkey_off_32x32.png +%%EXAMPLESDIR%%/widgets/icons/images/monkey_off_64x64.png +%%EXAMPLESDIR%%/widgets/icons/images/monkey_on_128x128.png +%%EXAMPLESDIR%%/widgets/icons/images/monkey_on_16x16.png +%%EXAMPLESDIR%%/widgets/icons/images/monkey_on_32x32.png +%%EXAMPLESDIR%%/widgets/icons/images/monkey_on_64x64.png +%%EXAMPLESDIR%%/widgets/icons/images/qt_extended_16x16.png +%%EXAMPLESDIR%%/widgets/icons/images/qt_extended_32x32.png +%%EXAMPLESDIR%%/widgets/icons/images/qt_extended_48x48.png +%%EXAMPLESDIR%%/widgets/imageviewer.py +%%EXAMPLESDIR%%/widgets/imageviewer.pyc +%%EXAMPLESDIR%%/widgets/lineedits.py +%%EXAMPLESDIR%%/widgets/lineedits.pyc +%%EXAMPLESDIR%%/widgets/movie/animation.mng +%%EXAMPLESDIR%%/widgets/movie/movie.py +%%EXAMPLESDIR%%/widgets/movie/movie.pyc +%%EXAMPLESDIR%%/widgets/scribble.py +%%EXAMPLESDIR%%/widgets/scribble.pyc +%%EXAMPLESDIR%%/widgets/shapedclock.py +%%EXAMPLESDIR%%/widgets/shapedclock.pyc +%%EXAMPLESDIR%%/widgets/sliders.py +%%EXAMPLESDIR%%/widgets/sliders.pyc +%%EXAMPLESDIR%%/widgets/spinboxes.py +%%EXAMPLESDIR%%/widgets/spinboxes.pyc +%%EXAMPLESDIR%%/widgets/styles.py +%%EXAMPLESDIR%%/widgets/styles.pyc +%%EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_checked.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_checked_hover.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_checked_pressed.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_unchecked.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_unchecked_hover.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_unchecked_pressed.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/down_arrow.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/down_arrow_disabled.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/frame.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/pagefold.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/pushbutton.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/pushbutton_hover.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/pushbutton_pressed.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_checked.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_checked_hover.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_checked_pressed.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_unchecked.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_unchecked_hover.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_unchecked_pressed.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/sizegrip.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/spindown.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/spindown_hover.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/spindown_off.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/spindown_pressed.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/spinup.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/spinup_hover.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/spinup_off.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/spinup_pressed.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/up_arrow.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/up_arrow_disabled.png +%%EXAMPLESDIR%%/widgets/stylesheet/mainwindow.ui +%%EXAMPLESDIR%%/widgets/stylesheet/qss/coffee.qss +%%EXAMPLESDIR%%/widgets/stylesheet/qss/default.qss +%%EXAMPLESDIR%%/widgets/stylesheet/qss/pagefold.qss +%%EXAMPLESDIR%%/widgets/stylesheet/stylesheet.py +%%EXAMPLESDIR%%/widgets/stylesheet/stylesheet.pyc +%%EXAMPLESDIR%%/widgets/stylesheet/stylesheet.qrc +%%EXAMPLESDIR%%/widgets/stylesheet/stylesheet_rc.py +%%EXAMPLESDIR%%/widgets/stylesheet/stylesheet_rc.pyc +%%EXAMPLESDIR%%/widgets/stylesheet/stylesheeteditor.py +%%EXAMPLESDIR%%/widgets/stylesheet/stylesheeteditor.pyc +%%EXAMPLESDIR%%/widgets/stylesheet/stylesheeteditor.ui +%%EXAMPLESDIR%%/widgets/stylesheet/ui_mainwindow.py +%%EXAMPLESDIR%%/widgets/stylesheet/ui_mainwindow.pyc +%%EXAMPLESDIR%%/widgets/stylesheet/ui_stylesheeteditor.py +%%EXAMPLESDIR%%/widgets/stylesheet/ui_stylesheeteditor.pyc +%%EXAMPLESDIR%%/widgets/tetrix.py +%%EXAMPLESDIR%%/widgets/tetrix.pyc +%%EXAMPLESDIR%%/widgets/tooltips/images/circle.png +%%EXAMPLESDIR%%/widgets/tooltips/images/square.png +%%EXAMPLESDIR%%/widgets/tooltips/images/triangle.png +%%EXAMPLESDIR%%/widgets/tooltips/tooltips.py +%%EXAMPLESDIR%%/widgets/tooltips/tooltips.pyc +%%EXAMPLESDIR%%/widgets/tooltips/tooltips.qrc +%%EXAMPLESDIR%%/widgets/tooltips/tooltips_rc.py +%%EXAMPLESDIR%%/widgets/tooltips/tooltips_rc.pyc +%%EXAMPLESDIR%%/widgets/wiggly.py +%%EXAMPLESDIR%%/widgets/wiggly.pyc +%%EXAMPLESDIR%%/widgets/windowflags.py +%%EXAMPLESDIR%%/widgets/windowflags.pyc +%%EXAMPLESDIR%%/xmlpatterns/README +%%EXAMPLESDIR%%/xmlpatterns/schema/files/contact.xsd +%%EXAMPLESDIR%%/xmlpatterns/schema/files/invalid_contact.xml +%%EXAMPLESDIR%%/xmlpatterns/schema/files/invalid_order.xml +%%EXAMPLESDIR%%/xmlpatterns/schema/files/invalid_recipe.xml +%%EXAMPLESDIR%%/xmlpatterns/schema/files/order.xsd +%%EXAMPLESDIR%%/xmlpatterns/schema/files/recipe.xsd +%%EXAMPLESDIR%%/xmlpatterns/schema/files/valid_contact.xml +%%EXAMPLESDIR%%/xmlpatterns/schema/files/valid_order.xml +%%EXAMPLESDIR%%/xmlpatterns/schema/files/valid_recipe.xml +%%EXAMPLESDIR%%/xmlpatterns/schema/schema.py +%%EXAMPLESDIR%%/xmlpatterns/schema/schema.pyc +%%EXAMPLESDIR%%/xmlpatterns/schema/schema.qrc +%%EXAMPLESDIR%%/xmlpatterns/schema/schema.ui +%%EXAMPLESDIR%%/xmlpatterns/schema/schema_rc.py +%%EXAMPLESDIR%%/xmlpatterns/schema/schema_rc.pyc +%%EXAMPLESDIR%%/xmlpatterns/schema/ui_schema.py +%%EXAMPLESDIR%%/xmlpatterns/schema/ui_schema.pyc Index: misc/py-qt5-doc/Makefile =================================================================== --- misc/py-qt5-doc/Makefile +++ misc/py-qt5-doc/Makefile @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= doc +PORTVERSION= ${PYQT5_VERSION} +CATEGORIES= misc devel python +MASTER_SITES= ${MASTER_SITES_PYQT5} +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}qt5- +DISTNAME= ${PYQT_DISTNAME} + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, documentation + +DISTINFO_FILE= ${PYQT_DISTINFO_FILE} +NO_BUILD= yes + +USES= python pyqt:5 +USE_PYQT= # + +DOCSDIR= ${PREFIX}/share/doc/py-qt5 + +do-install: + cd ${WRKSRC} &&\ + ${MKDIR} ${STAGEDIR}${DOCSDIR} &&\ + ${INSTALL_DATA} NEWS LICENSE README\ + ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC}/doc && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR} + +.include Index: misc/py-qt5-doc/pkg-descr =================================================================== --- misc/py-qt5-doc/pkg-descr +++ misc/py-qt5-doc/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the PyQt5 documentation. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ Index: misc/py-qt5-doc/pkg-plist =================================================================== --- misc/py-qt5-doc/pkg-plist +++ misc/py-qt5-doc/pkg-plist @@ -0,0 +1,2010 @@ +%%DOCSDIR%%/LICENSE +%%DOCSDIR%%/NEWS +%%DOCSDIR%%/README +%%DOCSDIR%%/html/_sources/api/enginio.txt +%%DOCSDIR%%/html/_sources/api/enginioclient.txt +%%DOCSDIR%%/html/_sources/api/enginioclientconnection.txt +%%DOCSDIR%%/html/_sources/api/enginioidentity.txt +%%DOCSDIR%%/html/_sources/api/enginiomodel.txt +%%DOCSDIR%%/html/_sources/api/enginiooauth2authentication.txt +%%DOCSDIR%%/html/_sources/api/enginioreply.txt +%%DOCSDIR%%/html/_sources/api/qabstractanimation.txt +%%DOCSDIR%%/html/_sources/api/qabstractbutton.txt +%%DOCSDIR%%/html/_sources/api/qabstracteventdispatcher.txt +%%DOCSDIR%%/html/_sources/api/qabstractextensionfactory.txt +%%DOCSDIR%%/html/_sources/api/qabstractextensionmanager.txt +%%DOCSDIR%%/html/_sources/api/qabstractformbuilder.txt +%%DOCSDIR%%/html/_sources/api/qabstractgraphicsshapeitem.txt +%%DOCSDIR%%/html/_sources/api/qabstractitemdelegate.txt +%%DOCSDIR%%/html/_sources/api/qabstractitemmodel.txt +%%DOCSDIR%%/html/_sources/api/qabstractitemview.txt +%%DOCSDIR%%/html/_sources/api/qabstractlistmodel.txt +%%DOCSDIR%%/html/_sources/api/qabstractmessagehandler.txt +%%DOCSDIR%%/html/_sources/api/qabstractnativeeventfilter.txt +%%DOCSDIR%%/html/_sources/api/qabstractnetworkcache.txt +%%DOCSDIR%%/html/_sources/api/qabstractprintdialog.txt +%%DOCSDIR%%/html/_sources/api/qabstractproxymodel.txt +%%DOCSDIR%%/html/_sources/api/qabstractscrollarea.txt +%%DOCSDIR%%/html/_sources/api/qabstractslider.txt +%%DOCSDIR%%/html/_sources/api/qabstractsocket.txt +%%DOCSDIR%%/html/_sources/api/qabstractspinbox.txt +%%DOCSDIR%%/html/_sources/api/qabstractstate.txt +%%DOCSDIR%%/html/_sources/api/qabstracttablemodel.txt +%%DOCSDIR%%/html/_sources/api/qabstracttextdocumentlayout.txt +%%DOCSDIR%%/html/_sources/api/qabstracttransition.txt +%%DOCSDIR%%/html/_sources/api/qabstracturiresolver.txt +%%DOCSDIR%%/html/_sources/api/qabstractvideobuffer.txt +%%DOCSDIR%%/html/_sources/api/qabstractvideosurface.txt +%%DOCSDIR%%/html/_sources/api/qabstractxmlnodemodel.txt +%%DOCSDIR%%/html/_sources/api/qabstractxmlreceiver.txt +%%DOCSDIR%%/html/_sources/api/qaccelerometer.txt +%%DOCSDIR%%/html/_sources/api/qaccelerometerfilter.txt +%%DOCSDIR%%/html/_sources/api/qaccelerometerreading.txt +%%DOCSDIR%%/html/_sources/api/qaction.txt +%%DOCSDIR%%/html/_sources/api/qactionevent.txt +%%DOCSDIR%%/html/_sources/api/qactiongroup.txt +%%DOCSDIR%%/html/_sources/api/qaltimeter.txt +%%DOCSDIR%%/html/_sources/api/qaltimeterfilter.txt +%%DOCSDIR%%/html/_sources/api/qaltimeterreading.txt +%%DOCSDIR%%/html/_sources/api/qambientlightfilter.txt +%%DOCSDIR%%/html/_sources/api/qambientlightreading.txt +%%DOCSDIR%%/html/_sources/api/qambientlightsensor.txt +%%DOCSDIR%%/html/_sources/api/qambienttemperaturefilter.txt +%%DOCSDIR%%/html/_sources/api/qambienttemperaturereading.txt +%%DOCSDIR%%/html/_sources/api/qambienttemperaturesensor.txt +%%DOCSDIR%%/html/_sources/api/qanimationgroup.txt +%%DOCSDIR%%/html/_sources/api/qapplication.txt +%%DOCSDIR%%/html/_sources/api/qaudio.txt +%%DOCSDIR%%/html/_sources/api/qaudiobuffer.txt +%%DOCSDIR%%/html/_sources/api/qaudiodecoder.txt +%%DOCSDIR%%/html/_sources/api/qaudiodeviceinfo.txt +%%DOCSDIR%%/html/_sources/api/qaudioencodersettings.txt +%%DOCSDIR%%/html/_sources/api/qaudioformat.txt +%%DOCSDIR%%/html/_sources/api/qaudioinput.txt +%%DOCSDIR%%/html/_sources/api/qaudiooutput.txt +%%DOCSDIR%%/html/_sources/api/qaudioprobe.txt +%%DOCSDIR%%/html/_sources/api/qaudiorecorder.txt +%%DOCSDIR%%/html/_sources/api/qauthenticator.txt +%%DOCSDIR%%/html/_sources/api/qaxbase.txt +%%DOCSDIR%%/html/_sources/api/qaxobject.txt +%%DOCSDIR%%/html/_sources/api/qaxwidget.txt +%%DOCSDIR%%/html/_sources/api/qbackingstore.txt +%%DOCSDIR%%/html/_sources/api/qbasictimer.txt +%%DOCSDIR%%/html/_sources/api/qbitarray.txt +%%DOCSDIR%%/html/_sources/api/qbitmap.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothaddress.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothdevicediscoveryagent.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothdeviceinfo.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothhostinfo.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothlocaldevice.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothserver.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothservicediscoveryagent.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothserviceinfo.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothsocket.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothtransfermanager.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothtransferreply.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothtransferrequest.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothuuid.txt +%%DOCSDIR%%/html/_sources/api/qboxlayout.txt +%%DOCSDIR%%/html/_sources/api/qbrush.txt +%%DOCSDIR%%/html/_sources/api/qbuffer.txt +%%DOCSDIR%%/html/_sources/api/qbuttongroup.txt +%%DOCSDIR%%/html/_sources/api/qbytearray.txt +%%DOCSDIR%%/html/_sources/api/qbytearraymatcher.txt +%%DOCSDIR%%/html/_sources/api/qcalendarwidget.txt +%%DOCSDIR%%/html/_sources/api/qcamera.txt +%%DOCSDIR%%/html/_sources/api/qcameraexposure.txt +%%DOCSDIR%%/html/_sources/api/qcamerafocus.txt +%%DOCSDIR%%/html/_sources/api/qcamerafocuszone.txt +%%DOCSDIR%%/html/_sources/api/qcameraimagecapture.txt +%%DOCSDIR%%/html/_sources/api/qcameraimageprocessing.txt +%%DOCSDIR%%/html/_sources/api/qcamerainfo.txt +%%DOCSDIR%%/html/_sources/api/qcameraviewfinder.txt +%%DOCSDIR%%/html/_sources/api/qcheckbox.txt +%%DOCSDIR%%/html/_sources/api/qchildevent.txt +%%DOCSDIR%%/html/_sources/api/qclipboard.txt +%%DOCSDIR%%/html/_sources/api/qcloseevent.txt +%%DOCSDIR%%/html/_sources/api/qcollator.txt +%%DOCSDIR%%/html/_sources/api/qcollatorsortkey.txt +%%DOCSDIR%%/html/_sources/api/qcolor.txt +%%DOCSDIR%%/html/_sources/api/qcolordialog.txt +%%DOCSDIR%%/html/_sources/api/qcolumnview.txt +%%DOCSDIR%%/html/_sources/api/qcombobox.txt +%%DOCSDIR%%/html/_sources/api/qcommandlineoption.txt +%%DOCSDIR%%/html/_sources/api/qcommandlineparser.txt +%%DOCSDIR%%/html/_sources/api/qcommandlinkbutton.txt +%%DOCSDIR%%/html/_sources/api/qcommonstyle.txt +%%DOCSDIR%%/html/_sources/api/qcompass.txt +%%DOCSDIR%%/html/_sources/api/qcompassfilter.txt +%%DOCSDIR%%/html/_sources/api/qcompassreading.txt +%%DOCSDIR%%/html/_sources/api/qcompleter.txt +%%DOCSDIR%%/html/_sources/api/qconicalgradient.txt +%%DOCSDIR%%/html/_sources/api/qcontextmenuevent.txt +%%DOCSDIR%%/html/_sources/api/qcoreapplication.txt +%%DOCSDIR%%/html/_sources/api/qcryptographichash.txt +%%DOCSDIR%%/html/_sources/api/qcursor.txt +%%DOCSDIR%%/html/_sources/api/qdatastream.txt +%%DOCSDIR%%/html/_sources/api/qdatawidgetmapper.txt +%%DOCSDIR%%/html/_sources/api/qdate.txt +%%DOCSDIR%%/html/_sources/api/qdateedit.txt +%%DOCSDIR%%/html/_sources/api/qdatetime.txt +%%DOCSDIR%%/html/_sources/api/qdatetimeedit.txt +%%DOCSDIR%%/html/_sources/api/qdbus.txt +%%DOCSDIR%%/html/_sources/api/qdbusabstractadaptor.txt +%%DOCSDIR%%/html/_sources/api/qdbusabstractinterface.txt +%%DOCSDIR%%/html/_sources/api/qdbusargument.txt +%%DOCSDIR%%/html/_sources/api/qdbusconnection.txt +%%DOCSDIR%%/html/_sources/api/qdbusconnectioninterface.txt +%%DOCSDIR%%/html/_sources/api/qdbuserror.txt +%%DOCSDIR%%/html/_sources/api/qdbusinterface.txt +%%DOCSDIR%%/html/_sources/api/qdbusmessage.txt +%%DOCSDIR%%/html/_sources/api/qdbusobjectpath.txt +%%DOCSDIR%%/html/_sources/api/qdbuspendingcall.txt +%%DOCSDIR%%/html/_sources/api/qdbuspendingcallwatcher.txt +%%DOCSDIR%%/html/_sources/api/qdbuspendingreply.txt +%%DOCSDIR%%/html/_sources/api/qdbusreply.txt +%%DOCSDIR%%/html/_sources/api/qdbusservicewatcher.txt +%%DOCSDIR%%/html/_sources/api/qdbussignature.txt +%%DOCSDIR%%/html/_sources/api/qdbusunixfiledescriptor.txt +%%DOCSDIR%%/html/_sources/api/qdbusvariant.txt +%%DOCSDIR%%/html/_sources/api/qdesigneractioneditorinterface.txt +%%DOCSDIR%%/html/_sources/api/qdesignercontainerextension.txt +%%DOCSDIR%%/html/_sources/api/qdesignercustomwidgetcollectioninterface.txt +%%DOCSDIR%%/html/_sources/api/qdesignercustomwidgetinterface.txt +%%DOCSDIR%%/html/_sources/api/qdesignerformeditorinterface.txt +%%DOCSDIR%%/html/_sources/api/qdesignerformwindowcursorinterface.txt +%%DOCSDIR%%/html/_sources/api/qdesignerformwindowinterface.txt +%%DOCSDIR%%/html/_sources/api/qdesignerformwindowmanagerinterface.txt +%%DOCSDIR%%/html/_sources/api/qdesignermembersheetextension.txt +%%DOCSDIR%%/html/_sources/api/qdesignerobjectinspectorinterface.txt +%%DOCSDIR%%/html/_sources/api/qdesignerpropertyeditorinterface.txt +%%DOCSDIR%%/html/_sources/api/qdesignerpropertysheetextension.txt +%%DOCSDIR%%/html/_sources/api/qdesignertaskmenuextension.txt +%%DOCSDIR%%/html/_sources/api/qdesignerwidgetboxinterface.txt +%%DOCSDIR%%/html/_sources/api/qdesktopservices.txt +%%DOCSDIR%%/html/_sources/api/qdesktopwidget.txt +%%DOCSDIR%%/html/_sources/api/qdial.txt +%%DOCSDIR%%/html/_sources/api/qdialog.txt +%%DOCSDIR%%/html/_sources/api/qdialogbuttonbox.txt +%%DOCSDIR%%/html/_sources/api/qdir.txt +%%DOCSDIR%%/html/_sources/api/qdiriterator.txt +%%DOCSDIR%%/html/_sources/api/qdirmodel.txt +%%DOCSDIR%%/html/_sources/api/qdistancefilter.txt +%%DOCSDIR%%/html/_sources/api/qdistancereading.txt +%%DOCSDIR%%/html/_sources/api/qdistancesensor.txt +%%DOCSDIR%%/html/_sources/api/qdnsdomainnamerecord.txt +%%DOCSDIR%%/html/_sources/api/qdnshostaddressrecord.txt +%%DOCSDIR%%/html/_sources/api/qdnslookup.txt +%%DOCSDIR%%/html/_sources/api/qdnsmailexchangerecord.txt +%%DOCSDIR%%/html/_sources/api/qdnsservicerecord.txt +%%DOCSDIR%%/html/_sources/api/qdnstextrecord.txt +%%DOCSDIR%%/html/_sources/api/qdockwidget.txt +%%DOCSDIR%%/html/_sources/api/qdomattr.txt +%%DOCSDIR%%/html/_sources/api/qdomcdatasection.txt +%%DOCSDIR%%/html/_sources/api/qdomcharacterdata.txt +%%DOCSDIR%%/html/_sources/api/qdomcomment.txt +%%DOCSDIR%%/html/_sources/api/qdomdocument.txt +%%DOCSDIR%%/html/_sources/api/qdomdocumentfragment.txt +%%DOCSDIR%%/html/_sources/api/qdomdocumenttype.txt +%%DOCSDIR%%/html/_sources/api/qdomelement.txt +%%DOCSDIR%%/html/_sources/api/qdomentity.txt +%%DOCSDIR%%/html/_sources/api/qdomentityreference.txt +%%DOCSDIR%%/html/_sources/api/qdomimplementation.txt +%%DOCSDIR%%/html/_sources/api/qdomnamednodemap.txt +%%DOCSDIR%%/html/_sources/api/qdomnode.txt +%%DOCSDIR%%/html/_sources/api/qdomnodelist.txt +%%DOCSDIR%%/html/_sources/api/qdomnotation.txt +%%DOCSDIR%%/html/_sources/api/qdomprocessinginstruction.txt +%%DOCSDIR%%/html/_sources/api/qdomtext.txt +%%DOCSDIR%%/html/_sources/api/qdoublespinbox.txt +%%DOCSDIR%%/html/_sources/api/qdoublevalidator.txt +%%DOCSDIR%%/html/_sources/api/qdrag.txt +%%DOCSDIR%%/html/_sources/api/qdragenterevent.txt +%%DOCSDIR%%/html/_sources/api/qdragleaveevent.txt +%%DOCSDIR%%/html/_sources/api/qdragmoveevent.txt +%%DOCSDIR%%/html/_sources/api/qdropevent.txt +%%DOCSDIR%%/html/_sources/api/qdynamicpropertychangeevent.txt +%%DOCSDIR%%/html/_sources/api/qeasingcurve.txt +%%DOCSDIR%%/html/_sources/api/qelapsedtimer.txt +%%DOCSDIR%%/html/_sources/api/qenterevent.txt +%%DOCSDIR%%/html/_sources/api/qerrormessage.txt +%%DOCSDIR%%/html/_sources/api/qevent.txt +%%DOCSDIR%%/html/_sources/api/qeventloop.txt +%%DOCSDIR%%/html/_sources/api/qeventlooplocker.txt +%%DOCSDIR%%/html/_sources/api/qeventtransition.txt +%%DOCSDIR%%/html/_sources/api/qexposeevent.txt +%%DOCSDIR%%/html/_sources/api/qextensionfactory.txt +%%DOCSDIR%%/html/_sources/api/qextensionmanager.txt +%%DOCSDIR%%/html/_sources/api/qfile.txt +%%DOCSDIR%%/html/_sources/api/qfiledevice.txt +%%DOCSDIR%%/html/_sources/api/qfiledialog.txt +%%DOCSDIR%%/html/_sources/api/qfileiconprovider.txt +%%DOCSDIR%%/html/_sources/api/qfileinfo.txt +%%DOCSDIR%%/html/_sources/api/qfileopenevent.txt +%%DOCSDIR%%/html/_sources/api/qfileselector.txt +%%DOCSDIR%%/html/_sources/api/qfilesystemmodel.txt +%%DOCSDIR%%/html/_sources/api/qfilesystemwatcher.txt +%%DOCSDIR%%/html/_sources/api/qfinalstate.txt +%%DOCSDIR%%/html/_sources/api/qfocusevent.txt +%%DOCSDIR%%/html/_sources/api/qfocusframe.txt +%%DOCSDIR%%/html/_sources/api/qfont.txt +%%DOCSDIR%%/html/_sources/api/qfontcombobox.txt +%%DOCSDIR%%/html/_sources/api/qfontdatabase.txt +%%DOCSDIR%%/html/_sources/api/qfontdialog.txt +%%DOCSDIR%%/html/_sources/api/qfontinfo.txt +%%DOCSDIR%%/html/_sources/api/qfontmetrics.txt +%%DOCSDIR%%/html/_sources/api/qfontmetricsf.txt +%%DOCSDIR%%/html/_sources/api/qformbuilder.txt +%%DOCSDIR%%/html/_sources/api/qformlayout.txt +%%DOCSDIR%%/html/_sources/api/qframe.txt +%%DOCSDIR%%/html/_sources/api/qgenericargument.txt +%%DOCSDIR%%/html/_sources/api/qgenericreturnargument.txt +%%DOCSDIR%%/html/_sources/api/qgeoaddress.txt +%%DOCSDIR%%/html/_sources/api/qgeoareamonitorinfo.txt +%%DOCSDIR%%/html/_sources/api/qgeoareamonitorsource.txt +%%DOCSDIR%%/html/_sources/api/qgeocircle.txt +%%DOCSDIR%%/html/_sources/api/qgeocodereply.txt +%%DOCSDIR%%/html/_sources/api/qgeocodingmanager.txt +%%DOCSDIR%%/html/_sources/api/qgeocodingmanagerengine.txt +%%DOCSDIR%%/html/_sources/api/qgeocoordinate.txt +%%DOCSDIR%%/html/_sources/api/qgeolocation.txt +%%DOCSDIR%%/html/_sources/api/qgeomaneuver.txt +%%DOCSDIR%%/html/_sources/api/qgeopositioninfo.txt +%%DOCSDIR%%/html/_sources/api/qgeopositioninfosource.txt +%%DOCSDIR%%/html/_sources/api/qgeorectangle.txt +%%DOCSDIR%%/html/_sources/api/qgeoroute.txt +%%DOCSDIR%%/html/_sources/api/qgeoroutereply.txt +%%DOCSDIR%%/html/_sources/api/qgeorouterequest.txt +%%DOCSDIR%%/html/_sources/api/qgeoroutesegment.txt +%%DOCSDIR%%/html/_sources/api/qgeoroutingmanager.txt +%%DOCSDIR%%/html/_sources/api/qgeoroutingmanagerengine.txt +%%DOCSDIR%%/html/_sources/api/qgeosatelliteinfo.txt +%%DOCSDIR%%/html/_sources/api/qgeosatelliteinfosource.txt +%%DOCSDIR%%/html/_sources/api/qgeoserviceprovider.txt +%%DOCSDIR%%/html/_sources/api/qgeoshape.txt +%%DOCSDIR%%/html/_sources/api/qgesture.txt +%%DOCSDIR%%/html/_sources/api/qgestureevent.txt +%%DOCSDIR%%/html/_sources/api/qgesturerecognizer.txt +%%DOCSDIR%%/html/_sources/api/qgl.txt +%%DOCSDIR%%/html/_sources/api/qglcontext.txt +%%DOCSDIR%%/html/_sources/api/qglformat.txt +%%DOCSDIR%%/html/_sources/api/qglwidget.txt +%%DOCSDIR%%/html/_sources/api/qglyphrun.txt +%%DOCSDIR%%/html/_sources/api/qgradient.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsanchor.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsanchorlayout.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsblureffect.txt +%%DOCSDIR%%/html/_sources/api/qgraphicscolorizeeffect.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsdropshadoweffect.txt +%%DOCSDIR%%/html/_sources/api/qgraphicseffect.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsellipseitem.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsgridlayout.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsitem.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsitemgroup.txt +%%DOCSDIR%%/html/_sources/api/qgraphicslayout.txt +%%DOCSDIR%%/html/_sources/api/qgraphicslayoutitem.txt +%%DOCSDIR%%/html/_sources/api/qgraphicslinearlayout.txt +%%DOCSDIR%%/html/_sources/api/qgraphicslineitem.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsobject.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsopacityeffect.txt +%%DOCSDIR%%/html/_sources/api/qgraphicspathitem.txt +%%DOCSDIR%%/html/_sources/api/qgraphicspixmapitem.txt +%%DOCSDIR%%/html/_sources/api/qgraphicspolygonitem.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsproxywidget.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsrectitem.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsrotation.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsscale.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsscene.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsscenecontextmenuevent.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsscenedragdropevent.txt +%%DOCSDIR%%/html/_sources/api/qgraphicssceneevent.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsscenehelpevent.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsscenehoverevent.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsscenemouseevent.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsscenemoveevent.txt +%%DOCSDIR%%/html/_sources/api/qgraphicssceneresizeevent.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsscenewheelevent.txt +%%DOCSDIR%%/html/_sources/api/qgraphicssimpletextitem.txt +%%DOCSDIR%%/html/_sources/api/qgraphicssvgitem.txt +%%DOCSDIR%%/html/_sources/api/qgraphicstextitem.txt +%%DOCSDIR%%/html/_sources/api/qgraphicstransform.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsvideoitem.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsview.txt +%%DOCSDIR%%/html/_sources/api/qgraphicswebview.txt +%%DOCSDIR%%/html/_sources/api/qgraphicswidget.txt +%%DOCSDIR%%/html/_sources/api/qgridlayout.txt +%%DOCSDIR%%/html/_sources/api/qgroupbox.txt +%%DOCSDIR%%/html/_sources/api/qguiapplication.txt +%%DOCSDIR%%/html/_sources/api/qgyroscope.txt +%%DOCSDIR%%/html/_sources/api/qgyroscopefilter.txt +%%DOCSDIR%%/html/_sources/api/qgyroscopereading.txt +%%DOCSDIR%%/html/_sources/api/qhboxlayout.txt +%%DOCSDIR%%/html/_sources/api/qheaderview.txt +%%DOCSDIR%%/html/_sources/api/qhelpcontentitem.txt +%%DOCSDIR%%/html/_sources/api/qhelpcontentmodel.txt +%%DOCSDIR%%/html/_sources/api/qhelpcontentwidget.txt +%%DOCSDIR%%/html/_sources/api/qhelpengine.txt +%%DOCSDIR%%/html/_sources/api/qhelpenginecore.txt +%%DOCSDIR%%/html/_sources/api/qhelpevent.txt +%%DOCSDIR%%/html/_sources/api/qhelpindexmodel.txt +%%DOCSDIR%%/html/_sources/api/qhelpindexwidget.txt +%%DOCSDIR%%/html/_sources/api/qhelpsearchengine.txt +%%DOCSDIR%%/html/_sources/api/qhelpsearchquery.txt +%%DOCSDIR%%/html/_sources/api/qhelpsearchquerywidget.txt +%%DOCSDIR%%/html/_sources/api/qhelpsearchresultwidget.txt +%%DOCSDIR%%/html/_sources/api/qhideevent.txt +%%DOCSDIR%%/html/_sources/api/qhistorystate.txt +%%DOCSDIR%%/html/_sources/api/qholsterfilter.txt +%%DOCSDIR%%/html/_sources/api/qholsterreading.txt +%%DOCSDIR%%/html/_sources/api/qholstersensor.txt +%%DOCSDIR%%/html/_sources/api/qhostaddress.txt +%%DOCSDIR%%/html/_sources/api/qhostinfo.txt +%%DOCSDIR%%/html/_sources/api/qhoverevent.txt +%%DOCSDIR%%/html/_sources/api/qhttpmultipart.txt +%%DOCSDIR%%/html/_sources/api/qhttppart.txt +%%DOCSDIR%%/html/_sources/api/qicon.txt +%%DOCSDIR%%/html/_sources/api/qicondragevent.txt +%%DOCSDIR%%/html/_sources/api/qiconengine.txt +%%DOCSDIR%%/html/_sources/api/qidentityproxymodel.txt +%%DOCSDIR%%/html/_sources/api/qimage.txt +%%DOCSDIR%%/html/_sources/api/qimageencodersettings.txt +%%DOCSDIR%%/html/_sources/api/qimageiohandler.txt +%%DOCSDIR%%/html/_sources/api/qimagereader.txt +%%DOCSDIR%%/html/_sources/api/qimagewriter.txt +%%DOCSDIR%%/html/_sources/api/qinputdialog.txt +%%DOCSDIR%%/html/_sources/api/qinputevent.txt +%%DOCSDIR%%/html/_sources/api/qinputmethod.txt +%%DOCSDIR%%/html/_sources/api/qinputmethodevent.txt +%%DOCSDIR%%/html/_sources/api/qinputmethodqueryevent.txt +%%DOCSDIR%%/html/_sources/api/qintvalidator.txt +%%DOCSDIR%%/html/_sources/api/qiodevice.txt +%%DOCSDIR%%/html/_sources/api/qirproximityfilter.txt +%%DOCSDIR%%/html/_sources/api/qirproximityreading.txt +%%DOCSDIR%%/html/_sources/api/qirproximitysensor.txt +%%DOCSDIR%%/html/_sources/api/qitemdelegate.txt +%%DOCSDIR%%/html/_sources/api/qitemeditorcreatorbase.txt +%%DOCSDIR%%/html/_sources/api/qitemeditorfactory.txt +%%DOCSDIR%%/html/_sources/api/qitemselection.txt +%%DOCSDIR%%/html/_sources/api/qitemselectionmodel.txt +%%DOCSDIR%%/html/_sources/api/qitemselectionrange.txt +%%DOCSDIR%%/html/_sources/api/qjsengine.txt +%%DOCSDIR%%/html/_sources/api/qjsonarray.txt +%%DOCSDIR%%/html/_sources/api/qjsondocument.txt +%%DOCSDIR%%/html/_sources/api/qjsonobject.txt +%%DOCSDIR%%/html/_sources/api/qjsonparseerror.txt +%%DOCSDIR%%/html/_sources/api/qjsonvalue.txt +%%DOCSDIR%%/html/_sources/api/qjsvalue.txt +%%DOCSDIR%%/html/_sources/api/qjsvalueiterator.txt +%%DOCSDIR%%/html/_sources/api/qkeyevent.txt +%%DOCSDIR%%/html/_sources/api/qkeyeventtransition.txt +%%DOCSDIR%%/html/_sources/api/qkeysequence.txt +%%DOCSDIR%%/html/_sources/api/qkeysequenceedit.txt +%%DOCSDIR%%/html/_sources/api/qlabel.txt +%%DOCSDIR%%/html/_sources/api/qlayout.txt +%%DOCSDIR%%/html/_sources/api/qlayoutitem.txt +%%DOCSDIR%%/html/_sources/api/qlcdnumber.txt +%%DOCSDIR%%/html/_sources/api/qlibrary.txt +%%DOCSDIR%%/html/_sources/api/qlibraryinfo.txt +%%DOCSDIR%%/html/_sources/api/qlightfilter.txt +%%DOCSDIR%%/html/_sources/api/qlightreading.txt +%%DOCSDIR%%/html/_sources/api/qlightsensor.txt +%%DOCSDIR%%/html/_sources/api/qline.txt +%%DOCSDIR%%/html/_sources/api/qlineargradient.txt +%%DOCSDIR%%/html/_sources/api/qlineedit.txt +%%DOCSDIR%%/html/_sources/api/qlinef.txt +%%DOCSDIR%%/html/_sources/api/qlistview.txt +%%DOCSDIR%%/html/_sources/api/qlistwidget.txt +%%DOCSDIR%%/html/_sources/api/qlistwidgetitem.txt +%%DOCSDIR%%/html/_sources/api/qlocale.txt +%%DOCSDIR%%/html/_sources/api/qlocalserver.txt +%%DOCSDIR%%/html/_sources/api/qlocalsocket.txt +%%DOCSDIR%%/html/_sources/api/qlocation.txt +%%DOCSDIR%%/html/_sources/api/qlockfile.txt +%%DOCSDIR%%/html/_sources/api/qlowenergycharacteristic.txt +%%DOCSDIR%%/html/_sources/api/qlowenergycontroller.txt +%%DOCSDIR%%/html/_sources/api/qlowenergydescriptor.txt +%%DOCSDIR%%/html/_sources/api/qlowenergyservice.txt +%%DOCSDIR%%/html/_sources/api/qmaccocoaviewcontainer.txt +%%DOCSDIR%%/html/_sources/api/qmacpasteboardmime.txt +%%DOCSDIR%%/html/_sources/api/qmactoolbar.txt +%%DOCSDIR%%/html/_sources/api/qmactoolbaritem.txt +%%DOCSDIR%%/html/_sources/api/qmagnetometer.txt +%%DOCSDIR%%/html/_sources/api/qmagnetometerfilter.txt +%%DOCSDIR%%/html/_sources/api/qmagnetometerreading.txt +%%DOCSDIR%%/html/_sources/api/qmainwindow.txt +%%DOCSDIR%%/html/_sources/api/qmargins.txt +%%DOCSDIR%%/html/_sources/api/qmarginsf.txt +%%DOCSDIR%%/html/_sources/api/qmaskgenerator.txt +%%DOCSDIR%%/html/_sources/api/qmatrix2x2.txt +%%DOCSDIR%%/html/_sources/api/qmatrix2x3.txt +%%DOCSDIR%%/html/_sources/api/qmatrix2x4.txt +%%DOCSDIR%%/html/_sources/api/qmatrix3x2.txt +%%DOCSDIR%%/html/_sources/api/qmatrix3x3.txt +%%DOCSDIR%%/html/_sources/api/qmatrix3x4.txt +%%DOCSDIR%%/html/_sources/api/qmatrix4x2.txt +%%DOCSDIR%%/html/_sources/api/qmatrix4x3.txt +%%DOCSDIR%%/html/_sources/api/qmatrix4x4.txt +%%DOCSDIR%%/html/_sources/api/qmdiarea.txt +%%DOCSDIR%%/html/_sources/api/qmdisubwindow.txt +%%DOCSDIR%%/html/_sources/api/qmediabindableinterface.txt +%%DOCSDIR%%/html/_sources/api/qmediacontent.txt +%%DOCSDIR%%/html/_sources/api/qmediacontrol.txt +%%DOCSDIR%%/html/_sources/api/qmediametadata.txt +%%DOCSDIR%%/html/_sources/api/qmediaobject.txt +%%DOCSDIR%%/html/_sources/api/qmediaplayer.txt +%%DOCSDIR%%/html/_sources/api/qmediaplaylist.txt +%%DOCSDIR%%/html/_sources/api/qmediarecorder.txt +%%DOCSDIR%%/html/_sources/api/qmediaresource.txt +%%DOCSDIR%%/html/_sources/api/qmediaservice.txt +%%DOCSDIR%%/html/_sources/api/qmediatimeinterval.txt +%%DOCSDIR%%/html/_sources/api/qmediatimerange.txt +%%DOCSDIR%%/html/_sources/api/qmenu.txt +%%DOCSDIR%%/html/_sources/api/qmenubar.txt +%%DOCSDIR%%/html/_sources/api/qmessageauthenticationcode.txt +%%DOCSDIR%%/html/_sources/api/qmessagebox.txt +%%DOCSDIR%%/html/_sources/api/qmessagelogcontext.txt +%%DOCSDIR%%/html/_sources/api/qmessagelogger.txt +%%DOCSDIR%%/html/_sources/api/qmetaclassinfo.txt +%%DOCSDIR%%/html/_sources/api/qmetaenum.txt +%%DOCSDIR%%/html/_sources/api/qmetamethod.txt +%%DOCSDIR%%/html/_sources/api/qmetaobject.txt +%%DOCSDIR%%/html/_sources/api/qmetaproperty.txt +%%DOCSDIR%%/html/_sources/api/qmetatype.txt +%%DOCSDIR%%/html/_sources/api/qmimedata.txt +%%DOCSDIR%%/html/_sources/api/qmimedatabase.txt +%%DOCSDIR%%/html/_sources/api/qmimetype.txt +%%DOCSDIR%%/html/_sources/api/qmodelindex.txt +%%DOCSDIR%%/html/_sources/api/qmouseevent.txt +%%DOCSDIR%%/html/_sources/api/qmouseeventtransition.txt +%%DOCSDIR%%/html/_sources/api/qmoveevent.txt +%%DOCSDIR%%/html/_sources/api/qmovie.txt +%%DOCSDIR%%/html/_sources/api/qmultimedia.txt +%%DOCSDIR%%/html/_sources/api/qmutex.txt +%%DOCSDIR%%/html/_sources/api/qmutexlocker.txt +%%DOCSDIR%%/html/_sources/api/qndeffilter.txt +%%DOCSDIR%%/html/_sources/api/qndefmessage.txt +%%DOCSDIR%%/html/_sources/api/qndefnfciconrecord.txt +%%DOCSDIR%%/html/_sources/api/qndefnfcsmartposterrecord.txt +%%DOCSDIR%%/html/_sources/api/qndefnfctextrecord.txt +%%DOCSDIR%%/html/_sources/api/qndefnfcurirecord.txt +%%DOCSDIR%%/html/_sources/api/qndefrecord.txt +%%DOCSDIR%%/html/_sources/api/qnearfieldmanager.txt +%%DOCSDIR%%/html/_sources/api/qnearfieldsharemanager.txt +%%DOCSDIR%%/html/_sources/api/qnearfieldsharetarget.txt +%%DOCSDIR%%/html/_sources/api/qnearfieldtarget.txt +%%DOCSDIR%%/html/_sources/api/qnetworkaccessmanager.txt +%%DOCSDIR%%/html/_sources/api/qnetworkaddressentry.txt +%%DOCSDIR%%/html/_sources/api/qnetworkcachemetadata.txt +%%DOCSDIR%%/html/_sources/api/qnetworkconfiguration.txt +%%DOCSDIR%%/html/_sources/api/qnetworkconfigurationmanager.txt +%%DOCSDIR%%/html/_sources/api/qnetworkcookie.txt +%%DOCSDIR%%/html/_sources/api/qnetworkcookiejar.txt +%%DOCSDIR%%/html/_sources/api/qnetworkdiskcache.txt +%%DOCSDIR%%/html/_sources/api/qnetworkinterface.txt +%%DOCSDIR%%/html/_sources/api/qnetworkproxy.txt +%%DOCSDIR%%/html/_sources/api/qnetworkproxyfactory.txt +%%DOCSDIR%%/html/_sources/api/qnetworkproxyquery.txt +%%DOCSDIR%%/html/_sources/api/qnetworkreply.txt +%%DOCSDIR%%/html/_sources/api/qnetworkrequest.txt +%%DOCSDIR%%/html/_sources/api/qnetworksession.txt +%%DOCSDIR%%/html/_sources/api/qnmeapositioninfosource.txt +%%DOCSDIR%%/html/_sources/api/qobject.txt +%%DOCSDIR%%/html/_sources/api/qobjectcleanuphandler.txt +%%DOCSDIR%%/html/_sources/api/qoffscreensurface.txt +%%DOCSDIR%%/html/_sources/api/qopenglbuffer.txt +%%DOCSDIR%%/html/_sources/api/qopenglcontext.txt +%%DOCSDIR%%/html/_sources/api/qopenglcontextgroup.txt +%%DOCSDIR%%/html/_sources/api/qopengldebuglogger.txt +%%DOCSDIR%%/html/_sources/api/qopengldebugmessage.txt +%%DOCSDIR%%/html/_sources/api/qopenglframebufferobject.txt +%%DOCSDIR%%/html/_sources/api/qopenglframebufferobjectformat.txt +%%DOCSDIR%%/html/_sources/api/qopenglpaintdevice.txt +%%DOCSDIR%%/html/_sources/api/qopenglshader.txt +%%DOCSDIR%%/html/_sources/api/qopenglshaderprogram.txt +%%DOCSDIR%%/html/_sources/api/qopengltexture.txt +%%DOCSDIR%%/html/_sources/api/qopengltimemonitor.txt +%%DOCSDIR%%/html/_sources/api/qopengltimerquery.txt +%%DOCSDIR%%/html/_sources/api/qopenglvertexarrayobject.txt +%%DOCSDIR%%/html/_sources/api/qopenglwidget.txt +%%DOCSDIR%%/html/_sources/api/qopenglwindow.txt +%%DOCSDIR%%/html/_sources/api/qorientationfilter.txt +%%DOCSDIR%%/html/_sources/api/qorientationreading.txt +%%DOCSDIR%%/html/_sources/api/qorientationsensor.txt +%%DOCSDIR%%/html/_sources/api/qpagedpaintdevice.txt +%%DOCSDIR%%/html/_sources/api/qpagelayout.txt +%%DOCSDIR%%/html/_sources/api/qpagesetupdialog.txt +%%DOCSDIR%%/html/_sources/api/qpagesize.txt +%%DOCSDIR%%/html/_sources/api/qpaintdevice.txt +%%DOCSDIR%%/html/_sources/api/qpaintdevicewindow.txt +%%DOCSDIR%%/html/_sources/api/qpaintengine.txt +%%DOCSDIR%%/html/_sources/api/qpaintenginestate.txt +%%DOCSDIR%%/html/_sources/api/qpainter.txt +%%DOCSDIR%%/html/_sources/api/qpainterpath.txt +%%DOCSDIR%%/html/_sources/api/qpainterpathstroker.txt +%%DOCSDIR%%/html/_sources/api/qpaintevent.txt +%%DOCSDIR%%/html/_sources/api/qpalette.txt +%%DOCSDIR%%/html/_sources/api/qpangesture.txt +%%DOCSDIR%%/html/_sources/api/qparallelanimationgroup.txt +%%DOCSDIR%%/html/_sources/api/qpauseanimation.txt +%%DOCSDIR%%/html/_sources/api/qpdfwriter.txt +%%DOCSDIR%%/html/_sources/api/qpen.txt +%%DOCSDIR%%/html/_sources/api/qpersistentmodelindex.txt +%%DOCSDIR%%/html/_sources/api/qpicture.txt +%%DOCSDIR%%/html/_sources/api/qpictureio.txt +%%DOCSDIR%%/html/_sources/api/qpinchgesture.txt +%%DOCSDIR%%/html/_sources/api/qpixelformat.txt +%%DOCSDIR%%/html/_sources/api/qpixmap.txt +%%DOCSDIR%%/html/_sources/api/qpixmapcache.txt +%%DOCSDIR%%/html/_sources/api/qplace.txt +%%DOCSDIR%%/html/_sources/api/qplaceattribute.txt +%%DOCSDIR%%/html/_sources/api/qplacecategory.txt +%%DOCSDIR%%/html/_sources/api/qplacecontactdetail.txt +%%DOCSDIR%%/html/_sources/api/qplacecontent.txt +%%DOCSDIR%%/html/_sources/api/qplacecontentreply.txt +%%DOCSDIR%%/html/_sources/api/qplacecontentrequest.txt +%%DOCSDIR%%/html/_sources/api/qplacedetailsreply.txt +%%DOCSDIR%%/html/_sources/api/qplaceeditorial.txt +%%DOCSDIR%%/html/_sources/api/qplaceicon.txt +%%DOCSDIR%%/html/_sources/api/qplaceidreply.txt +%%DOCSDIR%%/html/_sources/api/qplaceimage.txt +%%DOCSDIR%%/html/_sources/api/qplacemanager.txt +%%DOCSDIR%%/html/_sources/api/qplacemanagerengine.txt +%%DOCSDIR%%/html/_sources/api/qplacematchreply.txt +%%DOCSDIR%%/html/_sources/api/qplacematchrequest.txt +%%DOCSDIR%%/html/_sources/api/qplaceproposedsearchresult.txt +%%DOCSDIR%%/html/_sources/api/qplaceratings.txt +%%DOCSDIR%%/html/_sources/api/qplacereply.txt +%%DOCSDIR%%/html/_sources/api/qplaceresult.txt +%%DOCSDIR%%/html/_sources/api/qplacereview.txt +%%DOCSDIR%%/html/_sources/api/qplacesearchreply.txt +%%DOCSDIR%%/html/_sources/api/qplacesearchrequest.txt +%%DOCSDIR%%/html/_sources/api/qplacesearchresult.txt +%%DOCSDIR%%/html/_sources/api/qplacesearchsuggestionreply.txt +%%DOCSDIR%%/html/_sources/api/qplacesupplier.txt +%%DOCSDIR%%/html/_sources/api/qplaceuser.txt +%%DOCSDIR%%/html/_sources/api/qplaintextdocumentlayout.txt +%%DOCSDIR%%/html/_sources/api/qplaintextedit.txt +%%DOCSDIR%%/html/_sources/api/qpluginloader.txt +%%DOCSDIR%%/html/_sources/api/qpoint.txt +%%DOCSDIR%%/html/_sources/api/qpointf.txt +%%DOCSDIR%%/html/_sources/api/qpolygon.txt +%%DOCSDIR%%/html/_sources/api/qpolygonf.txt +%%DOCSDIR%%/html/_sources/api/qpressurefilter.txt +%%DOCSDIR%%/html/_sources/api/qpressurereading.txt +%%DOCSDIR%%/html/_sources/api/qpressuresensor.txt +%%DOCSDIR%%/html/_sources/api/qprintdialog.txt +%%DOCSDIR%%/html/_sources/api/qprintengine.txt +%%DOCSDIR%%/html/_sources/api/qprinter.txt +%%DOCSDIR%%/html/_sources/api/qprinterinfo.txt +%%DOCSDIR%%/html/_sources/api/qprintpreviewdialog.txt +%%DOCSDIR%%/html/_sources/api/qprintpreviewwidget.txt +%%DOCSDIR%%/html/_sources/api/qprocess.txt +%%DOCSDIR%%/html/_sources/api/qprocessenvironment.txt +%%DOCSDIR%%/html/_sources/api/qprogressbar.txt +%%DOCSDIR%%/html/_sources/api/qprogressdialog.txt +%%DOCSDIR%%/html/_sources/api/qpropertyanimation.txt +%%DOCSDIR%%/html/_sources/api/qproximityfilter.txt +%%DOCSDIR%%/html/_sources/api/qproximityreading.txt +%%DOCSDIR%%/html/_sources/api/qproximitysensor.txt +%%DOCSDIR%%/html/_sources/api/qproxystyle.txt +%%DOCSDIR%%/html/_sources/api/qpushbutton.txt +%%DOCSDIR%%/html/_sources/api/qqmlabstracturlinterceptor.txt +%%DOCSDIR%%/html/_sources/api/qqmlapplicationengine.txt +%%DOCSDIR%%/html/_sources/api/qqmlcomponent.txt +%%DOCSDIR%%/html/_sources/api/qqmlcontext.txt +%%DOCSDIR%%/html/_sources/api/qqmlengine.txt +%%DOCSDIR%%/html/_sources/api/qqmlerror.txt +%%DOCSDIR%%/html/_sources/api/qqmlexpression.txt +%%DOCSDIR%%/html/_sources/api/qqmlextensionplugin.txt +%%DOCSDIR%%/html/_sources/api/qqmlfileselector.txt +%%DOCSDIR%%/html/_sources/api/qqmlimageproviderbase.txt +%%DOCSDIR%%/html/_sources/api/qqmlincubator.txt +%%DOCSDIR%%/html/_sources/api/qqmlincubatorcontrol.txt +%%DOCSDIR%%/html/_sources/api/qqmllistproperty.txt +%%DOCSDIR%%/html/_sources/api/qqmllistreference.txt +%%DOCSDIR%%/html/_sources/api/qqmlndefrecord.txt +%%DOCSDIR%%/html/_sources/api/qqmlnetworkaccessmanagerfactory.txt +%%DOCSDIR%%/html/_sources/api/qqmlparserstatus.txt +%%DOCSDIR%%/html/_sources/api/qqmlproperty.txt +%%DOCSDIR%%/html/_sources/api/qqmlpropertymap.txt +%%DOCSDIR%%/html/_sources/api/qqmlpropertyvaluesource.txt +%%DOCSDIR%%/html/_sources/api/qqmlscriptstring.txt +%%DOCSDIR%%/html/_sources/api/qquaternion.txt +%%DOCSDIR%%/html/_sources/api/qquickframebufferobject.txt +%%DOCSDIR%%/html/_sources/api/qquickimageprovider.txt +%%DOCSDIR%%/html/_sources/api/qquickitem.txt +%%DOCSDIR%%/html/_sources/api/qquickitemgrabresult.txt +%%DOCSDIR%%/html/_sources/api/qquickpainteditem.txt +%%DOCSDIR%%/html/_sources/api/qquickrendercontrol.txt +%%DOCSDIR%%/html/_sources/api/qquicktextdocument.txt +%%DOCSDIR%%/html/_sources/api/qquicktexturefactory.txt +%%DOCSDIR%%/html/_sources/api/qquickview.txt +%%DOCSDIR%%/html/_sources/api/qquickwidget.txt +%%DOCSDIR%%/html/_sources/api/qquickwindow.txt +%%DOCSDIR%%/html/_sources/api/qradialgradient.txt +%%DOCSDIR%%/html/_sources/api/qradiobutton.txt +%%DOCSDIR%%/html/_sources/api/qradiodata.txt +%%DOCSDIR%%/html/_sources/api/qradiotuner.txt +%%DOCSDIR%%/html/_sources/api/qrasterwindow.txt +%%DOCSDIR%%/html/_sources/api/qrawfont.txt +%%DOCSDIR%%/html/_sources/api/qreadlocker.txt +%%DOCSDIR%%/html/_sources/api/qreadwritelock.txt +%%DOCSDIR%%/html/_sources/api/qrect.txt +%%DOCSDIR%%/html/_sources/api/qrectf.txt +%%DOCSDIR%%/html/_sources/api/qregexp.txt +%%DOCSDIR%%/html/_sources/api/qregexpvalidator.txt +%%DOCSDIR%%/html/_sources/api/qregion.txt +%%DOCSDIR%%/html/_sources/api/qregularexpression.txt +%%DOCSDIR%%/html/_sources/api/qregularexpressionmatch.txt +%%DOCSDIR%%/html/_sources/api/qregularexpressionmatchiterator.txt +%%DOCSDIR%%/html/_sources/api/qregularexpressionvalidator.txt +%%DOCSDIR%%/html/_sources/api/qresizeevent.txt +%%DOCSDIR%%/html/_sources/api/qresource.txt +%%DOCSDIR%%/html/_sources/api/qrotationfilter.txt +%%DOCSDIR%%/html/_sources/api/qrotationreading.txt +%%DOCSDIR%%/html/_sources/api/qrotationsensor.txt +%%DOCSDIR%%/html/_sources/api/qrubberband.txt +%%DOCSDIR%%/html/_sources/api/qrunnable.txt +%%DOCSDIR%%/html/_sources/api/qsavefile.txt +%%DOCSDIR%%/html/_sources/api/qscreen.txt +%%DOCSDIR%%/html/_sources/api/qscrollarea.txt +%%DOCSDIR%%/html/_sources/api/qscrollbar.txt +%%DOCSDIR%%/html/_sources/api/qscroller.txt +%%DOCSDIR%%/html/_sources/api/qscrollerproperties.txt +%%DOCSDIR%%/html/_sources/api/qscrollevent.txt +%%DOCSDIR%%/html/_sources/api/qscrollprepareevent.txt +%%DOCSDIR%%/html/_sources/api/qsemaphore.txt +%%DOCSDIR%%/html/_sources/api/qsensor.txt +%%DOCSDIR%%/html/_sources/api/qsensorfilter.txt +%%DOCSDIR%%/html/_sources/api/qsensorreading.txt +%%DOCSDIR%%/html/_sources/api/qsequentialanimationgroup.txt +%%DOCSDIR%%/html/_sources/api/qserialport.txt +%%DOCSDIR%%/html/_sources/api/qserialportinfo.txt +%%DOCSDIR%%/html/_sources/api/qsessionmanager.txt +%%DOCSDIR%%/html/_sources/api/qsettings.txt +%%DOCSDIR%%/html/_sources/api/qsgabstractrenderer.txt +%%DOCSDIR%%/html/_sources/api/qsgbasicgeometrynode.txt +%%DOCSDIR%%/html/_sources/api/qsgclipnode.txt +%%DOCSDIR%%/html/_sources/api/qsgdynamictexture.txt +%%DOCSDIR%%/html/_sources/api/qsgengine.txt +%%DOCSDIR%%/html/_sources/api/qsgflatcolormaterial.txt +%%DOCSDIR%%/html/_sources/api/qsggeometry.txt +%%DOCSDIR%%/html/_sources/api/qsggeometrynode.txt +%%DOCSDIR%%/html/_sources/api/qsgmaterial.txt +%%DOCSDIR%%/html/_sources/api/qsgmaterialshader.txt +%%DOCSDIR%%/html/_sources/api/qsgmaterialtype.txt +%%DOCSDIR%%/html/_sources/api/qsgnode.txt +%%DOCSDIR%%/html/_sources/api/qsgopacitynode.txt +%%DOCSDIR%%/html/_sources/api/qsgopaquetexturematerial.txt +%%DOCSDIR%%/html/_sources/api/qsgsimplerectnode.txt +%%DOCSDIR%%/html/_sources/api/qsgsimpletexturenode.txt +%%DOCSDIR%%/html/_sources/api/qsgtexture.txt +%%DOCSDIR%%/html/_sources/api/qsgtexturematerial.txt +%%DOCSDIR%%/html/_sources/api/qsgtextureprovider.txt +%%DOCSDIR%%/html/_sources/api/qsgtransformnode.txt +%%DOCSDIR%%/html/_sources/api/qsgvertexcolormaterial.txt +%%DOCSDIR%%/html/_sources/api/qsharedmemory.txt +%%DOCSDIR%%/html/_sources/api/qshortcut.txt +%%DOCSDIR%%/html/_sources/api/qshortcutevent.txt +%%DOCSDIR%%/html/_sources/api/qshowevent.txt +%%DOCSDIR%%/html/_sources/api/qsignalblocker.txt +%%DOCSDIR%%/html/_sources/api/qsignalmapper.txt +%%DOCSDIR%%/html/_sources/api/qsignalspy.txt +%%DOCSDIR%%/html/_sources/api/qsignaltransition.txt +%%DOCSDIR%%/html/_sources/api/qsimplexmlnodemodel.txt +%%DOCSDIR%%/html/_sources/api/qsize.txt +%%DOCSDIR%%/html/_sources/api/qsizef.txt +%%DOCSDIR%%/html/_sources/api/qsizegrip.txt +%%DOCSDIR%%/html/_sources/api/qsizepolicy.txt +%%DOCSDIR%%/html/_sources/api/qslider.txt +%%DOCSDIR%%/html/_sources/api/qsocketnotifier.txt +%%DOCSDIR%%/html/_sources/api/qsortfilterproxymodel.txt +%%DOCSDIR%%/html/_sources/api/qsound.txt +%%DOCSDIR%%/html/_sources/api/qsoundeffect.txt +%%DOCSDIR%%/html/_sources/api/qsourcelocation.txt +%%DOCSDIR%%/html/_sources/api/qspaceritem.txt +%%DOCSDIR%%/html/_sources/api/qspinbox.txt +%%DOCSDIR%%/html/_sources/api/qsplashscreen.txt +%%DOCSDIR%%/html/_sources/api/qsplitter.txt +%%DOCSDIR%%/html/_sources/api/qsplitterhandle.txt +%%DOCSDIR%%/html/_sources/api/qsql.txt +%%DOCSDIR%%/html/_sources/api/qsqldatabase.txt +%%DOCSDIR%%/html/_sources/api/qsqldriver.txt +%%DOCSDIR%%/html/_sources/api/qsqldrivercreatorbase.txt +%%DOCSDIR%%/html/_sources/api/qsqlerror.txt +%%DOCSDIR%%/html/_sources/api/qsqlfield.txt +%%DOCSDIR%%/html/_sources/api/qsqlindex.txt +%%DOCSDIR%%/html/_sources/api/qsqlquery.txt +%%DOCSDIR%%/html/_sources/api/qsqlquerymodel.txt +%%DOCSDIR%%/html/_sources/api/qsqlrecord.txt +%%DOCSDIR%%/html/_sources/api/qsqlrelation.txt +%%DOCSDIR%%/html/_sources/api/qsqlrelationaldelegate.txt +%%DOCSDIR%%/html/_sources/api/qsqlrelationaltablemodel.txt +%%DOCSDIR%%/html/_sources/api/qsqlresult.txt +%%DOCSDIR%%/html/_sources/api/qsqltablemodel.txt +%%DOCSDIR%%/html/_sources/api/qssl.txt +%%DOCSDIR%%/html/_sources/api/qsslcertificate.txt +%%DOCSDIR%%/html/_sources/api/qsslcertificateextension.txt +%%DOCSDIR%%/html/_sources/api/qsslcipher.txt +%%DOCSDIR%%/html/_sources/api/qsslconfiguration.txt +%%DOCSDIR%%/html/_sources/api/qsslerror.txt +%%DOCSDIR%%/html/_sources/api/qsslkey.txt +%%DOCSDIR%%/html/_sources/api/qsslsocket.txt +%%DOCSDIR%%/html/_sources/api/qstackedlayout.txt +%%DOCSDIR%%/html/_sources/api/qstackedwidget.txt +%%DOCSDIR%%/html/_sources/api/qstandarditem.txt +%%DOCSDIR%%/html/_sources/api/qstandarditemmodel.txt +%%DOCSDIR%%/html/_sources/api/qstandardpaths.txt +%%DOCSDIR%%/html/_sources/api/qstate.txt +%%DOCSDIR%%/html/_sources/api/qstatemachine.txt +%%DOCSDIR%%/html/_sources/api/qstatictext.txt +%%DOCSDIR%%/html/_sources/api/qstatusbar.txt +%%DOCSDIR%%/html/_sources/api/qstatustipevent.txt +%%DOCSDIR%%/html/_sources/api/qstorageinfo.txt +%%DOCSDIR%%/html/_sources/api/qstringlistmodel.txt +%%DOCSDIR%%/html/_sources/api/qstyle.txt +%%DOCSDIR%%/html/_sources/api/qstyleditemdelegate.txt +%%DOCSDIR%%/html/_sources/api/qstylefactory.txt +%%DOCSDIR%%/html/_sources/api/qstylehintreturn.txt +%%DOCSDIR%%/html/_sources/api/qstylehintreturnmask.txt +%%DOCSDIR%%/html/_sources/api/qstylehintreturnvariant.txt +%%DOCSDIR%%/html/_sources/api/qstylehints.txt +%%DOCSDIR%%/html/_sources/api/qstyleoption.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptionbutton.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptioncombobox.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptioncomplex.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptiondockwidget.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptionfocusrect.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptionframe.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptiongraphicsitem.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptiongroupbox.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptionheader.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptionmenuitem.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptionprogressbar.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptionrubberband.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptionsizegrip.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptionslider.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptionspinbox.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptiontab.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptiontabbarbase.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptiontabwidgetframe.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptiontitlebar.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptiontoolbar.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptiontoolbox.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptiontoolbutton.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptionviewitem.txt +%%DOCSDIR%%/html/_sources/api/qstylepainter.txt +%%DOCSDIR%%/html/_sources/api/qsurface.txt +%%DOCSDIR%%/html/_sources/api/qsurfaceformat.txt +%%DOCSDIR%%/html/_sources/api/qsvggenerator.txt +%%DOCSDIR%%/html/_sources/api/qsvgrenderer.txt +%%DOCSDIR%%/html/_sources/api/qsvgwidget.txt +%%DOCSDIR%%/html/_sources/api/qswipegesture.txt +%%DOCSDIR%%/html/_sources/api/qsyntaxhighlighter.txt +%%DOCSDIR%%/html/_sources/api/qsysinfo.txt +%%DOCSDIR%%/html/_sources/api/qsystemsemaphore.txt +%%DOCSDIR%%/html/_sources/api/qsystemtrayicon.txt +%%DOCSDIR%%/html/_sources/api/qt.txt +%%DOCSDIR%%/html/_sources/api/qtabbar.txt +%%DOCSDIR%%/html/_sources/api/qtabletevent.txt +%%DOCSDIR%%/html/_sources/api/qtableview.txt +%%DOCSDIR%%/html/_sources/api/qtablewidget.txt +%%DOCSDIR%%/html/_sources/api/qtablewidgetitem.txt +%%DOCSDIR%%/html/_sources/api/qtablewidgetselectionrange.txt +%%DOCSDIR%%/html/_sources/api/qtabwidget.txt +%%DOCSDIR%%/html/_sources/api/qtapandholdgesture.txt +%%DOCSDIR%%/html/_sources/api/qtapfilter.txt +%%DOCSDIR%%/html/_sources/api/qtapgesture.txt +%%DOCSDIR%%/html/_sources/api/qtapreading.txt +%%DOCSDIR%%/html/_sources/api/qtapsensor.txt +%%DOCSDIR%%/html/_sources/api/qtcpserver.txt +%%DOCSDIR%%/html/_sources/api/qtcpsocket.txt +%%DOCSDIR%%/html/_sources/api/qtemporarydir.txt +%%DOCSDIR%%/html/_sources/api/qtemporaryfile.txt +%%DOCSDIR%%/html/_sources/api/qtest.txt +%%DOCSDIR%%/html/_sources/api/qtextblock.txt +%%DOCSDIR%%/html/_sources/api/qtextblockformat.txt +%%DOCSDIR%%/html/_sources/api/qtextblockgroup.txt +%%DOCSDIR%%/html/_sources/api/qtextblockuserdata.txt +%%DOCSDIR%%/html/_sources/api/qtextboundaryfinder.txt +%%DOCSDIR%%/html/_sources/api/qtextbrowser.txt +%%DOCSDIR%%/html/_sources/api/qtextcharformat.txt +%%DOCSDIR%%/html/_sources/api/qtextcodec.txt +%%DOCSDIR%%/html/_sources/api/qtextcursor.txt +%%DOCSDIR%%/html/_sources/api/qtextdecoder.txt +%%DOCSDIR%%/html/_sources/api/qtextdocument.txt +%%DOCSDIR%%/html/_sources/api/qtextdocumentfragment.txt +%%DOCSDIR%%/html/_sources/api/qtextdocumentwriter.txt +%%DOCSDIR%%/html/_sources/api/qtextedit.txt +%%DOCSDIR%%/html/_sources/api/qtextencoder.txt +%%DOCSDIR%%/html/_sources/api/qtextformat.txt +%%DOCSDIR%%/html/_sources/api/qtextfragment.txt +%%DOCSDIR%%/html/_sources/api/qtextframe.txt +%%DOCSDIR%%/html/_sources/api/qtextframeformat.txt +%%DOCSDIR%%/html/_sources/api/qtextimageformat.txt +%%DOCSDIR%%/html/_sources/api/qtextinlineobject.txt +%%DOCSDIR%%/html/_sources/api/qtextitem.txt +%%DOCSDIR%%/html/_sources/api/qtextlayout.txt +%%DOCSDIR%%/html/_sources/api/qtextlength.txt +%%DOCSDIR%%/html/_sources/api/qtextline.txt +%%DOCSDIR%%/html/_sources/api/qtextlist.txt +%%DOCSDIR%%/html/_sources/api/qtextlistformat.txt +%%DOCSDIR%%/html/_sources/api/qtextobject.txt +%%DOCSDIR%%/html/_sources/api/qtextobjectinterface.txt +%%DOCSDIR%%/html/_sources/api/qtextoption.txt +%%DOCSDIR%%/html/_sources/api/qtextstream.txt +%%DOCSDIR%%/html/_sources/api/qtextstreammanipulator.txt +%%DOCSDIR%%/html/_sources/api/qtexttable.txt +%%DOCSDIR%%/html/_sources/api/qtexttablecell.txt +%%DOCSDIR%%/html/_sources/api/qtexttablecellformat.txt +%%DOCSDIR%%/html/_sources/api/qtexttableformat.txt +%%DOCSDIR%%/html/_sources/api/qthread.txt +%%DOCSDIR%%/html/_sources/api/qthreadpool.txt +%%DOCSDIR%%/html/_sources/api/qtiltfilter.txt +%%DOCSDIR%%/html/_sources/api/qtiltreading.txt +%%DOCSDIR%%/html/_sources/api/qtiltsensor.txt +%%DOCSDIR%%/html/_sources/api/qtime.txt +%%DOCSDIR%%/html/_sources/api/qtimeedit.txt +%%DOCSDIR%%/html/_sources/api/qtimeline.txt +%%DOCSDIR%%/html/_sources/api/qtimer.txt +%%DOCSDIR%%/html/_sources/api/qtimerevent.txt +%%DOCSDIR%%/html/_sources/api/qtimezone.txt +%%DOCSDIR%%/html/_sources/api/qtoolbar.txt +%%DOCSDIR%%/html/_sources/api/qtoolbox.txt +%%DOCSDIR%%/html/_sources/api/qtoolbutton.txt +%%DOCSDIR%%/html/_sources/api/qtooltip.txt +%%DOCSDIR%%/html/_sources/api/qtouchdevice.txt +%%DOCSDIR%%/html/_sources/api/qtouchevent.txt +%%DOCSDIR%%/html/_sources/api/qtransform.txt +%%DOCSDIR%%/html/_sources/api/qtranslator.txt +%%DOCSDIR%%/html/_sources/api/qtreeview.txt +%%DOCSDIR%%/html/_sources/api/qtreewidget.txt +%%DOCSDIR%%/html/_sources/api/qtreewidgetitem.txt +%%DOCSDIR%%/html/_sources/api/qtreewidgetitemiterator.txt +%%DOCSDIR%%/html/_sources/api/qtwin.txt +%%DOCSDIR%%/html/_sources/api/qudpsocket.txt +%%DOCSDIR%%/html/_sources/api/qundocommand.txt +%%DOCSDIR%%/html/_sources/api/qundogroup.txt +%%DOCSDIR%%/html/_sources/api/qundostack.txt +%%DOCSDIR%%/html/_sources/api/qundoview.txt +%%DOCSDIR%%/html/_sources/api/qurl.txt +%%DOCSDIR%%/html/_sources/api/qurlquery.txt +%%DOCSDIR%%/html/_sources/api/quuid.txt +%%DOCSDIR%%/html/_sources/api/qvalidator.txt +%%DOCSDIR%%/html/_sources/api/qvariant.txt +%%DOCSDIR%%/html/_sources/api/qvariantanimation.txt +%%DOCSDIR%%/html/_sources/api/qvboxlayout.txt +%%DOCSDIR%%/html/_sources/api/qvector2d.txt +%%DOCSDIR%%/html/_sources/api/qvector3d.txt +%%DOCSDIR%%/html/_sources/api/qvector4d.txt +%%DOCSDIR%%/html/_sources/api/qvideoencodersettings.txt +%%DOCSDIR%%/html/_sources/api/qvideoframe.txt +%%DOCSDIR%%/html/_sources/api/qvideoprobe.txt +%%DOCSDIR%%/html/_sources/api/qvideosurfaceformat.txt +%%DOCSDIR%%/html/_sources/api/qvideowidget.txt +%%DOCSDIR%%/html/_sources/api/qwaitcondition.txt +%%DOCSDIR%%/html/_sources/api/qwebchannel.txt +%%DOCSDIR%%/html/_sources/api/qwebchannelabstracttransport.txt +%%DOCSDIR%%/html/_sources/api/qwebdatabase.txt +%%DOCSDIR%%/html/_sources/api/qwebelement.txt +%%DOCSDIR%%/html/_sources/api/qwebelementcollection.txt +%%DOCSDIR%%/html/_sources/api/qwebenginecertificateerror.txt +%%DOCSDIR%%/html/_sources/api/qwebenginedownloaditem.txt +%%DOCSDIR%%/html/_sources/api/qwebenginehistory.txt +%%DOCSDIR%%/html/_sources/api/qwebenginehistoryitem.txt +%%DOCSDIR%%/html/_sources/api/qwebenginepage.txt +%%DOCSDIR%%/html/_sources/api/qwebengineprofile.txt +%%DOCSDIR%%/html/_sources/api/qwebenginescript.txt +%%DOCSDIR%%/html/_sources/api/qwebenginescriptcollection.txt +%%DOCSDIR%%/html/_sources/api/qwebenginesettings.txt +%%DOCSDIR%%/html/_sources/api/qwebengineview.txt +%%DOCSDIR%%/html/_sources/api/qwebframe.txt +%%DOCSDIR%%/html/_sources/api/qwebhistory.txt +%%DOCSDIR%%/html/_sources/api/qwebhistoryinterface.txt +%%DOCSDIR%%/html/_sources/api/qwebhistoryitem.txt +%%DOCSDIR%%/html/_sources/api/qwebhittestresult.txt +%%DOCSDIR%%/html/_sources/api/qwebinspector.txt +%%DOCSDIR%%/html/_sources/api/qwebpage.txt +%%DOCSDIR%%/html/_sources/api/qwebpluginfactory.txt +%%DOCSDIR%%/html/_sources/api/qwebsecurityorigin.txt +%%DOCSDIR%%/html/_sources/api/qwebsettings.txt +%%DOCSDIR%%/html/_sources/api/qwebsocket.txt +%%DOCSDIR%%/html/_sources/api/qwebsocketcorsauthenticator.txt +%%DOCSDIR%%/html/_sources/api/qwebsocketprotocol.txt +%%DOCSDIR%%/html/_sources/api/qwebsocketserver.txt +%%DOCSDIR%%/html/_sources/api/qwebview.txt +%%DOCSDIR%%/html/_sources/api/qwhatsthis.txt +%%DOCSDIR%%/html/_sources/api/qwhatsthisclickedevent.txt +%%DOCSDIR%%/html/_sources/api/qwheelevent.txt +%%DOCSDIR%%/html/_sources/api/qwidget.txt +%%DOCSDIR%%/html/_sources/api/qwidgetaction.txt +%%DOCSDIR%%/html/_sources/api/qwidgetitem.txt +%%DOCSDIR%%/html/_sources/api/qwindow.txt +%%DOCSDIR%%/html/_sources/api/qwindowstatechangeevent.txt +%%DOCSDIR%%/html/_sources/api/qwinjumplist.txt +%%DOCSDIR%%/html/_sources/api/qwinjumplistcategory.txt +%%DOCSDIR%%/html/_sources/api/qwinjumplistitem.txt +%%DOCSDIR%%/html/_sources/api/qwintaskbarbutton.txt +%%DOCSDIR%%/html/_sources/api/qwintaskbarprogress.txt +%%DOCSDIR%%/html/_sources/api/qwinthumbnailtoolbar.txt +%%DOCSDIR%%/html/_sources/api/qwinthumbnailtoolbutton.txt +%%DOCSDIR%%/html/_sources/api/qwizard.txt +%%DOCSDIR%%/html/_sources/api/qwizardpage.txt +%%DOCSDIR%%/html/_sources/api/qwritelocker.txt +%%DOCSDIR%%/html/_sources/api/qx11info.txt +%%DOCSDIR%%/html/_sources/api/qxmlattributes.txt +%%DOCSDIR%%/html/_sources/api/qxmlcontenthandler.txt +%%DOCSDIR%%/html/_sources/api/qxmldeclhandler.txt +%%DOCSDIR%%/html/_sources/api/qxmldefaulthandler.txt +%%DOCSDIR%%/html/_sources/api/qxmldtdhandler.txt +%%DOCSDIR%%/html/_sources/api/qxmlentityresolver.txt +%%DOCSDIR%%/html/_sources/api/qxmlerrorhandler.txt +%%DOCSDIR%%/html/_sources/api/qxmlformatter.txt +%%DOCSDIR%%/html/_sources/api/qxmlinputsource.txt +%%DOCSDIR%%/html/_sources/api/qxmlitem.txt +%%DOCSDIR%%/html/_sources/api/qxmllexicalhandler.txt +%%DOCSDIR%%/html/_sources/api/qxmllocator.txt +%%DOCSDIR%%/html/_sources/api/qxmlname.txt +%%DOCSDIR%%/html/_sources/api/qxmlnamepool.txt +%%DOCSDIR%%/html/_sources/api/qxmlnamespacesupport.txt +%%DOCSDIR%%/html/_sources/api/qxmlnodemodelindex.txt +%%DOCSDIR%%/html/_sources/api/qxmlparseexception.txt +%%DOCSDIR%%/html/_sources/api/qxmlquery.txt +%%DOCSDIR%%/html/_sources/api/qxmlreader.txt +%%DOCSDIR%%/html/_sources/api/qxmlresultitems.txt +%%DOCSDIR%%/html/_sources/api/qxmlschema.txt +%%DOCSDIR%%/html/_sources/api/qxmlschemavalidator.txt +%%DOCSDIR%%/html/_sources/api/qxmlserializer.txt +%%DOCSDIR%%/html/_sources/api/qxmlsimplereader.txt +%%DOCSDIR%%/html/_sources/api/qxmlstreamattribute.txt +%%DOCSDIR%%/html/_sources/api/qxmlstreamattributes.txt +%%DOCSDIR%%/html/_sources/api/qxmlstreamentitydeclaration.txt +%%DOCSDIR%%/html/_sources/api/qxmlstreamentityresolver.txt +%%DOCSDIR%%/html/_sources/api/qxmlstreamnamespacedeclaration.txt +%%DOCSDIR%%/html/_sources/api/qxmlstreamnotationdeclaration.txt +%%DOCSDIR%%/html/_sources/api/qxmlstreamreader.txt +%%DOCSDIR%%/html/_sources/api/qxmlstreamwriter.txt +%%DOCSDIR%%/html/_sources/class_reference.txt +%%DOCSDIR%%/html/_sources/dbus.txt +%%DOCSDIR%%/html/_sources/deploy_commercial.txt +%%DOCSDIR%%/html/_sources/deprecations.txt +%%DOCSDIR%%/html/_sources/designer.txt +%%DOCSDIR%%/html/_sources/extension_api.txt +%%DOCSDIR%%/html/_sources/gotchas.txt +%%DOCSDIR%%/html/_sources/i18n.txt +%%DOCSDIR%%/html/_sources/incompatibilities.txt +%%DOCSDIR%%/html/_sources/index.txt +%%DOCSDIR%%/html/_sources/installation.txt +%%DOCSDIR%%/html/_sources/introduction.txt +%%DOCSDIR%%/html/_sources/metaobjects.txt +%%DOCSDIR%%/html/_sources/multiinheritance.txt +%%DOCSDIR%%/html/_sources/opengl.txt +%%DOCSDIR%%/html/_sources/pickle.txt +%%DOCSDIR%%/html/_sources/platforms.txt +%%DOCSDIR%%/html/_sources/pyqt4_differences.txt +%%DOCSDIR%%/html/_sources/pyqt_qsettings.txt +%%DOCSDIR%%/html/_sources/pyqt_qvariant.txt +%%DOCSDIR%%/html/_sources/python_shell.txt +%%DOCSDIR%%/html/_sources/qml.txt +%%DOCSDIR%%/html/_sources/qt_interfaces.txt +%%DOCSDIR%%/html/_sources/qt_properties.txt +%%DOCSDIR%%/html/_sources/resources.txt +%%DOCSDIR%%/html/_sources/signals_slots.txt +%%DOCSDIR%%/html/_static/ajax-loader.gif +%%DOCSDIR%%/html/_static/basic.css +%%DOCSDIR%%/html/_static/classic.css +%%DOCSDIR%%/html/_static/comment-bright.png +%%DOCSDIR%%/html/_static/comment-close.png +%%DOCSDIR%%/html/_static/comment.png +%%DOCSDIR%%/html/_static/doctools.js +%%DOCSDIR%%/html/_static/down-pressed.png +%%DOCSDIR%%/html/_static/down.png +%%DOCSDIR%%/html/_static/file.png +%%DOCSDIR%%/html/_static/jquery-1.11.1.js +%%DOCSDIR%%/html/_static/jquery.js +%%DOCSDIR%%/html/_static/logo.png +%%DOCSDIR%%/html/_static/logo_tn.ico +%%DOCSDIR%%/html/_static/minus.png +%%DOCSDIR%%/html/_static/plus.png +%%DOCSDIR%%/html/_static/pygments.css +%%DOCSDIR%%/html/_static/searchtools.js +%%DOCSDIR%%/html/_static/sidebar.js +%%DOCSDIR%%/html/_static/underscore-1.3.1.js +%%DOCSDIR%%/html/_static/underscore.js +%%DOCSDIR%%/html/_static/up-pressed.png +%%DOCSDIR%%/html/_static/up.png +%%DOCSDIR%%/html/_static/websupport.js +%%DOCSDIR%%/html/api/enginio.html +%%DOCSDIR%%/html/api/enginioclient.html +%%DOCSDIR%%/html/api/enginioclientconnection.html +%%DOCSDIR%%/html/api/enginioidentity.html +%%DOCSDIR%%/html/api/enginiomodel.html +%%DOCSDIR%%/html/api/enginiooauth2authentication.html +%%DOCSDIR%%/html/api/enginioreply.html +%%DOCSDIR%%/html/api/qabstractanimation.html +%%DOCSDIR%%/html/api/qabstractbutton.html +%%DOCSDIR%%/html/api/qabstracteventdispatcher.html +%%DOCSDIR%%/html/api/qabstractextensionfactory.html +%%DOCSDIR%%/html/api/qabstractextensionmanager.html +%%DOCSDIR%%/html/api/qabstractformbuilder.html +%%DOCSDIR%%/html/api/qabstractgraphicsshapeitem.html +%%DOCSDIR%%/html/api/qabstractitemdelegate.html +%%DOCSDIR%%/html/api/qabstractitemmodel.html +%%DOCSDIR%%/html/api/qabstractitemview.html +%%DOCSDIR%%/html/api/qabstractlistmodel.html +%%DOCSDIR%%/html/api/qabstractmessagehandler.html +%%DOCSDIR%%/html/api/qabstractnativeeventfilter.html +%%DOCSDIR%%/html/api/qabstractnetworkcache.html +%%DOCSDIR%%/html/api/qabstractprintdialog.html +%%DOCSDIR%%/html/api/qabstractproxymodel.html +%%DOCSDIR%%/html/api/qabstractscrollarea.html +%%DOCSDIR%%/html/api/qabstractslider.html +%%DOCSDIR%%/html/api/qabstractsocket.html +%%DOCSDIR%%/html/api/qabstractspinbox.html +%%DOCSDIR%%/html/api/qabstractstate.html +%%DOCSDIR%%/html/api/qabstracttablemodel.html +%%DOCSDIR%%/html/api/qabstracttextdocumentlayout.html +%%DOCSDIR%%/html/api/qabstracttransition.html +%%DOCSDIR%%/html/api/qabstracturiresolver.html +%%DOCSDIR%%/html/api/qabstractvideobuffer.html +%%DOCSDIR%%/html/api/qabstractvideosurface.html +%%DOCSDIR%%/html/api/qabstractxmlnodemodel.html +%%DOCSDIR%%/html/api/qabstractxmlreceiver.html +%%DOCSDIR%%/html/api/qaccelerometer.html +%%DOCSDIR%%/html/api/qaccelerometerfilter.html +%%DOCSDIR%%/html/api/qaccelerometerreading.html +%%DOCSDIR%%/html/api/qaction.html +%%DOCSDIR%%/html/api/qactionevent.html +%%DOCSDIR%%/html/api/qactiongroup.html +%%DOCSDIR%%/html/api/qaltimeter.html +%%DOCSDIR%%/html/api/qaltimeterfilter.html +%%DOCSDIR%%/html/api/qaltimeterreading.html +%%DOCSDIR%%/html/api/qambientlightfilter.html +%%DOCSDIR%%/html/api/qambientlightreading.html +%%DOCSDIR%%/html/api/qambientlightsensor.html +%%DOCSDIR%%/html/api/qambienttemperaturefilter.html +%%DOCSDIR%%/html/api/qambienttemperaturereading.html +%%DOCSDIR%%/html/api/qambienttemperaturesensor.html +%%DOCSDIR%%/html/api/qanimationgroup.html +%%DOCSDIR%%/html/api/qapplication.html +%%DOCSDIR%%/html/api/qaudio.html +%%DOCSDIR%%/html/api/qaudiobuffer.html +%%DOCSDIR%%/html/api/qaudiodecoder.html +%%DOCSDIR%%/html/api/qaudiodeviceinfo.html +%%DOCSDIR%%/html/api/qaudioencodersettings.html +%%DOCSDIR%%/html/api/qaudioformat.html +%%DOCSDIR%%/html/api/qaudioinput.html +%%DOCSDIR%%/html/api/qaudiooutput.html +%%DOCSDIR%%/html/api/qaudioprobe.html +%%DOCSDIR%%/html/api/qaudiorecorder.html +%%DOCSDIR%%/html/api/qauthenticator.html +%%DOCSDIR%%/html/api/qaxbase.html +%%DOCSDIR%%/html/api/qaxobject.html +%%DOCSDIR%%/html/api/qaxwidget.html +%%DOCSDIR%%/html/api/qbackingstore.html +%%DOCSDIR%%/html/api/qbasictimer.html +%%DOCSDIR%%/html/api/qbitarray.html +%%DOCSDIR%%/html/api/qbitmap.html +%%DOCSDIR%%/html/api/qbluetoothaddress.html +%%DOCSDIR%%/html/api/qbluetoothdevicediscoveryagent.html +%%DOCSDIR%%/html/api/qbluetoothdeviceinfo.html +%%DOCSDIR%%/html/api/qbluetoothhostinfo.html +%%DOCSDIR%%/html/api/qbluetoothlocaldevice.html +%%DOCSDIR%%/html/api/qbluetoothserver.html +%%DOCSDIR%%/html/api/qbluetoothservicediscoveryagent.html +%%DOCSDIR%%/html/api/qbluetoothserviceinfo.html +%%DOCSDIR%%/html/api/qbluetoothsocket.html +%%DOCSDIR%%/html/api/qbluetoothtransfermanager.html +%%DOCSDIR%%/html/api/qbluetoothtransferreply.html +%%DOCSDIR%%/html/api/qbluetoothtransferrequest.html +%%DOCSDIR%%/html/api/qbluetoothuuid.html +%%DOCSDIR%%/html/api/qboxlayout.html +%%DOCSDIR%%/html/api/qbrush.html +%%DOCSDIR%%/html/api/qbuffer.html +%%DOCSDIR%%/html/api/qbuttongroup.html +%%DOCSDIR%%/html/api/qbytearray.html +%%DOCSDIR%%/html/api/qbytearraymatcher.html +%%DOCSDIR%%/html/api/qcalendarwidget.html +%%DOCSDIR%%/html/api/qcamera.html +%%DOCSDIR%%/html/api/qcameraexposure.html +%%DOCSDIR%%/html/api/qcamerafocus.html +%%DOCSDIR%%/html/api/qcamerafocuszone.html +%%DOCSDIR%%/html/api/qcameraimagecapture.html +%%DOCSDIR%%/html/api/qcameraimageprocessing.html +%%DOCSDIR%%/html/api/qcamerainfo.html +%%DOCSDIR%%/html/api/qcameraviewfinder.html +%%DOCSDIR%%/html/api/qcheckbox.html +%%DOCSDIR%%/html/api/qchildevent.html +%%DOCSDIR%%/html/api/qclipboard.html +%%DOCSDIR%%/html/api/qcloseevent.html +%%DOCSDIR%%/html/api/qcollator.html +%%DOCSDIR%%/html/api/qcollatorsortkey.html +%%DOCSDIR%%/html/api/qcolor.html +%%DOCSDIR%%/html/api/qcolordialog.html +%%DOCSDIR%%/html/api/qcolumnview.html +%%DOCSDIR%%/html/api/qcombobox.html +%%DOCSDIR%%/html/api/qcommandlineoption.html +%%DOCSDIR%%/html/api/qcommandlineparser.html +%%DOCSDIR%%/html/api/qcommandlinkbutton.html +%%DOCSDIR%%/html/api/qcommonstyle.html +%%DOCSDIR%%/html/api/qcompass.html +%%DOCSDIR%%/html/api/qcompassfilter.html +%%DOCSDIR%%/html/api/qcompassreading.html +%%DOCSDIR%%/html/api/qcompleter.html +%%DOCSDIR%%/html/api/qconicalgradient.html +%%DOCSDIR%%/html/api/qcontextmenuevent.html +%%DOCSDIR%%/html/api/qcoreapplication.html +%%DOCSDIR%%/html/api/qcryptographichash.html +%%DOCSDIR%%/html/api/qcursor.html +%%DOCSDIR%%/html/api/qdatastream.html +%%DOCSDIR%%/html/api/qdatawidgetmapper.html +%%DOCSDIR%%/html/api/qdate.html +%%DOCSDIR%%/html/api/qdateedit.html +%%DOCSDIR%%/html/api/qdatetime.html +%%DOCSDIR%%/html/api/qdatetimeedit.html +%%DOCSDIR%%/html/api/qdbus.html +%%DOCSDIR%%/html/api/qdbusabstractadaptor.html +%%DOCSDIR%%/html/api/qdbusabstractinterface.html +%%DOCSDIR%%/html/api/qdbusargument.html +%%DOCSDIR%%/html/api/qdbusconnection.html +%%DOCSDIR%%/html/api/qdbusconnectioninterface.html +%%DOCSDIR%%/html/api/qdbuserror.html +%%DOCSDIR%%/html/api/qdbusinterface.html +%%DOCSDIR%%/html/api/qdbusmessage.html +%%DOCSDIR%%/html/api/qdbusobjectpath.html +%%DOCSDIR%%/html/api/qdbuspendingcall.html +%%DOCSDIR%%/html/api/qdbuspendingcallwatcher.html +%%DOCSDIR%%/html/api/qdbuspendingreply.html +%%DOCSDIR%%/html/api/qdbusreply.html +%%DOCSDIR%%/html/api/qdbusservicewatcher.html +%%DOCSDIR%%/html/api/qdbussignature.html +%%DOCSDIR%%/html/api/qdbusunixfiledescriptor.html +%%DOCSDIR%%/html/api/qdbusvariant.html +%%DOCSDIR%%/html/api/qdesigneractioneditorinterface.html +%%DOCSDIR%%/html/api/qdesignercontainerextension.html +%%DOCSDIR%%/html/api/qdesignercustomwidgetcollectioninterface.html +%%DOCSDIR%%/html/api/qdesignercustomwidgetinterface.html +%%DOCSDIR%%/html/api/qdesignerformeditorinterface.html +%%DOCSDIR%%/html/api/qdesignerformwindowcursorinterface.html +%%DOCSDIR%%/html/api/qdesignerformwindowinterface.html +%%DOCSDIR%%/html/api/qdesignerformwindowmanagerinterface.html +%%DOCSDIR%%/html/api/qdesignermembersheetextension.html +%%DOCSDIR%%/html/api/qdesignerobjectinspectorinterface.html +%%DOCSDIR%%/html/api/qdesignerpropertyeditorinterface.html +%%DOCSDIR%%/html/api/qdesignerpropertysheetextension.html +%%DOCSDIR%%/html/api/qdesignertaskmenuextension.html +%%DOCSDIR%%/html/api/qdesignerwidgetboxinterface.html +%%DOCSDIR%%/html/api/qdesktopservices.html +%%DOCSDIR%%/html/api/qdesktopwidget.html +%%DOCSDIR%%/html/api/qdial.html +%%DOCSDIR%%/html/api/qdialog.html +%%DOCSDIR%%/html/api/qdialogbuttonbox.html +%%DOCSDIR%%/html/api/qdir.html +%%DOCSDIR%%/html/api/qdiriterator.html +%%DOCSDIR%%/html/api/qdirmodel.html +%%DOCSDIR%%/html/api/qdistancefilter.html +%%DOCSDIR%%/html/api/qdistancereading.html +%%DOCSDIR%%/html/api/qdistancesensor.html +%%DOCSDIR%%/html/api/qdnsdomainnamerecord.html +%%DOCSDIR%%/html/api/qdnshostaddressrecord.html +%%DOCSDIR%%/html/api/qdnslookup.html +%%DOCSDIR%%/html/api/qdnsmailexchangerecord.html +%%DOCSDIR%%/html/api/qdnsservicerecord.html +%%DOCSDIR%%/html/api/qdnstextrecord.html +%%DOCSDIR%%/html/api/qdockwidget.html +%%DOCSDIR%%/html/api/qdomattr.html +%%DOCSDIR%%/html/api/qdomcdatasection.html +%%DOCSDIR%%/html/api/qdomcharacterdata.html +%%DOCSDIR%%/html/api/qdomcomment.html +%%DOCSDIR%%/html/api/qdomdocument.html +%%DOCSDIR%%/html/api/qdomdocumentfragment.html +%%DOCSDIR%%/html/api/qdomdocumenttype.html +%%DOCSDIR%%/html/api/qdomelement.html +%%DOCSDIR%%/html/api/qdomentity.html +%%DOCSDIR%%/html/api/qdomentityreference.html +%%DOCSDIR%%/html/api/qdomimplementation.html +%%DOCSDIR%%/html/api/qdomnamednodemap.html +%%DOCSDIR%%/html/api/qdomnode.html +%%DOCSDIR%%/html/api/qdomnodelist.html +%%DOCSDIR%%/html/api/qdomnotation.html +%%DOCSDIR%%/html/api/qdomprocessinginstruction.html +%%DOCSDIR%%/html/api/qdomtext.html +%%DOCSDIR%%/html/api/qdoublespinbox.html +%%DOCSDIR%%/html/api/qdoublevalidator.html +%%DOCSDIR%%/html/api/qdrag.html +%%DOCSDIR%%/html/api/qdragenterevent.html +%%DOCSDIR%%/html/api/qdragleaveevent.html +%%DOCSDIR%%/html/api/qdragmoveevent.html +%%DOCSDIR%%/html/api/qdropevent.html +%%DOCSDIR%%/html/api/qdynamicpropertychangeevent.html +%%DOCSDIR%%/html/api/qeasingcurve.html +%%DOCSDIR%%/html/api/qelapsedtimer.html +%%DOCSDIR%%/html/api/qenterevent.html +%%DOCSDIR%%/html/api/qerrormessage.html +%%DOCSDIR%%/html/api/qevent.html +%%DOCSDIR%%/html/api/qeventloop.html +%%DOCSDIR%%/html/api/qeventlooplocker.html +%%DOCSDIR%%/html/api/qeventtransition.html +%%DOCSDIR%%/html/api/qexposeevent.html +%%DOCSDIR%%/html/api/qextensionfactory.html +%%DOCSDIR%%/html/api/qextensionmanager.html +%%DOCSDIR%%/html/api/qfile.html +%%DOCSDIR%%/html/api/qfiledevice.html +%%DOCSDIR%%/html/api/qfiledialog.html +%%DOCSDIR%%/html/api/qfileiconprovider.html +%%DOCSDIR%%/html/api/qfileinfo.html +%%DOCSDIR%%/html/api/qfileopenevent.html +%%DOCSDIR%%/html/api/qfileselector.html +%%DOCSDIR%%/html/api/qfilesystemmodel.html +%%DOCSDIR%%/html/api/qfilesystemwatcher.html +%%DOCSDIR%%/html/api/qfinalstate.html +%%DOCSDIR%%/html/api/qfocusevent.html +%%DOCSDIR%%/html/api/qfocusframe.html +%%DOCSDIR%%/html/api/qfont.html +%%DOCSDIR%%/html/api/qfontcombobox.html +%%DOCSDIR%%/html/api/qfontdatabase.html +%%DOCSDIR%%/html/api/qfontdialog.html +%%DOCSDIR%%/html/api/qfontinfo.html +%%DOCSDIR%%/html/api/qfontmetrics.html +%%DOCSDIR%%/html/api/qfontmetricsf.html +%%DOCSDIR%%/html/api/qformbuilder.html +%%DOCSDIR%%/html/api/qformlayout.html +%%DOCSDIR%%/html/api/qframe.html +%%DOCSDIR%%/html/api/qgenericargument.html +%%DOCSDIR%%/html/api/qgenericreturnargument.html +%%DOCSDIR%%/html/api/qgeoaddress.html +%%DOCSDIR%%/html/api/qgeoareamonitorinfo.html +%%DOCSDIR%%/html/api/qgeoareamonitorsource.html +%%DOCSDIR%%/html/api/qgeocircle.html +%%DOCSDIR%%/html/api/qgeocodereply.html +%%DOCSDIR%%/html/api/qgeocodingmanager.html +%%DOCSDIR%%/html/api/qgeocodingmanagerengine.html +%%DOCSDIR%%/html/api/qgeocoordinate.html +%%DOCSDIR%%/html/api/qgeolocation.html +%%DOCSDIR%%/html/api/qgeomaneuver.html +%%DOCSDIR%%/html/api/qgeopositioninfo.html +%%DOCSDIR%%/html/api/qgeopositioninfosource.html +%%DOCSDIR%%/html/api/qgeorectangle.html +%%DOCSDIR%%/html/api/qgeoroute.html +%%DOCSDIR%%/html/api/qgeoroutereply.html +%%DOCSDIR%%/html/api/qgeorouterequest.html +%%DOCSDIR%%/html/api/qgeoroutesegment.html +%%DOCSDIR%%/html/api/qgeoroutingmanager.html +%%DOCSDIR%%/html/api/qgeoroutingmanagerengine.html +%%DOCSDIR%%/html/api/qgeosatelliteinfo.html +%%DOCSDIR%%/html/api/qgeosatelliteinfosource.html +%%DOCSDIR%%/html/api/qgeoserviceprovider.html +%%DOCSDIR%%/html/api/qgeoshape.html +%%DOCSDIR%%/html/api/qgesture.html +%%DOCSDIR%%/html/api/qgestureevent.html +%%DOCSDIR%%/html/api/qgesturerecognizer.html +%%DOCSDIR%%/html/api/qgl.html +%%DOCSDIR%%/html/api/qglcontext.html +%%DOCSDIR%%/html/api/qglformat.html +%%DOCSDIR%%/html/api/qglwidget.html +%%DOCSDIR%%/html/api/qglyphrun.html +%%DOCSDIR%%/html/api/qgradient.html +%%DOCSDIR%%/html/api/qgraphicsanchor.html +%%DOCSDIR%%/html/api/qgraphicsanchorlayout.html +%%DOCSDIR%%/html/api/qgraphicsblureffect.html +%%DOCSDIR%%/html/api/qgraphicscolorizeeffect.html +%%DOCSDIR%%/html/api/qgraphicsdropshadoweffect.html +%%DOCSDIR%%/html/api/qgraphicseffect.html +%%DOCSDIR%%/html/api/qgraphicsellipseitem.html +%%DOCSDIR%%/html/api/qgraphicsgridlayout.html +%%DOCSDIR%%/html/api/qgraphicsitem.html +%%DOCSDIR%%/html/api/qgraphicsitemgroup.html +%%DOCSDIR%%/html/api/qgraphicslayout.html +%%DOCSDIR%%/html/api/qgraphicslayoutitem.html +%%DOCSDIR%%/html/api/qgraphicslinearlayout.html +%%DOCSDIR%%/html/api/qgraphicslineitem.html +%%DOCSDIR%%/html/api/qgraphicsobject.html +%%DOCSDIR%%/html/api/qgraphicsopacityeffect.html +%%DOCSDIR%%/html/api/qgraphicspathitem.html +%%DOCSDIR%%/html/api/qgraphicspixmapitem.html +%%DOCSDIR%%/html/api/qgraphicspolygonitem.html +%%DOCSDIR%%/html/api/qgraphicsproxywidget.html +%%DOCSDIR%%/html/api/qgraphicsrectitem.html +%%DOCSDIR%%/html/api/qgraphicsrotation.html +%%DOCSDIR%%/html/api/qgraphicsscale.html +%%DOCSDIR%%/html/api/qgraphicsscene.html +%%DOCSDIR%%/html/api/qgraphicsscenecontextmenuevent.html +%%DOCSDIR%%/html/api/qgraphicsscenedragdropevent.html +%%DOCSDIR%%/html/api/qgraphicssceneevent.html +%%DOCSDIR%%/html/api/qgraphicsscenehelpevent.html +%%DOCSDIR%%/html/api/qgraphicsscenehoverevent.html +%%DOCSDIR%%/html/api/qgraphicsscenemouseevent.html +%%DOCSDIR%%/html/api/qgraphicsscenemoveevent.html +%%DOCSDIR%%/html/api/qgraphicssceneresizeevent.html +%%DOCSDIR%%/html/api/qgraphicsscenewheelevent.html +%%DOCSDIR%%/html/api/qgraphicssimpletextitem.html +%%DOCSDIR%%/html/api/qgraphicssvgitem.html +%%DOCSDIR%%/html/api/qgraphicstextitem.html +%%DOCSDIR%%/html/api/qgraphicstransform.html +%%DOCSDIR%%/html/api/qgraphicsvideoitem.html +%%DOCSDIR%%/html/api/qgraphicsview.html +%%DOCSDIR%%/html/api/qgraphicswebview.html +%%DOCSDIR%%/html/api/qgraphicswidget.html +%%DOCSDIR%%/html/api/qgridlayout.html +%%DOCSDIR%%/html/api/qgroupbox.html +%%DOCSDIR%%/html/api/qguiapplication.html +%%DOCSDIR%%/html/api/qgyroscope.html +%%DOCSDIR%%/html/api/qgyroscopefilter.html +%%DOCSDIR%%/html/api/qgyroscopereading.html +%%DOCSDIR%%/html/api/qhboxlayout.html +%%DOCSDIR%%/html/api/qheaderview.html +%%DOCSDIR%%/html/api/qhelpcontentitem.html +%%DOCSDIR%%/html/api/qhelpcontentmodel.html +%%DOCSDIR%%/html/api/qhelpcontentwidget.html +%%DOCSDIR%%/html/api/qhelpengine.html +%%DOCSDIR%%/html/api/qhelpenginecore.html +%%DOCSDIR%%/html/api/qhelpevent.html +%%DOCSDIR%%/html/api/qhelpindexmodel.html +%%DOCSDIR%%/html/api/qhelpindexwidget.html +%%DOCSDIR%%/html/api/qhelpsearchengine.html +%%DOCSDIR%%/html/api/qhelpsearchquery.html +%%DOCSDIR%%/html/api/qhelpsearchquerywidget.html +%%DOCSDIR%%/html/api/qhelpsearchresultwidget.html +%%DOCSDIR%%/html/api/qhideevent.html +%%DOCSDIR%%/html/api/qhistorystate.html +%%DOCSDIR%%/html/api/qholsterfilter.html +%%DOCSDIR%%/html/api/qholsterreading.html +%%DOCSDIR%%/html/api/qholstersensor.html +%%DOCSDIR%%/html/api/qhostaddress.html +%%DOCSDIR%%/html/api/qhostinfo.html +%%DOCSDIR%%/html/api/qhoverevent.html +%%DOCSDIR%%/html/api/qhttpmultipart.html +%%DOCSDIR%%/html/api/qhttppart.html +%%DOCSDIR%%/html/api/qicon.html +%%DOCSDIR%%/html/api/qicondragevent.html +%%DOCSDIR%%/html/api/qiconengine.html +%%DOCSDIR%%/html/api/qidentityproxymodel.html +%%DOCSDIR%%/html/api/qimage.html +%%DOCSDIR%%/html/api/qimageencodersettings.html +%%DOCSDIR%%/html/api/qimageiohandler.html +%%DOCSDIR%%/html/api/qimagereader.html +%%DOCSDIR%%/html/api/qimagewriter.html +%%DOCSDIR%%/html/api/qinputdialog.html +%%DOCSDIR%%/html/api/qinputevent.html +%%DOCSDIR%%/html/api/qinputmethod.html +%%DOCSDIR%%/html/api/qinputmethodevent.html +%%DOCSDIR%%/html/api/qinputmethodqueryevent.html +%%DOCSDIR%%/html/api/qintvalidator.html +%%DOCSDIR%%/html/api/qiodevice.html +%%DOCSDIR%%/html/api/qirproximityfilter.html +%%DOCSDIR%%/html/api/qirproximityreading.html +%%DOCSDIR%%/html/api/qirproximitysensor.html +%%DOCSDIR%%/html/api/qitemdelegate.html +%%DOCSDIR%%/html/api/qitemeditorcreatorbase.html +%%DOCSDIR%%/html/api/qitemeditorfactory.html +%%DOCSDIR%%/html/api/qitemselection.html +%%DOCSDIR%%/html/api/qitemselectionmodel.html +%%DOCSDIR%%/html/api/qitemselectionrange.html +%%DOCSDIR%%/html/api/qjsengine.html +%%DOCSDIR%%/html/api/qjsonarray.html +%%DOCSDIR%%/html/api/qjsondocument.html +%%DOCSDIR%%/html/api/qjsonobject.html +%%DOCSDIR%%/html/api/qjsonparseerror.html +%%DOCSDIR%%/html/api/qjsonvalue.html +%%DOCSDIR%%/html/api/qjsvalue.html +%%DOCSDIR%%/html/api/qjsvalueiterator.html +%%DOCSDIR%%/html/api/qkeyevent.html +%%DOCSDIR%%/html/api/qkeyeventtransition.html +%%DOCSDIR%%/html/api/qkeysequence.html +%%DOCSDIR%%/html/api/qkeysequenceedit.html +%%DOCSDIR%%/html/api/qlabel.html +%%DOCSDIR%%/html/api/qlayout.html +%%DOCSDIR%%/html/api/qlayoutitem.html +%%DOCSDIR%%/html/api/qlcdnumber.html +%%DOCSDIR%%/html/api/qlibrary.html +%%DOCSDIR%%/html/api/qlibraryinfo.html +%%DOCSDIR%%/html/api/qlightfilter.html +%%DOCSDIR%%/html/api/qlightreading.html +%%DOCSDIR%%/html/api/qlightsensor.html +%%DOCSDIR%%/html/api/qline.html +%%DOCSDIR%%/html/api/qlineargradient.html +%%DOCSDIR%%/html/api/qlineedit.html +%%DOCSDIR%%/html/api/qlinef.html +%%DOCSDIR%%/html/api/qlistview.html +%%DOCSDIR%%/html/api/qlistwidget.html +%%DOCSDIR%%/html/api/qlistwidgetitem.html +%%DOCSDIR%%/html/api/qlocale.html +%%DOCSDIR%%/html/api/qlocalserver.html +%%DOCSDIR%%/html/api/qlocalsocket.html +%%DOCSDIR%%/html/api/qlocation.html +%%DOCSDIR%%/html/api/qlockfile.html +%%DOCSDIR%%/html/api/qlowenergycharacteristic.html +%%DOCSDIR%%/html/api/qlowenergycontroller.html +%%DOCSDIR%%/html/api/qlowenergydescriptor.html +%%DOCSDIR%%/html/api/qlowenergyservice.html +%%DOCSDIR%%/html/api/qmaccocoaviewcontainer.html +%%DOCSDIR%%/html/api/qmacpasteboardmime.html +%%DOCSDIR%%/html/api/qmactoolbar.html +%%DOCSDIR%%/html/api/qmactoolbaritem.html +%%DOCSDIR%%/html/api/qmagnetometer.html +%%DOCSDIR%%/html/api/qmagnetometerfilter.html +%%DOCSDIR%%/html/api/qmagnetometerreading.html +%%DOCSDIR%%/html/api/qmainwindow.html +%%DOCSDIR%%/html/api/qmargins.html +%%DOCSDIR%%/html/api/qmarginsf.html +%%DOCSDIR%%/html/api/qmaskgenerator.html +%%DOCSDIR%%/html/api/qmatrix2x2.html +%%DOCSDIR%%/html/api/qmatrix2x3.html +%%DOCSDIR%%/html/api/qmatrix2x4.html +%%DOCSDIR%%/html/api/qmatrix3x2.html +%%DOCSDIR%%/html/api/qmatrix3x3.html +%%DOCSDIR%%/html/api/qmatrix3x4.html +%%DOCSDIR%%/html/api/qmatrix4x2.html +%%DOCSDIR%%/html/api/qmatrix4x3.html +%%DOCSDIR%%/html/api/qmatrix4x4.html +%%DOCSDIR%%/html/api/qmdiarea.html +%%DOCSDIR%%/html/api/qmdisubwindow.html +%%DOCSDIR%%/html/api/qmediabindableinterface.html +%%DOCSDIR%%/html/api/qmediacontent.html +%%DOCSDIR%%/html/api/qmediacontrol.html +%%DOCSDIR%%/html/api/qmediametadata.html +%%DOCSDIR%%/html/api/qmediaobject.html +%%DOCSDIR%%/html/api/qmediaplayer.html +%%DOCSDIR%%/html/api/qmediaplaylist.html +%%DOCSDIR%%/html/api/qmediarecorder.html +%%DOCSDIR%%/html/api/qmediaresource.html +%%DOCSDIR%%/html/api/qmediaservice.html +%%DOCSDIR%%/html/api/qmediatimeinterval.html +%%DOCSDIR%%/html/api/qmediatimerange.html +%%DOCSDIR%%/html/api/qmenu.html +%%DOCSDIR%%/html/api/qmenubar.html +%%DOCSDIR%%/html/api/qmessageauthenticationcode.html +%%DOCSDIR%%/html/api/qmessagebox.html +%%DOCSDIR%%/html/api/qmessagelogcontext.html +%%DOCSDIR%%/html/api/qmessagelogger.html +%%DOCSDIR%%/html/api/qmetaclassinfo.html +%%DOCSDIR%%/html/api/qmetaenum.html +%%DOCSDIR%%/html/api/qmetamethod.html +%%DOCSDIR%%/html/api/qmetaobject.html +%%DOCSDIR%%/html/api/qmetaproperty.html +%%DOCSDIR%%/html/api/qmetatype.html +%%DOCSDIR%%/html/api/qmimedata.html +%%DOCSDIR%%/html/api/qmimedatabase.html +%%DOCSDIR%%/html/api/qmimetype.html +%%DOCSDIR%%/html/api/qmodelindex.html +%%DOCSDIR%%/html/api/qmouseevent.html +%%DOCSDIR%%/html/api/qmouseeventtransition.html +%%DOCSDIR%%/html/api/qmoveevent.html +%%DOCSDIR%%/html/api/qmovie.html +%%DOCSDIR%%/html/api/qmultimedia.html +%%DOCSDIR%%/html/api/qmutex.html +%%DOCSDIR%%/html/api/qmutexlocker.html +%%DOCSDIR%%/html/api/qndeffilter.html +%%DOCSDIR%%/html/api/qndefmessage.html +%%DOCSDIR%%/html/api/qndefnfciconrecord.html +%%DOCSDIR%%/html/api/qndefnfcsmartposterrecord.html +%%DOCSDIR%%/html/api/qndefnfctextrecord.html +%%DOCSDIR%%/html/api/qndefnfcurirecord.html +%%DOCSDIR%%/html/api/qndefrecord.html +%%DOCSDIR%%/html/api/qnearfieldmanager.html +%%DOCSDIR%%/html/api/qnearfieldsharemanager.html +%%DOCSDIR%%/html/api/qnearfieldsharetarget.html +%%DOCSDIR%%/html/api/qnearfieldtarget.html +%%DOCSDIR%%/html/api/qnetworkaccessmanager.html +%%DOCSDIR%%/html/api/qnetworkaddressentry.html +%%DOCSDIR%%/html/api/qnetworkcachemetadata.html +%%DOCSDIR%%/html/api/qnetworkconfiguration.html +%%DOCSDIR%%/html/api/qnetworkconfigurationmanager.html +%%DOCSDIR%%/html/api/qnetworkcookie.html +%%DOCSDIR%%/html/api/qnetworkcookiejar.html +%%DOCSDIR%%/html/api/qnetworkdiskcache.html +%%DOCSDIR%%/html/api/qnetworkinterface.html +%%DOCSDIR%%/html/api/qnetworkproxy.html +%%DOCSDIR%%/html/api/qnetworkproxyfactory.html +%%DOCSDIR%%/html/api/qnetworkproxyquery.html +%%DOCSDIR%%/html/api/qnetworkreply.html +%%DOCSDIR%%/html/api/qnetworkrequest.html +%%DOCSDIR%%/html/api/qnetworksession.html +%%DOCSDIR%%/html/api/qnmeapositioninfosource.html +%%DOCSDIR%%/html/api/qobject.html +%%DOCSDIR%%/html/api/qobjectcleanuphandler.html +%%DOCSDIR%%/html/api/qoffscreensurface.html +%%DOCSDIR%%/html/api/qopenglbuffer.html +%%DOCSDIR%%/html/api/qopenglcontext.html +%%DOCSDIR%%/html/api/qopenglcontextgroup.html +%%DOCSDIR%%/html/api/qopengldebuglogger.html +%%DOCSDIR%%/html/api/qopengldebugmessage.html +%%DOCSDIR%%/html/api/qopenglframebufferobject.html +%%DOCSDIR%%/html/api/qopenglframebufferobjectformat.html +%%DOCSDIR%%/html/api/qopenglpaintdevice.html +%%DOCSDIR%%/html/api/qopenglshader.html +%%DOCSDIR%%/html/api/qopenglshaderprogram.html +%%DOCSDIR%%/html/api/qopengltexture.html +%%DOCSDIR%%/html/api/qopengltimemonitor.html +%%DOCSDIR%%/html/api/qopengltimerquery.html +%%DOCSDIR%%/html/api/qopenglvertexarrayobject.html +%%DOCSDIR%%/html/api/qopenglwidget.html +%%DOCSDIR%%/html/api/qopenglwindow.html +%%DOCSDIR%%/html/api/qorientationfilter.html +%%DOCSDIR%%/html/api/qorientationreading.html +%%DOCSDIR%%/html/api/qorientationsensor.html +%%DOCSDIR%%/html/api/qpagedpaintdevice.html +%%DOCSDIR%%/html/api/qpagelayout.html +%%DOCSDIR%%/html/api/qpagesetupdialog.html +%%DOCSDIR%%/html/api/qpagesize.html +%%DOCSDIR%%/html/api/qpaintdevice.html +%%DOCSDIR%%/html/api/qpaintdevicewindow.html +%%DOCSDIR%%/html/api/qpaintengine.html +%%DOCSDIR%%/html/api/qpaintenginestate.html +%%DOCSDIR%%/html/api/qpainter.html +%%DOCSDIR%%/html/api/qpainterpath.html +%%DOCSDIR%%/html/api/qpainterpathstroker.html +%%DOCSDIR%%/html/api/qpaintevent.html +%%DOCSDIR%%/html/api/qpalette.html +%%DOCSDIR%%/html/api/qpangesture.html +%%DOCSDIR%%/html/api/qparallelanimationgroup.html +%%DOCSDIR%%/html/api/qpauseanimation.html +%%DOCSDIR%%/html/api/qpdfwriter.html +%%DOCSDIR%%/html/api/qpen.html +%%DOCSDIR%%/html/api/qpersistentmodelindex.html +%%DOCSDIR%%/html/api/qpicture.html +%%DOCSDIR%%/html/api/qpictureio.html +%%DOCSDIR%%/html/api/qpinchgesture.html +%%DOCSDIR%%/html/api/qpixelformat.html +%%DOCSDIR%%/html/api/qpixmap.html +%%DOCSDIR%%/html/api/qpixmapcache.html +%%DOCSDIR%%/html/api/qplace.html +%%DOCSDIR%%/html/api/qplaceattribute.html +%%DOCSDIR%%/html/api/qplacecategory.html +%%DOCSDIR%%/html/api/qplacecontactdetail.html +%%DOCSDIR%%/html/api/qplacecontent.html +%%DOCSDIR%%/html/api/qplacecontentreply.html +%%DOCSDIR%%/html/api/qplacecontentrequest.html +%%DOCSDIR%%/html/api/qplacedetailsreply.html +%%DOCSDIR%%/html/api/qplaceeditorial.html +%%DOCSDIR%%/html/api/qplaceicon.html +%%DOCSDIR%%/html/api/qplaceidreply.html +%%DOCSDIR%%/html/api/qplaceimage.html +%%DOCSDIR%%/html/api/qplacemanager.html +%%DOCSDIR%%/html/api/qplacemanagerengine.html +%%DOCSDIR%%/html/api/qplacematchreply.html +%%DOCSDIR%%/html/api/qplacematchrequest.html +%%DOCSDIR%%/html/api/qplaceproposedsearchresult.html +%%DOCSDIR%%/html/api/qplaceratings.html +%%DOCSDIR%%/html/api/qplacereply.html +%%DOCSDIR%%/html/api/qplaceresult.html +%%DOCSDIR%%/html/api/qplacereview.html +%%DOCSDIR%%/html/api/qplacesearchreply.html +%%DOCSDIR%%/html/api/qplacesearchrequest.html +%%DOCSDIR%%/html/api/qplacesearchresult.html +%%DOCSDIR%%/html/api/qplacesearchsuggestionreply.html +%%DOCSDIR%%/html/api/qplacesupplier.html +%%DOCSDIR%%/html/api/qplaceuser.html +%%DOCSDIR%%/html/api/qplaintextdocumentlayout.html +%%DOCSDIR%%/html/api/qplaintextedit.html +%%DOCSDIR%%/html/api/qpluginloader.html +%%DOCSDIR%%/html/api/qpoint.html +%%DOCSDIR%%/html/api/qpointf.html +%%DOCSDIR%%/html/api/qpolygon.html +%%DOCSDIR%%/html/api/qpolygonf.html +%%DOCSDIR%%/html/api/qpressurefilter.html +%%DOCSDIR%%/html/api/qpressurereading.html +%%DOCSDIR%%/html/api/qpressuresensor.html +%%DOCSDIR%%/html/api/qprintdialog.html +%%DOCSDIR%%/html/api/qprintengine.html +%%DOCSDIR%%/html/api/qprinter.html +%%DOCSDIR%%/html/api/qprinterinfo.html +%%DOCSDIR%%/html/api/qprintpreviewdialog.html +%%DOCSDIR%%/html/api/qprintpreviewwidget.html +%%DOCSDIR%%/html/api/qprocess.html +%%DOCSDIR%%/html/api/qprocessenvironment.html +%%DOCSDIR%%/html/api/qprogressbar.html +%%DOCSDIR%%/html/api/qprogressdialog.html +%%DOCSDIR%%/html/api/qpropertyanimation.html +%%DOCSDIR%%/html/api/qproximityfilter.html +%%DOCSDIR%%/html/api/qproximityreading.html +%%DOCSDIR%%/html/api/qproximitysensor.html +%%DOCSDIR%%/html/api/qproxystyle.html +%%DOCSDIR%%/html/api/qpushbutton.html +%%DOCSDIR%%/html/api/qqmlabstracturlinterceptor.html +%%DOCSDIR%%/html/api/qqmlapplicationengine.html +%%DOCSDIR%%/html/api/qqmlcomponent.html +%%DOCSDIR%%/html/api/qqmlcontext.html +%%DOCSDIR%%/html/api/qqmlengine.html +%%DOCSDIR%%/html/api/qqmlerror.html +%%DOCSDIR%%/html/api/qqmlexpression.html +%%DOCSDIR%%/html/api/qqmlextensionplugin.html +%%DOCSDIR%%/html/api/qqmlfileselector.html +%%DOCSDIR%%/html/api/qqmlimageproviderbase.html +%%DOCSDIR%%/html/api/qqmlincubator.html +%%DOCSDIR%%/html/api/qqmlincubatorcontrol.html +%%DOCSDIR%%/html/api/qqmllistproperty.html +%%DOCSDIR%%/html/api/qqmllistreference.html +%%DOCSDIR%%/html/api/qqmlndefrecord.html +%%DOCSDIR%%/html/api/qqmlnetworkaccessmanagerfactory.html +%%DOCSDIR%%/html/api/qqmlparserstatus.html +%%DOCSDIR%%/html/api/qqmlproperty.html +%%DOCSDIR%%/html/api/qqmlpropertymap.html +%%DOCSDIR%%/html/api/qqmlpropertyvaluesource.html +%%DOCSDIR%%/html/api/qqmlscriptstring.html +%%DOCSDIR%%/html/api/qquaternion.html +%%DOCSDIR%%/html/api/qquickframebufferobject.html +%%DOCSDIR%%/html/api/qquickimageprovider.html +%%DOCSDIR%%/html/api/qquickitem.html +%%DOCSDIR%%/html/api/qquickitemgrabresult.html +%%DOCSDIR%%/html/api/qquickpainteditem.html +%%DOCSDIR%%/html/api/qquickrendercontrol.html +%%DOCSDIR%%/html/api/qquicktextdocument.html +%%DOCSDIR%%/html/api/qquicktexturefactory.html +%%DOCSDIR%%/html/api/qquickview.html +%%DOCSDIR%%/html/api/qquickwidget.html +%%DOCSDIR%%/html/api/qquickwindow.html +%%DOCSDIR%%/html/api/qradialgradient.html +%%DOCSDIR%%/html/api/qradiobutton.html +%%DOCSDIR%%/html/api/qradiodata.html +%%DOCSDIR%%/html/api/qradiotuner.html +%%DOCSDIR%%/html/api/qrasterwindow.html +%%DOCSDIR%%/html/api/qrawfont.html +%%DOCSDIR%%/html/api/qreadlocker.html +%%DOCSDIR%%/html/api/qreadwritelock.html +%%DOCSDIR%%/html/api/qrect.html +%%DOCSDIR%%/html/api/qrectf.html +%%DOCSDIR%%/html/api/qregexp.html +%%DOCSDIR%%/html/api/qregexpvalidator.html +%%DOCSDIR%%/html/api/qregion.html +%%DOCSDIR%%/html/api/qregularexpression.html +%%DOCSDIR%%/html/api/qregularexpressionmatch.html +%%DOCSDIR%%/html/api/qregularexpressionmatchiterator.html +%%DOCSDIR%%/html/api/qregularexpressionvalidator.html +%%DOCSDIR%%/html/api/qresizeevent.html +%%DOCSDIR%%/html/api/qresource.html +%%DOCSDIR%%/html/api/qrotationfilter.html +%%DOCSDIR%%/html/api/qrotationreading.html +%%DOCSDIR%%/html/api/qrotationsensor.html +%%DOCSDIR%%/html/api/qrubberband.html +%%DOCSDIR%%/html/api/qrunnable.html +%%DOCSDIR%%/html/api/qsavefile.html +%%DOCSDIR%%/html/api/qscreen.html +%%DOCSDIR%%/html/api/qscrollarea.html +%%DOCSDIR%%/html/api/qscrollbar.html +%%DOCSDIR%%/html/api/qscroller.html +%%DOCSDIR%%/html/api/qscrollerproperties.html +%%DOCSDIR%%/html/api/qscrollevent.html +%%DOCSDIR%%/html/api/qscrollprepareevent.html +%%DOCSDIR%%/html/api/qsemaphore.html +%%DOCSDIR%%/html/api/qsensor.html +%%DOCSDIR%%/html/api/qsensorfilter.html +%%DOCSDIR%%/html/api/qsensorreading.html +%%DOCSDIR%%/html/api/qsequentialanimationgroup.html +%%DOCSDIR%%/html/api/qserialport.html +%%DOCSDIR%%/html/api/qserialportinfo.html +%%DOCSDIR%%/html/api/qsessionmanager.html +%%DOCSDIR%%/html/api/qsettings.html +%%DOCSDIR%%/html/api/qsgabstractrenderer.html +%%DOCSDIR%%/html/api/qsgbasicgeometrynode.html +%%DOCSDIR%%/html/api/qsgclipnode.html +%%DOCSDIR%%/html/api/qsgdynamictexture.html +%%DOCSDIR%%/html/api/qsgengine.html +%%DOCSDIR%%/html/api/qsgflatcolormaterial.html +%%DOCSDIR%%/html/api/qsggeometry.html +%%DOCSDIR%%/html/api/qsggeometrynode.html +%%DOCSDIR%%/html/api/qsgmaterial.html +%%DOCSDIR%%/html/api/qsgmaterialshader.html +%%DOCSDIR%%/html/api/qsgmaterialtype.html +%%DOCSDIR%%/html/api/qsgnode.html +%%DOCSDIR%%/html/api/qsgopacitynode.html +%%DOCSDIR%%/html/api/qsgopaquetexturematerial.html +%%DOCSDIR%%/html/api/qsgsimplerectnode.html +%%DOCSDIR%%/html/api/qsgsimpletexturenode.html +%%DOCSDIR%%/html/api/qsgtexture.html +%%DOCSDIR%%/html/api/qsgtexturematerial.html +%%DOCSDIR%%/html/api/qsgtextureprovider.html +%%DOCSDIR%%/html/api/qsgtransformnode.html +%%DOCSDIR%%/html/api/qsgvertexcolormaterial.html +%%DOCSDIR%%/html/api/qsharedmemory.html +%%DOCSDIR%%/html/api/qshortcut.html +%%DOCSDIR%%/html/api/qshortcutevent.html +%%DOCSDIR%%/html/api/qshowevent.html +%%DOCSDIR%%/html/api/qsignalblocker.html +%%DOCSDIR%%/html/api/qsignalmapper.html +%%DOCSDIR%%/html/api/qsignalspy.html +%%DOCSDIR%%/html/api/qsignaltransition.html +%%DOCSDIR%%/html/api/qsimplexmlnodemodel.html +%%DOCSDIR%%/html/api/qsize.html +%%DOCSDIR%%/html/api/qsizef.html +%%DOCSDIR%%/html/api/qsizegrip.html +%%DOCSDIR%%/html/api/qsizepolicy.html +%%DOCSDIR%%/html/api/qslider.html +%%DOCSDIR%%/html/api/qsocketnotifier.html +%%DOCSDIR%%/html/api/qsortfilterproxymodel.html +%%DOCSDIR%%/html/api/qsound.html +%%DOCSDIR%%/html/api/qsoundeffect.html +%%DOCSDIR%%/html/api/qsourcelocation.html +%%DOCSDIR%%/html/api/qspaceritem.html +%%DOCSDIR%%/html/api/qspinbox.html +%%DOCSDIR%%/html/api/qsplashscreen.html +%%DOCSDIR%%/html/api/qsplitter.html +%%DOCSDIR%%/html/api/qsplitterhandle.html +%%DOCSDIR%%/html/api/qsql.html +%%DOCSDIR%%/html/api/qsqldatabase.html +%%DOCSDIR%%/html/api/qsqldriver.html +%%DOCSDIR%%/html/api/qsqldrivercreatorbase.html +%%DOCSDIR%%/html/api/qsqlerror.html +%%DOCSDIR%%/html/api/qsqlfield.html +%%DOCSDIR%%/html/api/qsqlindex.html +%%DOCSDIR%%/html/api/qsqlquery.html +%%DOCSDIR%%/html/api/qsqlquerymodel.html +%%DOCSDIR%%/html/api/qsqlrecord.html +%%DOCSDIR%%/html/api/qsqlrelation.html +%%DOCSDIR%%/html/api/qsqlrelationaldelegate.html +%%DOCSDIR%%/html/api/qsqlrelationaltablemodel.html +%%DOCSDIR%%/html/api/qsqlresult.html +%%DOCSDIR%%/html/api/qsqltablemodel.html +%%DOCSDIR%%/html/api/qssl.html +%%DOCSDIR%%/html/api/qsslcertificate.html +%%DOCSDIR%%/html/api/qsslcertificateextension.html +%%DOCSDIR%%/html/api/qsslcipher.html +%%DOCSDIR%%/html/api/qsslconfiguration.html +%%DOCSDIR%%/html/api/qsslerror.html +%%DOCSDIR%%/html/api/qsslkey.html +%%DOCSDIR%%/html/api/qsslsocket.html +%%DOCSDIR%%/html/api/qstackedlayout.html +%%DOCSDIR%%/html/api/qstackedwidget.html +%%DOCSDIR%%/html/api/qstandarditem.html +%%DOCSDIR%%/html/api/qstandarditemmodel.html +%%DOCSDIR%%/html/api/qstandardpaths.html +%%DOCSDIR%%/html/api/qstate.html +%%DOCSDIR%%/html/api/qstatemachine.html +%%DOCSDIR%%/html/api/qstatictext.html +%%DOCSDIR%%/html/api/qstatusbar.html +%%DOCSDIR%%/html/api/qstatustipevent.html +%%DOCSDIR%%/html/api/qstorageinfo.html +%%DOCSDIR%%/html/api/qstringlistmodel.html +%%DOCSDIR%%/html/api/qstyle.html +%%DOCSDIR%%/html/api/qstyleditemdelegate.html +%%DOCSDIR%%/html/api/qstylefactory.html +%%DOCSDIR%%/html/api/qstylehintreturn.html +%%DOCSDIR%%/html/api/qstylehintreturnmask.html +%%DOCSDIR%%/html/api/qstylehintreturnvariant.html +%%DOCSDIR%%/html/api/qstylehints.html +%%DOCSDIR%%/html/api/qstyleoption.html +%%DOCSDIR%%/html/api/qstyleoptionbutton.html +%%DOCSDIR%%/html/api/qstyleoptioncombobox.html +%%DOCSDIR%%/html/api/qstyleoptioncomplex.html +%%DOCSDIR%%/html/api/qstyleoptiondockwidget.html +%%DOCSDIR%%/html/api/qstyleoptionfocusrect.html +%%DOCSDIR%%/html/api/qstyleoptionframe.html +%%DOCSDIR%%/html/api/qstyleoptiongraphicsitem.html +%%DOCSDIR%%/html/api/qstyleoptiongroupbox.html +%%DOCSDIR%%/html/api/qstyleoptionheader.html +%%DOCSDIR%%/html/api/qstyleoptionmenuitem.html +%%DOCSDIR%%/html/api/qstyleoptionprogressbar.html +%%DOCSDIR%%/html/api/qstyleoptionrubberband.html +%%DOCSDIR%%/html/api/qstyleoptionsizegrip.html +%%DOCSDIR%%/html/api/qstyleoptionslider.html +%%DOCSDIR%%/html/api/qstyleoptionspinbox.html +%%DOCSDIR%%/html/api/qstyleoptiontab.html +%%DOCSDIR%%/html/api/qstyleoptiontabbarbase.html +%%DOCSDIR%%/html/api/qstyleoptiontabwidgetframe.html +%%DOCSDIR%%/html/api/qstyleoptiontitlebar.html +%%DOCSDIR%%/html/api/qstyleoptiontoolbar.html +%%DOCSDIR%%/html/api/qstyleoptiontoolbox.html +%%DOCSDIR%%/html/api/qstyleoptiontoolbutton.html +%%DOCSDIR%%/html/api/qstyleoptionviewitem.html +%%DOCSDIR%%/html/api/qstylepainter.html +%%DOCSDIR%%/html/api/qsurface.html +%%DOCSDIR%%/html/api/qsurfaceformat.html +%%DOCSDIR%%/html/api/qsvggenerator.html +%%DOCSDIR%%/html/api/qsvgrenderer.html +%%DOCSDIR%%/html/api/qsvgwidget.html +%%DOCSDIR%%/html/api/qswipegesture.html +%%DOCSDIR%%/html/api/qsyntaxhighlighter.html +%%DOCSDIR%%/html/api/qsysinfo.html +%%DOCSDIR%%/html/api/qsystemsemaphore.html +%%DOCSDIR%%/html/api/qsystemtrayicon.html +%%DOCSDIR%%/html/api/qt.html +%%DOCSDIR%%/html/api/qtabbar.html +%%DOCSDIR%%/html/api/qtabletevent.html +%%DOCSDIR%%/html/api/qtableview.html +%%DOCSDIR%%/html/api/qtablewidget.html +%%DOCSDIR%%/html/api/qtablewidgetitem.html +%%DOCSDIR%%/html/api/qtablewidgetselectionrange.html +%%DOCSDIR%%/html/api/qtabwidget.html +%%DOCSDIR%%/html/api/qtapandholdgesture.html +%%DOCSDIR%%/html/api/qtapfilter.html +%%DOCSDIR%%/html/api/qtapgesture.html +%%DOCSDIR%%/html/api/qtapreading.html +%%DOCSDIR%%/html/api/qtapsensor.html +%%DOCSDIR%%/html/api/qtcpserver.html +%%DOCSDIR%%/html/api/qtcpsocket.html +%%DOCSDIR%%/html/api/qtemporarydir.html +%%DOCSDIR%%/html/api/qtemporaryfile.html +%%DOCSDIR%%/html/api/qtest.html +%%DOCSDIR%%/html/api/qtextblock.html +%%DOCSDIR%%/html/api/qtextblockformat.html +%%DOCSDIR%%/html/api/qtextblockgroup.html +%%DOCSDIR%%/html/api/qtextblockuserdata.html +%%DOCSDIR%%/html/api/qtextboundaryfinder.html +%%DOCSDIR%%/html/api/qtextbrowser.html +%%DOCSDIR%%/html/api/qtextcharformat.html +%%DOCSDIR%%/html/api/qtextcodec.html +%%DOCSDIR%%/html/api/qtextcursor.html +%%DOCSDIR%%/html/api/qtextdecoder.html +%%DOCSDIR%%/html/api/qtextdocument.html +%%DOCSDIR%%/html/api/qtextdocumentfragment.html +%%DOCSDIR%%/html/api/qtextdocumentwriter.html +%%DOCSDIR%%/html/api/qtextedit.html +%%DOCSDIR%%/html/api/qtextencoder.html +%%DOCSDIR%%/html/api/qtextformat.html +%%DOCSDIR%%/html/api/qtextfragment.html +%%DOCSDIR%%/html/api/qtextframe.html +%%DOCSDIR%%/html/api/qtextframeformat.html +%%DOCSDIR%%/html/api/qtextimageformat.html +%%DOCSDIR%%/html/api/qtextinlineobject.html +%%DOCSDIR%%/html/api/qtextitem.html +%%DOCSDIR%%/html/api/qtextlayout.html +%%DOCSDIR%%/html/api/qtextlength.html +%%DOCSDIR%%/html/api/qtextline.html +%%DOCSDIR%%/html/api/qtextlist.html +%%DOCSDIR%%/html/api/qtextlistformat.html +%%DOCSDIR%%/html/api/qtextobject.html +%%DOCSDIR%%/html/api/qtextobjectinterface.html +%%DOCSDIR%%/html/api/qtextoption.html +%%DOCSDIR%%/html/api/qtextstream.html +%%DOCSDIR%%/html/api/qtextstreammanipulator.html +%%DOCSDIR%%/html/api/qtexttable.html +%%DOCSDIR%%/html/api/qtexttablecell.html +%%DOCSDIR%%/html/api/qtexttablecellformat.html +%%DOCSDIR%%/html/api/qtexttableformat.html +%%DOCSDIR%%/html/api/qthread.html +%%DOCSDIR%%/html/api/qthreadpool.html +%%DOCSDIR%%/html/api/qtiltfilter.html +%%DOCSDIR%%/html/api/qtiltreading.html +%%DOCSDIR%%/html/api/qtiltsensor.html +%%DOCSDIR%%/html/api/qtime.html +%%DOCSDIR%%/html/api/qtimeedit.html +%%DOCSDIR%%/html/api/qtimeline.html +%%DOCSDIR%%/html/api/qtimer.html +%%DOCSDIR%%/html/api/qtimerevent.html +%%DOCSDIR%%/html/api/qtimezone.html +%%DOCSDIR%%/html/api/qtoolbar.html +%%DOCSDIR%%/html/api/qtoolbox.html +%%DOCSDIR%%/html/api/qtoolbutton.html +%%DOCSDIR%%/html/api/qtooltip.html +%%DOCSDIR%%/html/api/qtouchdevice.html +%%DOCSDIR%%/html/api/qtouchevent.html +%%DOCSDIR%%/html/api/qtransform.html +%%DOCSDIR%%/html/api/qtranslator.html +%%DOCSDIR%%/html/api/qtreeview.html +%%DOCSDIR%%/html/api/qtreewidget.html +%%DOCSDIR%%/html/api/qtreewidgetitem.html +%%DOCSDIR%%/html/api/qtreewidgetitemiterator.html +%%DOCSDIR%%/html/api/qtwin.html +%%DOCSDIR%%/html/api/qudpsocket.html +%%DOCSDIR%%/html/api/qundocommand.html +%%DOCSDIR%%/html/api/qundogroup.html +%%DOCSDIR%%/html/api/qundostack.html +%%DOCSDIR%%/html/api/qundoview.html +%%DOCSDIR%%/html/api/qurl.html +%%DOCSDIR%%/html/api/qurlquery.html +%%DOCSDIR%%/html/api/quuid.html +%%DOCSDIR%%/html/api/qvalidator.html +%%DOCSDIR%%/html/api/qvariant.html +%%DOCSDIR%%/html/api/qvariantanimation.html +%%DOCSDIR%%/html/api/qvboxlayout.html +%%DOCSDIR%%/html/api/qvector2d.html +%%DOCSDIR%%/html/api/qvector3d.html +%%DOCSDIR%%/html/api/qvector4d.html +%%DOCSDIR%%/html/api/qvideoencodersettings.html +%%DOCSDIR%%/html/api/qvideoframe.html +%%DOCSDIR%%/html/api/qvideoprobe.html +%%DOCSDIR%%/html/api/qvideosurfaceformat.html +%%DOCSDIR%%/html/api/qvideowidget.html +%%DOCSDIR%%/html/api/qwaitcondition.html +%%DOCSDIR%%/html/api/qwebchannel.html +%%DOCSDIR%%/html/api/qwebchannelabstracttransport.html +%%DOCSDIR%%/html/api/qwebdatabase.html +%%DOCSDIR%%/html/api/qwebelement.html +%%DOCSDIR%%/html/api/qwebelementcollection.html +%%DOCSDIR%%/html/api/qwebenginecertificateerror.html +%%DOCSDIR%%/html/api/qwebenginedownloaditem.html +%%DOCSDIR%%/html/api/qwebenginehistory.html +%%DOCSDIR%%/html/api/qwebenginehistoryitem.html +%%DOCSDIR%%/html/api/qwebenginepage.html +%%DOCSDIR%%/html/api/qwebengineprofile.html +%%DOCSDIR%%/html/api/qwebenginescript.html +%%DOCSDIR%%/html/api/qwebenginescriptcollection.html +%%DOCSDIR%%/html/api/qwebenginesettings.html +%%DOCSDIR%%/html/api/qwebengineview.html +%%DOCSDIR%%/html/api/qwebframe.html +%%DOCSDIR%%/html/api/qwebhistory.html +%%DOCSDIR%%/html/api/qwebhistoryinterface.html +%%DOCSDIR%%/html/api/qwebhistoryitem.html +%%DOCSDIR%%/html/api/qwebhittestresult.html +%%DOCSDIR%%/html/api/qwebinspector.html +%%DOCSDIR%%/html/api/qwebpage.html +%%DOCSDIR%%/html/api/qwebpluginfactory.html +%%DOCSDIR%%/html/api/qwebsecurityorigin.html +%%DOCSDIR%%/html/api/qwebsettings.html +%%DOCSDIR%%/html/api/qwebsocket.html +%%DOCSDIR%%/html/api/qwebsocketcorsauthenticator.html +%%DOCSDIR%%/html/api/qwebsocketprotocol.html +%%DOCSDIR%%/html/api/qwebsocketserver.html +%%DOCSDIR%%/html/api/qwebview.html +%%DOCSDIR%%/html/api/qwhatsthis.html +%%DOCSDIR%%/html/api/qwhatsthisclickedevent.html +%%DOCSDIR%%/html/api/qwheelevent.html +%%DOCSDIR%%/html/api/qwidget.html +%%DOCSDIR%%/html/api/qwidgetaction.html +%%DOCSDIR%%/html/api/qwidgetitem.html +%%DOCSDIR%%/html/api/qwindow.html +%%DOCSDIR%%/html/api/qwindowstatechangeevent.html +%%DOCSDIR%%/html/api/qwinjumplist.html +%%DOCSDIR%%/html/api/qwinjumplistcategory.html +%%DOCSDIR%%/html/api/qwinjumplistitem.html +%%DOCSDIR%%/html/api/qwintaskbarbutton.html +%%DOCSDIR%%/html/api/qwintaskbarprogress.html +%%DOCSDIR%%/html/api/qwinthumbnailtoolbar.html +%%DOCSDIR%%/html/api/qwinthumbnailtoolbutton.html +%%DOCSDIR%%/html/api/qwizard.html +%%DOCSDIR%%/html/api/qwizardpage.html +%%DOCSDIR%%/html/api/qwritelocker.html +%%DOCSDIR%%/html/api/qx11info.html +%%DOCSDIR%%/html/api/qxmlattributes.html +%%DOCSDIR%%/html/api/qxmlcontenthandler.html +%%DOCSDIR%%/html/api/qxmldeclhandler.html +%%DOCSDIR%%/html/api/qxmldefaulthandler.html +%%DOCSDIR%%/html/api/qxmldtdhandler.html +%%DOCSDIR%%/html/api/qxmlentityresolver.html +%%DOCSDIR%%/html/api/qxmlerrorhandler.html +%%DOCSDIR%%/html/api/qxmlformatter.html +%%DOCSDIR%%/html/api/qxmlinputsource.html +%%DOCSDIR%%/html/api/qxmlitem.html +%%DOCSDIR%%/html/api/qxmllexicalhandler.html +%%DOCSDIR%%/html/api/qxmllocator.html +%%DOCSDIR%%/html/api/qxmlname.html +%%DOCSDIR%%/html/api/qxmlnamepool.html +%%DOCSDIR%%/html/api/qxmlnamespacesupport.html +%%DOCSDIR%%/html/api/qxmlnodemodelindex.html +%%DOCSDIR%%/html/api/qxmlparseexception.html +%%DOCSDIR%%/html/api/qxmlquery.html +%%DOCSDIR%%/html/api/qxmlreader.html +%%DOCSDIR%%/html/api/qxmlresultitems.html +%%DOCSDIR%%/html/api/qxmlschema.html +%%DOCSDIR%%/html/api/qxmlschemavalidator.html +%%DOCSDIR%%/html/api/qxmlserializer.html +%%DOCSDIR%%/html/api/qxmlsimplereader.html +%%DOCSDIR%%/html/api/qxmlstreamattribute.html +%%DOCSDIR%%/html/api/qxmlstreamattributes.html +%%DOCSDIR%%/html/api/qxmlstreamentitydeclaration.html +%%DOCSDIR%%/html/api/qxmlstreamentityresolver.html +%%DOCSDIR%%/html/api/qxmlstreamnamespacedeclaration.html +%%DOCSDIR%%/html/api/qxmlstreamnotationdeclaration.html +%%DOCSDIR%%/html/api/qxmlstreamreader.html +%%DOCSDIR%%/html/api/qxmlstreamwriter.html +%%DOCSDIR%%/html/class_reference.html +%%DOCSDIR%%/html/dbus.html +%%DOCSDIR%%/html/deploy_commercial.html +%%DOCSDIR%%/html/deprecations.html +%%DOCSDIR%%/html/designer.html +%%DOCSDIR%%/html/extension_api.html +%%DOCSDIR%%/html/genindex.html +%%DOCSDIR%%/html/gotchas.html +%%DOCSDIR%%/html/i18n.html +%%DOCSDIR%%/html/incompatibilities.html +%%DOCSDIR%%/html/index.html +%%DOCSDIR%%/html/installation.html +%%DOCSDIR%%/html/introduction.html +%%DOCSDIR%%/html/metaobjects.html +%%DOCSDIR%%/html/multiinheritance.html +%%DOCSDIR%%/html/objects.inv +%%DOCSDIR%%/html/opengl.html +%%DOCSDIR%%/html/pickle.html +%%DOCSDIR%%/html/platforms.html +%%DOCSDIR%%/html/py-modindex.html +%%DOCSDIR%%/html/pyqt4_differences.html +%%DOCSDIR%%/html/pyqt_qsettings.html +%%DOCSDIR%%/html/pyqt_qvariant.html +%%DOCSDIR%%/html/python_shell.html +%%DOCSDIR%%/html/qml.html +%%DOCSDIR%%/html/qt_interfaces.html +%%DOCSDIR%%/html/qt_properties.html +%%DOCSDIR%%/html/resources.html +%%DOCSDIR%%/html/search.html +%%DOCSDIR%%/html/searchindex.js +%%DOCSDIR%%/html/signals_slots.html Index: multimedia/Makefile =================================================================== --- multimedia/Makefile +++ multimedia/Makefile @@ -318,6 +318,7 @@ SUBDIR += py-periscope SUBDIR += py-qt4-multimedia SUBDIR += py-qt4-phonon + SUBDIR += py-qt5-multimedia SUBDIR += py-soco SUBDIR += py-subliminal SUBDIR += py-tvnamer Index: multimedia/py-qt4-multimedia/Makefile =================================================================== --- multimedia/py-qt4-multimedia/Makefile +++ multimedia/py-qt4-multimedia/Makefile @@ -2,16 +2,18 @@ # $FreeBSD$ PORTNAME= multimedia +PORTVERSION= ${PYQT4_VERSION} CATEGORIES= multimedia devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt4 toolkit, Multimedia module -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip -RUN_DEPENDS= ${PKGNAMEPREFIX}gui>=${PYQT4_VERSION}:${PORTSDIR}/x11-toolkits/py-qt4-gui +CONFIGURE_ARGS= --enable QtMultimedia +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes -CONFIGURE_ARGS= --enable QtMultimedia -PYQT4_DIST= yes +USES= python pyqt:4 +USE_PYQT= sip_build gui_run USE_QT4= moc_build multimedia qmake_build OPTIONS_DEFINE= API DEBUG @@ -21,8 +23,7 @@ API_DESC= Install QtMultimedia API for QScintilla2 API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} API_CONFIGURE_OFF= --no-qsci-api -API_LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 +API_LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 DEBUG_CONFIGURE_ON= --debug --trace -.include "${.CURDIR}/../../devel/py-qt4/bsd.pyqt.mk" .include Index: multimedia/py-qt4-multimedia/pkg-plist =================================================================== --- multimedia/py-qt4-multimedia/pkg-plist +++ multimedia/py-qt4-multimedia/pkg-plist @@ -1,12 +1,12 @@ %%PYTHON_SITELIBDIR%%/PyQt4/QtMultimedia.so -share/py-sip/QtMultimedia/QtMultimediamod.sip -share/py-sip/QtMultimedia/qabstractvideobuffer.sip -share/py-sip/QtMultimedia/qabstractvideosurface.sip -share/py-sip/QtMultimedia/qaudio.sip -share/py-sip/QtMultimedia/qaudiodeviceinfo.sip -share/py-sip/QtMultimedia/qaudioformat.sip -share/py-sip/QtMultimedia/qaudioinput.sip -share/py-sip/QtMultimedia/qaudiooutput.sip -share/py-sip/QtMultimedia/qvideoframe.sip -share/py-sip/QtMultimedia/qvideosurfaceformat.sip +%%PYQT_SIPDIR%%/QtMultimedia/QtMultimediamod.sip +%%PYQT_SIPDIR%%/QtMultimedia/qabstractvideobuffer.sip +%%PYQT_SIPDIR%%/QtMultimedia/qabstractvideosurface.sip +%%PYQT_SIPDIR%%/QtMultimedia/qaudio.sip +%%PYQT_SIPDIR%%/QtMultimedia/qaudiodeviceinfo.sip +%%PYQT_SIPDIR%%/QtMultimedia/qaudioformat.sip +%%PYQT_SIPDIR%%/QtMultimedia/qaudioinput.sip +%%PYQT_SIPDIR%%/QtMultimedia/qaudiooutput.sip +%%PYQT_SIPDIR%%/QtMultimedia/qvideoframe.sip +%%PYQT_SIPDIR%%/QtMultimedia/qvideosurfaceformat.sip %%API%%share/qt4/qsci/api/python/QtMultimedia.api Index: multimedia/py-qt4-phonon/Makefile =================================================================== --- multimedia/py-qt4-phonon/Makefile +++ multimedia/py-qt4-phonon/Makefile @@ -1,16 +1,18 @@ # $FreeBSD$ PORTNAME= phonon +PORTVERSION= ${PYQT4_VERSION} CATEGORIES= multimedia devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt4 toolkit, Phonon module -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip -RUN_DEPENDS= ${PKGNAMEPREFIX}core>=${PYQT4_VERSION}:${PORTSDIR}/devel/py-qt4-core +CONFIGURE_ARGS= --enable phonon +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes -CONFIGURE_ARGS= --enable phonon -PYQT4_DIST= yes +USES= python pyqt:4 +USE_PYQT= sip_build core_run USE_QT4= moc_build phonon qmake_build OPTIONS_DEFINE= API DEBUG @@ -20,8 +22,7 @@ API_DESC= Install Phonon API for QScintilla2 API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} API_CONFIGURE_OFF= --no-qsci-api -API_LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 +API_LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 DEBUG_CONFIGURE_ON= --debug --trace -.include "${.CURDIR}/../../devel/py-qt4/bsd.pyqt.mk" .include Index: multimedia/py-qt4-phonon/pkg-plist =================================================================== --- multimedia/py-qt4-phonon/pkg-plist +++ multimedia/py-qt4-phonon/pkg-plist @@ -1,21 +1,21 @@ %%PYTHON_SITELIBDIR%%/PyQt4/phonon.so -share/py-sip/phonon/abstractaudiooutput.sip -share/py-sip/phonon/abstractvideooutput.sip -share/py-sip/phonon/audiooutput.sip -share/py-sip/phonon/backendcapabilities.sip -share/py-sip/phonon/effect.sip -share/py-sip/phonon/effectparameter.sip -share/py-sip/phonon/effectwidget.sip -share/py-sip/phonon/mediacontroller.sip -share/py-sip/phonon/medianode.sip -share/py-sip/phonon/mediaobject.sip -share/py-sip/phonon/mediasource.sip -share/py-sip/phonon/objectdescription.sip -share/py-sip/phonon/path.sip -share/py-sip/phonon/phononmod.sip -share/py-sip/phonon/phononnamespace.sip -share/py-sip/phonon/seekslider.sip -share/py-sip/phonon/videoplayer.sip -share/py-sip/phonon/videowidget.sip -share/py-sip/phonon/volumeslider.sip +%%PYQT_SIPDIR%%/phonon/abstractaudiooutput.sip +%%PYQT_SIPDIR%%/phonon/abstractvideooutput.sip +%%PYQT_SIPDIR%%/phonon/audiooutput.sip +%%PYQT_SIPDIR%%/phonon/backendcapabilities.sip +%%PYQT_SIPDIR%%/phonon/effect.sip +%%PYQT_SIPDIR%%/phonon/effectparameter.sip +%%PYQT_SIPDIR%%/phonon/effectwidget.sip +%%PYQT_SIPDIR%%/phonon/mediacontroller.sip +%%PYQT_SIPDIR%%/phonon/medianode.sip +%%PYQT_SIPDIR%%/phonon/mediaobject.sip +%%PYQT_SIPDIR%%/phonon/mediasource.sip +%%PYQT_SIPDIR%%/phonon/objectdescription.sip +%%PYQT_SIPDIR%%/phonon/path.sip +%%PYQT_SIPDIR%%/phonon/phononmod.sip +%%PYQT_SIPDIR%%/phonon/phononnamespace.sip +%%PYQT_SIPDIR%%/phonon/seekslider.sip +%%PYQT_SIPDIR%%/phonon/videoplayer.sip +%%PYQT_SIPDIR%%/phonon/videowidget.sip +%%PYQT_SIPDIR%%/phonon/volumeslider.sip %%API%%share/qt4/qsci/api/python/phonon.api Index: multimedia/py-qt5-multimedia/Makefile =================================================================== --- multimedia/py-qt5-multimedia/Makefile +++ multimedia/py-qt5-multimedia/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= multimedia +CATEGORIES= multimedia devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, Multimedia module + +CONFIGURE_ARGS= --enable QtMultimedia --enable QtMultimediaWidgets +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes + +USES= python pyqt:5 qmake +USE_PYQT= sip_build gui_run +USE_QT5= multimedia + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtMultimedia API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include Index: multimedia/py-qt5-multimedia/pkg-descr =================================================================== --- multimedia/py-qt5-multimedia/pkg-descr +++ multimedia/py-qt5-multimedia/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtMultimedia module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ Index: multimedia/py-qt5-multimedia/pkg-plist =================================================================== --- multimedia/py-qt5-multimedia/pkg-plist +++ multimedia/py-qt5-multimedia/pkg-plist @@ -0,0 +1,48 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtMultimedia.so +%%PYTHON_SITELIBDIR%%/PyQt5/QtMultimediaWidgets.so +%%PYQT_SIPDIR%%/QtMultimedia/QtMultimediamod.sip +%%PYQT_SIPDIR%%/QtMultimedia/qabstractvideobuffer.sip +%%PYQT_SIPDIR%%/QtMultimedia/qabstractvideofilter.sip +%%PYQT_SIPDIR%%/QtMultimedia/qabstractvideosurface.sip +%%PYQT_SIPDIR%%/QtMultimedia/qaudio.sip +%%PYQT_SIPDIR%%/QtMultimedia/qaudiobuffer.sip +%%PYQT_SIPDIR%%/QtMultimedia/qaudiodecoder.sip +%%PYQT_SIPDIR%%/QtMultimedia/qaudiodeviceinfo.sip +%%PYQT_SIPDIR%%/QtMultimedia/qaudioformat.sip +%%PYQT_SIPDIR%%/QtMultimedia/qaudioinput.sip +%%PYQT_SIPDIR%%/QtMultimedia/qaudiooutput.sip +%%PYQT_SIPDIR%%/QtMultimedia/qaudioprobe.sip +%%PYQT_SIPDIR%%/QtMultimedia/qaudiorecorder.sip +%%PYQT_SIPDIR%%/QtMultimedia/qcamera.sip +%%PYQT_SIPDIR%%/QtMultimedia/qcameraexposure.sip +%%PYQT_SIPDIR%%/QtMultimedia/qcamerafocus.sip +%%PYQT_SIPDIR%%/QtMultimedia/qcameraimagecapture.sip +%%PYQT_SIPDIR%%/QtMultimedia/qcameraimageprocessing.sip +%%PYQT_SIPDIR%%/QtMultimedia/qcamerainfo.sip +%%PYQT_SIPDIR%%/QtMultimedia/qcameraviewfindersettings.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediabindableinterface.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediacontent.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediacontrol.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediaencodersettings.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediametadata.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediaobject.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediaplayer.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediaplaylist.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediarecorder.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediaresource.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediaservice.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediatimerange.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmultimedia.sip +%%PYQT_SIPDIR%%/QtMultimedia/qpymultimedia_qlist.sip +%%PYQT_SIPDIR%%/QtMultimedia/qradiodata.sip +%%PYQT_SIPDIR%%/QtMultimedia/qradiotuner.sip +%%PYQT_SIPDIR%%/QtMultimedia/qsound.sip +%%PYQT_SIPDIR%%/QtMultimedia/qsoundeffect.sip +%%PYQT_SIPDIR%%/QtMultimedia/qvideoframe.sip +%%PYQT_SIPDIR%%/QtMultimedia/qvideoprobe.sip +%%PYQT_SIPDIR%%/QtMultimedia/qvideosurfaceformat.sip +%%PYQT_SIPDIR%%/QtMultimediaWidgets/QtMultimediaWidgetsmod.sip +%%PYQT_SIPDIR%%/QtMultimediaWidgets/qcameraviewfinder.sip +%%PYQT_SIPDIR%%/QtMultimediaWidgets/qgraphicsvideoitem.sip +%%PYQT_SIPDIR%%/QtMultimediaWidgets/qvideowidget.sip +%%API%%share/qt5/qsci/api/python/QtMultimediaWidgets.api Index: net-im/turpial/Makefile =================================================================== --- net-im/turpial/Makefile +++ net-im/turpial/Makefile @@ -3,7 +3,7 @@ PORTNAME= turpial PORTVERSION= 3.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-im python MASTER_SITES= http://files.turpial.org.ve/sources/stable/ @@ -18,18 +18,12 @@ ${PYTHON_PKGNAMEPREFIX}Jinja2>=2.7.1:${PORTSDIR}/devel/py-Jinja2 \ ${PYTHON_PKGNAMEPREFIX}libturpial>=1.7.0:${PORTSDIR}/net-im/py-libturpial -USES= python:2 +USES= pyqt:4 python:2 USE_PYTHON= distutils autoplist INSTALLS_ICONS= yes -PYQT4_PORTS= core gui network phonon webkit +USE_PYQT= core gui network phonon webkit -.include "${.CURDIR}/../../devel/py-qt4/bsd.pyqt.mk" - -.for component in ${PYQT4_PORTS} -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}qt4-${component}>=0:${PORTSDIR}/${${component}_PORT} -.endfor - LOCALES_DIR= ca de eo es fr it ja pt_BR pt_PT ru_RU tr post-extract: Index: net/Makefile =================================================================== --- net/Makefile +++ net/Makefile @@ -970,6 +970,7 @@ SUBDIR += py-pyvmomi SUBDIR += py-pyzmq SUBDIR += py-qt4-network + SUBDIR += py-qt5-network SUBDIR += py-radix SUBDIR += py-raet SUBDIR += py-s3cmd Index: net/py-qt4-network/Makefile =================================================================== --- net/py-qt4-network/Makefile +++ net/py-qt4-network/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= network +PORTVERSION= ${PYQT4_VERSION} PORTEPOCH= 1 CATEGORIES= net devel python @@ -8,11 +9,12 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt4 toolkit, QtNetwork module -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip -RUN_DEPENDS= ${PKGNAMEPREFIX}core>=${PYQT4_VERSION}:${PORTSDIR}/devel/py-qt4-core +CONFIGURE_ARGS= --enable QtNetwork +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes -CONFIGURE_ARGS= --enable QtNetwork -PYQT4_DIST= yes +USES= python pyqt:4 +USE_PYQT= sip_build core_run USE_QT4= moc_build network qmake_build OPTIONS_DEFINE= API DEBUG @@ -22,8 +24,7 @@ API_DESC= Install QtNetwork API for QScintilla2 API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} API_CONFIGURE_OFF= --no-qsci-api -API_LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 +API_LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 DEBUG_CONFIGURE_ON= --debug --trace -.include "${.CURDIR}/../../devel/py-qt4/bsd.pyqt.mk" .include Index: net/py-qt4-network/pkg-plist =================================================================== --- net/py-qt4-network/pkg-plist +++ net/py-qt4-network/pkg-plist @@ -1,37 +1,37 @@ %%PYTHON_SITELIBDIR%%/PyQt4/QtNetwork.so -share/py-sip/QtNetwork/QtNetworkmod.sip -share/py-sip/QtNetwork/qabstractnetworkcache.sip -share/py-sip/QtNetwork/qabstractsocket.sip -share/py-sip/QtNetwork/qauthenticator.sip -share/py-sip/QtNetwork/qdnslookup.sip -share/py-sip/QtNetwork/qftp.sip -share/py-sip/QtNetwork/qhostaddress.sip -share/py-sip/QtNetwork/qhostinfo.sip -share/py-sip/QtNetwork/qhttp.sip -share/py-sip/QtNetwork/qhttpmultipart.sip -share/py-sip/QtNetwork/qlocalserver.sip -share/py-sip/QtNetwork/qlocalsocket.sip -share/py-sip/QtNetwork/qnetworkaccessmanager.sip -share/py-sip/QtNetwork/qnetworkconfigmanager.sip -share/py-sip/QtNetwork/qnetworkconfiguration.sip -share/py-sip/QtNetwork/qnetworkcookie.sip -share/py-sip/QtNetwork/qnetworkcookiejar.sip -share/py-sip/QtNetwork/qnetworkdiskcache.sip -share/py-sip/QtNetwork/qnetworkinterface.sip -share/py-sip/QtNetwork/qnetworkproxy.sip -share/py-sip/QtNetwork/qnetworkreply.sip -share/py-sip/QtNetwork/qnetworkrequest.sip -share/py-sip/QtNetwork/qnetworksession.sip -share/py-sip/QtNetwork/qssl.sip -share/py-sip/QtNetwork/qsslcertificate.sip -share/py-sip/QtNetwork/qsslcertificateextension.sip -share/py-sip/QtNetwork/qsslcipher.sip -share/py-sip/QtNetwork/qsslconfiguration.sip -share/py-sip/QtNetwork/qsslerror.sip -share/py-sip/QtNetwork/qsslkey.sip -share/py-sip/QtNetwork/qsslsocket.sip -share/py-sip/QtNetwork/qtcpserver.sip -share/py-sip/QtNetwork/qtcpsocket.sip -share/py-sip/QtNetwork/qudpsocket.sip -share/py-sip/QtNetwork/qurlinfo.sip +%%PYQT_SIPDIR%%/QtNetwork/QtNetworkmod.sip +%%PYQT_SIPDIR%%/QtNetwork/qabstractnetworkcache.sip +%%PYQT_SIPDIR%%/QtNetwork/qabstractsocket.sip +%%PYQT_SIPDIR%%/QtNetwork/qauthenticator.sip +%%PYQT_SIPDIR%%/QtNetwork/qdnslookup.sip +%%PYQT_SIPDIR%%/QtNetwork/qftp.sip +%%PYQT_SIPDIR%%/QtNetwork/qhostaddress.sip +%%PYQT_SIPDIR%%/QtNetwork/qhostinfo.sip +%%PYQT_SIPDIR%%/QtNetwork/qhttp.sip +%%PYQT_SIPDIR%%/QtNetwork/qhttpmultipart.sip +%%PYQT_SIPDIR%%/QtNetwork/qlocalserver.sip +%%PYQT_SIPDIR%%/QtNetwork/qlocalsocket.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkaccessmanager.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkconfigmanager.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkconfiguration.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkcookie.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkcookiejar.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkdiskcache.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkinterface.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkproxy.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkreply.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkrequest.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworksession.sip +%%PYQT_SIPDIR%%/QtNetwork/qssl.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslcertificate.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslcertificateextension.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslcipher.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslconfiguration.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslerror.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslkey.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslsocket.sip +%%PYQT_SIPDIR%%/QtNetwork/qtcpserver.sip +%%PYQT_SIPDIR%%/QtNetwork/qtcpsocket.sip +%%PYQT_SIPDIR%%/QtNetwork/qudpsocket.sip +%%PYQT_SIPDIR%%/QtNetwork/qurlinfo.sip %%API%%share/qt4/qsci/api/python/QtNetwork.api Index: net/py-qt5-network/Makefile =================================================================== --- net/py-qt5-network/Makefile +++ net/py-qt5-network/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= network +CATEGORIES= net devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtNetwork module + +CONFIGURE_ARGS= --enable QtNetwork +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes + +USES= python pyqt:5 qmake +USE_PYQT= sip_build core_run +USE_QT5= network + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtNetwork API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include Index: net/py-qt5-network/pkg-descr =================================================================== --- net/py-qt5-network/pkg-descr +++ net/py-qt5-network/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtNetwork module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ Index: net/py-qt5-network/pkg-plist =================================================================== --- net/py-qt5-network/pkg-plist +++ net/py-qt5-network/pkg-plist @@ -0,0 +1,38 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtNetwork.so +%%PYQT_SIPDIR%%/QtNetwork/QtNetworkmod.sip +%%PYQT_SIPDIR%%/QtNetwork/qabstractnetworkcache.sip +%%PYQT_SIPDIR%%/QtNetwork/qabstractsocket.sip +%%PYQT_SIPDIR%%/QtNetwork/qauthenticator.sip +%%PYQT_SIPDIR%%/QtNetwork/qdnslookup.sip +%%PYQT_SIPDIR%%/QtNetwork/qhostaddress.sip +%%PYQT_SIPDIR%%/QtNetwork/qhostinfo.sip +%%PYQT_SIPDIR%%/QtNetwork/qhttpmultipart.sip +%%PYQT_SIPDIR%%/QtNetwork/qlocalserver.sip +%%PYQT_SIPDIR%%/QtNetwork/qlocalsocket.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkaccessmanager.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkconfigmanager.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkconfiguration.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkcookie.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkcookiejar.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkdiskcache.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkinterface.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkproxy.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkreply.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkrequest.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworksession.sip +%%PYQT_SIPDIR%%/QtNetwork/qpynetwork_qhash.sip +%%PYQT_SIPDIR%%/QtNetwork/qpynetwork_qmap.sip +%%PYQT_SIPDIR%%/QtNetwork/qssl.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslcertificate.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslcertificateextension.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslcipher.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslconfiguration.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslellipticcurve.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslerror.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslkey.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslpresharedkeyauthenticator.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslsocket.sip +%%PYQT_SIPDIR%%/QtNetwork/qtcpserver.sip +%%PYQT_SIPDIR%%/QtNetwork/qtcpsocket.sip +%%PYQT_SIPDIR%%/QtNetwork/qudpsocket.sip +%%API%%share/qt5/qsci/api/python/QtNetwork.api Index: print/Makefile =================================================================== --- print/Makefile +++ print/Makefile @@ -198,6 +198,7 @@ SUBDIR += py-pollyreports SUBDIR += py-preppy SUBDIR += py-pyscript + SUBDIR += py-qt5-printsupport SUBDIR += py-relatorio SUBDIR += py-reportlab SUBDIR += py-reportlab1 Index: print/py-qt5-printsupport/Makefile =================================================================== --- print/py-qt5-printsupport/Makefile +++ print/py-qt5-printsupport/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= printsupport +CATEGORIES= print python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtPrintSupport module + +CONFIGURE_ARGS= --enable QtPrintSupport +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes + +USES= python pyqt:5 qmake +USE_PYQT= sip_build core_run +USE_QT5= printsupport + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtPrintsupport API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include Index: print/py-qt5-printsupport/pkg-descr =================================================================== --- print/py-qt5-printsupport/pkg-descr +++ print/py-qt5-printsupport/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtPrintSupport module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ Index: print/py-qt5-printsupport/pkg-plist =================================================================== --- print/py-qt5-printsupport/pkg-plist +++ print/py-qt5-printsupport/pkg-plist @@ -0,0 +1,12 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtPrintSupport.so +%%PYQT_SIPDIR%%/QtPrintSupport/QtPrintSupportmod.sip +%%PYQT_SIPDIR%%/QtPrintSupport/qabstractprintdialog.sip +%%PYQT_SIPDIR%%/QtPrintSupport/qpagesetupdialog.sip +%%PYQT_SIPDIR%%/QtPrintSupport/qprintdialog.sip +%%PYQT_SIPDIR%%/QtPrintSupport/qprintengine.sip +%%PYQT_SIPDIR%%/QtPrintSupport/qprinter.sip +%%PYQT_SIPDIR%%/QtPrintSupport/qprinterinfo.sip +%%PYQT_SIPDIR%%/QtPrintSupport/qprintpreviewdialog.sip +%%PYQT_SIPDIR%%/QtPrintSupport/qprintpreviewwidget.sip +%%PYQT_SIPDIR%%/QtPrintSupport/qpyprintsupport_qlist.sip +%%API%%share/qt5/qsci/api/python/QtPrintSupport.api Index: textproc/Makefile =================================================================== --- textproc/Makefile +++ textproc/Makefile @@ -1259,6 +1259,8 @@ SUBDIR += py-qrcode SUBDIR += py-qt4-xml SUBDIR += py-qt4-xmlpatterns + SUBDIR += py-qt5-xml + SUBDIR += py-qt5-xmlpatterns SUBDIR += py-rdflib SUBDIR += py-regex SUBDIR += py-reverend Index: textproc/py-qt4-xml/Makefile =================================================================== --- textproc/py-qt4-xml/Makefile +++ textproc/py-qt4-xml/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= xml +PORTVERSION= ${PYQT4_VERSION} PORTEPOCH= 1 CATEGORIES= textproc devel python @@ -8,11 +9,12 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt4 toolkit, QtXml module -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip -RUN_DEPENDS= ${PKGNAMEPREFIX}core>=${PYQT4_VERSION}:${PORTSDIR}/devel/py-qt4-core +CONFIGURE_ARGS= --enable QtXml +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes -CONFIGURE_ARGS= --enable QtXml -PYQT4_DIST= yes +USES= python pyqt:4 +USE_PYQT= sip_build core_run USE_QT4= xml qmake_build moc_build OPTIONS_DEFINE= API DEBUG @@ -22,8 +24,7 @@ API_DESC= Install QtXml API for QScintilla2 API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} API_CONFIGURE_OFF= --no-qsci-api -API_LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 +API_LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 DEBUG_CONFIGURE_ON= --debug --trace -.include "${.CURDIR}/../../devel/py-qt4/bsd.pyqt.mk" .include Index: textproc/py-qt4-xml/pkg-plist =================================================================== --- textproc/py-qt4-xml/pkg-plist +++ textproc/py-qt4-xml/pkg-plist @@ -1,8 +1,8 @@ bin/pylupdate4 bin/pyrcc4 %%PYTHON_SITELIBDIR%%/PyQt4/QtXml.so -share/py-sip/QtXml/QtXmlmod.sip -share/py-sip/QtXml/qdom.sip -share/py-sip/QtXml/qxml.sip -share/py-sip/QtXml/qxmlstream.sip +%%PYQT_SIPDIR%%/QtXml/QtXmlmod.sip +%%PYQT_SIPDIR%%/QtXml/qdom.sip +%%PYQT_SIPDIR%%/QtXml/qxml.sip +%%PYQT_SIPDIR%%/QtXml/qxmlstream.sip %%API%%share/qt4/qsci/api/python/QtXml.api Index: textproc/py-qt4-xmlpatterns/Makefile =================================================================== --- textproc/py-qt4-xmlpatterns/Makefile +++ textproc/py-qt4-xmlpatterns/Makefile @@ -2,16 +2,18 @@ # $FreeBSD$ PORTNAME= xmlpatterns +PORTVERSION= ${PYQT4_VERSION} CATEGORIES= textproc devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt4 toolkit, QtXmlPatterns module -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip -RUN_DEPENDS= ${PKGNAMEPREFIX}xml>=${PYQT4_VERSION}:${PORTSDIR}/textproc/py-qt4-xml +CONFIGURE_ARGS= --enable QtXmlPatterns +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes -CONFIGURE_ARGS= --enable QtXmlPatterns -PYQT4_DIST= yes +USES= python pyqt:4 +USE_PYQT= sip_build xml_run USE_QT4= moc_build xmlpatterns qmake_build OPTIONS_DEFINE= API DEBUG @@ -21,8 +23,7 @@ API_DESC= Install QtXmlPatterns API for QScintilla2 API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} API_CONFIGURE_OFF= --no-qsci-api -API_LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 +API_LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 DEBUG_CONFIGURE_ON= --debug --trace -.include "${.CURDIR}/../../devel/py-qt4/bsd.pyqt.mk" .include Index: textproc/py-qt4-xmlpatterns/pkg-plist =================================================================== --- textproc/py-qt4-xmlpatterns/pkg-plist +++ textproc/py-qt4-xmlpatterns/pkg-plist @@ -1,17 +1,17 @@ %%PYTHON_SITELIBDIR%%/PyQt4/QtXmlPatterns.so -share/py-sip/QtXmlPatterns/QtXmlPatternsmod.sip -share/py-sip/QtXmlPatterns/qabstractmessagehandler.sip -share/py-sip/QtXmlPatterns/qabstracturiresolver.sip -share/py-sip/QtXmlPatterns/qabstractxmlnodemodel.sip -share/py-sip/QtXmlPatterns/qabstractxmlreceiver.sip -share/py-sip/QtXmlPatterns/qsimplexmlnodemodel.sip -share/py-sip/QtXmlPatterns/qsourcelocation.sip -share/py-sip/QtXmlPatterns/qxmlformatter.sip -share/py-sip/QtXmlPatterns/qxmlname.sip -share/py-sip/QtXmlPatterns/qxmlnamepool.sip -share/py-sip/QtXmlPatterns/qxmlquery.sip -share/py-sip/QtXmlPatterns/qxmlresultitems.sip -share/py-sip/QtXmlPatterns/qxmlschema.sip -share/py-sip/QtXmlPatterns/qxmlschemavalidator.sip -share/py-sip/QtXmlPatterns/qxmlserializer.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/QtXmlPatternsmod.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qabstractmessagehandler.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qabstracturiresolver.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qabstractxmlnodemodel.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qabstractxmlreceiver.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qsimplexmlnodemodel.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qsourcelocation.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlformatter.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlname.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlnamepool.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlquery.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlresultitems.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlschema.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlschemavalidator.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlserializer.sip %%API%%share/qt4/qsci/api/python/QtXmlPatterns.api Index: textproc/py-qt5-xml/Makefile =================================================================== --- textproc/py-qt5-xml/Makefile +++ textproc/py-qt5-xml/Makefile @@ -0,0 +1,28 @@ +# Created by: Danny Pansters +# $FreeBSD$ + +PORTNAME= xml +CATEGORIES= textproc devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtXml module + +CONFIGURE_ARGS= --enable QtXml +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes + +USES= python pyqt:5 qmake +USE_PYQT= sip_build core_run +USE_QT5= buildtools xml + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtXml API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include Index: textproc/py-qt5-xml/pkg-descr =================================================================== --- textproc/py-qt5-xml/pkg-descr +++ textproc/py-qt5-xml/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtXml module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ Index: textproc/py-qt5-xml/pkg-plist =================================================================== --- textproc/py-qt5-xml/pkg-plist +++ textproc/py-qt5-xml/pkg-plist @@ -0,0 +1,7 @@ +bin/pylupdate5 +bin/pyrcc5 +%%PYTHON_SITELIBDIR%%/PyQt5/QtXml.so +%%PYQT_SIPDIR%%/QtXml/QtXmlmod.sip +%%PYQT_SIPDIR%%/QtXml/qdom.sip +%%PYQT_SIPDIR%%/QtXml/qxml.sip +%%API%%share/qt5/qsci/api/python/QtXml.api Index: textproc/py-qt5-xmlpatterns/Makefile =================================================================== --- textproc/py-qt5-xmlpatterns/Makefile +++ textproc/py-qt5-xmlpatterns/Makefile @@ -0,0 +1,28 @@ +# Created by: Danny Pansters +# $FreeBSD$ + +PORTNAME= xmlpatterns +CATEGORIES= textproc devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtXmlPatterns module + +CONFIGURE_ARGS= --enable QtXmlPatterns +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes + +USES= python pyqt:5 qmake +USE_PYQT= sip_build core_run +USE_QT5= network xml xmlpatterns + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtXmlPatterns API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include Index: textproc/py-qt5-xmlpatterns/pkg-descr =================================================================== --- textproc/py-qt5-xmlpatterns/pkg-descr +++ textproc/py-qt5-xmlpatterns/pkg-descr @@ -0,0 +1,4 @@ +PyQt4 is a set of Python bindings for Digia's Qt4 application framework. +This package provides the QtXmlPatterns module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ Index: textproc/py-qt5-xmlpatterns/pkg-plist =================================================================== --- textproc/py-qt5-xmlpatterns/pkg-plist +++ textproc/py-qt5-xmlpatterns/pkg-plist @@ -0,0 +1,17 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtXmlPatterns.so +%%PYQT_SIPDIR%%/QtXmlPatterns/QtXmlPatternsmod.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qabstractmessagehandler.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qabstracturiresolver.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qabstractxmlnodemodel.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qabstractxmlreceiver.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qsimplexmlnodemodel.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qsourcelocation.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlformatter.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlname.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlnamepool.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlquery.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlresultitems.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlschema.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlschemavalidator.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlserializer.sip +%%API%%share/qt5/qsci/api/python/QtXmlPatterns.api Index: www/Makefile =================================================================== --- www/Makefile +++ www/Makefile @@ -1722,6 +1722,8 @@ SUBDIR += py-qp SUBDIR += py-qpy SUBDIR += py-qt4-webkit + SUBDIR += py-qt5-webkit + SUBDIR += py-qt5-webkitwidgets SUBDIR += py-rackspace-monitoring SUBDIR += py-recaptcha SUBDIR += py-requestbuilder Index: www/py-qt4-webkit/Makefile =================================================================== --- www/py-qt4-webkit/Makefile +++ www/py-qt4-webkit/Makefile @@ -2,16 +2,18 @@ # $FreeBSD$ PORTNAME= webkit +PORTVERSION= ${PYQT4_VERSION} CATEGORIES= www devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt4 toolkit, QtWebKit module -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip -RUN_DEPENDS= ${PKGNAMEPREFIX}gui>=${PYQT4_VERSION}:${PORTSDIR}/x11-toolkits/py-qt4-gui +CONFIGURE_ARGS= --enable QtWebKit +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes -CONFIGURE_ARGS= --enable QtWebKit -PYQT4_DIST= yes +USES= python pyqt:4 +USE_PYQT= sip_build gui_run USE_QT4= qmake_build gui moc_build network webkit OPTIONS_DEFINE= API DEBUG @@ -21,8 +23,7 @@ API_DESC= Install QtWebKit API for QScintilla2 API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} API_CONFIGURE_OFF= --no-qsci-api -API_LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 +API_LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 DEBUG_CONFIGURE_ON= --debug --trace -.include "${.CURDIR}/../../devel/py-qt4/bsd.pyqt.mk" .include Index: www/py-qt4-webkit/pkg-plist =================================================================== --- www/py-qt4-webkit/pkg-plist +++ www/py-qt4-webkit/pkg-plist @@ -1,17 +1,17 @@ %%PYTHON_SITELIBDIR%%/PyQt4/QtWebKit.so -share/py-sip/QtWebKit/QtWebKitmod.sip -share/py-sip/QtWebKit/qgraphicswebview.sip -share/py-sip/QtWebKit/qwebdatabase.sip -share/py-sip/QtWebKit/qwebelement.sip -share/py-sip/QtWebKit/qwebframe.sip -share/py-sip/QtWebKit/qwebhistory.sip -share/py-sip/QtWebKit/qwebhistoryinterface.sip -share/py-sip/QtWebKit/qwebinspector.sip -share/py-sip/QtWebKit/qwebkitglobal.sip -share/py-sip/QtWebKit/qwebkitversion.sip -share/py-sip/QtWebKit/qwebpage.sip -share/py-sip/QtWebKit/qwebpluginfactory.sip -share/py-sip/QtWebKit/qwebsecurityorigin.sip -share/py-sip/QtWebKit/qwebsettings.sip -share/py-sip/QtWebKit/qwebview.sip +%%PYQT_SIPDIR%%/QtWebKit/QtWebKitmod.sip +%%PYQT_SIPDIR%%/QtWebKit/qgraphicswebview.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebdatabase.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebelement.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebframe.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebhistory.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebhistoryinterface.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebinspector.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebkitglobal.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebkitversion.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebpage.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebpluginfactory.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebsecurityorigin.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebsettings.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebview.sip %%API%%share/qt4/qsci/api/python/QtWebKit.api Index: www/py-qt5-webkit/Makefile =================================================================== --- www/py-qt5-webkit/Makefile +++ www/py-qt5-webkit/Makefile @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= webkit +CATEGORIES= www devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtWebKit module + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip +RUN_DEPENDS= ${PKGNAMEPREFIX}gui>=${PYQT5_VERSION}:${PORTSDIR}/x11-toolkits/py-qt5-gui + +CONFIGURE_ARGS= --enable QtWebKit +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes + +USES= python pyqt:5 qmake +USE_PYQT= sip_build gui_run +USE_QT5= gui network webkit + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtWebKit API for QScintilla2 +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include Index: www/py-qt5-webkit/pkg-descr =================================================================== --- www/py-qt5-webkit/pkg-descr +++ www/py-qt5-webkit/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtWebKit module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ Index: www/py-qt5-webkit/pkg-plist =================================================================== --- www/py-qt5-webkit/pkg-plist +++ www/py-qt5-webkit/pkg-plist @@ -0,0 +1,11 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtWebKit.so +%%PYQT_SIPDIR%%/QtWebKit/QtWebKitmod.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebdatabase.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebelement.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebhistory.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebhistoryinterface.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebkitglobal.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebpluginfactory.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebsecurityorigin.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebsettings.sip +%%API%%share/qt5/qsci/api/python/QtWebKit.api Index: www/py-qt5-webkitwidgets/Makefile =================================================================== --- www/py-qt5-webkitwidgets/Makefile +++ www/py-qt5-webkitwidgets/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= webkitwidgets +CATEGORIES= www devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtWebKitWidgets module + +CONFIGURE_ARGS= --enable QtWebKitWidgets +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes + +USES= python pyqt:5 qmake +USE_PYQT= sip_build gui_run printsupport_run +USE_QT5= gui network webkit + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtWebKitWidgets API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include Index: www/py-qt5-webkitwidgets/pkg-descr =================================================================== --- www/py-qt5-webkitwidgets/pkg-descr +++ www/py-qt5-webkitwidgets/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtWebKitWidgets module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ Index: www/py-qt5-webkitwidgets/pkg-plist =================================================================== --- www/py-qt5-webkitwidgets/pkg-plist +++ www/py-qt5-webkitwidgets/pkg-plist @@ -0,0 +1,8 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtWebKitWidgets.so +%%PYQT_SIPDIR%%/QtWebKitWidgets/QtWebKitWidgetsmod.sip +%%PYQT_SIPDIR%%/QtWebKitWidgets/qgraphicswebview.sip +%%PYQT_SIPDIR%%/QtWebKitWidgets/qwebframe.sip +%%PYQT_SIPDIR%%/QtWebKitWidgets/qwebinspector.sip +%%PYQT_SIPDIR%%/QtWebKitWidgets/qwebpage.sip +%%PYQT_SIPDIR%%/QtWebKitWidgets/qwebview.sip +%%API%%share/qt5/qsci/api/python/QtWebKitWidgets.api Index: x11-toolkits/Makefile =================================================================== --- x11-toolkits/Makefile +++ x11-toolkits/Makefile @@ -191,6 +191,8 @@ SUBDIR += py-kivy SUBDIR += py-kiwi SUBDIR += py-qt4-gui + SUBDIR += py-qt5-gui + SUBDIR += py-qt5-widgets SUBDIR += py-sexy SUBDIR += py-tkinter SUBDIR += py32-tkinter Index: x11-toolkits/py-qt4-gui/Makefile =================================================================== --- x11-toolkits/py-qt4-gui/Makefile +++ x11-toolkits/py-qt4-gui/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= gui +PORTVERSION= ${PYQT4_VERSION} PORTEPOCH= 1 CATEGORIES= x11-toolkits devel python @@ -12,7 +13,11 @@ RUN_DEPENDS= ${PKGNAMEPREFIX}core>=${PYQT4_VERSION}:${PORTSDIR}/devel/py-qt4-core CONFIGURE_ARGS= --enable QtGui -PYQT4_DIST= yes +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes + +USES= python pyqt:4 +USE_PYQT= sip core_run USE_QT4= gui imageformats_run inputmethods_run iconengines_run \ qmake_build moc_build @@ -23,10 +28,9 @@ API_DESC= Install QtGui API for QScintilla2 API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} API_CONFIGURE_OFF= --no-qsci-api -API_LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 +API_LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 DEBUG_CONFIGURE_ON= --debug --trace BROKEN_sparc64= Does not compile on sparc64 -.include "${.CURDIR}/../../devel/py-qt4/bsd.pyqt.mk" .include Index: x11-toolkits/py-qt4-gui/pkg-plist =================================================================== --- x11-toolkits/py-qt4-gui/pkg-plist +++ x11-toolkits/py-qt4-gui/pkg-plist @@ -1,207 +1,207 @@ %%PYTHON_SITELIBDIR%%/PyQt4/QtGui.so -share/py-sip/QtGui/QtGuimod.sip -share/py-sip/QtGui/opengl_types.sip -share/py-sip/QtGui/qabstractbutton.sip -share/py-sip/QtGui/qabstractitemdelegate.sip -share/py-sip/QtGui/qabstractitemview.sip -share/py-sip/QtGui/qabstractprintdialog.sip -share/py-sip/QtGui/qabstractproxymodel.sip -share/py-sip/QtGui/qabstractscrollarea.sip -share/py-sip/QtGui/qabstractslider.sip -share/py-sip/QtGui/qabstractspinbox.sip -share/py-sip/QtGui/qabstracttextdocumentlayout.sip -share/py-sip/QtGui/qaction.sip -share/py-sip/QtGui/qactiongroup.sip -share/py-sip/QtGui/qapplication.sip -share/py-sip/QtGui/qbitmap.sip -share/py-sip/QtGui/qboxlayout.sip -share/py-sip/QtGui/qbrush.sip -share/py-sip/QtGui/qbuttongroup.sip -share/py-sip/QtGui/qcalendarwidget.sip -share/py-sip/QtGui/qcheckbox.sip -share/py-sip/QtGui/qclipboard.sip -share/py-sip/QtGui/qcolor.sip -share/py-sip/QtGui/qcolordialog.sip -share/py-sip/QtGui/qcolumnview.sip -share/py-sip/QtGui/qcombobox.sip -share/py-sip/QtGui/qcommandlinkbutton.sip -share/py-sip/QtGui/qcommonstyle.sip -share/py-sip/QtGui/qcompleter.sip -share/py-sip/QtGui/qcursor.sip -share/py-sip/QtGui/qdatawidgetmapper.sip -share/py-sip/QtGui/qdatetimeedit.sip -share/py-sip/QtGui/qdesktopservices.sip -share/py-sip/QtGui/qdesktopwidget.sip -share/py-sip/QtGui/qdial.sip -share/py-sip/QtGui/qdialog.sip -share/py-sip/QtGui/qdialogbuttonbox.sip -share/py-sip/QtGui/qdirmodel.sip -share/py-sip/QtGui/qdockwidget.sip -share/py-sip/QtGui/qdrag.sip -share/py-sip/QtGui/qdrawutil.sip -share/py-sip/QtGui/qerrormessage.sip -share/py-sip/QtGui/qevent.sip -share/py-sip/QtGui/qfiledialog.sip -share/py-sip/QtGui/qfileiconprovider.sip -share/py-sip/QtGui/qfilesystemmodel.sip -share/py-sip/QtGui/qfocusframe.sip -share/py-sip/QtGui/qfont.sip -share/py-sip/QtGui/qfontcombobox.sip -share/py-sip/QtGui/qfontdatabase.sip -share/py-sip/QtGui/qfontdialog.sip -share/py-sip/QtGui/qfontinfo.sip -share/py-sip/QtGui/qfontmetrics.sip -share/py-sip/QtGui/qformlayout.sip -share/py-sip/QtGui/qframe.sip -share/py-sip/QtGui/qgenericmatrix.sip -share/py-sip/QtGui/qgesture.sip -share/py-sip/QtGui/qgesturerecognizer.sip -share/py-sip/QtGui/qglyphrun.sip -share/py-sip/QtGui/qgraphicsanchorlayout.sip -share/py-sip/QtGui/qgraphicseffect.sip -share/py-sip/QtGui/qgraphicsgridlayout.sip -share/py-sip/QtGui/qgraphicsitem.sip -share/py-sip/QtGui/qgraphicsitemanimation.sip -share/py-sip/QtGui/qgraphicslayout.sip -share/py-sip/QtGui/qgraphicslayoutitem.sip -share/py-sip/QtGui/qgraphicslinearlayout.sip -share/py-sip/QtGui/qgraphicsproxywidget.sip -share/py-sip/QtGui/qgraphicsscene.sip -share/py-sip/QtGui/qgraphicssceneevent.sip -share/py-sip/QtGui/qgraphicstransform.sip -share/py-sip/QtGui/qgraphicsview.sip -share/py-sip/QtGui/qgraphicswidget.sip -share/py-sip/QtGui/qgridlayout.sip -share/py-sip/QtGui/qgroupbox.sip -share/py-sip/QtGui/qguiapplication.sip -share/py-sip/QtGui/qheaderview.sip -share/py-sip/QtGui/qicon.sip -share/py-sip/QtGui/qiconengine.sip -share/py-sip/QtGui/qidentityproxymodel.sip -share/py-sip/QtGui/qimage.sip -share/py-sip/QtGui/qimageiohandler.sip -share/py-sip/QtGui/qimagereader.sip -share/py-sip/QtGui/qimagewriter.sip -share/py-sip/QtGui/qinputcontext.sip -share/py-sip/QtGui/qinputcontextfactory.sip -share/py-sip/QtGui/qinputdialog.sip -share/py-sip/QtGui/qitemdelegate.sip -share/py-sip/QtGui/qitemeditorfactory.sip -share/py-sip/QtGui/qitemselectionmodel.sip -share/py-sip/QtGui/qkeyeventtransition.sip -share/py-sip/QtGui/qkeysequence.sip -share/py-sip/QtGui/qlabel.sip -share/py-sip/QtGui/qlayout.sip -share/py-sip/QtGui/qlayoutitem.sip -share/py-sip/QtGui/qlcdnumber.sip -share/py-sip/QtGui/qlineedit.sip -share/py-sip/QtGui/qlistview.sip -share/py-sip/QtGui/qlistwidget.sip -share/py-sip/QtGui/qmainwindow.sip -share/py-sip/QtGui/qmatrix.sip -share/py-sip/QtGui/qmatrix4x4.sip -share/py-sip/QtGui/qmdiarea.sip -share/py-sip/QtGui/qmdisubwindow.sip -share/py-sip/QtGui/qmenu.sip -share/py-sip/QtGui/qmenubar.sip -share/py-sip/QtGui/qmessagebox.sip -share/py-sip/QtGui/qmime.sip -share/py-sip/QtGui/qmouseeventtransition.sip -share/py-sip/QtGui/qmovie.sip -share/py-sip/QtGui/qpagedpaintdevice.sip -share/py-sip/QtGui/qpagesetupdialog.sip -share/py-sip/QtGui/qpaintdevice.sip -share/py-sip/QtGui/qpaintengine.sip -share/py-sip/QtGui/qpainter.sip -share/py-sip/QtGui/qpainterpath.sip -share/py-sip/QtGui/qpalette.sip -share/py-sip/QtGui/qpen.sip -share/py-sip/QtGui/qpicture.sip -share/py-sip/QtGui/qpixmap.sip -share/py-sip/QtGui/qpixmapcache.sip -share/py-sip/QtGui/qplaintextedit.sip -share/py-sip/QtGui/qpolygon.sip -share/py-sip/QtGui/qprintdialog.sip -share/py-sip/QtGui/qprintengine.sip -share/py-sip/QtGui/qprinter.sip -share/py-sip/QtGui/qprinterinfo.sip -share/py-sip/QtGui/qprintpreviewdialog.sip -share/py-sip/QtGui/qprintpreviewwidget.sip -share/py-sip/QtGui/qprogressbar.sip -share/py-sip/QtGui/qprogressdialog.sip -share/py-sip/QtGui/qproxymodel.sip -share/py-sip/QtGui/qpushbutton.sip -share/py-sip/QtGui/qpytextobject.sip -share/py-sip/QtGui/qquaternion.sip -share/py-sip/QtGui/qradiobutton.sip -share/py-sip/QtGui/qrawfont.sip -share/py-sip/QtGui/qregion.sip -share/py-sip/QtGui/qrgb.sip -share/py-sip/QtGui/qrubberband.sip -share/py-sip/QtGui/qscreen.sip -share/py-sip/QtGui/qscrollarea.sip -share/py-sip/QtGui/qscrollbar.sip -share/py-sip/QtGui/qsessionmanager.sip -share/py-sip/QtGui/qshortcut.sip -share/py-sip/QtGui/qsizegrip.sip -share/py-sip/QtGui/qsizepolicy.sip -share/py-sip/QtGui/qslider.sip -share/py-sip/QtGui/qsortfilterproxymodel.sip -share/py-sip/QtGui/qsound.sip -share/py-sip/QtGui/qspinbox.sip -share/py-sip/QtGui/qsplashscreen.sip -share/py-sip/QtGui/qsplitter.sip -share/py-sip/QtGui/qstackedlayout.sip -share/py-sip/QtGui/qstackedwidget.sip -share/py-sip/QtGui/qstandarditemmodel.sip -share/py-sip/QtGui/qstatictext.sip -share/py-sip/QtGui/qstatusbar.sip -share/py-sip/QtGui/qstringlistmodel.sip -share/py-sip/QtGui/qstyle.sip -share/py-sip/QtGui/qstyleditemdelegate.sip -share/py-sip/QtGui/qstylefactory.sip -share/py-sip/QtGui/qstyleoption.sip -share/py-sip/QtGui/qstylepainter.sip -share/py-sip/QtGui/qsyntaxhighlighter.sip -share/py-sip/QtGui/qsystemtrayicon.sip -share/py-sip/QtGui/qtabbar.sip -share/py-sip/QtGui/qtableview.sip -share/py-sip/QtGui/qtablewidget.sip -share/py-sip/QtGui/qtabwidget.sip -share/py-sip/QtGui/qtextbrowser.sip -share/py-sip/QtGui/qtextcursor.sip -share/py-sip/QtGui/qtextdocument.sip -share/py-sip/QtGui/qtextdocumentfragment.sip -share/py-sip/QtGui/qtextdocumentwriter.sip -share/py-sip/QtGui/qtextedit.sip -share/py-sip/QtGui/qtextformat.sip -share/py-sip/QtGui/qtextlayout.sip -share/py-sip/QtGui/qtextlist.sip -share/py-sip/QtGui/qtextobject.sip -share/py-sip/QtGui/qtextoption.sip -share/py-sip/QtGui/qtexttable.sip -share/py-sip/QtGui/qtoolbar.sip -share/py-sip/QtGui/qtoolbox.sip -share/py-sip/QtGui/qtoolbutton.sip -share/py-sip/QtGui/qtooltip.sip -share/py-sip/QtGui/qtouchdevice.sip -share/py-sip/QtGui/qtransform.sip -share/py-sip/QtGui/qtreeview.sip -share/py-sip/QtGui/qtreewidget.sip -share/py-sip/QtGui/qtreewidgetitemiterator.sip -share/py-sip/QtGui/qundogroup.sip -share/py-sip/QtGui/qundostack.sip -share/py-sip/QtGui/qundoview.sip -share/py-sip/QtGui/qvalidator.sip -share/py-sip/QtGui/qvector2d.sip -share/py-sip/QtGui/qvector3d.sip -share/py-sip/QtGui/qvector4d.sip -share/py-sip/QtGui/qwhatsthis.sip -share/py-sip/QtGui/qwidget.sip -share/py-sip/QtGui/qwidgetaction.sip -share/py-sip/QtGui/qwindowdefs.sip -share/py-sip/QtGui/qwizard.sip -share/py-sip/QtGui/qworkspace.sip -share/py-sip/QtGui/qx11embed_x11.sip -share/py-sip/QtGui/qx11info_x11.sip +%%PYQT_SIPDIR%%/QtGui/QtGuimod.sip +%%PYQT_SIPDIR%%/QtGui/opengl_types.sip +%%PYQT_SIPDIR%%/QtGui/qabstractbutton.sip +%%PYQT_SIPDIR%%/QtGui/qabstractitemdelegate.sip +%%PYQT_SIPDIR%%/QtGui/qabstractitemview.sip +%%PYQT_SIPDIR%%/QtGui/qabstractprintdialog.sip +%%PYQT_SIPDIR%%/QtGui/qabstractproxymodel.sip +%%PYQT_SIPDIR%%/QtGui/qabstractscrollarea.sip +%%PYQT_SIPDIR%%/QtGui/qabstractslider.sip +%%PYQT_SIPDIR%%/QtGui/qabstractspinbox.sip +%%PYQT_SIPDIR%%/QtGui/qabstracttextdocumentlayout.sip +%%PYQT_SIPDIR%%/QtGui/qaction.sip +%%PYQT_SIPDIR%%/QtGui/qactiongroup.sip +%%PYQT_SIPDIR%%/QtGui/qapplication.sip +%%PYQT_SIPDIR%%/QtGui/qbitmap.sip +%%PYQT_SIPDIR%%/QtGui/qboxlayout.sip +%%PYQT_SIPDIR%%/QtGui/qbrush.sip +%%PYQT_SIPDIR%%/QtGui/qbuttongroup.sip +%%PYQT_SIPDIR%%/QtGui/qcalendarwidget.sip +%%PYQT_SIPDIR%%/QtGui/qcheckbox.sip +%%PYQT_SIPDIR%%/QtGui/qclipboard.sip +%%PYQT_SIPDIR%%/QtGui/qcolor.sip +%%PYQT_SIPDIR%%/QtGui/qcolordialog.sip +%%PYQT_SIPDIR%%/QtGui/qcolumnview.sip +%%PYQT_SIPDIR%%/QtGui/qcombobox.sip +%%PYQT_SIPDIR%%/QtGui/qcommandlinkbutton.sip +%%PYQT_SIPDIR%%/QtGui/qcommonstyle.sip +%%PYQT_SIPDIR%%/QtGui/qcompleter.sip +%%PYQT_SIPDIR%%/QtGui/qcursor.sip +%%PYQT_SIPDIR%%/QtGui/qdatawidgetmapper.sip +%%PYQT_SIPDIR%%/QtGui/qdatetimeedit.sip +%%PYQT_SIPDIR%%/QtGui/qdesktopservices.sip +%%PYQT_SIPDIR%%/QtGui/qdesktopwidget.sip +%%PYQT_SIPDIR%%/QtGui/qdial.sip +%%PYQT_SIPDIR%%/QtGui/qdialog.sip +%%PYQT_SIPDIR%%/QtGui/qdialogbuttonbox.sip +%%PYQT_SIPDIR%%/QtGui/qdirmodel.sip +%%PYQT_SIPDIR%%/QtGui/qdockwidget.sip +%%PYQT_SIPDIR%%/QtGui/qdrag.sip +%%PYQT_SIPDIR%%/QtGui/qdrawutil.sip +%%PYQT_SIPDIR%%/QtGui/qerrormessage.sip +%%PYQT_SIPDIR%%/QtGui/qevent.sip +%%PYQT_SIPDIR%%/QtGui/qfiledialog.sip +%%PYQT_SIPDIR%%/QtGui/qfileiconprovider.sip +%%PYQT_SIPDIR%%/QtGui/qfilesystemmodel.sip +%%PYQT_SIPDIR%%/QtGui/qfocusframe.sip +%%PYQT_SIPDIR%%/QtGui/qfont.sip +%%PYQT_SIPDIR%%/QtGui/qfontcombobox.sip +%%PYQT_SIPDIR%%/QtGui/qfontdatabase.sip +%%PYQT_SIPDIR%%/QtGui/qfontdialog.sip +%%PYQT_SIPDIR%%/QtGui/qfontinfo.sip +%%PYQT_SIPDIR%%/QtGui/qfontmetrics.sip +%%PYQT_SIPDIR%%/QtGui/qformlayout.sip +%%PYQT_SIPDIR%%/QtGui/qframe.sip +%%PYQT_SIPDIR%%/QtGui/qgenericmatrix.sip +%%PYQT_SIPDIR%%/QtGui/qgesture.sip +%%PYQT_SIPDIR%%/QtGui/qgesturerecognizer.sip +%%PYQT_SIPDIR%%/QtGui/qglyphrun.sip +%%PYQT_SIPDIR%%/QtGui/qgraphicsanchorlayout.sip +%%PYQT_SIPDIR%%/QtGui/qgraphicseffect.sip +%%PYQT_SIPDIR%%/QtGui/qgraphicsgridlayout.sip +%%PYQT_SIPDIR%%/QtGui/qgraphicsitem.sip +%%PYQT_SIPDIR%%/QtGui/qgraphicsitemanimation.sip +%%PYQT_SIPDIR%%/QtGui/qgraphicslayout.sip +%%PYQT_SIPDIR%%/QtGui/qgraphicslayoutitem.sip +%%PYQT_SIPDIR%%/QtGui/qgraphicslinearlayout.sip +%%PYQT_SIPDIR%%/QtGui/qgraphicsproxywidget.sip +%%PYQT_SIPDIR%%/QtGui/qgraphicsscene.sip +%%PYQT_SIPDIR%%/QtGui/qgraphicssceneevent.sip +%%PYQT_SIPDIR%%/QtGui/qgraphicstransform.sip +%%PYQT_SIPDIR%%/QtGui/qgraphicsview.sip +%%PYQT_SIPDIR%%/QtGui/qgraphicswidget.sip +%%PYQT_SIPDIR%%/QtGui/qgridlayout.sip +%%PYQT_SIPDIR%%/QtGui/qgroupbox.sip +%%PYQT_SIPDIR%%/QtGui/qguiapplication.sip +%%PYQT_SIPDIR%%/QtGui/qheaderview.sip +%%PYQT_SIPDIR%%/QtGui/qicon.sip +%%PYQT_SIPDIR%%/QtGui/qiconengine.sip +%%PYQT_SIPDIR%%/QtGui/qidentityproxymodel.sip +%%PYQT_SIPDIR%%/QtGui/qimage.sip +%%PYQT_SIPDIR%%/QtGui/qimageiohandler.sip +%%PYQT_SIPDIR%%/QtGui/qimagereader.sip +%%PYQT_SIPDIR%%/QtGui/qimagewriter.sip +%%PYQT_SIPDIR%%/QtGui/qinputcontext.sip +%%PYQT_SIPDIR%%/QtGui/qinputcontextfactory.sip +%%PYQT_SIPDIR%%/QtGui/qinputdialog.sip +%%PYQT_SIPDIR%%/QtGui/qitemdelegate.sip +%%PYQT_SIPDIR%%/QtGui/qitemeditorfactory.sip +%%PYQT_SIPDIR%%/QtGui/qitemselectionmodel.sip +%%PYQT_SIPDIR%%/QtGui/qkeyeventtransition.sip +%%PYQT_SIPDIR%%/QtGui/qkeysequence.sip +%%PYQT_SIPDIR%%/QtGui/qlabel.sip +%%PYQT_SIPDIR%%/QtGui/qlayout.sip +%%PYQT_SIPDIR%%/QtGui/qlayoutitem.sip +%%PYQT_SIPDIR%%/QtGui/qlcdnumber.sip +%%PYQT_SIPDIR%%/QtGui/qlineedit.sip +%%PYQT_SIPDIR%%/QtGui/qlistview.sip +%%PYQT_SIPDIR%%/QtGui/qlistwidget.sip +%%PYQT_SIPDIR%%/QtGui/qmainwindow.sip +%%PYQT_SIPDIR%%/QtGui/qmatrix.sip +%%PYQT_SIPDIR%%/QtGui/qmatrix4x4.sip +%%PYQT_SIPDIR%%/QtGui/qmdiarea.sip +%%PYQT_SIPDIR%%/QtGui/qmdisubwindow.sip +%%PYQT_SIPDIR%%/QtGui/qmenu.sip +%%PYQT_SIPDIR%%/QtGui/qmenubar.sip +%%PYQT_SIPDIR%%/QtGui/qmessagebox.sip +%%PYQT_SIPDIR%%/QtGui/qmime.sip +%%PYQT_SIPDIR%%/QtGui/qmouseeventtransition.sip +%%PYQT_SIPDIR%%/QtGui/qmovie.sip +%%PYQT_SIPDIR%%/QtGui/qpagedpaintdevice.sip +%%PYQT_SIPDIR%%/QtGui/qpagesetupdialog.sip +%%PYQT_SIPDIR%%/QtGui/qpaintdevice.sip +%%PYQT_SIPDIR%%/QtGui/qpaintengine.sip +%%PYQT_SIPDIR%%/QtGui/qpainter.sip +%%PYQT_SIPDIR%%/QtGui/qpainterpath.sip +%%PYQT_SIPDIR%%/QtGui/qpalette.sip +%%PYQT_SIPDIR%%/QtGui/qpen.sip +%%PYQT_SIPDIR%%/QtGui/qpicture.sip +%%PYQT_SIPDIR%%/QtGui/qpixmap.sip +%%PYQT_SIPDIR%%/QtGui/qpixmapcache.sip +%%PYQT_SIPDIR%%/QtGui/qplaintextedit.sip +%%PYQT_SIPDIR%%/QtGui/qpolygon.sip +%%PYQT_SIPDIR%%/QtGui/qprintdialog.sip +%%PYQT_SIPDIR%%/QtGui/qprintengine.sip +%%PYQT_SIPDIR%%/QtGui/qprinter.sip +%%PYQT_SIPDIR%%/QtGui/qprinterinfo.sip +%%PYQT_SIPDIR%%/QtGui/qprintpreviewdialog.sip +%%PYQT_SIPDIR%%/QtGui/qprintpreviewwidget.sip +%%PYQT_SIPDIR%%/QtGui/qprogressbar.sip +%%PYQT_SIPDIR%%/QtGui/qprogressdialog.sip +%%PYQT_SIPDIR%%/QtGui/qproxymodel.sip +%%PYQT_SIPDIR%%/QtGui/qpushbutton.sip +%%PYQT_SIPDIR%%/QtGui/qpytextobject.sip +%%PYQT_SIPDIR%%/QtGui/qquaternion.sip +%%PYQT_SIPDIR%%/QtGui/qradiobutton.sip +%%PYQT_SIPDIR%%/QtGui/qrawfont.sip +%%PYQT_SIPDIR%%/QtGui/qregion.sip +%%PYQT_SIPDIR%%/QtGui/qrgb.sip +%%PYQT_SIPDIR%%/QtGui/qrubberband.sip +%%PYQT_SIPDIR%%/QtGui/qscreen.sip +%%PYQT_SIPDIR%%/QtGui/qscrollarea.sip +%%PYQT_SIPDIR%%/QtGui/qscrollbar.sip +%%PYQT_SIPDIR%%/QtGui/qsessionmanager.sip +%%PYQT_SIPDIR%%/QtGui/qshortcut.sip +%%PYQT_SIPDIR%%/QtGui/qsizegrip.sip +%%PYQT_SIPDIR%%/QtGui/qsizepolicy.sip +%%PYQT_SIPDIR%%/QtGui/qslider.sip +%%PYQT_SIPDIR%%/QtGui/qsortfilterproxymodel.sip +%%PYQT_SIPDIR%%/QtGui/qsound.sip +%%PYQT_SIPDIR%%/QtGui/qspinbox.sip +%%PYQT_SIPDIR%%/QtGui/qsplashscreen.sip +%%PYQT_SIPDIR%%/QtGui/qsplitter.sip +%%PYQT_SIPDIR%%/QtGui/qstackedlayout.sip +%%PYQT_SIPDIR%%/QtGui/qstackedwidget.sip +%%PYQT_SIPDIR%%/QtGui/qstandarditemmodel.sip +%%PYQT_SIPDIR%%/QtGui/qstatictext.sip +%%PYQT_SIPDIR%%/QtGui/qstatusbar.sip +%%PYQT_SIPDIR%%/QtGui/qstringlistmodel.sip +%%PYQT_SIPDIR%%/QtGui/qstyle.sip +%%PYQT_SIPDIR%%/QtGui/qstyleditemdelegate.sip +%%PYQT_SIPDIR%%/QtGui/qstylefactory.sip +%%PYQT_SIPDIR%%/QtGui/qstyleoption.sip +%%PYQT_SIPDIR%%/QtGui/qstylepainter.sip +%%PYQT_SIPDIR%%/QtGui/qsyntaxhighlighter.sip +%%PYQT_SIPDIR%%/QtGui/qsystemtrayicon.sip +%%PYQT_SIPDIR%%/QtGui/qtabbar.sip +%%PYQT_SIPDIR%%/QtGui/qtableview.sip +%%PYQT_SIPDIR%%/QtGui/qtablewidget.sip +%%PYQT_SIPDIR%%/QtGui/qtabwidget.sip +%%PYQT_SIPDIR%%/QtGui/qtextbrowser.sip +%%PYQT_SIPDIR%%/QtGui/qtextcursor.sip +%%PYQT_SIPDIR%%/QtGui/qtextdocument.sip +%%PYQT_SIPDIR%%/QtGui/qtextdocumentfragment.sip +%%PYQT_SIPDIR%%/QtGui/qtextdocumentwriter.sip +%%PYQT_SIPDIR%%/QtGui/qtextedit.sip +%%PYQT_SIPDIR%%/QtGui/qtextformat.sip +%%PYQT_SIPDIR%%/QtGui/qtextlayout.sip +%%PYQT_SIPDIR%%/QtGui/qtextlist.sip +%%PYQT_SIPDIR%%/QtGui/qtextobject.sip +%%PYQT_SIPDIR%%/QtGui/qtextoption.sip +%%PYQT_SIPDIR%%/QtGui/qtexttable.sip +%%PYQT_SIPDIR%%/QtGui/qtoolbar.sip +%%PYQT_SIPDIR%%/QtGui/qtoolbox.sip +%%PYQT_SIPDIR%%/QtGui/qtoolbutton.sip +%%PYQT_SIPDIR%%/QtGui/qtooltip.sip +%%PYQT_SIPDIR%%/QtGui/qtouchdevice.sip +%%PYQT_SIPDIR%%/QtGui/qtransform.sip +%%PYQT_SIPDIR%%/QtGui/qtreeview.sip +%%PYQT_SIPDIR%%/QtGui/qtreewidget.sip +%%PYQT_SIPDIR%%/QtGui/qtreewidgetitemiterator.sip +%%PYQT_SIPDIR%%/QtGui/qundogroup.sip +%%PYQT_SIPDIR%%/QtGui/qundostack.sip +%%PYQT_SIPDIR%%/QtGui/qundoview.sip +%%PYQT_SIPDIR%%/QtGui/qvalidator.sip +%%PYQT_SIPDIR%%/QtGui/qvector2d.sip +%%PYQT_SIPDIR%%/QtGui/qvector3d.sip +%%PYQT_SIPDIR%%/QtGui/qvector4d.sip +%%PYQT_SIPDIR%%/QtGui/qwhatsthis.sip +%%PYQT_SIPDIR%%/QtGui/qwidget.sip +%%PYQT_SIPDIR%%/QtGui/qwidgetaction.sip +%%PYQT_SIPDIR%%/QtGui/qwindowdefs.sip +%%PYQT_SIPDIR%%/QtGui/qwizard.sip +%%PYQT_SIPDIR%%/QtGui/qworkspace.sip +%%PYQT_SIPDIR%%/QtGui/qx11embed_x11.sip +%%PYQT_SIPDIR%%/QtGui/qx11info_x11.sip %%API%%share/qt4/qsci/api/python/QtGui.api Index: x11-toolkits/py-qt5-gui/Makefile =================================================================== --- x11-toolkits/py-qt5-gui/Makefile +++ x11-toolkits/py-qt5-gui/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= gui +CATEGORIES= x11-toolkits devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtGui module + +CONFIGURE_ARGS= --enable QtGui +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes + +USES= python pyqt:5 qmake +USE_PYQT= sip_build core_run opengl_run +USE_QT5= gui imageformats_run + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtGui API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api + +BROKEN_sparc64= Does not compile on sparc64 + +.include Index: x11-toolkits/py-qt5-gui/pkg-descr =================================================================== --- x11-toolkits/py-qt5-gui/pkg-descr +++ x11-toolkits/py-qt5-gui/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtGui module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ Index: x11-toolkits/py-qt5-gui/pkg-plist =================================================================== --- x11-toolkits/py-qt5-gui/pkg-plist +++ x11-toolkits/py-qt5-gui/pkg-plist @@ -0,0 +1,94 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtGui.so +%%PYQT_SIPDIR%%/QtGui/QtGuimod.sip +%%PYQT_SIPDIR%%/QtGui/opengl_types.sip +%%PYQT_SIPDIR%%/QtGui/qabstracttextdocumentlayout.sip +%%PYQT_SIPDIR%%/QtGui/qbackingstore.sip +%%PYQT_SIPDIR%%/QtGui/qbitmap.sip +%%PYQT_SIPDIR%%/QtGui/qbrush.sip +%%PYQT_SIPDIR%%/QtGui/qclipboard.sip +%%PYQT_SIPDIR%%/QtGui/qcolor.sip +%%PYQT_SIPDIR%%/QtGui/qcursor.sip +%%PYQT_SIPDIR%%/QtGui/qdesktopservices.sip +%%PYQT_SIPDIR%%/QtGui/qdrag.sip +%%PYQT_SIPDIR%%/QtGui/qevent.sip +%%PYQT_SIPDIR%%/QtGui/qfont.sip +%%PYQT_SIPDIR%%/QtGui/qfontdatabase.sip +%%PYQT_SIPDIR%%/QtGui/qfontinfo.sip +%%PYQT_SIPDIR%%/QtGui/qfontmetrics.sip +%%PYQT_SIPDIR%%/QtGui/qgenericmatrix.sip +%%PYQT_SIPDIR%%/QtGui/qglyphrun.sip +%%PYQT_SIPDIR%%/QtGui/qguiapplication.sip +%%PYQT_SIPDIR%%/QtGui/qicon.sip +%%PYQT_SIPDIR%%/QtGui/qiconengine.sip +%%PYQT_SIPDIR%%/QtGui/qimage.sip +%%PYQT_SIPDIR%%/QtGui/qimageiohandler.sip +%%PYQT_SIPDIR%%/QtGui/qimagereader.sip +%%PYQT_SIPDIR%%/QtGui/qimagewriter.sip +%%PYQT_SIPDIR%%/QtGui/qinputmethod.sip +%%PYQT_SIPDIR%%/QtGui/qkeysequence.sip +%%PYQT_SIPDIR%%/QtGui/qmatrix4x4.sip +%%PYQT_SIPDIR%%/QtGui/qmovie.sip +%%PYQT_SIPDIR%%/QtGui/qoffscreensurface.sip +%%PYQT_SIPDIR%%/QtGui/qopenglbuffer.sip +%%PYQT_SIPDIR%%/QtGui/qopenglcontext.sip +%%PYQT_SIPDIR%%/QtGui/qopengldebug.sip +%%PYQT_SIPDIR%%/QtGui/qopenglframebufferobject.sip +%%PYQT_SIPDIR%%/QtGui/qopenglpaintdevice.sip +%%PYQT_SIPDIR%%/QtGui/qopenglpixeltransferoptions.sip +%%PYQT_SIPDIR%%/QtGui/qopenglshaderprogram.sip +%%PYQT_SIPDIR%%/QtGui/qopengltexture.sip +%%PYQT_SIPDIR%%/QtGui/qopengltimerquery.sip +%%PYQT_SIPDIR%%/QtGui/qopenglversionfunctions.sip +%%PYQT_SIPDIR%%/QtGui/qopenglvertexarrayobject.sip +%%PYQT_SIPDIR%%/QtGui/qopenglwindow.sip +%%PYQT_SIPDIR%%/QtGui/qpagedpaintdevice.sip +%%PYQT_SIPDIR%%/QtGui/qpagelayout.sip +%%PYQT_SIPDIR%%/QtGui/qpagesize.sip +%%PYQT_SIPDIR%%/QtGui/qpaintdevice.sip +%%PYQT_SIPDIR%%/QtGui/qpaintdevicewindow.sip +%%PYQT_SIPDIR%%/QtGui/qpaintengine.sip +%%PYQT_SIPDIR%%/QtGui/qpainter.sip +%%PYQT_SIPDIR%%/QtGui/qpainterpath.sip +%%PYQT_SIPDIR%%/QtGui/qpalette.sip +%%PYQT_SIPDIR%%/QtGui/qpdfwriter.sip +%%PYQT_SIPDIR%%/QtGui/qpen.sip +%%PYQT_SIPDIR%%/QtGui/qpicture.sip +%%PYQT_SIPDIR%%/QtGui/qpixelformat.sip +%%PYQT_SIPDIR%%/QtGui/qpixmap.sip +%%PYQT_SIPDIR%%/QtGui/qpixmapcache.sip +%%PYQT_SIPDIR%%/QtGui/qpolygon.sip +%%PYQT_SIPDIR%%/QtGui/qpygui_qlist.sip +%%PYQT_SIPDIR%%/QtGui/qpygui_qpair.sip +%%PYQT_SIPDIR%%/QtGui/qpygui_qvector.sip +%%PYQT_SIPDIR%%/QtGui/qquaternion.sip +%%PYQT_SIPDIR%%/QtGui/qrasterwindow.sip +%%PYQT_SIPDIR%%/QtGui/qrawfont.sip +%%PYQT_SIPDIR%%/QtGui/qregion.sip +%%PYQT_SIPDIR%%/QtGui/qrgb.sip +%%PYQT_SIPDIR%%/QtGui/qscreen.sip +%%PYQT_SIPDIR%%/QtGui/qsessionmanager.sip +%%PYQT_SIPDIR%%/QtGui/qstandarditemmodel.sip +%%PYQT_SIPDIR%%/QtGui/qstatictext.sip +%%PYQT_SIPDIR%%/QtGui/qstylehints.sip +%%PYQT_SIPDIR%%/QtGui/qsurface.sip +%%PYQT_SIPDIR%%/QtGui/qsurfaceformat.sip +%%PYQT_SIPDIR%%/QtGui/qsyntaxhighlighter.sip +%%PYQT_SIPDIR%%/QtGui/qtextcursor.sip +%%PYQT_SIPDIR%%/QtGui/qtextdocument.sip +%%PYQT_SIPDIR%%/QtGui/qtextdocumentfragment.sip +%%PYQT_SIPDIR%%/QtGui/qtextdocumentwriter.sip +%%PYQT_SIPDIR%%/QtGui/qtextformat.sip +%%PYQT_SIPDIR%%/QtGui/qtextlayout.sip +%%PYQT_SIPDIR%%/QtGui/qtextlist.sip +%%PYQT_SIPDIR%%/QtGui/qtextobject.sip +%%PYQT_SIPDIR%%/QtGui/qtextoption.sip +%%PYQT_SIPDIR%%/QtGui/qtexttable.sip +%%PYQT_SIPDIR%%/QtGui/qtouchdevice.sip +%%PYQT_SIPDIR%%/QtGui/qtransform.sip +%%PYQT_SIPDIR%%/QtGui/qvalidator.sip +%%PYQT_SIPDIR%%/QtGui/qvector2d.sip +%%PYQT_SIPDIR%%/QtGui/qvector3d.sip +%%PYQT_SIPDIR%%/QtGui/qvector4d.sip +%%PYQT_SIPDIR%%/QtGui/qwindow.sip +%%PYQT_SIPDIR%%/QtGui/qwindowdefs.sip +%%API%%share/qt5/qsci/api/python/QtGui.api Index: x11-toolkits/py-qt5-widgets/Makefile =================================================================== --- x11-toolkits/py-qt5-widgets/Makefile +++ x11-toolkits/py-qt5-widgets/Makefile @@ -0,0 +1,30 @@ +# Created by: Danny Pansters +# $FreeBSD$ + +PORTNAME= widgets +CATEGORIES= x11-toolkits devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtWidgets module + +CONFIGURE_ARGS= --enable QtWidgets +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes + +USES= python pyqt:5 qmake +USE_PYQT= sip_build core_run +USE_QT5= widgets + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtGui API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +BROKEN_sparc64= Does not compile on sparc64 + +.include Index: x11-toolkits/py-qt5-widgets/pkg-descr =================================================================== --- x11-toolkits/py-qt5-widgets/pkg-descr +++ x11-toolkits/py-qt5-widgets/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtWidgets module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ Index: x11-toolkits/py-qt5-widgets/pkg-plist =================================================================== --- x11-toolkits/py-qt5-widgets/pkg-plist +++ x11-toolkits/py-qt5-widgets/pkg-plist @@ -0,0 +1,127 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtWidgets.so +%%PYQT_SIPDIR%%/QtWidgets/QtWidgetsmod.sip +%%PYQT_SIPDIR%%/QtWidgets/qabstractbutton.sip +%%PYQT_SIPDIR%%/QtWidgets/qabstractitemdelegate.sip +%%PYQT_SIPDIR%%/QtWidgets/qabstractitemview.sip +%%PYQT_SIPDIR%%/QtWidgets/qabstractscrollarea.sip +%%PYQT_SIPDIR%%/QtWidgets/qabstractslider.sip +%%PYQT_SIPDIR%%/QtWidgets/qabstractspinbox.sip +%%PYQT_SIPDIR%%/QtWidgets/qaction.sip +%%PYQT_SIPDIR%%/QtWidgets/qactiongroup.sip +%%PYQT_SIPDIR%%/QtWidgets/qapplication.sip +%%PYQT_SIPDIR%%/QtWidgets/qboxlayout.sip +%%PYQT_SIPDIR%%/QtWidgets/qbuttongroup.sip +%%PYQT_SIPDIR%%/QtWidgets/qcalendarwidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qcheckbox.sip +%%PYQT_SIPDIR%%/QtWidgets/qcolordialog.sip +%%PYQT_SIPDIR%%/QtWidgets/qcolumnview.sip +%%PYQT_SIPDIR%%/QtWidgets/qcombobox.sip +%%PYQT_SIPDIR%%/QtWidgets/qcommandlinkbutton.sip +%%PYQT_SIPDIR%%/QtWidgets/qcommonstyle.sip +%%PYQT_SIPDIR%%/QtWidgets/qcompleter.sip +%%PYQT_SIPDIR%%/QtWidgets/qdatawidgetmapper.sip +%%PYQT_SIPDIR%%/QtWidgets/qdatetimeedit.sip +%%PYQT_SIPDIR%%/QtWidgets/qdesktopwidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qdial.sip +%%PYQT_SIPDIR%%/QtWidgets/qdialog.sip +%%PYQT_SIPDIR%%/QtWidgets/qdialogbuttonbox.sip +%%PYQT_SIPDIR%%/QtWidgets/qdirmodel.sip +%%PYQT_SIPDIR%%/QtWidgets/qdockwidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qdrawutil.sip +%%PYQT_SIPDIR%%/QtWidgets/qerrormessage.sip +%%PYQT_SIPDIR%%/QtWidgets/qfiledialog.sip +%%PYQT_SIPDIR%%/QtWidgets/qfileiconprovider.sip +%%PYQT_SIPDIR%%/QtWidgets/qfilesystemmodel.sip +%%PYQT_SIPDIR%%/QtWidgets/qfocusframe.sip +%%PYQT_SIPDIR%%/QtWidgets/qfontcombobox.sip +%%PYQT_SIPDIR%%/QtWidgets/qfontdialog.sip +%%PYQT_SIPDIR%%/QtWidgets/qformlayout.sip +%%PYQT_SIPDIR%%/QtWidgets/qframe.sip +%%PYQT_SIPDIR%%/QtWidgets/qgesture.sip +%%PYQT_SIPDIR%%/QtWidgets/qgesturerecognizer.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicsanchorlayout.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicseffect.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicsgridlayout.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicsitem.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicslayout.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicslayoutitem.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicslinearlayout.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicsproxywidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicsscene.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicssceneevent.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicstransform.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicsview.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicswidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qgridlayout.sip +%%PYQT_SIPDIR%%/QtWidgets/qgroupbox.sip +%%PYQT_SIPDIR%%/QtWidgets/qheaderview.sip +%%PYQT_SIPDIR%%/QtWidgets/qinputdialog.sip +%%PYQT_SIPDIR%%/QtWidgets/qitemdelegate.sip +%%PYQT_SIPDIR%%/QtWidgets/qitemeditorfactory.sip +%%PYQT_SIPDIR%%/QtWidgets/qkeyeventtransition.sip +%%PYQT_SIPDIR%%/QtWidgets/qkeysequenceedit.sip +%%PYQT_SIPDIR%%/QtWidgets/qlabel.sip +%%PYQT_SIPDIR%%/QtWidgets/qlayout.sip +%%PYQT_SIPDIR%%/QtWidgets/qlayoutitem.sip +%%PYQT_SIPDIR%%/QtWidgets/qlcdnumber.sip +%%PYQT_SIPDIR%%/QtWidgets/qlineedit.sip +%%PYQT_SIPDIR%%/QtWidgets/qlistview.sip +%%PYQT_SIPDIR%%/QtWidgets/qlistwidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qmaccocoaviewcontainer.sip +%%PYQT_SIPDIR%%/QtWidgets/qmainwindow.sip +%%PYQT_SIPDIR%%/QtWidgets/qmdiarea.sip +%%PYQT_SIPDIR%%/QtWidgets/qmdisubwindow.sip +%%PYQT_SIPDIR%%/QtWidgets/qmenu.sip +%%PYQT_SIPDIR%%/QtWidgets/qmenubar.sip +%%PYQT_SIPDIR%%/QtWidgets/qmessagebox.sip +%%PYQT_SIPDIR%%/QtWidgets/qmouseeventtransition.sip +%%PYQT_SIPDIR%%/QtWidgets/qopenglwidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qplaintextedit.sip +%%PYQT_SIPDIR%%/QtWidgets/qprogressbar.sip +%%PYQT_SIPDIR%%/QtWidgets/qprogressdialog.sip +%%PYQT_SIPDIR%%/QtWidgets/qproxystyle.sip +%%PYQT_SIPDIR%%/QtWidgets/qpushbutton.sip +%%PYQT_SIPDIR%%/QtWidgets/qpywidgets_qlist.sip +%%PYQT_SIPDIR%%/QtWidgets/qradiobutton.sip +%%PYQT_SIPDIR%%/QtWidgets/qrubberband.sip +%%PYQT_SIPDIR%%/QtWidgets/qscrollarea.sip +%%PYQT_SIPDIR%%/QtWidgets/qscrollbar.sip +%%PYQT_SIPDIR%%/QtWidgets/qscroller.sip +%%PYQT_SIPDIR%%/QtWidgets/qscrollerproperties.sip +%%PYQT_SIPDIR%%/QtWidgets/qshortcut.sip +%%PYQT_SIPDIR%%/QtWidgets/qsizegrip.sip +%%PYQT_SIPDIR%%/QtWidgets/qsizepolicy.sip +%%PYQT_SIPDIR%%/QtWidgets/qslider.sip +%%PYQT_SIPDIR%%/QtWidgets/qspinbox.sip +%%PYQT_SIPDIR%%/QtWidgets/qsplashscreen.sip +%%PYQT_SIPDIR%%/QtWidgets/qsplitter.sip +%%PYQT_SIPDIR%%/QtWidgets/qstackedlayout.sip +%%PYQT_SIPDIR%%/QtWidgets/qstackedwidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qstatusbar.sip +%%PYQT_SIPDIR%%/QtWidgets/qstyle.sip +%%PYQT_SIPDIR%%/QtWidgets/qstyleditemdelegate.sip +%%PYQT_SIPDIR%%/QtWidgets/qstylefactory.sip +%%PYQT_SIPDIR%%/QtWidgets/qstyleoption.sip +%%PYQT_SIPDIR%%/QtWidgets/qstylepainter.sip +%%PYQT_SIPDIR%%/QtWidgets/qsystemtrayicon.sip +%%PYQT_SIPDIR%%/QtWidgets/qtabbar.sip +%%PYQT_SIPDIR%%/QtWidgets/qtableview.sip +%%PYQT_SIPDIR%%/QtWidgets/qtablewidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qtabwidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qtextbrowser.sip +%%PYQT_SIPDIR%%/QtWidgets/qtextedit.sip +%%PYQT_SIPDIR%%/QtWidgets/qtoolbar.sip +%%PYQT_SIPDIR%%/QtWidgets/qtoolbox.sip +%%PYQT_SIPDIR%%/QtWidgets/qtoolbutton.sip +%%PYQT_SIPDIR%%/QtWidgets/qtooltip.sip +%%PYQT_SIPDIR%%/QtWidgets/qtreeview.sip +%%PYQT_SIPDIR%%/QtWidgets/qtreewidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qtreewidgetitemiterator.sip +%%PYQT_SIPDIR%%/QtWidgets/qundogroup.sip +%%PYQT_SIPDIR%%/QtWidgets/qundostack.sip +%%PYQT_SIPDIR%%/QtWidgets/qundoview.sip +%%PYQT_SIPDIR%%/QtWidgets/qwhatsthis.sip +%%PYQT_SIPDIR%%/QtWidgets/qwidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qwidgetaction.sip +%%PYQT_SIPDIR%%/QtWidgets/qwizard.sip +%%API%%share/qt5/qsci/api/python/QtWidgets.api Index: x11/Makefile =================================================================== --- x11/Makefile +++ x11/Makefile @@ -232,6 +232,7 @@ SUBDIR += printscreen SUBDIR += props SUBDIR += py-qt4-opengl + SUBDIR += py-qt5-opengl SUBDIR += qimageblitz SUBDIR += qt4-graphicssystems-opengl SUBDIR += qt4-inputmethods Index: x11/leechcraft/Makefile =================================================================== --- x11/leechcraft/Makefile +++ x11/leechcraft/Makefile @@ -3,7 +3,7 @@ PORTNAME= leechcraft PORTVERSION= 0.6.70 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= x11 MASTER_SITES= http://dist.leechcraft.org/LeechCraft/0.6.70/ @@ -274,7 +274,7 @@ POPISHU_DESC= Text editor with IDE features POPISHU_CMAKE_ON= -DENABLE_POPISHU:BOOL=true POPISHU_CMAKE_OFF= -DENABLE_POPISHU:BOOL=false -POPISHU_LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 +POPISHU_LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 POSHUKU_DESC= The full-featured web browser plugin POSHUKU_CMAKE_ON= -DENABLE_POSHUKU:BOOL=true Index: x11/py-qt4-opengl/Makefile =================================================================== --- x11/py-qt4-opengl/Makefile +++ x11/py-qt4-opengl/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= opengl +PORTVERSION= ${PYQT4_VERSION} PORTEPOCH= 1 CATEGORIES= x11 devel python @@ -8,11 +9,12 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt4 toolkit, QtOpenGL module -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip -RUN_DEPENDS= ${PKGNAMEPREFIX}gui>=${PYQT4_VERSION}:${PORTSDIR}/x11-toolkits/py-qt4-gui +CONFIGURE_ARGS= --enable QtOpenGL +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes -CONFIGURE_ARGS= --enable QtOpenGL -PYQT4_DIST= yes +USES= python pyqt:4 +USE_PYQT= sip_build gui_run USE_QT4= moc_build opengl qmake_build OPTIONS_DEFINE= API DEBUG @@ -22,8 +24,7 @@ API_DESC= Install QtOpenGL API for QScintilla2 API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} API_CONFIGURE_OFF= --no-qsci-api -API_LIB_DEPENDS= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 +API_LIB_DEPENDS= libqscintilla2-qt4.so:${PORTSDIR}/devel/qscintilla2-qt4 DEBUG_CONFIGURE_ON= --debug --trace -.include "${.CURDIR}/../../devel/py-qt4/bsd.pyqt.mk" .include Index: x11/py-qt4-opengl/pkg-plist =================================================================== --- x11/py-qt4-opengl/pkg-plist +++ x11/py-qt4-opengl/pkg-plist @@ -1,9 +1,9 @@ %%PYTHON_SITELIBDIR%%/PyQt4/QtOpenGL.so -share/py-sip/QtOpenGL/QtOpenGLmod.sip -share/py-sip/QtOpenGL/qgl.sip -share/py-sip/QtOpenGL/qglbuffer.sip -share/py-sip/QtOpenGL/qglcolormap.sip -share/py-sip/QtOpenGL/qglframebufferobject.sip -share/py-sip/QtOpenGL/qglpixelbuffer.sip -share/py-sip/QtOpenGL/qglshaderprogram.sip +%%PYQT_SIPDIR%%/QtOpenGL/QtOpenGLmod.sip +%%PYQT_SIPDIR%%/QtOpenGL/qgl.sip +%%PYQT_SIPDIR%%/QtOpenGL/qglbuffer.sip +%%PYQT_SIPDIR%%/QtOpenGL/qglcolormap.sip +%%PYQT_SIPDIR%%/QtOpenGL/qglframebufferobject.sip +%%PYQT_SIPDIR%%/QtOpenGL/qglpixelbuffer.sip +%%PYQT_SIPDIR%%/QtOpenGL/qglshaderprogram.sip %%API%%share/qt4/qsci/api/python/QtOpenGL.api Index: x11/py-qt5-opengl/Makefile =================================================================== --- x11/py-qt5-opengl/Makefile +++ x11/py-qt5-opengl/Makefile @@ -0,0 +1,28 @@ +# Created by: Danny Pansters +# $FreeBSD$ + +PORTNAME= opengl +CATEGORIES= x11 devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtOpenGL module + +CONFIGURE_ARGS= --enable QtOpenGL +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +PYQT_DIST= yes + +USES= python pyqt:5 qmake +USE_PYQT= sip_build core_run +USE_QT5= opengl + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtOpenGL API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include Index: x11/py-qt5-opengl/pkg-descr =================================================================== --- x11/py-qt5-opengl/pkg-descr +++ x11/py-qt5-opengl/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtOpenGL module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ Index: x11/py-qt5-opengl/pkg-plist =================================================================== --- x11/py-qt5-opengl/pkg-plist +++ x11/py-qt5-opengl/pkg-plist @@ -0,0 +1,4 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtOpenGL.so +%%PYQT_SIPDIR%%/QtOpenGL/QtOpenGLmod.sip +%%PYQT_SIPDIR%%/QtOpenGL/qgl.sip +%%API%%share/qt5/qsci/api/python/QtOpenGL.api