FreeBSD Bugzilla – Attachment 163322 Details for
Bug 204672
[exp-run] Add PyQt5 ports, add pyqt USES, move qscintilla port
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
patch
pyqt5.diff (text/plain), 475.42 KB, created by
Guido Falsi
on 2015-11-19 09:34:20 UTC
(
hide
)
Description:
patch
Filename:
MIME Type:
Creator:
Guido Falsi
Created:
2015-11-19 09:34:20 UTC
Size:
475.42 KB
patch
obsolete
>Index: Mk/Uses/pyqt.mk >=================================================================== >--- Mk/Uses/pyqt.mk (nonexistent) >+++ Mk/Uses/pyqt.mk (working copy) >@@ -0,0 +1,245 @@ >+# $FreeBSD$ >+# pyqt.mk - Global definitions for PyQt related ports >+# Provides USE_PYQT accepting a list of py-qt components to depend on >+# * foo_build only build depend >+# * foo_run only run depend >+# * foo both (default) >+# >+# Feature: pyqt >+# Usage: USES=pyqt:ARGS >+# Valid ARGS: 4,5 >+# >+# MAINTAINER: kde@freebsd.org >+# >+# Internal Port variables for py-qt ports: >+# PYQT_DIST - This port is part of PyQt4/5 itself. Variables and >+# targets are then set assuming a certain tarball and >+# port layout. >+# >+ >+.if !defined(_INCLUDE_USES_PYQT_MK) >+_INCLUDE_USES_PYQT_MK= yes >+ >+# at the moment we support py-qt bindings versions 4 and 5 -- dummy for sip >+_PYQT_SUPPORTED= 4 5 dummy >+ >+.if empty(pyqt_ARGS) >+IGNORE= pyqt needs a qt-version (${_PYQT_SUPPORTED}) >+.endif >+ >+# at the moment we support py-qt 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?= pyqt:[${_PYQT_SUPPORTED:S/ //g}] needs an argument #' >+.error pyqt:[${_PYQT_SUPPORTED:S/ //g}] needs an argument # ... something is not working right >+.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_PRELNAME= ${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_PRELNAME}-assistant>=${PYQT_VERSION} >+py-core_PATH= ${PYQT_PRELNAME}-core>=${PYQT_VERSION} >+py-dbus_PATH= ${PYQT_PRELNAME}-dbus>=${PYQT_VERSION} >+py-dbussupport_PATH= ${PYQT_PRELNAME}-dbussupport>=${PYQT_VERSION} >+py-declarative_PATH= ${PYQT_PRELNAME}-declarative>=${PYQT_VERSION} >+py-demo_PATH= ${PYQT_PRELNAME}-demo>=${PYQT_VERSION} >+py-designer_PATH= ${PYQT_PRELNAME}-designer>=${PYQT_VERSION} >+py-designerplugin_PATH= ${PYQT_PRELNAME}-designerplugin>=${PYQT_VERSION} >+py-doc_PATH= ${PYQT_PRELNAME}-doc>=${PYQT_VERSION} >+py-gui_PATH= ${PYQT_PRELNAME}-gui>=${PYQT_VERSION} >+py-help_PATH= ${PYQT_PRELNAME}-help>=${PYQT_VERSION} >+py-multimedia_PATH= ${PYQT_PRELNAME}-multimedia>=${PYQT_VERSION} >+py-network_PATH= ${PYQT_PRELNAME}-network>=${PYQT_VERSION} >+py-opengl_PATH= ${PYQT_PRELNAME}-opengl>=${PYQT_VERSION} >+py-phonon_PATH= ${PYQT_PRELNAME}-phonon>=${PYQT_VERSION} >+py-qscintilla2_PATH= ${PYQT_PRELNAME}-qscintilla2>=${QSCI2_VERSION} >+py-script_PATH= ${PYQT_PRELNAME}-script>=${PYQT_VERSION} >+py-scripttools_PATH= ${PYQT_PRELNAME}-scripttools>=${PYQT_VERSION} >+py-sql_PATH= ${PYQT_PRELNAME}-sql>=${PYQT_VERSION} >+py-svg_PATH= ${PYQT_PRELNAME}-svg>=${PYQT_VERSION} >+py-test_PATH= ${PYQT_PRELNAME}-test>=${PYQT_VERSION} >+py-webkit_PATH= ${PYQT_PRELNAME}-webkit>=${PYQT_VERSION} >+py-xml_PATH= ${PYQT_PRELNAME}-xml>=${PYQT_VERSION} >+py-xmlpatterns_PATH= ${PYQT_PRELNAME}-xmlpatterns>=${PYQT_VERSION} >+ >+ >+py-printsupport_PATH= ${PYQT_PRELNAME}-printsupport>=${PYQT_VERSION} >+py-serialport_PATH= ${PYQT_PRELNAME}-serialport>=${PYQT_VERSION} >+py-webkitwidgets_PATH= ${PYQT_PRELNAME}-webkitwidgets>=${PYQT_VERSION} >+py-widgets_PATH= ${PYQT_PRELNAME}-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_PRELNAME}- >+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 >+OPTIONSFILE?= ${PORT_DBDIR}/${PYQT_RELNAME}-${PORTNAME}/options >+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 PyQt4 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(PYQT4_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) > >Property changes on: Mk/Uses/pyqt.mk >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: cad/openscad/Makefile >=================================================================== >--- cad/openscad/Makefile (revision 401917) >+++ cad/openscad/Makefile (working copy) >@@ -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/py-qt5-serialport/Makefile >=================================================================== >--- comms/py-qt5-serialport/Makefile (nonexistent) >+++ comms/py-qt5-serialport/Makefile (working copy) >@@ -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 <bsd.port.mk> > >Property changes on: comms/py-qt5-serialport/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: comms/py-qt5-serialport/pkg-descr >=================================================================== >--- comms/py-qt5-serialport/pkg-descr (nonexistent) >+++ comms/py-qt5-serialport/pkg-descr (working copy) >@@ -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/ > >Property changes on: comms/py-qt5-serialport/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: comms/py-qt5-serialport/pkg-plist >=================================================================== >--- comms/py-qt5-serialport/pkg-plist (nonexistent) >+++ comms/py-qt5-serialport/pkg-plist (working copy) >@@ -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 > >Property changes on: comms/py-qt5-serialport/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: databases/py-qt4-sql/Makefile >=================================================================== >--- databases/py-qt4-sql/Makefile (revision 401917) >+++ databases/py-qt4-sql/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: databases/py-qt4-sql/pkg-plist >=================================================================== >--- databases/py-qt4-sql/pkg-plist (revision 401917) >+++ databases/py-qt4-sql/pkg-plist (working copy) >@@ -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 (nonexistent) >+++ databases/py-qt5-sql/Makefile (working copy) >@@ -0,0 +1,28 @@ >+# Created by: Danny Pansters <danny@ricin.com> >+# $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 widgets sql >+ >+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 <bsd.port.mk> > >Property changes on: databases/py-qt5-sql/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: databases/py-qt5-sql/pkg-descr >=================================================================== >--- databases/py-qt5-sql/pkg-descr (nonexistent) >+++ databases/py-qt5-sql/pkg-descr (working copy) >@@ -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/ > >Property changes on: databases/py-qt5-sql/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: databases/py-qt5-sql/pkg-plist >=================================================================== >--- databases/py-qt5-sql/pkg-plist (nonexistent) >+++ databases/py-qt5-sql/pkg-plist (working copy) >@@ -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 > >Property changes on: databases/py-qt5-sql/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: databases/sqliteman/Makefile >=================================================================== >--- databases/sqliteman/Makefile (revision 401917) >+++ databases/sqliteman/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: databases/tora/Makefile >=================================================================== >--- databases/tora/Makefile (revision 401917) >+++ databases/tora/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: devel/p5-perlqt/Makefile >=================================================================== >--- devel/p5-perlqt/Makefile (revision 401917) >+++ devel/p5-perlqt/Makefile (working copy) >@@ -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/Makefile >=================================================================== >--- devel/py-qt4/Makefile (revision 401917) >+++ devel/py-qt4/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: devel/py-qt4/bsd.pyqt.mk >=================================================================== >--- devel/py-qt4/bsd.pyqt.mk (revision 401917) >+++ devel/py-qt4/bsd.pyqt.mk (nonexistent) >@@ -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) > >Property changes on: devel/py-qt4/bsd.pyqt.mk >___________________________________________________________________ >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:keywords >## -1 +0,0 ## >-FreeBSD=%H >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: devel/py-qt4/distinfo >=================================================================== >--- devel/py-qt4/distinfo (revision 401917) >+++ devel/py-qt4/distinfo (working copy) >@@ -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-qt4-assistant/Makefile >=================================================================== >--- devel/py-qt4-assistant/Makefile (revision 401917) >+++ devel/py-qt4-assistant/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: devel/py-qt4-assistant/pkg-plist >=================================================================== >--- devel/py-qt4-assistant/pkg-plist (revision 401917) >+++ devel/py-qt4-assistant/pkg-plist (working copy) >@@ -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 (revision 401917) >+++ devel/py-qt4-core/Makefile (working copy) >@@ -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 <bsd.port.pre.mk> > > # 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 (revision 401917) >+++ devel/py-qt4-core/pkg-plist (working copy) >@@ -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 (revision 401917) >+++ devel/py-qt4-dbus/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: devel/py-qt4-dbus/pkg-plist >=================================================================== >--- devel/py-qt4-dbus/pkg-plist (revision 401917) >+++ devel/py-qt4-dbus/pkg-plist (working copy) >@@ -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 (revision 401917) >+++ devel/py-qt4-dbussupport/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: devel/py-qt4-declarative/Makefile >=================================================================== >--- devel/py-qt4-declarative/Makefile (revision 401917) >+++ devel/py-qt4-declarative/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: devel/py-qt4-declarative/pkg-plist >=================================================================== >--- devel/py-qt4-declarative/pkg-plist (revision 401917) >+++ devel/py-qt4-declarative/pkg-plist (working copy) >@@ -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 (revision 401917) >+++ devel/py-qt4-designer/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: devel/py-qt4-designer/pkg-plist >=================================================================== >--- devel/py-qt4-designer/pkg-plist (revision 401917) >+++ devel/py-qt4-designer/pkg-plist (working copy) >@@ -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 (revision 401917) >+++ devel/py-qt4-designerplugin/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: devel/py-qt4-help/Makefile >=================================================================== >--- devel/py-qt4-help/Makefile (revision 401917) >+++ devel/py-qt4-help/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: devel/py-qt4-help/pkg-plist >=================================================================== >--- devel/py-qt4-help/pkg-plist (revision 401917) >+++ devel/py-qt4-help/pkg-plist (working copy) >@@ -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 (revision 401917) >+++ devel/py-qt4-qscintilla2/Makefile (working copy) >@@ -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 (revision 401917) >+++ devel/py-qt4-qscintilla2/pkg-plist (working copy) >@@ -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 (revision 401917) >+++ devel/py-qt4-script/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: devel/py-qt4-script/pkg-plist >=================================================================== >--- devel/py-qt4-script/pkg-plist (revision 401917) >+++ devel/py-qt4-script/pkg-plist (working copy) >@@ -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 (revision 401917) >+++ devel/py-qt4-scripttools/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: devel/py-qt4-scripttools/pkg-plist >=================================================================== >--- devel/py-qt4-scripttools/pkg-plist (revision 401917) >+++ devel/py-qt4-scripttools/pkg-plist (working copy) >@@ -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 (revision 401917) >+++ devel/py-qt4-test/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: devel/py-qt4-test/pkg-plist >=================================================================== >--- devel/py-qt4-test/pkg-plist (revision 401917) >+++ devel/py-qt4-test/pkg-plist (working copy) >@@ -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-qt5/Makefile >=================================================================== >--- devel/py-qt5/Makefile (nonexistent) >+++ devel/py-qt5/Makefile (working copy) >@@ -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 <bsd.port.mk> > >Property changes on: devel/py-qt5/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/py-qt5/distinfo >=================================================================== >--- devel/py-qt5/distinfo (nonexistent) >+++ devel/py-qt5/distinfo (working copy) >@@ -0,0 +1,2 @@ >+SHA256 (PyQt-gpl-5.5.1.tar.gz) = 0a70ef94fbffcf674b0dde024aae2a2a7a3f5a8c42806109ff7df2c941bd8386 >+SIZE (PyQt-gpl-5.5.1.tar.gz) = 3705749 > >Property changes on: devel/py-qt5/distinfo >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/py-qt5/pkg-descr >=================================================================== >--- devel/py-qt5/pkg-descr (nonexistent) >+++ devel/py-qt5/pkg-descr (working copy) >@@ -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/ > >Property changes on: devel/py-qt5/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/py-qt5-core/Makefile >=================================================================== >--- devel/py-qt5-core/Makefile (nonexistent) >+++ devel/py-qt5-core/Makefile (working copy) >@@ -0,0 +1,52 @@ >+# $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 <bsd.port.pre.mk> >+ >+# 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 <bsd.port.post.mk> > >Property changes on: devel/py-qt5-core/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/py-qt5-core/files/Qt.py >=================================================================== >--- devel/py-qt5-core/files/Qt.py (nonexistent) >+++ devel/py-qt5-core/files/Qt.py (working copy) >@@ -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 > >Property changes on: devel/py-qt5-core/files/Qt.py >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/py-qt5-core/files/patch-configure.py >=================================================================== >--- devel/py-qt5-core/files/patch-configure.py (nonexistent) >+++ devel/py-qt5-core/files/patch-configure.py (working copy) >@@ -0,0 +1,109 @@ >+--- configure.py.orig 2015-07-17 11:45:40 UTC >++++ configure.py >+@@ -1219,7 +1219,7 @@ def check_modules(target_config, verbose >+ 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, verbose, 'QtGui', 'qfont.h', 'new QFont()') >+ check_module(target_config, verbose, 'QtHelp', 'qhelpengine.h', >+@@ -1436,16 +1436,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: >+@@ -1476,6 +1477,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 != '': >+@@ -1504,21 +1506,26 @@ 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(''' >++ if "QtCore" in target_config.pyqt_modules: >++ 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 "QtCore" in target_config.pyqt_modules: >++ out_f.write(''' >+ pyuic5.files = %s >+ pyuic5.path = %s >+ INSTALLS += pyuic5 >+@@ -1527,17 +1534,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) >+@@ -2229,9 +2236,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: > >Property changes on: devel/py-qt5-core/files/patch-configure.py >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/py-qt5-core/pkg-descr >=================================================================== >--- devel/py-qt5-core/pkg-descr (nonexistent) >+++ devel/py-qt5-core/pkg-descr (working copy) >@@ -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/ > >Property changes on: devel/py-qt5-core/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/py-qt5-core/pkg-plist >=================================================================== >--- devel/py-qt5-core/pkg-plist (nonexistent) >+++ devel/py-qt5-core/pkg-plist (working copy) >@@ -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 > >Property changes on: devel/py-qt5-core/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/py-qt5-dbus/Makefile >=================================================================== >--- devel/py-qt5-dbus/Makefile (nonexistent) >+++ devel/py-qt5-dbus/Makefile (working copy) >@@ -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 <bsd.port.mk> > >Property changes on: devel/py-qt5-dbus/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/py-qt5-dbus/pkg-descr >=================================================================== >--- devel/py-qt5-dbus/pkg-descr (nonexistent) >+++ devel/py-qt5-dbus/pkg-descr (working copy) >@@ -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/ > >Property changes on: devel/py-qt5-dbus/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/py-qt5-dbus/pkg-plist >=================================================================== >--- devel/py-qt5-dbus/pkg-plist (nonexistent) >+++ devel/py-qt5-dbus/pkg-plist (working copy) >@@ -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 > >Property changes on: devel/py-qt5-dbus/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/py-qt5-designer/Makefile >=================================================================== >--- devel/py-qt5-designer/Makefile (nonexistent) >+++ devel/py-qt5-designer/Makefile (working copy) >@@ -0,0 +1,30 @@ >+# Created by: Danny Pansters <danny@ricin.com> >+# $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 xml 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 <bsd.port.mk> > >Property changes on: devel/py-qt5-designer/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/py-qt5-designer/pkg-descr >=================================================================== >--- devel/py-qt5-designer/pkg-descr (nonexistent) >+++ devel/py-qt5-designer/pkg-descr (working copy) >@@ -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/ > >Property changes on: devel/py-qt5-designer/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/py-qt5-designer/pkg-plist >=================================================================== >--- devel/py-qt5-designer/pkg-plist (nonexistent) >+++ devel/py-qt5-designer/pkg-plist (working copy) >@@ -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 > >Property changes on: devel/py-qt5-designer/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/py-qt5-qscintilla2/Makefile >=================================================================== >--- devel/py-qt5-qscintilla2/Makefile (nonexistent) >+++ devel/py-qt5-qscintilla2/Makefile (working copy) >@@ -0,0 +1,39 @@ >+# $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 >+USE_PYQT= sip core gui printsupport widgets >+USE_QT5= gui buildtools_build qmake_build >+ >+OPTIONS_DEFINE= DEBUG >+DEBUG_CONFIGURE_ON= --debug --trace >+ >+OPTIONSFILE?= ${PORT_DBDIR}/py-qt5-${PORTNAME}/options >+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 <bsd.port.mk> > >Property changes on: devel/py-qt5-qscintilla2/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/py-qt5-qscintilla2/pkg-descr >=================================================================== >--- devel/py-qt5-qscintilla2/pkg-descr (nonexistent) >+++ devel/py-qt5-qscintilla2/pkg-descr (working copy) >@@ -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/ > >Property changes on: devel/py-qt5-qscintilla2/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/py-qt5-qscintilla2/pkg-plist >=================================================================== >--- devel/py-qt5-qscintilla2/pkg-plist (nonexistent) >+++ devel/py-qt5-qscintilla2/pkg-plist (working copy) >@@ -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 > >Property changes on: devel/py-qt5-qscintilla2/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/py-qt5-test/Makefile >=================================================================== >--- devel/py-qt5-test/Makefile (nonexistent) >+++ devel/py-qt5-test/Makefile (working copy) >@@ -0,0 +1,28 @@ >+# Created by: Danny Pansters <danny@ricin.com> >+# $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 <bsd.port.mk> > >Property changes on: devel/py-qt5-test/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/py-qt5-test/pkg-descr >=================================================================== >--- devel/py-qt5-test/pkg-descr (nonexistent) >+++ devel/py-qt5-test/pkg-descr (working copy) >@@ -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/ > >Property changes on: devel/py-qt5-test/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/py-qt5-test/pkg-plist >=================================================================== >--- devel/py-qt5-test/pkg-plist (nonexistent) >+++ devel/py-qt5-test/pkg-plist (working copy) >@@ -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 > >Property changes on: devel/py-qt5-test/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/py-sip/Makefile >=================================================================== >--- devel/py-sip/Makefile (revision 401917) >+++ devel/py-sip/Makefile (working copy) >@@ -12,8 +12,9 @@ > MAINTAINER= kde@FreeBSD.org > COMMENT= Python to C and C++ bindings generator > >-USES= python >-USE_PYTHON= py3kplist >+USES= python pyqt:dummy >+USE_PYTHON= concurrent py3kplist >+USE_PYQT= # > > DATADIR= ${PREFIX}/share/py-${PORTNAME} > DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} >@@ -28,7 +29,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 (revision 401917) >+++ devel/py-sip/distinfo (working copy) >@@ -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/Makefile >=================================================================== >--- devel/qscintilla2/Makefile (revision 401917) >+++ devel/qscintilla2/Makefile (nonexistent) >@@ -1,55 +0,0 @@ >-# Created by: Danny Pansters <danny@ricin.com> >-# $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 <bsd.port.options.mk> >- >-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 <bsd.port.mk> > >Property changes on: devel/qscintilla2/Makefile >___________________________________________________________________ >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:keywords >## -1 +0,0 ## >-FreeBSD=%H >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: devel/qscintilla2/distinfo >=================================================================== >--- devel/qscintilla2/distinfo (revision 401917) >+++ devel/qscintilla2/distinfo (nonexistent) >@@ -1,2 +0,0 @@ >-SHA256 (QScintilla-gpl-2.8.4.tar.gz) = 9b7b2d7440cc39736bbe937b853506b3bd218af3b79095d4f710cccb0fabe80f >-SIZE (QScintilla-gpl-2.8.4.tar.gz) = 3031919 > >Property changes on: devel/qscintilla2/distinfo >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: devel/qscintilla2/pkg-descr >=================================================================== >--- devel/qscintilla2/pkg-descr (revision 401917) >+++ devel/qscintilla2/pkg-descr (nonexistent) >@@ -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/ > >Property changes on: devel/qscintilla2/pkg-descr >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: devel/qscintilla2/pkg-plist >=================================================================== >--- devel/qscintilla2/pkg-plist (revision 401917) >+++ devel/qscintilla2/pkg-plist (nonexistent) >@@ -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 > >Property changes on: devel/qscintilla2/pkg-plist >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: devel/qscintilla2-designerplugin/Makefile >=================================================================== >--- devel/qscintilla2-designerplugin/Makefile (revision 401917) >+++ devel/qscintilla2-designerplugin/Makefile (nonexistent) >@@ -1,33 +0,0 @@ >-# Created by: Danny Pansters <danny@ricin.com> >-# $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 <bsd.port.mk> > >Property changes on: devel/qscintilla2-designerplugin/Makefile >___________________________________________________________________ >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:keywords >## -1 +0,0 ## >-FreeBSD=%H >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: devel/qscintilla2-designerplugin/pkg-descr >=================================================================== >--- devel/qscintilla2-designerplugin/pkg-descr (revision 401917) >+++ devel/qscintilla2-designerplugin/pkg-descr (nonexistent) >@@ -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/ > >Property changes on: devel/qscintilla2-designerplugin/pkg-descr >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: devel/qscintilla2-qt4/Makefile >=================================================================== >--- devel/qscintilla2-qt4/Makefile (revision 401917) >+++ devel/qscintilla2-qt4/Makefile (working copy) >@@ -1,8 +1,9 @@ > # Created by: Danny Pansters <danny@ricin.com> > # $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 <bsd.port.options.mk> > >+ > 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 (revision 401917) >+++ devel/qscintilla2-qt4/distinfo (working copy) >@@ -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-descr >=================================================================== >Index: devel/qscintilla2-qt4/pkg-plist >=================================================================== >--- devel/qscintilla2-qt4/pkg-plist (revision 401917) >+++ devel/qscintilla2-qt4/pkg-plist (working copy) >@@ -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-qt4-designerplugin/Makefile >=================================================================== >--- devel/qscintilla2-qt4-designerplugin/Makefile (revision 401917) >+++ devel/qscintilla2-qt4-designerplugin/Makefile (working copy) >@@ -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-designerplugin/pkg-descr >=================================================================== >Index: devel/qscintilla2-qt5/Makefile >=================================================================== >--- devel/qscintilla2-qt5/Makefile (nonexistent) >+++ devel/qscintilla2-qt5/Makefile (working copy) >@@ -0,0 +1,63 @@ >+# $FreeBSD$ >+ >+PORTNAME= qscintilla2-qt5 >+PORTVERSION= ${QSCI2_VERSION} >+PORTREVISION= 1 >+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 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 <bsd.port.options.mk> >+ >+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}|; \ >+ 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 <bsd.port.mk> > >Property changes on: devel/qscintilla2-qt5/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/qscintilla2-qt5/distinfo >=================================================================== >--- devel/qscintilla2-qt5/distinfo (nonexistent) >+++ devel/qscintilla2-qt5/distinfo (working copy) >@@ -0,0 +1,2 @@ >+SHA256 (QScintilla-gpl-2.9.tar.gz) = d7c32e32582f93779de861006d87467b38b9ebc06e3d0b32e981cb24369fa417 >+SIZE (QScintilla-gpl-2.9.tar.gz) = 2435116 > >Property changes on: devel/qscintilla2-qt5/distinfo >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/qscintilla2-qt5/files/patch-Qt4Qt5_qscintilla.pro >=================================================================== >--- devel/qscintilla2-qt5/files/patch-Qt4Qt5_qscintilla.pro (nonexistent) >+++ devel/qscintilla2-qt5/files/patch-Qt4Qt5_qscintilla.pro (working copy) >@@ -0,0 +1,11 @@ >+--- Qt4Qt5/qscintilla.pro.orig 2015-09-14 07:01:38 UTC >++++ Qt4Qt5/qscintilla.pro >+@@ -77,7 +77,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 >+ } > >Property changes on: devel/qscintilla2-qt5/files/patch-Qt4Qt5_qscintilla.pro >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/qscintilla2-qt5/pkg-descr >=================================================================== >--- devel/qscintilla2-qt5/pkg-descr (nonexistent) >+++ devel/qscintilla2-qt5/pkg-descr (working copy) >@@ -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/ > >Property changes on: devel/qscintilla2-qt5/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/qscintilla2-qt5/pkg-plist >=================================================================== >--- devel/qscintilla2-qt5/pkg-plist (nonexistent) >+++ devel/qscintilla2-qt5/pkg-plist (working copy) >@@ -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 > >Property changes on: devel/qscintilla2-qt5/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: devel/ruby-qtruby/Makefile >=================================================================== >--- devel/ruby-qtruby/Makefile (revision 401917) >+++ devel/ruby-qtruby/Makefile (working copy) >@@ -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 (revision 401917) >+++ devel/smokegen/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: devel/smokeqt/Makefile >=================================================================== >--- devel/smokeqt/Makefile (revision 401917) >+++ devel/smokeqt/Makefile (working copy) >@@ -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 (revision 401917) >+++ devel/universalindentgui/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: graphics/py-qt4-svg/Makefile >=================================================================== >--- graphics/py-qt4-svg/Makefile (revision 401917) >+++ graphics/py-qt4-svg/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: graphics/py-qt4-svg/pkg-plist >=================================================================== >--- graphics/py-qt4-svg/pkg-plist (revision 401917) >+++ graphics/py-qt4-svg/pkg-plist (working copy) >@@ -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 (nonexistent) >+++ graphics/py-qt5-svg/Makefile (working copy) >@@ -0,0 +1,29 @@ >+# Created by: Danny Pansters <danny@ricin.com> >+# $FreeBSD$ >+ >+PORTNAME= svg >+PORTEPOCH= 1 >+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 <bsd.port.mk> > >Property changes on: graphics/py-qt5-svg/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: graphics/py-qt5-svg/pkg-descr >=================================================================== >--- graphics/py-qt5-svg/pkg-descr (nonexistent) >+++ graphics/py-qt5-svg/pkg-descr (working copy) >@@ -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/ > >Property changes on: graphics/py-qt5-svg/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: graphics/py-qt5-svg/pkg-plist >=================================================================== >--- graphics/py-qt5-svg/pkg-plist (nonexistent) >+++ graphics/py-qt5-svg/pkg-plist (working copy) >@@ -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 > >Property changes on: graphics/py-qt5-svg/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: graphics/qgis/Makefile >=================================================================== >--- graphics/qgis/Makefile (revision 401917) >+++ graphics/qgis/Makefile (working copy) >@@ -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( "</td><td><a href=\\"https://github.com/qgis/QGIS/commit/%1\\">%1</a></td>" ).arg( QGis::QGIS_DEV_VERSION )|tr( "QGIS code revision" ) + "</td><td>" + tr( "${GH_TAGNAME}" ) + "</td>"|g' \ > ${WRKSRC}/src/app/qgisapp.cpp >+ @${REINPLACE_CMD} -e 's|qscintilla2 |qscintilla2-qt4 |g' \ >+ ${WRKSRC}/cmake/FindQScintilla.cmake > > .include <bsd.port.mk> >Index: graphics/qgis/distinfo >=================================================================== >--- graphics/qgis/distinfo (revision 401917) >+++ graphics/qgis/distinfo (working copy) >@@ -1,2 +1,2 @@ >-SHA256 (qgis-QGIS-2.12.0-cd9d645_GH0.tar.gz) = afe8d4f91fd134e5e8e6b7f94e61fc359ceec508807a87365c59039119a91af2 >-SIZE (qgis-QGIS-2.12.0-cd9d645_GH0.tar.gz) = 80794973 >+SHA256 (qgis-QGIS-2.10.1-e5928c7_GH0.tar.gz) = 754c9fb0f44e4afd9f441cce5a66cb2efac03f1e28479e3abbea6fd2e55da825 >+SIZE (qgis-QGIS-2.10.1-e5928c7_GH0.tar.gz) = 77333682 >Index: graphics/qgis/pkg-plist >=================================================================== >--- graphics/qgis/pkg-plist (revision 401917) >+++ graphics/qgis/pkg-plist (working copy) >@@ -31,8 +31,6 @@ > include/qgis/qgsactionmenu.h > include/qgis/qgsaddremoveitemcommand.h > include/qgis/qgsaddremovemultiframecommand.h >-include/qgis/qgsadvanceddigitizingdockwidget.h >-include/qgis/qgsalignraster.h > include/qgis/qgsannotationitem.h > include/qgis/qgsapplication.h > include/qgis/qgsarcproperter.h >@@ -50,33 +48,6 @@ > include/qgis/qgsattributetablemodel.h > include/qgis/qgsattributetableview.h > include/qgis/qgsattributetypeloaddialog.h >-include/qgis/qgsauthauthoritieseditor.h >-include/qgis/qgsauthcertificateinfo.h >-include/qgis/qgsauthcertificatemanager.h >-include/qgis/qgsauthcerttrustpolicycombobox.h >-include/qgis/qgsauthcertutils.h >-include/qgis/qgsauthconfig.h >-include/qgis/qgsauthconfigedit.h >-include/qgis/qgsauthconfigeditor.h >-include/qgis/qgsauthconfigidedit.h >-include/qgis/qgsauthconfigselect.h >-include/qgis/qgsauthcrypto.h >-include/qgis/qgsautheditorwidgets.h >-include/qgis/qgsauthguiutils.h >-include/qgis/qgsauthidentitieseditor.h >-include/qgis/qgsauthimportcertdialog.h >-include/qgis/qgsauthimportidentitydialog.h >-include/qgis/qgsauthmanager.h >-include/qgis/qgsauthmasterpassresetdialog.h >-include/qgis/qgsauthmethod.h >-include/qgis/qgsauthmethodedit.h >-include/qgis/qgsauthmethodmetadata.h >-include/qgis/qgsauthmethodregistry.h >-include/qgis/qgsauthserverseditor.h >-include/qgis/qgsauthsslconfigwidget.h >-include/qgis/qgsauthsslerrorsdialog.h >-include/qgis/qgsauthsslimportdialog.h >-include/qgis/qgsauthtrustedcasdialog.h > include/qgis/qgsbilinearrasterresampler.h > include/qgis/qgsblendmodecombobox.h > include/qgis/qgsblureffect.h >@@ -152,7 +123,6 @@ > include/qgis/qgscomposertexttable.h > include/qgis/qgscomposerview.h > include/qgis/qgscomposition.h >-include/qgis/qgsconditionalstyle.h > include/qgis/qgsconfig.h > include/qgis/qgsconnectionpool.h > include/qgis/qgscontexthelp.h >@@ -221,7 +191,6 @@ > include/qgis/qgsexpression.h > include/qgis/qgsexpressionbuilderdialog.h > include/qgis/qgsexpressionbuilderwidget.h >-include/qgis/qgsexpressioncontext.h > include/qgis/qgsexpressionfieldbuffer.h > include/qgis/qgsexpressionhighlighter.h > include/qgis/qgsexpressionselectiondialog.h >@@ -240,7 +209,6 @@ > include/qgis/qgsfield.h > include/qgis/qgsfield_p.h > include/qgis/qgsfieldcombobox.h >-include/qgis/qgsfieldconditionalformatwidget.h > include/qgis/qgsfieldexpressionwidget.h > include/qgis/qgsfieldmodel.h > include/qgis/qgsfieldproxymodel.h >@@ -294,7 +262,6 @@ > include/qgis/qgsinvertedpolygonrendererwidget.h > include/qgis/qgslabel.h > include/qgis/qgslabelattributes.h >-include/qgis/qgslabelingenginev2.h > include/qgis/qgslabelsearchtree.h > include/qgis/qgslayerdefinition.h > include/qgis/qgslayerpropertieswidget.h >@@ -339,7 +306,6 @@ > include/qgis/qgsmaplayerregistry.h > include/qgis/qgsmaplayerrenderer.h > include/qgis/qgsmaplayerstylemanager.h >-include/qgis/qgsmapmouseevent.h > include/qgis/qgsmapoverviewcanvas.h > include/qgis/qgsmaprenderer.h > include/qgis/qgsmaprenderercache.h >@@ -350,9 +316,6 @@ > include/qgis/qgsmapsettings.h > include/qgis/qgsmaptip.h > include/qgis/qgsmaptool.h >-include/qgis/qgsmaptooladvanceddigitizing.h >-include/qgis/qgsmaptoolcapture.h >-include/qgis/qgsmaptooledit.h > include/qgis/qgsmaptoolemitpoint.h > include/qgis/qgsmaptoolidentify.h > include/qgis/qgsmaptoolidentifyfeature.h >@@ -409,7 +372,6 @@ > include/qgis/qgsphotowidgetfactory.h > include/qgis/qgsphotowidgetwrapper.h > include/qgis/qgspiediagram.h >-include/qgis/qgspixmaplabel.h > include/qgis/qgspluginlayer.h > include/qgis/qgspluginlayerregistry.h > include/qgis/qgspluginmanagerinterface.h >@@ -417,7 +379,6 @@ > include/qgis/qgspointdisplacementrenderer.h > include/qgis/qgspointdisplacementrendererwidget.h > include/qgis/qgspointlocator.h >-include/qgis/qgspointv2.h > include/qgis/qgsprevieweffect.h > include/qgis/qgsproject.h > include/qgis/qgsprojectbadlayerguihandler.h >@@ -501,7 +462,6 @@ > include/qgis/qgsscalevisibilitydialog.h > include/qgis/qgsscalewidget.h > include/qgis/qgssearchquerybuilder.h >-include/qgis/qgssearchwidgetwrapper.h > include/qgis/qgsshadoweffect.h > include/qgis/qgssimplifymethod.h > include/qgis/qgssinglebandcolordatarenderer.h >@@ -521,7 +481,6 @@ > include/qgis/qgsspatialindex.h > include/qgis/qgsspinbox.h > include/qgis/qgsstatisticalsummary.h >-include/qgis/qgsstringutils.h > include/qgis/qgsstylev2.h > include/qgis/qgsstylev2exportimportdialog.h > include/qgis/qgsstylev2managerdialog.h >@@ -557,14 +516,11 @@ > include/qgis/qgsuuidwidgetfactory.h > include/qgis/qgsuuidwidgetwrapper.h > include/qgis/qgsvaluemapconfigdlg.h >-include/qgis/qgsvaluemapsearchwidgetwrapper.h > include/qgis/qgsvaluemapwidgetfactory.h > include/qgis/qgsvaluemapwidgetwrapper.h > include/qgis/qgsvaluerelationconfigdlg.h >-include/qgis/qgsvaluerelationsearchwidgetwrapper.h > include/qgis/qgsvaluerelationwidgetfactory.h > include/qgis/qgsvaluerelationwidgetwrapper.h >-include/qgis/qgsvariableeditorwidget.h > include/qgis/qgsvectorcolorbrewercolorrampv2dialog.h > include/qgis/qgsvectorcolorrampv2.h > include/qgis/qgsvectordataprovider.h >@@ -574,7 +530,6 @@ > include/qgis/qgsvectorgradientcolorrampv2dialog.h > include/qgis/qgsvectorlayer.h > include/qgis/qgsvectorlayercache.h >-include/qgis/qgsvectorlayerdiagramprovider.h > include/qgis/qgsvectorlayereditbuffer.h > include/qgis/qgsvectorlayereditpassthrough.h > include/qgis/qgsvectorlayereditutils.h >@@ -581,7 +536,6 @@ > include/qgis/qgsvectorlayerfeatureiterator.h > include/qgis/qgsvectorlayerimport.h > include/qgis/qgsvectorlayerjoinbuffer.h >-include/qgis/qgsvectorlayerlabelprovider.h > include/qgis/qgsvectorlayerrenderer.h > include/qgis/qgsvectorlayerselectionmanager.h > include/qgis/qgsvectorlayertools.h >@@ -589,7 +543,6 @@ > include/qgis/qgsvectorrandomcolorrampv2dialog.h > include/qgis/qgsvectorsimplifymethod.h > include/qgis/qgsvertexmarker.h >-include/qgis/qgsvisibilitypresetcollection.h > include/qgis/qgswebframe.h > include/qgis/qgswebpage.h > include/qgis/qgswebview.h >@@ -613,21 +566,19 @@ > include/qgis/ui_qgsquerybuilderbase.h > include/qgis/ui_qgssublayersdialogbase.h > lib/libqgis_analysis.so >-lib/libqgis_analysis.so.2.12.0 >-lib/libqgis_app.so >-lib/libqgis_app.so.2.12.0 >+lib/libqgis_analysis.so.2.10.1 > lib/libqgis_core.so >-lib/libqgis_core.so.2.12.0 >+lib/libqgis_core.so.2.10.1 > lib/libqgis_gui.so >-lib/libqgis_gui.so.2.12.0 >+lib/libqgis_gui.so.2.10.1 > lib/libqgis_networkanalysis.so >-lib/libqgis_networkanalysis.so.2.12.0 >+lib/libqgis_networkanalysis.so.2.10.1 > %%QGIS_SERVER%%lib/libqgis_server.so >-%%QGIS_SERVER%%lib/libqgis_server.so.2.12.0 >+%%QGIS_SERVER%%lib/libqgis_server.so.2.10.1 > %%GRASS%%lib/libqgisgrass6.so >-%%GRASS%%lib/libqgisgrass6.so.2.12.0 >+%%GRASS%%lib/libqgisgrass6.so.2.10.1 > %%QGIS_PYTHON%%lib/libqgispython.so >-%%QGIS_PYTHON%%lib/libqgispython.so.2.12.0 >+%%QGIS_PYTHON%%lib/libqgispython.so.2.10.1 > lib/qgis/crssync > %%GRASS%%lib/qgis/grass/bin/qgis.g.browser6 > %%GRASS%%lib/qgis/grass/modules/qgis.d.rast6 >@@ -634,14 +585,11 @@ > %%GRASS%%lib/qgis/grass/modules/qgis.g.info6 > %%GRASS%%lib/qgis/grass/modules/qgis.r.in6 > %%GRASS%%lib/qgis/grass/modules/qgis.v.in6 >-lib/qgis/plugins/libbasicauthmethod.so > lib/qgis/plugins/libcoordinatecaptureplugin.so > lib/qgis/plugins/libdelimitedtextprovider.so > lib/qgis/plugins/libdxf2shpconverterplugin.so > lib/qgis/plugins/libevis.so > lib/qgis/plugins/libgdalprovider.so >-lib/qgis/plugins/libgeometrycheckerplugin.so >-lib/qgis/plugins/libgeometrysnapperplugin.so > lib/qgis/plugins/libgeorefplugin.so > lib/qgis/plugins/libgpsimporterplugin.so > lib/qgis/plugins/libgpxprovider.so >@@ -649,7 +597,6 @@ > %%GRASS%%lib/qgis/plugins/libgrassprovider6.so > %%GRASS%%lib/qgis/plugins/libgrassrasterprovider6.so > lib/qgis/plugins/libheatmapplugin.so >-lib/qgis/plugins/libidentcertauthmethod.so > lib/qgis/plugins/libinterpolationplugin.so > lib/qgis/plugins/libmemoryprovider.so > lib/qgis/plugins/libmssqlprovider.so >@@ -657,8 +604,6 @@ > lib/qgis/plugins/libogrprovider.so > lib/qgis/plugins/liboracleplugin.so > lib/qgis/plugins/libowsprovider.so >-lib/qgis/plugins/libpkcs12authmethod.so >-lib/qgis/plugins/libpkipathsauthmethod.so > %%PGSQL%%lib/qgis/plugins/libpostgresprovider.so > lib/qgis/plugins/librasterterrainplugin.so > lib/qgis/plugins/libroadgraphplugin.so >@@ -692,6 +637,7 @@ > %%DATADIR%%/doc/news > %%DATADIR%%/doc/news.html > %%DATADIR%%/doc/style.css >+%%GRASS%%%%DATADIR%%/grass/config/default.qgc > %%GRASS%%%%DATADIR%%/grass/locations.gml > %%GRASS%%%%DATADIR%%/grass/modules/db-connect.1.svg > %%GRASS%%%%DATADIR%%/grass/modules/db.connect-login.pg.1.png >@@ -714,7 +660,6 @@ > %%GRASS%%%%DATADIR%%/grass/modules/db.out.ogr.qgm > %%GRASS%%%%DATADIR%%/grass/modules/db.select.1.png > %%GRASS%%%%DATADIR%%/grass/modules/db.select.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/default.qgc > %%GRASS%%%%DATADIR%%/grass/modules/g.manual.1.png > %%GRASS%%%%DATADIR%%/grass/modules/g.manual.qgm > %%GRASS%%%%DATADIR%%/grass/modules/g.proj.ascii.1.png >@@ -752,10 +697,6 @@ > %%GRASS%%%%DATADIR%%/grass/modules/grass_arrow.svg > %%GRASS%%%%DATADIR%%/grass/modules/grass_plus.png > %%GRASS%%%%DATADIR%%/grass/modules/grass_plus.svg >-%%GRASS%%%%DATADIR%%/grass/modules/i.colors.enhance.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/i.colors.enhance.2.png >-%%GRASS%%%%DATADIR%%/grass/modules/i.colors.enhance.3.png >-%%GRASS%%%%DATADIR%%/grass/modules/i.colors.enhance.qgm > %%GRASS%%%%DATADIR%%/grass/modules/i.fft.1.png > %%GRASS%%%%DATADIR%%/grass/modules/i.fft.2.png > %%GRASS%%%%DATADIR%%/grass/modules/i.fft.qgm >@@ -780,21 +721,12 @@ > %%GRASS%%%%DATADIR%%/grass/modules/i.landsat.rgb.2.png > %%GRASS%%%%DATADIR%%/grass/modules/i.landsat.rgb.3.png > %%GRASS%%%%DATADIR%%/grass/modules/i.landsat.rgb.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/i.modis.qc.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/i.modis.qc.qgm > %%GRASS%%%%DATADIR%%/grass/modules/i.oif.1.png > %%GRASS%%%%DATADIR%%/grass/modules/i.oif.2.png > %%GRASS%%%%DATADIR%%/grass/modules/i.oif.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/i.pansharpen.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/i.pansharpen.2.png >-%%GRASS%%%%DATADIR%%/grass/modules/i.pansharpen.3.png >-%%GRASS%%%%DATADIR%%/grass/modules/i.pansharpen.qgm > %%GRASS%%%%DATADIR%%/grass/modules/i.rgb.his.1.png > %%GRASS%%%%DATADIR%%/grass/modules/i.rgb.his.2.png > %%GRASS%%%%DATADIR%%/grass/modules/i.rgb.his.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/i.tasscap.modis.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/i.tasscap.modis.2.png >-%%GRASS%%%%DATADIR%%/grass/modules/i.tasscap.modis.qgm > %%GRASS%%%%DATADIR%%/grass/modules/i.tasscap4.1.png > %%GRASS%%%%DATADIR%%/grass/modules/i.tasscap4.2.png > %%GRASS%%%%DATADIR%%/grass/modules/i.tasscap4.qgm >@@ -804,9 +736,6 @@ > %%GRASS%%%%DATADIR%%/grass/modules/i.tasscap7.1.png > %%GRASS%%%%DATADIR%%/grass/modules/i.tasscap7.2.png > %%GRASS%%%%DATADIR%%/grass/modules/i.tasscap7.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/i.tasscap8.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/i.tasscap8.2.png >-%%GRASS%%%%DATADIR%%/grass/modules/i.tasscap8.qgm > %%GRASS%%%%DATADIR%%/grass/modules/i.zc.1.png > %%GRASS%%%%DATADIR%%/grass/modules/i.zc.qgm > %%GRASS%%%%DATADIR%%/grass/modules/m.cogo.1.png >@@ -817,9 +746,6 @@ > %%GRASS%%%%DATADIR%%/grass/modules/nviz.1.png > %%GRASS%%%%DATADIR%%/grass/modules/nviz.qgm > %%GRASS%%%%DATADIR%%/grass/modules/point-grass.png >-%%GRASS%%%%DATADIR%%/grass/modules/qgis.v.upgrade.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/qgis.v.upgrade.2.png >-%%GRASS%%%%DATADIR%%/grass/modules/qgis.v.upgrade.qgm > %%GRASS%%%%DATADIR%%/grass/modules/r.aspect.1.png > %%GRASS%%%%DATADIR%%/grass/modules/r.aspect.2.png > %%GRASS%%%%DATADIR%%/grass/modules/r.aspect.qgm >@@ -972,9 +898,6 @@ > %%GRASS%%%%DATADIR%%/grass/modules/r.in.xyz.1.png > %%GRASS%%%%DATADIR%%/grass/modules/r.in.xyz.2.png > %%GRASS%%%%DATADIR%%/grass/modules/r.in.xyz.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/r.info.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/r.info.2.png >-%%GRASS%%%%DATADIR%%/grass/modules/r.info.qgm > %%GRASS%%%%DATADIR%%/grass/modules/r.kappa.1.png > %%GRASS%%%%DATADIR%%/grass/modules/r.kappa.qgm > %%GRASS%%%%DATADIR%%/grass/modules/r.lake.1.png >@@ -995,12 +918,6 @@ > %%GRASS%%%%DATADIR%%/grass/modules/r.mask.1.png > %%GRASS%%%%DATADIR%%/grass/modules/r.mask.2.png > %%GRASS%%%%DATADIR%%/grass/modules/r.mask.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/r.mask.rast.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/r.mask.rast.2.png >-%%GRASS%%%%DATADIR%%/grass/modules/r.mask.rast.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/r.mask.vect.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/r.mask.vect.2.png >-%%GRASS%%%%DATADIR%%/grass/modules/r.mask.vect.qgm > %%GRASS%%%%DATADIR%%/grass/modules/r.median.1.png > %%GRASS%%%%DATADIR%%/grass/modules/r.median.2.png > %%GRASS%%%%DATADIR%%/grass/modules/r.median.qgm >@@ -1123,10 +1040,6 @@ > %%GRASS%%%%DATADIR%%/grass/modules/r.regression.line.2.png > %%GRASS%%%%DATADIR%%/grass/modules/r.regression.line.3.png > %%GRASS%%%%DATADIR%%/grass/modules/r.regression.line.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/r.relief.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/r.relief.2.png >-%%GRASS%%%%DATADIR%%/grass/modules/r.relief.3.png >-%%GRASS%%%%DATADIR%%/grass/modules/r.relief.qgm > %%GRASS%%%%DATADIR%%/grass/modules/r.report.1.png > %%GRASS%%%%DATADIR%%/grass/modules/r.report.2.png > %%GRASS%%%%DATADIR%%/grass/modules/r.report.qgm >@@ -1234,7 +1147,6 @@ > %%GRASS%%%%DATADIR%%/grass/modules/r.univar.1.png > %%GRASS%%%%DATADIR%%/grass/modules/r.univar.2.png > %%GRASS%%%%DATADIR%%/grass/modules/r.univar.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/r.viewshed.qgm > %%GRASS%%%%DATADIR%%/grass/modules/r.volume.1.png > %%GRASS%%%%DATADIR%%/grass/modules/r.volume.2.png > %%GRASS%%%%DATADIR%%/grass/modules/r.volume.qgm >@@ -1246,99 +1158,11 @@ > %%GRASS%%%%DATADIR%%/grass/modules/r.watershed.2.png > %%GRASS%%%%DATADIR%%/grass/modules/r.watershed.qgm > %%GRASS%%%%DATADIR%%/grass/modules/r.what.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/r.what.coordinates.qgm > %%GRASS%%%%DATADIR%%/grass/modules/r.what.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/r.what.vectorpoints.qgm > %%GRASS%%%%DATADIR%%/grass/modules/raster-grass.png > %%GRASS%%%%DATADIR%%/grass/modules/raster.png > %%GRASS%%%%DATADIR%%/grass/modules/shell.1.png > %%GRASS%%%%DATADIR%%/grass/modules/shell.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/strds.svg >-%%GRASS%%%%DATADIR%%/grass/modules/t.connect.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.create.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.info.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.list.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.merge.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.accdetect.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.accumulate.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.aggregate.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.aggregate.1.svg >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.aggregate.2.png >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.aggregate.2.svg >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.aggregate.ds.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.aggregate.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.colors.1.svg >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.colors.copy.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.colors.copy.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.colors.predefined.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.colors.predefined.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.colors.rules.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.colors.rules.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.export.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.export.2.png >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.export.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.extract.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.gapfill.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.import.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.import.1.svg >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.import.2.png >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.import.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.list.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.list.1.svg >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.list.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.mapcalc.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.mapcalc.1.svg >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.mapcalc.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.neighbors.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.out.vtk.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.series.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.to.rast3.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.to.rast3.1.svg >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.to.rast3.2.png >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.to.rast3.2.svg >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.to.rast3.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.univar.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.univar.1.svg >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast.univar.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast3d.extract.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast3d.list.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast3d.list.1.svg >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast3d.list.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast3d.mapcalc.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast3d.mapcalc.1.svg >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast3d.mapcalc.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast3d.univar.1.svg >-%%GRASS%%%%DATADIR%%/grass/modules/t.rast3d.univar.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.register.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.remove.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.rename.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.sample.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.select.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.shift.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.snap.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.support.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.topology.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.unregister.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.vect.colors.1.svg >-%%GRASS%%%%DATADIR%%/grass/modules/t.vect.db.select.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.vect.export.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/t.vect.export.2.png >-%%GRASS%%%%DATADIR%%/grass/modules/t.vect.export.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.vect.extract.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.vect.import.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/t.vect.import.1.svg >-%%GRASS%%%%DATADIR%%/grass/modules/t.vect.import.2.png >-%%GRASS%%%%DATADIR%%/grass/modules/t.vect.import.2.svg >-%%GRASS%%%%DATADIR%%/grass/modules/t.vect.import.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.vect.list.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/t.vect.list.1.svg >-%%GRASS%%%%DATADIR%%/grass/modules/t.vect.list.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.vect.mapcalc.1.svg >-%%GRASS%%%%DATADIR%%/grass/modules/t.vect.observe.strds.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.vect.univar.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/t.vect.univar.1.svg >-%%GRASS%%%%DATADIR%%/grass/modules/t.vect.univar.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/t.vect.what.strds.qgm > %%GRASS%%%%DATADIR%%/grass/modules/table.png > %%GRASS%%%%DATADIR%%/grass/modules/v.buffer.1.svg > %%GRASS%%%%DATADIR%%/grass/modules/v.buffer.2.svg >@@ -1392,8 +1216,6 @@ > %%GRASS%%%%DATADIR%%/grass/modules/v.clean.snap.qgm > %%GRASS%%%%DATADIR%%/grass/modules/v.db.addcol.1.png > %%GRASS%%%%DATADIR%%/grass/modules/v.db.addcol.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/v.db.addcolumn.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/v.db.addcolumn.qgm > %%GRASS%%%%DATADIR%%/grass/modules/v.db.addtable.1.png > %%GRASS%%%%DATADIR%%/grass/modules/v.db.addtable.qgm > %%GRASS%%%%DATADIR%%/grass/modules/v.db.connect.1.png >@@ -1400,8 +1222,6 @@ > %%GRASS%%%%DATADIR%%/grass/modules/v.db.connect.qgm > %%GRASS%%%%DATADIR%%/grass/modules/v.db.dropcol.1.png > %%GRASS%%%%DATADIR%%/grass/modules/v.db.dropcol.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/v.db.dropcolumn.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/v.db.dropcolumn.qgm > %%GRASS%%%%DATADIR%%/grass/modules/v.db.droptable.1.png > %%GRASS%%%%DATADIR%%/grass/modules/v.db.droptable.qgm > %%GRASS%%%%DATADIR%%/grass/modules/v.db.join.1.png >@@ -1413,9 +1233,6 @@ > %%GRASS%%%%DATADIR%%/grass/modules/v.db.renamecol.1.png > %%GRASS%%%%DATADIR%%/grass/modules/v.db.renamecol.2.png > %%GRASS%%%%DATADIR%%/grass/modules/v.db.renamecol.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/v.db.renamecolumn.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/v.db.renamecolumn.2.png >-%%GRASS%%%%DATADIR%%/grass/modules/v.db.renamecolumn.qgm > %%GRASS%%%%DATADIR%%/grass/modules/v.db.sconnect.1.png > %%GRASS%%%%DATADIR%%/grass/modules/v.db.sconnect.qgm > %%GRASS%%%%DATADIR%%/grass/modules/v.db.select.1.png >@@ -1520,9 +1337,6 @@ > %%GRASS%%%%DATADIR%%/grass/modules/v.in.ogr.qgm > %%GRASS%%%%DATADIR%%/grass/modules/v.in.region.1.svg > %%GRASS%%%%DATADIR%%/grass/modules/v.in.region.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/v.info.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/v.info.2.png >-%%GRASS%%%%DATADIR%%/grass/modules/v.info.qgm > %%GRASS%%%%DATADIR%%/grass/modules/v.kcv.1.png > %%GRASS%%%%DATADIR%%/grass/modules/v.kcv.2.png > %%GRASS%%%%DATADIR%%/grass/modules/v.kcv.qgm >@@ -1622,8 +1436,6 @@ > %%GRASS%%%%DATADIR%%/grass/modules/v.proj.2.png > %%GRASS%%%%DATADIR%%/grass/modules/v.proj.qgm > %%GRASS%%%%DATADIR%%/grass/modules/v.random.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/v.random.3d.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/v.random.3d.qgm > %%GRASS%%%%DATADIR%%/grass/modules/v.random.qgm > %%GRASS%%%%DATADIR%%/grass/modules/v.rast.stats.1.png > %%GRASS%%%%DATADIR%%/grass/modules/v.rast.stats.2.png >@@ -1666,15 +1478,6 @@ > %%GRASS%%%%DATADIR%%/grass/modules/v.surf.rst.1.png > %%GRASS%%%%DATADIR%%/grass/modules/v.surf.rst.2.png > %%GRASS%%%%DATADIR%%/grass/modules/v.surf.rst.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/v.to.2d.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/v.to.2d.2.png >-%%GRASS%%%%DATADIR%%/grass/modules/v.to.2d.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/v.to.3d.attr.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/v.to.3d.attr.2.png >-%%GRASS%%%%DATADIR%%/grass/modules/v.to.3d.attr.qgm >-%%GRASS%%%%DATADIR%%/grass/modules/v.to.3d.fixed.1.png >-%%GRASS%%%%DATADIR%%/grass/modules/v.to.3d.fixed.2.png >-%%GRASS%%%%DATADIR%%/grass/modules/v.to.3d.fixed.qgm > %%GRASS%%%%DATADIR%%/grass/modules/v.to.db.1.png > %%GRASS%%%%DATADIR%%/grass/modules/v.to.db.2.png > %%GRASS%%%%DATADIR%%/grass/modules/v.to.db.qgm >@@ -1721,13 +1524,8 @@ > %%GRASS%%%%DATADIR%%/grass/modules/v.what.vect.qgm > %%GRASS%%%%DATADIR%%/grass/modules/vector-grass.png > %%GRASS%%%%DATADIR%%/grass/modules/vector.png >-%%GRASS%%%%DATADIR%%/grass/qtermwidget/color-schemes/BlackOnWhite.schema >-%%GRASS%%%%DATADIR%%/grass/qtermwidget/kb-layouts/default.keytab >-%%GRASS%%%%DATADIR%%/grass/qtermwidget/kb-layouts/linux.keytab >-%%GRASS%%%%DATADIR%%/grass/qtermwidget/kb-layouts/vt420pc.keytab > %%GRASS%%%%DATADIR%%/grass/scripts/db.connect-login.pg.py > %%GRASS%%%%DATADIR%%/grass/scripts/qgis.v.kernel.rast.py >-%%GRASS%%%%DATADIR%%/grass/scripts/qgis.v.upgrade.py > %%GRASS%%%%DATADIR%%/grass/scripts/r.external.all.py > %%GRASS%%%%DATADIR%%/grass/scripts/v.out.ogr.pg.py > %%DATADIR%%/i18n/qgis_ar.qm >@@ -1740,6 +1538,7 @@ > %%DATADIR%%/i18n/qgis_es.qm > %%DATADIR%%/i18n/qgis_et.qm > %%DATADIR%%/i18n/qgis_eu.qm >+%%DATADIR%%/i18n/qgis_fa.qm > %%DATADIR%%/i18n/qgis_fi.qm > %%DATADIR%%/i18n/qgis_fr.qm > %%DATADIR%%/i18n/qgis_gl.qm >@@ -1747,6 +1546,7 @@ > %%DATADIR%%/i18n/qgis_hr.qm > %%DATADIR%%/i18n/qgis_hu.qm > %%DATADIR%%/i18n/qgis_id.qm >+%%DATADIR%%/i18n/qgis_is.qm > %%DATADIR%%/i18n/qgis_it.qm > %%DATADIR%%/i18n/qgis_ja.qm > %%DATADIR%%/i18n/qgis_km.qm >@@ -1765,6 +1565,7 @@ > %%DATADIR%%/i18n/qgis_sr.qm > %%DATADIR%%/i18n/qgis_sr@latin.qm > %%DATADIR%%/i18n/qgis_sv.qm >+%%DATADIR%%/i18n/qgis_th.qm > %%DATADIR%%/i18n/qgis_tr.qm > %%DATADIR%%/i18n/qgis_vi.qm > %%DATADIR%%/i18n/qgis_zh-Hans.qm >@@ -2061,7 +1862,6 @@ > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/db_manager/dlg_table_properties.py > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/db_manager/icons/about.png > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/db_manager/icons/action_del_table.png >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/db_manager/icons/action_delete.png > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/db_manager/icons/action_edit_table.png > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/db_manager/icons/action_export.png > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/db_manager/icons/action_import.png >@@ -2963,7 +2763,6 @@ > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/qgis/Merge.py > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/qgis/MultipartToSingleparts.py > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/qgis/NearestNeighbourAnalysis.py >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/qgis/OrientedMinimumBoundingBox.py > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/qgis/PointDistance.py > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/qgis/PointsDisplacement.py > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/qgis/PointsFromLines.py >@@ -3168,7 +2967,7 @@ > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.2/MergeLayers.txt > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.2/MetricConversions.txt > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.2/MinimumDistanceAnalysis.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.2/ModifiedQuadraticShepard.txt >+%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.2/ModifedQuadraticShepard.txt > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.2/MorphologicalFilter.txt > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.2/MorphometricProtectionIndex.txt > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.2/Mosaicking.txt >@@ -3402,7 +3201,7 @@ > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.3/MergeLayers.txt > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.3/MetricConversions.txt > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.3/MinimumDistanceAnalysis.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.3/ModifiedQuadraticShepard.txt >+%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.3/ModifedQuadraticShepard.txt > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.3/MorphologicalFilter.txt > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.3/MorphometricProtectionIndex.txt > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.3/Mosaicking.txt >@@ -3511,708 +3310,6 @@ > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.3/WatershedSegmentation.txt > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.3/WindEffect(WindwardLeewardIndex).txt > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.3/ZonalGridStatistics.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/AccumulatedCost(Anisotropic).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/AccumulatedCost(Isotropic).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/AddCoordinatestopoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/AddGridValuestoPoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/AddGridValuestoShapes.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/AddPolygonAttributestoPoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/Aggregate.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/AggregatePointObservations.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/AggregationIndex.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/AnalyticalHierarchyProcess.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/AnalyticalHillshading.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/B-SplineApproximation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/BurnStreamNetworkintoDEM.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/CatchmentArea(FlowTracing).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/CatchmentArea(Parallel).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/CatchmentArea(Recursive).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/CellBalance.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ChangeDateFormat.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ChangeDetection.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ChangeGridValues.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ChangeTimeFormat.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ChannelNetwork.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ChannelNetworkandDrainageBasins.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ClipGridwithPolygon.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ClipPointswithPolygons.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/CloseGaps.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/CloseGapswithSpline.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/CloseOneCellGaps.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ClusterAnalysisforGrids.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ContourLinesfromGrid.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ConvergenceIndex(SearchRadius).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ConvergenceIndex.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ConvertDataStorageType.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ConvertLinestoPoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ConvertLinestoPolygons.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ConvertMultipointstoPoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ConvertPointstoLine(s).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ConvertPolygonLineVerticestoPoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ConvertPolygonstoLines.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ConvexHull.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/CreateGraticule.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/CropToData.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/Cross-ClassificationandTabulation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/CrossProfiles.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/CubicSplineApproximation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/CurvatureClassification.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/CutShapesLayer.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/DTMFilter(slope-based).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/DirectionalStatisticsforSingleGrid.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/DistanceMatrix.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/DiurnalAnisotropicHeating.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/DownslopeDistanceGradient.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/EdgeContamination.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/EffectiveAirFlowHeights.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/FastRegionGrowingAlgorithm.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/FastRepresentativeness.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/FillGapsinRecords.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/FillSinks(PlanchonDarboux,2001).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/FillSinks(WangLiu).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/FillSinksXXL(WangLiu).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/FilterClumps.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/FireRiskAnalysis.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/FitNPointstoshape.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/FlatDetection.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/FlowPathLength.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/FlowWidthandSpecificCatchmentArea.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/Fragmentation(Alternative).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/Fragmentation(Standard).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/FragmentationClassesfromDensityandConnectivity.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/Function.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/Fuzzify.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/FuzzyIntersection(AND).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/FuzzyUnion(OR).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GaussianFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GeographicallyWeightedMultipleRegression(Points).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GeographicallyWeightedMultipleRegression(PointsGrids).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GeographicallyWeightedMultipleRegression.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GeographicallyWeightedRegression(PointsGrid).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GeographicallyWeightedRegression.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GeometricFigures.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GetShapesExtents.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GlobalMoransIforGrids.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GradientVectorfromCartesiantoPolarCoordinates.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GradientVectorfromPolartoCartesianCoordinates.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GradientVectorsfromDirectionalComponents.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GradientVectorsfromDirectionandLength.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GradientVectorsfromSurface.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GridBuffer.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GridCalculator.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GridCellIndex.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GridDifference.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GridDivision.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GridMasking.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GridNormalisation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GridOrientation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GridProximityBuffer.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GridSkeletonization.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GridStandardisation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GridStatisticsforPolygons.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GridValuestoPoints(randomly).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GridValuestoPoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GridVolume.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GridsProduct.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/GridsSum.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/HistogramSurface.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/Hypsometry.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/InverseDistanceWeighted.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/InvertDataNo-Data.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/KernelDensityEstimation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/LSFactor.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/LakeFlood.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/LandSurfaceTemperature.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/LaplacianFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/Layerofextremevalue.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/LeastCostPaths.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/Line-PolygonIntersection.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/LineDissolve.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/LineProperties.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/LineSimplification.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/LocalMinimaandMaxima.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/MajorityFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/MassBalanceIndex.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/MergeLayers.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/MetricConversions.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/MinimumDistanceAnalysis.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ModifiedQuadraticShepard.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/MorphologicalFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/MorphometricProtectionIndex.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/Mosaicking.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/Multi-BandVariation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/MultiDirectionLeeFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/MultilevelB-SplineInterpolation(fromGrid).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/MultilevelB-SplineInterpolation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/MultipleRegressionAnalysis(GridGrids).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/MultipleRegressionAnalysis(PointsGrids).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/MultiresolutionIndexofValleyBottomFlatness(MRVBF).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/NaturalNeighbour.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/NearestNeighbour.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/OrderedWeightedAveraging(OWA).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/OrdinaryKriging(Global).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/OrdinaryKriging.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/OverlandFlow-KinematicWaveD8.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/OverlandFlowDistancetoChannelNetwork.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/Patching.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/PatternAnalysis.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/PointStatisticsforPolygons.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/PointsFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/PointsThinning.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/PolartoCartesianCoordinates.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/Polygon-LineIntersection.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/PolygonCentroids.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/PolygonDifference.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/PolygonDissolve.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/PolygonDissolveAllPolygs.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/PolygonIdentity.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/PolygonIntersect.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/PolygonPartstoSeparatePolygons.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/PolygonProperties.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/PolygonShapeIndices.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/PolygonSymmetricalDifference.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/PolygonUnion.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/PolygonUpdate.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/PolygonstoEdgesandNodes.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/PolynomialRegression.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/PrincipleComponentsAnalysis.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/Profilefrompoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ProfilesfromLines.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ProximityGrid.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/QuadTreeStructuretoShapes.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/RGBComposite.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/RadiusofVariance(Grid).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/RandomField.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/RandomTerrainGeneration.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/RankFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/RealSurfaceArea.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ReclassifyGridValues.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/RegressionAnalysis(PointsGrid).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/RelativeHeightsandSlopePositions.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/RemoveDuplicatePoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/Representativeness(Grid).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/Resampling.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ResidualAnalysis(Grid).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/RunningAverage.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/SAGAWetnessIndex.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/SeedGeneration.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/Separatepointsbydirection.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ShapesBuffer.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ShapesBufferFixed.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ShapestoGrid.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ShrinkAndExpand.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/SimpleFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/SimpleRegionGrowing.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/Simulation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/SinkDrainageRouteDetection.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/SinkRemoval.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/SkyViewFactor.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/Slope,Aspect,Curvature.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/SlopeLength.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/SoilTextureClassification.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/SpatialPointPatternAnalysis.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/SplitShapesLayerRandomly.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/StatisticsforGrids.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/StrahlerOrder.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/StreamPowerIndex.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/SupervisedClassification.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/SurfaceSpecificPoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/TPIBasedLandformClassification.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/TerrainRuggednessIndex(TRI).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ThinPlateSpline(Global).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ThinPlateSpline(Local).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ThinPlateSpline(TIN).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ThresholdBuffer.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/TopographicCorrection.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/TopographicPositionIndex(TPI).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/TopographicWetnessIndex(TWI).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/Transectthroughpolygonshapefile.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/TransformShapes.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/TransposeGrids.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/Triangulation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/UniversalKriging(Global).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/UniversalKriging.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/UpslopeArea.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/UserDefinedFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/VariogramCloud.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/VariogramSurface.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/VectorRuggednessMeasure(VRM).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/VectorisingGridClasses.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/VegetationIndex(SlopeBased).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/VerticalDistancetoChannelNetwork.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/WaterRetentionCapacity.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/WatershedBasins.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/WatershedSegmentation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/WindEffect(WindwardLeewardIndex).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.1.4/ZonalGridStatistics.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/AccumulatedCost(Anisotropic).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/AccumulatedCost(Isotropic).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/AddCoordinatestopoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/AddGridValuestoPoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/AddGridValuestoShapes.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/AddPolygonAttributestoPoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/Aggregate.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/AggregatePointObservations.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/AggregationIndex.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/AnalyticalHierarchyProcess.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/AnalyticalHillshading.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/B-SplineApproximation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/BurnStreamNetworkintoDEM.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/CellBalance.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ChangeDateFormat.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ChangeDetection.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ChangeGridValues.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ChangeTimeFormat.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ChannelNetwork.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ChannelNetworkandDrainageBasins.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ClipGridwithPolygon.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ClipPointswithPolygons.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/CloseGaps.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/CloseGapswithSpline.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/CloseOneCellGaps.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ClusterAnalysisforGrids.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ContourLinesfromGrid.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ConvergenceIndex(SearchRadius).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ConvergenceIndex.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ConvertDataStorageType.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ConvertLinestoPoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ConvertLinestoPolygons.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ConvertMultipointstoPoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ConvertPointstoLine(s).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ConvertPolygonLineVerticestoPoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ConvertPolygonstoLines.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ConvexHull.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/CreateGraticule.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/CropToData.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/Cross-ClassificationandTabulation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/CrossProfiles.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/CubicSplineApproximation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/CurvatureClassification.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/CutShapesLayer.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/DTMFilter(slope-based).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/DirectionalStatisticsforSingleGrid.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/DistanceMatrix.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/DiurnalAnisotropicHeating.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/DownslopeDistanceGradient.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/EdgeContamination.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/EffectiveAirFlowHeights.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/FastRegionGrowingAlgorithm.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/FastRepresentativeness.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/FillGapsinRecords.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/FillSinks(PlanchonDarboux,2001).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/FillSinks(WangLiu).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/FillSinksXXL(WangLiu).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/FilterClumps.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/FireRiskAnalysis.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/FitNPointstoshape.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/FlatDetection.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/FlowAccumulation(FlowTracing).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/FlowAccumulation(Recursive).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/FlowAccumulation(Top-Down).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/FlowPathLength.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/FlowWidthandSpecificCatchmentArea.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/Fragmentation(Alternative).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/Fragmentation(Standard).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/FragmentationClassesfromDensityandConnectivity.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/Function.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/Fuzzify.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/FuzzyIntersection(AND).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/FuzzyUnion(OR).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GaussianFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GeographicallyWeightedMultipleRegression(Points).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GeographicallyWeightedMultipleRegression(PointsGrids).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GeographicallyWeightedMultipleRegression.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GeographicallyWeightedRegression(PointsGrid).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GeographicallyWeightedRegression.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GeometricFigures.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GetShapesExtents.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GlobalMoransIforGrids.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GradientVectorfromCartesiantoPolarCoordinates.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GradientVectorfromPolartoCartesianCoordinates.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GradientVectorsfromDirectionalComponents.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GradientVectorsfromDirectionandLength.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GradientVectorsfromSurface.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GridBuffer.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GridCalculator.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GridCellIndex.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GridDifference.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GridDivision.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GridMasking.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GridNormalisation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GridOrientation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GridProximityBuffer.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GridSkeletonization.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GridStandardisation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GridStatisticsforPolygons.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GridValuestoPoints(randomly).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GridValuestoPoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GridVolume.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GridsProduct.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/GridsSum.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/HistogramSurface.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/Hypsometry.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/InverseDistanceWeighted.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/InvertDataNo-Data.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/KernelDensityEstimation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/LSFactor.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/LakeFlood.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/LandSurfaceTemperature.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/LaplacianFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/Layerofextremevalue.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/LeastCostPaths.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/Line-PolygonIntersection.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/LineDissolve.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/LineProperties.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/LineSimplification.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/LocalMinimaandMaxima.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/MajorityFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/MassBalanceIndex.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/MergeLayers.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/MetricConversions.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/MinimumDistanceAnalysis.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ModifiedQuadraticShepard.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/MorphologicalFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/MorphometricProtectionIndex.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/Mosaicking.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/Multi-BandVariation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/MultiDirectionLeeFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/MultilevelB-SplineInterpolation(fromGrid).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/MultilevelB-SplineInterpolation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/MultipleRegressionAnalysis(GridGrids).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/MultipleRegressionAnalysis(PointsGrids).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/MultiresolutionIndexofValleyBottomFlatness(MRVBF).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/NaturalNeighbour.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/NearestNeighbour.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/OrderedWeightedAveraging(OWA).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/OrdinaryKriging(Global).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/OrdinaryKriging.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/OverlandFlow-KinematicWaveD8.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/OverlandFlowDistancetoChannelNetwork.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/Patching.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/PatternAnalysis.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/PointStatisticsforPolygons.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/PointsFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/PointsThinning.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/PolartoCartesianCoordinates.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/Polygon-LineIntersection.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/PolygonCentroids.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/PolygonDifference.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/PolygonDissolve.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/PolygonDissolveAllPolygs.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/PolygonIdentity.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/PolygonIntersect.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/PolygonPartstoSeparatePolygons.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/PolygonProperties.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/PolygonShapeIndices.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/PolygonSymmetricalDifference.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/PolygonUnion.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/PolygonUpdate.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/PolygonstoEdgesandNodes.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/PolynomialRegression.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/PrincipleComponentsAnalysis.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/Profilefrompoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ProfilesfromLines.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ProximityGrid.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/QuadTreeStructuretoShapes.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/RGBComposite.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/RadiusofVariance(Grid).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/RandomField.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/RandomTerrainGeneration.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/RankFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/RealSurfaceArea.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ReclassifyGridValues.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/RegressionAnalysis(PointsGrid).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/RelativeHeightsandSlopePositions.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/RemoveDuplicatePoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/Representativeness(Grid).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/Resampling.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ResidualAnalysis(Grid).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/RunningAverage.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/SAGAWetnessIndex.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/SeedGeneration.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/Separatepointsbydirection.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ShapesBuffer.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ShapesBufferFixed.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ShapestoGrid.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ShrinkAndExpand.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/SimpleFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/SimpleRegionGrowing.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/Simulation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/SinkDrainageRouteDetection.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/SinkRemoval.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/SkyViewFactor.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/Slope,Aspect,Curvature.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/SlopeLength.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/SoilTextureClassification.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/SpatialPointPatternAnalysis.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/SplitShapesLayerRandomly.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/StatisticsforGrids.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/StrahlerOrder.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/StreamPowerIndex.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/SupervisedClassification.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/SurfaceSpecificPoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/TPIBasedLandformClassification.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/TerrainRuggednessIndex(TRI).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ThinPlateSpline(Global).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ThinPlateSpline(Local).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ThinPlateSpline(TIN).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ThresholdBuffer.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/TopographicCorrection.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/TopographicPositionIndex(TPI).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/TopographicWetnessIndex(TWI).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/Transectthroughpolygonshapefile.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/TransformShapes.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/TransposeGrids.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/Triangulation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/UniversalKriging(Global).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/UniversalKriging.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/UpslopeArea.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/UserDefinedFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/VariogramCloud.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/VariogramSurface.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/VectorRuggednessMeasure(VRM).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/VectorisingGridClasses.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/VegetationIndex(SlopeBased).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/VerticalDistancetoChannelNetwork.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/WaterRetentionCapacity.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/WatershedBasins.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/WatershedSegmentation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/WindEffect(WindwardLeewardIndex).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.0/ZonalGridStatistics.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/AccumulatedCost(Anisotropic).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/AccumulatedCost(Isotropic).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/AddCoordinatestopoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/AddGridValuestoPoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/AddGridValuestoShapes.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/AddPolygonAttributestoPoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/Aggregate.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/AggregatePointObservations.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/AggregationIndex.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/AnalyticalHierarchyProcess.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/AnalyticalHillshading.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/B-SplineApproximation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/BurnStreamNetworkintoDEM.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/CellBalance.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ChangeDateFormat.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ChangeDetection.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ChangeGridValues.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ChangeTimeFormat.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ChannelNetwork.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ChannelNetworkandDrainageBasins.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ClipGridwithPolygon.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ClipPointswithPolygons.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/CloseGaps.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/CloseGapswithSpline.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/CloseOneCellGaps.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ClusterAnalysisforGrids.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ContourLinesfromGrid.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ConvergenceIndex(SearchRadius).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ConvergenceIndex.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ConvertDataStorageType.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ConvertLinestoPoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ConvertLinestoPolygons.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ConvertMultipointstoPoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ConvertPointstoLine(s).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ConvertPolygonLineVerticestoPoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ConvertPolygonstoLines.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ConvexHull.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/CreateGraticule.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/CropToData.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/Cross-ClassificationandTabulation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/CrossProfiles.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/CubicSplineApproximation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/CurvatureClassification.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/CutShapesLayer.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/DTMFilter(slope-based).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/DirectionalStatisticsforSingleGrid.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/DistanceMatrix.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/DiurnalAnisotropicHeating.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/DownslopeDistanceGradient.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/EdgeContamination.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/EffectiveAirFlowHeights.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/FastRegionGrowingAlgorithm.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/FastRepresentativeness.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/FillGapsinRecords.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/FillSinks(PlanchonDarboux,2001).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/FillSinks(WangLiu).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/FillSinksXXL(WangLiu).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/FilterClumps.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/FireRiskAnalysis.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/FitNPointstoshape.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/FlatDetection.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/FlowAccumulation(FlowTracing).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/FlowAccumulation(Recursive).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/FlowAccumulation(Top-Down).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/FlowPathLength.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/FlowWidthandSpecificCatchmentArea.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/Fragmentation(Alternative).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/Fragmentation(Standard).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/FragmentationClassesfromDensityandConnectivity.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/Function.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/Fuzzify.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/FuzzyIntersection(AND).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/FuzzyUnion(OR).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GaussianFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GeographicallyWeightedMultipleRegression(Points).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GeographicallyWeightedMultipleRegression(PointsGrids).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GeographicallyWeightedMultipleRegression.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GeographicallyWeightedRegression(PointsGrid).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GeographicallyWeightedRegression.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GeometricFigures.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GetShapesExtents.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GlobalMoransIforGrids.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GradientVectorfromCartesiantoPolarCoordinates.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GradientVectorfromPolartoCartesianCoordinates.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GradientVectorsfromDirectionalComponents.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GradientVectorsfromDirectionandLength.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GradientVectorsfromSurface.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GridBuffer.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GridCalculator.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GridCellIndex.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GridDifference.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GridDivision.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GridMasking.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GridNormalisation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GridOrientation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GridProximityBuffer.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GridSkeletonization.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GridStandardisation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GridStatisticsforPolygons.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GridValuestoPoints(randomly).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GridValuestoPoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GridVolume.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GridsProduct.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/GridsSum.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/HistogramSurface.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/Hypsometry.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/InverseDistanceWeighted.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/InvertDataNo-Data.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/KernelDensityEstimation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/LSFactor.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/LakeFlood.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/LandSurfaceTemperature.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/LaplacianFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/Layerofextremevalue.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/LeastCostPaths.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/Line-PolygonIntersection.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/LineDissolve.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/LineProperties.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/LineSimplification.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/LocalMinimaandMaxima.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/MajorityFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/MassBalanceIndex.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/MergeLayers.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/MetricConversions.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/MinimumDistanceAnalysis.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ModifiedQuadraticShepard.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/MorphologicalFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/MorphometricProtectionIndex.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/Mosaicking.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/Multi-BandVariation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/MultiDirectionLeeFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/MultilevelB-SplineInterpolation(fromGrid).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/MultilevelB-SplineInterpolation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/MultipleRegressionAnalysis(GridGrids).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/MultipleRegressionAnalysis(PointsGrids).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/MultiresolutionIndexofValleyBottomFlatness(MRVBF).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/NaturalNeighbour.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/NearestNeighbour.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/OrderedWeightedAveraging(OWA).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/OrdinaryKriging(Global).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/OrdinaryKriging.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/OverlandFlow-KinematicWaveD8.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/OverlandFlowDistancetoChannelNetwork.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/Patching.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/PatternAnalysis.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/PointStatisticsforPolygons.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/PointsFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/PointsThinning.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/PolartoCartesianCoordinates.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/Polygon-LineIntersection.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/PolygonCentroids.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/PolygonDifference.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/PolygonDissolve.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/PolygonDissolveAllPolygs.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/PolygonIdentity.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/PolygonIntersect.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/PolygonPartstoSeparatePolygons.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/PolygonProperties.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/PolygonShapeIndices.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/PolygonSymmetricalDifference.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/PolygonUnion.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/PolygonUpdate.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/PolygonstoEdgesandNodes.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/PolynomialRegression.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/PrincipleComponentsAnalysis.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/Profilefrompoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ProfilesfromLines.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ProximityGrid.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/QuadTreeStructuretoShapes.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/RGBComposite.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/RadiusofVariance(Grid).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/RandomField.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/RandomTerrainGeneration.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/RankFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/RealSurfaceArea.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ReclassifyGridValues.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/RegressionAnalysis(PointsGrid).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/RelativeHeightsandSlopePositions.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/RemoveDuplicatePoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/Representativeness(Grid).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/Resampling.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ResidualAnalysis(Grid).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/RunningAverage.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/SAGAWetnessIndex.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/SeedGeneration.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/Separatepointsbydirection.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ShapesBuffer.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ShapesBufferFixed.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ShapestoGrid.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ShrinkAndExpand.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/SimpleFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/SimpleRegionGrowing.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/Simulation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/SinkDrainageRouteDetection.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/SinkRemoval.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/SkyViewFactor.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/Slope,Aspect,Curvature.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/SlopeLength.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/SoilTextureClassification.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/SpatialPointPatternAnalysis.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/SplitShapesLayerRandomly.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/StatisticsforGrids.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/StrahlerOrder.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/StreamPowerIndex.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/SupervisedClassification.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/SurfaceSpecificPoints.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/TPIBasedLandformClassification.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/TerrainRuggednessIndex(TRI).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ThinPlateSpline(Global).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ThinPlateSpline(Local).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ThinPlateSpline(TIN).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ThresholdBuffer.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/TopographicCorrection.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/TopographicPositionIndex(TPI).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/TopographicWetnessIndex(TWI).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/Transectthroughpolygonshapefile.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/TransformShapes.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/TransposeGrids.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/Triangulation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/UniversalKriging(Global).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/UniversalKriging.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/UpslopeArea.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/UserDefinedFilter.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/VariogramCloud.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/VariogramSurface.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/VectorRuggednessMeasure(VRM).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/VectorisingGridClasses.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/VegetationIndex(SlopeBased).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/VerticalDistancetoChannelNetwork.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/WaterRetentionCapacity.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/WatershedBasins.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/WatershedSegmentation.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/WindEffect(WindwardLeewardIndex).txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/description/2.2.2/ZonalGridStatistics.txt > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/ext/__init__.py > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/ext/supervisedclassification.py > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/saga/versioncheck.py >@@ -4344,7 +3441,6 @@ > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/gui/__init__.py > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/gui/algclasssification.txt > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/gui/algnames.txt >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/gui/utils.py > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/images/alg.png > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/images/commander.png > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/images/config.png >@@ -4454,7 +3550,6 @@ > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/tools/help.py > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/tools/raster.py > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/tools/system.py >-%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/tools/translation.py > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/tools/vector.py > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/ui/DlgAlgorithmBase.ui > %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/ui/DlgAutofill.ui >@@ -6385,16 +5480,6 @@ > %%DATADIR%%/resources/spatialite.db > %%DATADIR%%/resources/srs.db > %%DATADIR%%/resources/symbology-ng-style.db >-%%DATADIR%%/resources/themes/Night Mapping/icons/caret-down_ffffff_14.png >-%%DATADIR%%/resources/themes/Night Mapping/icons/caret-right_ffffff_14.png >-%%DATADIR%%/resources/themes/Night Mapping/icons/check.png >-%%DATADIR%%/resources/themes/Night Mapping/icons/cross.svg >-%%DATADIR%%/resources/themes/Night Mapping/icons/down_arrow.png >-%%DATADIR%%/resources/themes/Night Mapping/icons/eye-blocked.svg >-%%DATADIR%%/resources/themes/Night Mapping/icons/eye.svg >-%%DATADIR%%/resources/themes/Night Mapping/icons/up_arrow.png >-%%DATADIR%%/resources/themes/Night Mapping/style.qss >-%%DATADIR%%/resources/themes/Night Mapping/variables.qss > %%DEBUG%%%%DATADIR%%/resources/wcs-servers.json > %%DATADIR%%/svg/accommodation/accommodation_alpinehut.svg > %%DATADIR%%/svg/accommodation/accommodation_bed_and_breakfast.svg >Index: lang/py-qt5-qml/Makefile >=================================================================== >--- lang/py-qt5-qml/Makefile (nonexistent) >+++ lang/py-qt5-qml/Makefile (working copy) >@@ -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 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 <bsd.port.mk> > >Property changes on: lang/py-qt5-qml/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: lang/py-qt5-qml/pkg-descr >=================================================================== >--- lang/py-qt5-qml/pkg-descr (nonexistent) >+++ lang/py-qt5-qml/pkg-descr (working copy) >@@ -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/ > >Property changes on: lang/py-qt5-qml/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: lang/py-qt5-qml/pkg-plist >=================================================================== >--- lang/py-qt5-qml/pkg-plist (nonexistent) >+++ lang/py-qt5-qml/pkg-plist (working copy) >@@ -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 > >Property changes on: lang/py-qt5-qml/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: math/octave/Makefile >=================================================================== >--- math/octave/Makefile (revision 401917) >+++ math/octave/Makefile (working copy) >@@ -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/py-qt4-demo/Makefile >=================================================================== >--- misc/py-qt4-demo/Makefile (revision 401917) >+++ misc/py-qt4-demo/Makefile (working copy) >@@ -14,16 +14,17 @@ > > 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" >+# Broken >+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 (revision 401917) >+++ misc/py-qt4-doc/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: misc/py-qt4-doc/pkg-plist >=================================================================== >--- misc/py-qt4-doc/pkg-plist (revision 401917) >+++ misc/py-qt4-doc/pkg-plist (working copy) >@@ -1,9 +1,5 @@ >-%%DOCSDIR%%/GPL_EXCEPTION.TXT >-%%DOCSDIR%%/GPL_EXCEPTION_ADDENDUM.TXT >-%%DOCSDIR%%/LICENSE.GPL2 >-%%DOCSDIR%%/LICENSE.GPL3 > %%DOCSDIR%%/NEWS >-%%DOCSDIR%%/OPENSOURCE-NOTICE.TXT >+%%DOCSDIR%%/LICENSE > %%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 (nonexistent) >+++ misc/py-qt5-demo/Makefile (working copy) >@@ -0,0 +1,36 @@ >+# Created by: Danny Pansters <danny@ricin.com> >+# $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 >+ >+# Broken >+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 <bsd.port.mk> > >Property changes on: misc/py-qt5-demo/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: misc/py-qt5-demo/files/patch-examples__designer__plugins__plugins.py >=================================================================== >--- misc/py-qt5-demo/files/patch-examples__designer__plugins__plugins.py (nonexistent) >+++ misc/py-qt5-demo/files/patch-examples__designer__plugins__plugins.py (working copy) >@@ -0,0 +1,22 @@ >+--- examples/designer/plugins/plugins.py.orig Thu Aug 9 23:42:04 2007 >++++ examples/designer/plugins/plugins.py Thu Aug 9 23:47:13 2007 >+@@ -11,6 +11,10 @@ >+ >+ from PyQt4 import QtCore, QtGui >+ >++# FreeBSD check >++freebsd = False >++if sys.platform[:-1] == 'freebsd': freebsd = True >++ >+ >+ app = QtGui.QApplication(sys.argv) >+ >+@@ -43,6 +47,8 @@ >+ >+ if sys.platform == 'darwin': >+ designer_bin += '/Designer.app/Contents/MacOS/Designer' >++elif freebsd: >++ designer_bin.append("/designer-qt4") >+ else: >+ designer_bin += '/designer' >+ > >Property changes on: misc/py-qt5-demo/files/patch-examples__designer__plugins__plugins.py >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: misc/py-qt5-demo/pkg-descr >=================================================================== >--- misc/py-qt5-demo/pkg-descr (nonexistent) >+++ misc/py-qt5-demo/pkg-descr (working copy) >@@ -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/ > >Property changes on: misc/py-qt5-demo/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: misc/py-qt5-demo/pkg-plist >=================================================================== >--- misc/py-qt5-demo/pkg-plist (nonexistent) >+++ misc/py-qt5-demo/pkg-plist (working copy) >@@ -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 > >Property changes on: misc/py-qt5-demo/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: misc/py-qt5-doc/Makefile >=================================================================== >--- misc/py-qt5-doc/Makefile (nonexistent) >+++ misc/py-qt5-doc/Makefile (working copy) >@@ -0,0 +1,29 @@ >+# Created by: Danny Pansters <danny@ricin.com> >+# $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 <bsd.port.mk> > >Property changes on: misc/py-qt5-doc/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: misc/py-qt5-doc/pkg-descr >=================================================================== >--- misc/py-qt5-doc/pkg-descr (nonexistent) >+++ misc/py-qt5-doc/pkg-descr (working copy) >@@ -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/ > >Property changes on: misc/py-qt5-doc/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: misc/py-qt5-doc/pkg-plist >=================================================================== >--- misc/py-qt5-doc/pkg-plist (nonexistent) >+++ misc/py-qt5-doc/pkg-plist (working copy) >@@ -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 > >Property changes on: misc/py-qt5-doc/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: multimedia/py-qt4-multimedia/Makefile >=================================================================== >--- multimedia/py-qt4-multimedia/Makefile (revision 401917) >+++ multimedia/py-qt4-multimedia/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: multimedia/py-qt4-multimedia/pkg-plist >=================================================================== >--- multimedia/py-qt4-multimedia/pkg-plist (revision 401917) >+++ multimedia/py-qt4-multimedia/pkg-plist (working copy) >@@ -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 (revision 401917) >+++ multimedia/py-qt4-phonon/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: multimedia/py-qt4-phonon/pkg-plist >=================================================================== >--- multimedia/py-qt4-phonon/pkg-plist (revision 401917) >+++ multimedia/py-qt4-phonon/pkg-plist (working copy) >@@ -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 (nonexistent) >+++ multimedia/py-qt5-multimedia/Makefile (working copy) >@@ -0,0 +1,28 @@ >+# Created by: Dima Panov <fluffy@FreeBSD.org> >+# $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 <bsd.port.mk> > >Property changes on: multimedia/py-qt5-multimedia/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: multimedia/py-qt5-multimedia/pkg-descr >=================================================================== >--- multimedia/py-qt5-multimedia/pkg-descr (nonexistent) >+++ multimedia/py-qt5-multimedia/pkg-descr (working copy) >@@ -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/ > >Property changes on: multimedia/py-qt5-multimedia/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: multimedia/py-qt5-multimedia/pkg-plist >=================================================================== >--- multimedia/py-qt5-multimedia/pkg-plist (nonexistent) >+++ multimedia/py-qt5-multimedia/pkg-plist (working copy) >@@ -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 > >Property changes on: multimedia/py-qt5-multimedia/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: net/py-qt4-network/Makefile >=================================================================== >--- net/py-qt4-network/Makefile (revision 401917) >+++ net/py-qt4-network/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: net/py-qt4-network/pkg-plist >=================================================================== >--- net/py-qt4-network/pkg-plist (revision 401917) >+++ net/py-qt4-network/pkg-plist (working copy) >@@ -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 (nonexistent) >+++ net/py-qt5-network/Makefile (working copy) >@@ -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 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 <bsd.port.mk> > >Property changes on: net/py-qt5-network/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: net/py-qt5-network/pkg-descr >=================================================================== >--- net/py-qt5-network/pkg-descr (nonexistent) >+++ net/py-qt5-network/pkg-descr (working copy) >@@ -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/ > >Property changes on: net/py-qt5-network/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: net/py-qt5-network/pkg-plist >=================================================================== >--- net/py-qt5-network/pkg-plist (nonexistent) >+++ net/py-qt5-network/pkg-plist (working copy) >@@ -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 > >Property changes on: net/py-qt5-network/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: net-im/turpial/Makefile >=================================================================== >--- net-im/turpial/Makefile (revision 401917) >+++ net-im/turpial/Makefile (working copy) >@@ -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,13 +18,13 @@ > ${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 > >-.include "${.CURDIR}/../../devel/py-qt4/bsd.pyqt.mk" >+.include "bsd.port.pre.mk" > > .for component in ${PYQT4_PORTS} > RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}qt4-${component}>=0:${PORTSDIR}/${${component}_PORT} >@@ -54,4 +54,4 @@ > ${STAGEDIR}${PREFIX}/share/locale/${dir}/LC_MESSAGES > .endfor > >-.include <bsd.port.mk> >+.include <bsd.port.post.mk> >Index: print/py-qt5-printsupport/Makefile >=================================================================== >--- print/py-qt5-printsupport/Makefile (nonexistent) >+++ print/py-qt5-printsupport/Makefile (working copy) >@@ -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 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 <bsd.port.mk> > >Property changes on: print/py-qt5-printsupport/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: print/py-qt5-printsupport/pkg-descr >=================================================================== >--- print/py-qt5-printsupport/pkg-descr (nonexistent) >+++ print/py-qt5-printsupport/pkg-descr (working copy) >@@ -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/ > >Property changes on: print/py-qt5-printsupport/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: print/py-qt5-printsupport/pkg-plist >=================================================================== >--- print/py-qt5-printsupport/pkg-plist (nonexistent) >+++ print/py-qt5-printsupport/pkg-plist (working copy) >@@ -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 > >Property changes on: print/py-qt5-printsupport/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: textproc/py-qt4-xml/Makefile >=================================================================== >--- textproc/py-qt4-xml/Makefile (revision 401917) >+++ textproc/py-qt4-xml/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: textproc/py-qt4-xml/pkg-plist >=================================================================== >--- textproc/py-qt4-xml/pkg-plist (revision 401917) >+++ textproc/py-qt4-xml/pkg-plist (working copy) >@@ -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 (revision 401917) >+++ textproc/py-qt4-xmlpatterns/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: textproc/py-qt4-xmlpatterns/pkg-plist >=================================================================== >--- textproc/py-qt4-xmlpatterns/pkg-plist (revision 401917) >+++ textproc/py-qt4-xmlpatterns/pkg-plist (working copy) >@@ -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 (nonexistent) >+++ textproc/py-qt5-xml/Makefile (working copy) >@@ -0,0 +1,28 @@ >+# Created by: Danny Pansters <danny@ricin.com> >+# $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 <bsd.port.mk> > >Property changes on: textproc/py-qt5-xml/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: textproc/py-qt5-xml/pkg-descr >=================================================================== >--- textproc/py-qt5-xml/pkg-descr (nonexistent) >+++ textproc/py-qt5-xml/pkg-descr (working copy) >@@ -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/ > >Property changes on: textproc/py-qt5-xml/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: textproc/py-qt5-xml/pkg-plist >=================================================================== >--- textproc/py-qt5-xml/pkg-plist (nonexistent) >+++ textproc/py-qt5-xml/pkg-plist (working copy) >@@ -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 > >Property changes on: textproc/py-qt5-xml/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: textproc/py-qt5-xmlpatterns/Makefile >=================================================================== >--- textproc/py-qt5-xmlpatterns/Makefile (nonexistent) >+++ textproc/py-qt5-xmlpatterns/Makefile (working copy) >@@ -0,0 +1,28 @@ >+# Created by: Danny Pansters <danny@ricin.com> >+# $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 <bsd.port.mk> > >Property changes on: textproc/py-qt5-xmlpatterns/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: textproc/py-qt5-xmlpatterns/pkg-descr >=================================================================== >--- textproc/py-qt5-xmlpatterns/pkg-descr (nonexistent) >+++ textproc/py-qt5-xmlpatterns/pkg-descr (working copy) >@@ -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/ > >Property changes on: textproc/py-qt5-xmlpatterns/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: textproc/py-qt5-xmlpatterns/pkg-plist >=================================================================== >--- textproc/py-qt5-xmlpatterns/pkg-plist (nonexistent) >+++ textproc/py-qt5-xmlpatterns/pkg-plist (working copy) >@@ -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 > >Property changes on: textproc/py-qt5-xmlpatterns/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: www/py-qt4-webkit/Makefile >=================================================================== >--- www/py-qt4-webkit/Makefile (revision 401917) >+++ www/py-qt4-webkit/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: www/py-qt4-webkit/pkg-plist >=================================================================== >--- www/py-qt4-webkit/pkg-plist (revision 401917) >+++ www/py-qt4-webkit/pkg-plist (working copy) >@@ -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 (nonexistent) >+++ www/py-qt5-webkit/Makefile (working copy) >@@ -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 <bsd.port.mk> > >Property changes on: www/py-qt5-webkit/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: www/py-qt5-webkit/pkg-descr >=================================================================== >--- www/py-qt5-webkit/pkg-descr (nonexistent) >+++ www/py-qt5-webkit/pkg-descr (working copy) >@@ -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/ > >Property changes on: www/py-qt5-webkit/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: www/py-qt5-webkit/pkg-plist >=================================================================== >--- www/py-qt5-webkit/pkg-plist (nonexistent) >+++ www/py-qt5-webkit/pkg-plist (working copy) >@@ -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 > >Property changes on: www/py-qt5-webkit/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: www/py-qt5-webkitwidgets/Makefile >=================================================================== >--- www/py-qt5-webkitwidgets/Makefile (nonexistent) >+++ www/py-qt5-webkitwidgets/Makefile (working copy) >@@ -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 <bsd.port.mk> > >Property changes on: www/py-qt5-webkitwidgets/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: www/py-qt5-webkitwidgets/pkg-descr >=================================================================== >--- www/py-qt5-webkitwidgets/pkg-descr (nonexistent) >+++ www/py-qt5-webkitwidgets/pkg-descr (working copy) >@@ -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/ > >Property changes on: www/py-qt5-webkitwidgets/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: www/py-qt5-webkitwidgets/pkg-plist >=================================================================== >--- www/py-qt5-webkitwidgets/pkg-plist (nonexistent) >+++ www/py-qt5-webkitwidgets/pkg-plist (working copy) >@@ -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 > >Property changes on: www/py-qt5-webkitwidgets/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: x11/leechcraft/Makefile >=================================================================== >--- x11/leechcraft/Makefile (revision 401917) >+++ x11/leechcraft/Makefile (working copy) >@@ -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 (revision 401917) >+++ x11/py-qt4-opengl/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: x11/py-qt4-opengl/pkg-plist >=================================================================== >--- x11/py-qt4-opengl/pkg-plist (revision 401917) >+++ x11/py-qt4-opengl/pkg-plist (working copy) >@@ -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 (nonexistent) >+++ x11/py-qt5-opengl/Makefile (working copy) >@@ -0,0 +1,29 @@ >+# Created by: Danny Pansters <danny@ricin.com> >+# $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= qmake >+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 <bsd.port.mk> > >Property changes on: x11/py-qt5-opengl/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: x11/py-qt5-opengl/pkg-descr >=================================================================== >--- x11/py-qt5-opengl/pkg-descr (nonexistent) >+++ x11/py-qt5-opengl/pkg-descr (working copy) >@@ -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/ > >Property changes on: x11/py-qt5-opengl/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: x11/py-qt5-opengl/pkg-plist >=================================================================== >--- x11/py-qt5-opengl/pkg-plist (nonexistent) >+++ x11/py-qt5-opengl/pkg-plist (working copy) >@@ -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 > >Property changes on: x11/py-qt5-opengl/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: x11-toolkits/py-qt4-gui/Makefile >=================================================================== >--- x11-toolkits/py-qt4-gui/Makefile (revision 401917) >+++ x11-toolkits/py-qt4-gui/Makefile (working copy) >@@ -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 <bsd.port.mk> >Index: x11-toolkits/py-qt4-gui/pkg-plist >=================================================================== >--- x11-toolkits/py-qt4-gui/pkg-plist (revision 401917) >+++ x11-toolkits/py-qt4-gui/pkg-plist (working copy) >@@ -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 (nonexistent) >+++ x11-toolkits/py-qt5-gui/Makefile (working copy) >@@ -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 <bsd.port.mk> > >Property changes on: x11-toolkits/py-qt5-gui/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: x11-toolkits/py-qt5-gui/pkg-descr >=================================================================== >--- x11-toolkits/py-qt5-gui/pkg-descr (nonexistent) >+++ x11-toolkits/py-qt5-gui/pkg-descr (working copy) >@@ -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/ > >Property changes on: x11-toolkits/py-qt5-gui/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: x11-toolkits/py-qt5-gui/pkg-plist >=================================================================== >--- x11-toolkits/py-qt5-gui/pkg-plist (nonexistent) >+++ x11-toolkits/py-qt5-gui/pkg-plist (working copy) >@@ -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 > >Property changes on: x11-toolkits/py-qt5-gui/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: x11-toolkits/py-qt5-widgets/Makefile >=================================================================== >--- x11-toolkits/py-qt5-widgets/Makefile (nonexistent) >+++ x11-toolkits/py-qt5-widgets/Makefile (working copy) >@@ -0,0 +1,30 @@ >+# Created by: Danny Pansters <danny@ricin.com> >+# $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 <bsd.port.mk> > >Property changes on: x11-toolkits/py-qt5-widgets/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: x11-toolkits/py-qt5-widgets/pkg-descr >=================================================================== >--- x11-toolkits/py-qt5-widgets/pkg-descr (nonexistent) >+++ x11-toolkits/py-qt5-widgets/pkg-descr (working copy) >@@ -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/ > >Property changes on: x11-toolkits/py-qt5-widgets/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: x11-toolkits/py-qt5-widgets/pkg-plist >=================================================================== >--- x11-toolkits/py-qt5-widgets/pkg-plist (nonexistent) >+++ x11-toolkits/py-qt5-widgets/pkg-plist (working copy) >@@ -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 > >Property changes on: x11-toolkits/py-qt5-widgets/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 204672
:
163322
|
163380
|
163381