update for qt 4.6.2.

While at it, patch configure to substitute $(LOCALBASE) and ${LOCALBASE}
in Makefile fragments that were never intended to run as shell-scripts
This commit is contained in:
espie 2010-04-19 09:51:30 +00:00
parent 00af17e391
commit d1e698bf47
5 changed files with 217 additions and 27 deletions

View File

@ -1,14 +1,14 @@
# $OpenBSD: Makefile,v 1.10 2009/09/09 14:13:57 sthen Exp $
# $OpenBSD: Makefile,v 1.11 2010/04/19 09:51:30 espie Exp $
SHARED_ONLY= Yes
COMMENT-main= python Qt4 bindings
COMMENT-docs= py-qt4 documentation
V= 4.5.4
V= 4.7.2
DISTNAME= PyQt-x11-gpl-${V}
PKGNAME= py-qt4-${V}
PKGNAME-main= py-qt4-${V}p0
PKGNAME-main= py-qt4-${V}
PKGNAME-docs= py-qt4-docs-${V}
CATEGORIES= x11 devel
@ -35,7 +35,7 @@ RUN_DEPENDS-docs=
PKG_ARCH-docs= *
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= :py-sip->=4.8.1:devel/py-sip \
RUN_DEPENDS= :py-sip->=4.10.0:devel/py-sip \
::x11/dbus-python
LIB_DEPENDS= QtAssistantClient,QtDesigner,QtGui,QtNetwork,QtOpenGL,QtScript,QtSql,QtSvg,QtTest,QtXml::x11/qt4 \
${MODPY_LIB_DEPENDS}
@ -68,6 +68,7 @@ CONFIGURE_ARGS= --verbose \
CFLAGS="${CFLAGS}" \
CXXFLAGS="${CXXFLAGS}"
FAKE_FLAGS= INSTALL_ROOT=${DESTDIR}
CONFIGURE_ENV= LOCALBASE=${LOCALBASE}
PYQTMODS= QtCore QtGui QtNetwork QtOpenGL QtScript QtSql QtSvg \
QtTest QtXml QtAssistant QtDesigner

View File

@ -1,5 +1,5 @@
MD5 (PyQt-x11-gpl-4.5.4.tar.gz) = tyEmbRTEUN1wRQJeBCgZ7A==
RMD160 (PyQt-x11-gpl-4.5.4.tar.gz) = D3pI7bZRFsj7IzV/ZtFk/x/khoQ=
SHA1 (PyQt-x11-gpl-4.5.4.tar.gz) = vosBuLI0OmqF8Y0W8QvFSeiCZdY=
SHA256 (PyQt-x11-gpl-4.5.4.tar.gz) = s9Bse9pwEFV2mt2TtIED7jXG/JpLAMZ1mctCb579pag=
SIZE (PyQt-x11-gpl-4.5.4.tar.gz) = 6970552
MD5 (PyQt-x11-gpl-4.7.2.tar.gz) = 53gukUbsiqDna82wyluUkQ==
RMD160 (PyQt-x11-gpl-4.7.2.tar.gz) = GsAydh29u3t9RGroGhXiY99VfGw=
SHA1 (PyQt-x11-gpl-4.7.2.tar.gz) = Vtj3MOX9rQMk8YYwbFK8r5uI/n4=
SHA256 (PyQt-x11-gpl-4.7.2.tar.gz) = 2xfJP2CQ11+ylk5YnNlAPYglKvWyJfRRUWVjeXLr7yQ=
SIZE (PyQt-x11-gpl-4.7.2.tar.gz) = 7803259

View File

@ -1,7 +1,25 @@
$OpenBSD: patch-configure_py,v 1.3 2009/09/05 16:18:43 sthen Exp $
--- configure.py.orig Thu Sep 3 23:05:04 2009
+++ configure.py Thu Sep 3 23:05:47 2009
@@ -1495,7 +1495,7 @@ Type 'no' to decline the terms of the license.
$OpenBSD: patch-configure_py,v 1.4 2010/04/19 09:51:30 espie Exp $
--- configure.py.orig Wed Mar 17 19:29:19 2010
+++ configure.py Mon Apr 19 11:45:31 2010
@@ -1060,6 +1060,17 @@ def run_command(cmd):
cmd is the command to run.
"""
+ try:
+ localbase = os.environ["LOCALBASE"]
+ except KeyError:
+ localbase = "/usr/local"
+ try:
+ x11base = os.environ["X11BASE"]
+ except KeyError:
+ x11base = "/usr/X11R6"
+
+ cmd = cmd.replace("${LOCALBASE}", localbase).replace("$(LOCALBASE)", localbase)
+ cmd = cmd.replace("${X11BASE}", x11base).replace("$(X11BASE)", x11base)
if opts.verbose:
sys.stdout.write(cmd + "\n")
@@ -1670,7 +1681,7 @@ Type 'no' to decline the terms of the license.
sys.stdout.flush()
try:

View File

@ -1,10 +1,16 @@
@comment $OpenBSD: PLIST-docs,v 1.3 2009/09/05 16:18:43 sthen Exp $
@comment $OpenBSD: PLIST-docs,v 1.4 2010/04/19 09:51:30 espie Exp $
@comment lib/python${MODPY_VERSION}/
@comment lib/python${MODPY_VERSION}/site-packages/
@comment lib/python${MODPY_VERSION}/site-packages/dbus/
@comment lib/python${MODPY_VERSION}/site-packages/dbus/mainloop/
@comment lib/qt4/
@comment lib/qt4/plugins/
@comment lib/qt4/plugins/designer/
share/doc/py-qt4/
share/doc/py-qt4/html/
share/doc/py-qt4/html/assistant-manual.html
share/doc/py-qt4/html/classes.html
share/doc/py-qt4/html/images/
share/doc/py-qt4/html/images/alphachannelimage.png
share/doc/py-qt4/html/images/alphafill.png
share/doc/py-qt4/html/images/assistant-toolbar.png
share/doc/py-qt4/html/images/bearings.png
@ -21,6 +27,8 @@ share/doc/py-qt4/html/images/buttonbox-maclayout-vertical.png
share/doc/py-qt4/html/images/buttonbox-winlayout-horizontal.png
share/doc/py-qt4/html/images/buttonbox-winlayout-vertical.png
share/doc/py-qt4/html/images/cde-lcdnumber.png
share/doc/py-qt4/html/images/checkboxes-exclusive.png
share/doc/py-qt4/html/images/checkboxes-non-exclusive.png
share/doc/py-qt4/html/images/cleanlooks-calendarwidget.png
share/doc/py-qt4/html/images/cleanlooks-pushbutton-menu.png
share/doc/py-qt4/html/images/conceptaudio.png
@ -48,6 +56,12 @@ share/doc/py-qt4/html/images/effectwidget.png
share/doc/py-qt4/html/images/filedialogurls.png
share/doc/py-qt4/html/images/foreignkeys.png
share/doc/py-qt4/html/images/frames.png
share/doc/py-qt4/html/images/graphicseffect-blur.png
share/doc/py-qt4/html/images/graphicseffect-colorize.png
share/doc/py-qt4/html/images/graphicseffect-drop-shadow.png
share/doc/py-qt4/html/images/graphicseffect-opacity.png
share/doc/py-qt4/html/images/graphicseffect-plain.png
share/doc/py-qt4/html/images/graphicseffect-widget.png
share/doc/py-qt4/html/images/graphicsview-ellipseitem-pie.png
share/doc/py-qt4/html/images/graphicsview-ellipseitem.png
share/doc/py-qt4/html/images/graphicsview-items.png
@ -62,6 +76,7 @@ share/doc/py-qt4/html/images/graphicsview-textitem.png
share/doc/py-qt4/html/images/graphicsview-view.png
share/doc/py-qt4/html/images/graphicsview-zorder.png
share/doc/py-qt4/html/images/gridlayout.png
share/doc/py-qt4/html/images/hoverevents.png
share/doc/py-qt4/html/images/httpstack.png
share/doc/py-qt4/html/images/icon.png
share/doc/py-qt4/html/images/inputdialogs.png
@ -106,8 +121,10 @@ share/doc/py-qt4/html/images/msgbox3.png
share/doc/py-qt4/html/images/msgbox4.png
share/doc/py-qt4/html/images/noforeignkeys.png
share/doc/py-qt4/html/images/palette.png
share/doc/py-qt4/html/images/pangesture.png
share/doc/py-qt4/html/images/parent-child-widgets.png
share/doc/py-qt4/html/images/patternist-wordProcessor.png
share/doc/py-qt4/html/images/pinchgesture.png
share/doc/py-qt4/html/images/plastique-checkbox.png
share/doc/py-qt4/html/images/plastique-colordialog.png
share/doc/py-qt4/html/images/plastique-dateedit.png
@ -152,6 +169,47 @@ share/doc/py-qt4/html/images/qcolor-value.png
share/doc/py-qt4/html/images/qcolumnview.png
share/doc/py-qt4/html/images/qconicalgradient.png
share/doc/py-qt4/html/images/qdesktopwidget.png
share/doc/py-qt4/html/images/qeasingcurve-inback.png
share/doc/py-qt4/html/images/qeasingcurve-inbounce.png
share/doc/py-qt4/html/images/qeasingcurve-incirc.png
share/doc/py-qt4/html/images/qeasingcurve-incubic.png
share/doc/py-qt4/html/images/qeasingcurve-inelastic.png
share/doc/py-qt4/html/images/qeasingcurve-inexpo.png
share/doc/py-qt4/html/images/qeasingcurve-inoutback.png
share/doc/py-qt4/html/images/qeasingcurve-inoutbounce.png
share/doc/py-qt4/html/images/qeasingcurve-inoutcirc.png
share/doc/py-qt4/html/images/qeasingcurve-inoutcubic.png
share/doc/py-qt4/html/images/qeasingcurve-inoutelastic.png
share/doc/py-qt4/html/images/qeasingcurve-inoutexpo.png
share/doc/py-qt4/html/images/qeasingcurve-inoutquad.png
share/doc/py-qt4/html/images/qeasingcurve-inoutquart.png
share/doc/py-qt4/html/images/qeasingcurve-inoutquint.png
share/doc/py-qt4/html/images/qeasingcurve-inoutsine.png
share/doc/py-qt4/html/images/qeasingcurve-inquad.png
share/doc/py-qt4/html/images/qeasingcurve-inquart.png
share/doc/py-qt4/html/images/qeasingcurve-inquint.png
share/doc/py-qt4/html/images/qeasingcurve-insine.png
share/doc/py-qt4/html/images/qeasingcurve-linear.png
share/doc/py-qt4/html/images/qeasingcurve-outback.png
share/doc/py-qt4/html/images/qeasingcurve-outbounce.png
share/doc/py-qt4/html/images/qeasingcurve-outcirc.png
share/doc/py-qt4/html/images/qeasingcurve-outcubic.png
share/doc/py-qt4/html/images/qeasingcurve-outelastic.png
share/doc/py-qt4/html/images/qeasingcurve-outexpo.png
share/doc/py-qt4/html/images/qeasingcurve-outinback.png
share/doc/py-qt4/html/images/qeasingcurve-outinbounce.png
share/doc/py-qt4/html/images/qeasingcurve-outincirc.png
share/doc/py-qt4/html/images/qeasingcurve-outincubic.png
share/doc/py-qt4/html/images/qeasingcurve-outinelastic.png
share/doc/py-qt4/html/images/qeasingcurve-outinexpo.png
share/doc/py-qt4/html/images/qeasingcurve-outinquad.png
share/doc/py-qt4/html/images/qeasingcurve-outinquart.png
share/doc/py-qt4/html/images/qeasingcurve-outinquint.png
share/doc/py-qt4/html/images/qeasingcurve-outinsine.png
share/doc/py-qt4/html/images/qeasingcurve-outquad.png
share/doc/py-qt4/html/images/qeasingcurve-outquart.png
share/doc/py-qt4/html/images/qeasingcurve-outquint.png
share/doc/py-qt4/html/images/qeasingcurve-outsine.png
share/doc/py-qt4/html/images/qerrormessage.png
share/doc/py-qt4/html/images/qformlayout-kde.png
share/doc/py-qt4/html/images/qformlayout-mac.png
@ -294,12 +352,13 @@ share/doc/py-qt4/html/images/rintersect.png
share/doc/py-qt4/html/images/rsubtract.png
share/doc/py-qt4/html/images/runion.png
share/doc/py-qt4/html/images/rxor.png
share/doc/py-qt4/html/images/simpleanchorlayout-example.png
share/doc/py-qt4/html/images/swipegesture.png
share/doc/py-qt4/html/images/system-tray.png
share/doc/py-qt4/html/images/taskmenuextension-example-faded.png
share/doc/py-qt4/html/images/tcpstream.png
share/doc/py-qt4/html/images/texttable-merge.png
share/doc/py-qt4/html/images/texttable-split.png
share/doc/py-qt4/html/images/threadsandobjects.png
share/doc/py-qt4/html/images/udppackets.png
share/doc/py-qt4/html/images/whatsthis.png
share/doc/py-qt4/html/images/widgetdelegate.png
@ -354,6 +413,7 @@ share/doc/py-qt4/html/phonon-videoplayer.html
share/doc/py-qt4/html/phonon-videowidget.html
share/doc/py-qt4/html/phonon-volumeslider.html
share/doc/py-qt4/html/phonon.html
share/doc/py-qt4/html/qabstractanimation.html
share/doc/py-qt4/html/qabstractbutton.html
share/doc/py-qt4/html/qabstracteventdispatcher.html
share/doc/py-qt4/html/qabstractextensionfactory.html
@ -379,18 +439,28 @@ share/doc/py-qt4/html/qabstractslider.html
share/doc/py-qt4/html/qabstractsocket.html
share/doc/py-qt4/html/qabstractspinbox-stepenabled.html
share/doc/py-qt4/html/qabstractspinbox.html
share/doc/py-qt4/html/qabstractstate.html
share/doc/py-qt4/html/qabstracttablemodel.html
share/doc/py-qt4/html/qabstracttextdocumentlayout-paintcontext.html
share/doc/py-qt4/html/qabstracttextdocumentlayout-selection.html
share/doc/py-qt4/html/qabstracttextdocumentlayout.html
share/doc/py-qt4/html/qabstracttransition.html
share/doc/py-qt4/html/qabstracturiresolver.html
share/doc/py-qt4/html/qabstractvideobuffer.html
share/doc/py-qt4/html/qabstractvideosurface.html
share/doc/py-qt4/html/qabstractxmlnodemodel.html
share/doc/py-qt4/html/qabstractxmlreceiver.html
share/doc/py-qt4/html/qaction.html
share/doc/py-qt4/html/qactionevent.html
share/doc/py-qt4/html/qactiongroup.html
share/doc/py-qt4/html/qanimationgroup.html
share/doc/py-qt4/html/qapplication.html
share/doc/py-qt4/html/qassistantclient.html
share/doc/py-qt4/html/qaudio.html
share/doc/py-qt4/html/qaudiodeviceinfo.html
share/doc/py-qt4/html/qaudioformat.html
share/doc/py-qt4/html/qaudioinput.html
share/doc/py-qt4/html/qaudiooutput.html
share/doc/py-qt4/html/qauthenticator.html
share/doc/py-qt4/html/qaxcontainer.html
share/doc/py-qt4/html/qbasictimer.html
@ -481,10 +551,12 @@ share/doc/py-qt4/html/qdragleaveevent.html
share/doc/py-qt4/html/qdragmoveevent.html
share/doc/py-qt4/html/qdropevent.html
share/doc/py-qt4/html/qdynamicpropertychangeevent.html
share/doc/py-qt4/html/qeasingcurve.html
share/doc/py-qt4/html/qerrormessage.html
share/doc/py-qt4/html/qevent.html
share/doc/py-qt4/html/qeventloop-processeventsflags.html
share/doc/py-qt4/html/qeventloop.html
share/doc/py-qt4/html/qeventtransition.html
share/doc/py-qt4/html/qextensionfactory.html
share/doc/py-qt4/html/qextensionmanager.html
share/doc/py-qt4/html/qfile-permissions.html
@ -496,6 +568,7 @@ share/doc/py-qt4/html/qfileinfo.html
share/doc/py-qt4/html/qfileopenevent.html
share/doc/py-qt4/html/qfilesystemmodel.html
share/doc/py-qt4/html/qfilesystemwatcher.html
share/doc/py-qt4/html/qfinalstate.html
share/doc/py-qt4/html/qfocusevent.html
share/doc/py-qt4/html/qfocusframe.html
share/doc/py-qt4/html/qfont.html
@ -514,16 +587,33 @@ share/doc/py-qt4/html/qfsfileengine.html
share/doc/py-qt4/html/qftp.html
share/doc/py-qt4/html/qgenericargument.html
share/doc/py-qt4/html/qgenericreturnargument.html
share/doc/py-qt4/html/qgesture.html
share/doc/py-qt4/html/qgestureevent.html
share/doc/py-qt4/html/qgesturerecognizer-result.html
share/doc/py-qt4/html/qgesturerecognizer.html
share/doc/py-qt4/html/qgl-formatoptions.html
share/doc/py-qt4/html/qgl.html
share/doc/py-qt4/html/qglcolormap.html
share/doc/py-qt4/html/qglcontext-bindoptions.html
share/doc/py-qt4/html/qglcontext.html
share/doc/py-qt4/html/qglformat-openglversionflags.html
share/doc/py-qt4/html/qglformat.html
share/doc/py-qt4/html/qglframebufferobject.html
share/doc/py-qt4/html/qglframebufferobjectformat.html
share/doc/py-qt4/html/qglpixelbuffer.html
share/doc/py-qt4/html/qglshader-shadertype.html
share/doc/py-qt4/html/qglshader.html
share/doc/py-qt4/html/qglshaderprogram.html
share/doc/py-qt4/html/qglwidget.html
share/doc/py-qt4/html/qgradient.html
share/doc/py-qt4/html/qgraphicsanchor.html
share/doc/py-qt4/html/qgraphicsanchorlayout.html
share/doc/py-qt4/html/qgraphicsblureffect-blurhints.html
share/doc/py-qt4/html/qgraphicsblureffect.html
share/doc/py-qt4/html/qgraphicscolorizeeffect.html
share/doc/py-qt4/html/qgraphicsdropshadoweffect.html
share/doc/py-qt4/html/qgraphicseffect-changeflags.html
share/doc/py-qt4/html/qgraphicseffect.html
share/doc/py-qt4/html/qgraphicsellipseitem.html
share/doc/py-qt4/html/qgraphicsgridlayout.html
share/doc/py-qt4/html/qgraphicsitem-graphicsitemflags.html
@ -534,11 +624,15 @@ share/doc/py-qt4/html/qgraphicslayout.html
share/doc/py-qt4/html/qgraphicslayoutitem.html
share/doc/py-qt4/html/qgraphicslinearlayout.html
share/doc/py-qt4/html/qgraphicslineitem.html
share/doc/py-qt4/html/qgraphicsobject.html
share/doc/py-qt4/html/qgraphicsopacityeffect.html
share/doc/py-qt4/html/qgraphicspathitem.html
share/doc/py-qt4/html/qgraphicspixmapitem.html
share/doc/py-qt4/html/qgraphicspolygonitem.html
share/doc/py-qt4/html/qgraphicsproxywidget.html
share/doc/py-qt4/html/qgraphicsrectitem.html
share/doc/py-qt4/html/qgraphicsrotation.html
share/doc/py-qt4/html/qgraphicsscale.html
share/doc/py-qt4/html/qgraphicsscene-scenelayers.html
share/doc/py-qt4/html/qgraphicsscene.html
share/doc/py-qt4/html/qgraphicsscenecontextmenuevent.html
@ -553,9 +647,11 @@ share/doc/py-qt4/html/qgraphicsscenewheelevent.html
share/doc/py-qt4/html/qgraphicssimpletextitem.html
share/doc/py-qt4/html/qgraphicssvgitem.html
share/doc/py-qt4/html/qgraphicstextitem.html
share/doc/py-qt4/html/qgraphicstransform.html
share/doc/py-qt4/html/qgraphicsview-cachemode.html
share/doc/py-qt4/html/qgraphicsview-optimizationflags.html
share/doc/py-qt4/html/qgraphicsview.html
share/doc/py-qt4/html/qgraphicswebview.html
share/doc/py-qt4/html/qgraphicswidget.html
share/doc/py-qt4/html/qgridlayout.html
share/doc/py-qt4/html/qgroupbox.html
@ -574,6 +670,7 @@ share/doc/py-qt4/html/qhelpsearchquery.html
share/doc/py-qt4/html/qhelpsearchquerywidget.html
share/doc/py-qt4/html/qhelpsearchresultwidget.html
share/doc/py-qt4/html/qhideevent.html
share/doc/py-qt4/html/qhistorystate.html
share/doc/py-qt4/html/qhostaddress.html
share/doc/py-qt4/html/qhostinfo.html
share/doc/py-qt4/html/qhoverevent.html
@ -608,6 +705,7 @@ share/doc/py-qt4/html/qitemselectionmodel-selectionflags.html
share/doc/py-qt4/html/qitemselectionmodel.html
share/doc/py-qt4/html/qitemselectionrange.html
share/doc/py-qt4/html/qkeyevent.html
share/doc/py-qt4/html/qkeyeventtransition.html
share/doc/py-qt4/html/qkeysequence.html
share/doc/py-qt4/html/qlabel.html
share/doc/py-qt4/html/qlatin1char.html
@ -631,7 +729,17 @@ share/doc/py-qt4/html/qlocalserver.html
share/doc/py-qt4/html/qlocalsocket.html
share/doc/py-qt4/html/qmainwindow-dockoptions.html
share/doc/py-qt4/html/qmainwindow.html
share/doc/py-qt4/html/qmargins.html
share/doc/py-qt4/html/qmatrix.html
share/doc/py-qt4/html/qmatrix2x2.html
share/doc/py-qt4/html/qmatrix2x3.html
share/doc/py-qt4/html/qmatrix2x4.html
share/doc/py-qt4/html/qmatrix3x2.html
share/doc/py-qt4/html/qmatrix3x3.html
share/doc/py-qt4/html/qmatrix3x4.html
share/doc/py-qt4/html/qmatrix4x2.html
share/doc/py-qt4/html/qmatrix4x3.html
share/doc/py-qt4/html/qmatrix4x4.html
share/doc/py-qt4/html/qmdiarea-areaoptions.html
share/doc/py-qt4/html/qmdiarea.html
share/doc/py-qt4/html/qmdisubwindow-subwindowoptions.html
@ -650,6 +758,7 @@ share/doc/py-qt4/html/qmimedata.html
share/doc/py-qt4/html/qmimesource.html
share/doc/py-qt4/html/qmodelindex.html
share/doc/py-qt4/html/qmouseevent.html
share/doc/py-qt4/html/qmouseeventtransition.html
share/doc/py-qt4/html/qmoveevent.html
share/doc/py-qt4/html/qmovie.html
share/doc/py-qt4/html/qmutex.html
@ -684,11 +793,17 @@ share/doc/py-qt4/html/qpainterpath.html
share/doc/py-qt4/html/qpainterpathstroker.html
share/doc/py-qt4/html/qpaintevent.html
share/doc/py-qt4/html/qpalette.html
share/doc/py-qt4/html/qpangesture.html
share/doc/py-qt4/html/qparallelanimationgroup.html
share/doc/py-qt4/html/qpauseanimation.html
share/doc/py-qt4/html/qpen.html
share/doc/py-qt4/html/qpersistentmodelindex.html
share/doc/py-qt4/html/qpicture.html
share/doc/py-qt4/html/qpictureio.html
share/doc/py-qt4/html/qpinchgesture-changeflags.html
share/doc/py-qt4/html/qpinchgesture.html
share/doc/py-qt4/html/qpixmap.html
share/doc/py-qt4/html/qpixmapcache-key.html
share/doc/py-qt4/html/qpixmapcache.html
share/doc/py-qt4/html/qplaintextdocumentlayout.html
share/doc/py-qt4/html/qplaintextedit.html
@ -704,8 +819,10 @@ share/doc/py-qt4/html/qprinterinfo.html
share/doc/py-qt4/html/qprintpreviewdialog.html
share/doc/py-qt4/html/qprintpreviewwidget.html
share/doc/py-qt4/html/qprocess.html
share/doc/py-qt4/html/qprocessenvironment.html
share/doc/py-qt4/html/qprogressbar.html
share/doc/py-qt4/html/qprogressdialog.html
share/doc/py-qt4/html/qpropertyanimation.html
share/doc/py-qt4/html/qproxymodel.html
share/doc/py-qt4/html/qpushbutton.html
share/doc/py-qt4/html/qpydesignercontainerextension.html
@ -715,6 +832,7 @@ share/doc/py-qt4/html/qpydesignermembersheetextension.html
share/doc/py-qt4/html/qpydesignerpropertysheetextension.html
share/doc/py-qt4/html/qpydesignertaskmenuextension.html
share/doc/py-qt4/html/qpytextobject.html
share/doc/py-qt4/html/qquaternion.html
share/doc/py-qt4/html/qradialgradient.html
share/doc/py-qt4/html/qradiobutton.html
share/doc/py-qt4/html/qreadlocker.html
@ -746,6 +864,7 @@ share/doc/py-qt4/html/qscriptvalueiterator.html
share/doc/py-qt4/html/qscrollarea.html
share/doc/py-qt4/html/qscrollbar.html
share/doc/py-qt4/html/qsemaphore.html
share/doc/py-qt4/html/qsequentialanimationgroup.html
share/doc/py-qt4/html/qsessionmanager.html
share/doc/py-qt4/html/qsettings.html
share/doc/py-qt4/html/qsharedmemory.html
@ -753,6 +872,7 @@ share/doc/py-qt4/html/qshortcut.html
share/doc/py-qt4/html/qshortcutevent.html
share/doc/py-qt4/html/qshowevent.html
share/doc/py-qt4/html/qsignalmapper.html
share/doc/py-qt4/html/qsignaltransition.html
share/doc/py-qt4/html/qsimplexmlnodemodel.html
share/doc/py-qt4/html/qsize.html
share/doc/py-qt4/html/qsizef.html
@ -796,6 +916,10 @@ share/doc/py-qt4/html/qstackedlayout.html
share/doc/py-qt4/html/qstackedwidget.html
share/doc/py-qt4/html/qstandarditem.html
share/doc/py-qt4/html/qstandarditemmodel.html
share/doc/py-qt4/html/qstate.html
share/doc/py-qt4/html/qstatemachine-signalevent.html
share/doc/py-qt4/html/qstatemachine-wrappedevent.html
share/doc/py-qt4/html/qstatemachine.html
share/doc/py-qt4/html/qstatusbar.html
share/doc/py-qt4/html/qstatustipevent.html
share/doc/py-qt4/html/qstring-sectionflags.html
@ -841,6 +965,7 @@ share/doc/py-qt4/html/qstyleoptiontabbarbasev2.html
share/doc/py-qt4/html/qstyleoptiontabv2.html
share/doc/py-qt4/html/qstyleoptiontabv3.html
share/doc/py-qt4/html/qstyleoptiontabwidgetframe.html
share/doc/py-qt4/html/qstyleoptiontabwidgetframev2.html
share/doc/py-qt4/html/qstyleoptiontitlebar.html
share/doc/py-qt4/html/qstyleoptiontoolbar-toolbarfeatures.html
share/doc/py-qt4/html/qstyleoptiontoolbar.html
@ -857,6 +982,7 @@ share/doc/py-qt4/html/qstylepainter.html
share/doc/py-qt4/html/qsvggenerator.html
share/doc/py-qt4/html/qsvgrenderer.html
share/doc/py-qt4/html/qsvgwidget.html
share/doc/py-qt4/html/qswipegesture.html
share/doc/py-qt4/html/qsyntaxhighlighter.html
share/doc/py-qt4/html/qsysinfo.html
share/doc/py-qt4/html/qsystemlocale.html
@ -865,7 +991,9 @@ share/doc/py-qt4/html/qsystemtrayicon.html
share/doc/py-qt4/html/qt-alignment.html
share/doc/py-qt4/html/qt-dockwidgetareas.html
share/doc/py-qt4/html/qt-dropactions.html
share/doc/py-qt4/html/qt-gestureflags.html
share/doc/py-qt4/html/qt-imageconversionflags.html
share/doc/py-qt4/html/qt-inputmethodhints.html
share/doc/py-qt4/html/qt-itemflags.html
share/doc/py-qt4/html/qt-keyboardmodifiers.html
share/doc/py-qt4/html/qt-matchflags.html
@ -873,6 +1001,7 @@ share/doc/py-qt4/html/qt-mousebuttons.html
share/doc/py-qt4/html/qt-orientations.html
share/doc/py-qt4/html/qt-textinteractionflags.html
share/doc/py-qt4/html/qt-toolbarareas.html
share/doc/py-qt4/html/qt-touchpointstates.html
share/doc/py-qt4/html/qt-windowflags.html
share/doc/py-qt4/html/qt-windowstates.html
share/doc/py-qt4/html/qt.html
@ -883,12 +1012,15 @@ share/doc/py-qt4/html/qtablewidget.html
share/doc/py-qt4/html/qtablewidgetitem.html
share/doc/py-qt4/html/qtablewidgetselectionrange.html
share/doc/py-qt4/html/qtabwidget.html
share/doc/py-qt4/html/qtapandholdgesture.html
share/doc/py-qt4/html/qtapgesture.html
share/doc/py-qt4/html/qtassistant.html
share/doc/py-qt4/html/qtcore.html
share/doc/py-qt4/html/qtcpserver.html
share/doc/py-qt4/html/qtcpsocket.html
share/doc/py-qt4/html/qtdesigner.html
share/doc/py-qt4/html/qtemporaryfile.html
share/doc/py-qt4/html/qtest-qtoucheventsequence.html
share/doc/py-qt4/html/qtest.html
share/doc/py-qt4/html/qtextblock-iterator.html
share/doc/py-qt4/html/qtextblock.html
@ -948,12 +1080,15 @@ share/doc/py-qt4/html/qtimeedit.html
share/doc/py-qt4/html/qtimeline.html
share/doc/py-qt4/html/qtimer.html
share/doc/py-qt4/html/qtimerevent.html
share/doc/py-qt4/html/qtmultimedia.html
share/doc/py-qt4/html/qtnetwork.html
share/doc/py-qt4/html/qtoolbar.html
share/doc/py-qt4/html/qtoolbox.html
share/doc/py-qt4/html/qtoolbutton.html
share/doc/py-qt4/html/qtooltip.html
share/doc/py-qt4/html/qtopengl.html
share/doc/py-qt4/html/qtouchevent-touchpoint.html
share/doc/py-qt4/html/qtouchevent.html
share/doc/py-qt4/html/qtransform.html
share/doc/py-qt4/html/qtranslator.html
share/doc/py-qt4/html/qtreeview.html
@ -981,14 +1116,23 @@ share/doc/py-qt4/html/qurlinfo.html
share/doc/py-qt4/html/quuid.html
share/doc/py-qt4/html/qvalidator.html
share/doc/py-qt4/html/qvariant.html
share/doc/py-qt4/html/qvariantanimation.html
share/doc/py-qt4/html/qvboxlayout.html
share/doc/py-qt4/html/qvector2d.html
share/doc/py-qt4/html/qvector3d.html
share/doc/py-qt4/html/qvector4d.html
share/doc/py-qt4/html/qvideoframe.html
share/doc/py-qt4/html/qvideosurfaceformat.html
share/doc/py-qt4/html/qwaitcondition.html
share/doc/py-qt4/html/qwebdatabase.html
share/doc/py-qt4/html/qwebelement.html
share/doc/py-qt4/html/qwebelementcollection.html
share/doc/py-qt4/html/qwebframe.html
share/doc/py-qt4/html/qwebhistory.html
share/doc/py-qt4/html/qwebhistoryinterface.html
share/doc/py-qt4/html/qwebhistoryitem.html
share/doc/py-qt4/html/qwebhittestresult.html
share/doc/py-qt4/html/qwebinspector.html
share/doc/py-qt4/html/qwebpage-choosemultiplefilesextensionoption.html
share/doc/py-qt4/html/qwebpage-choosemultiplefilesextensionreturn.html
share/doc/py-qt4/html/qwebpage-extensionoption.html
@ -1039,6 +1183,8 @@ share/doc/py-qt4/html/qxmlparseexception.html
share/doc/py-qt4/html/qxmlquery.html
share/doc/py-qt4/html/qxmlreader.html
share/doc/py-qt4/html/qxmlresultitems.html
share/doc/py-qt4/html/qxmlschema.html
share/doc/py-qt4/html/qxmlschemavalidator.html
share/doc/py-qt4/html/qxmlserializer.html
share/doc/py-qt4/html/qxmlsimplereader.html
share/doc/py-qt4/html/qxmlstreamattribute.html

View File

@ -1,11 +1,7 @@
@comment $OpenBSD: PLIST-main,v 1.5 2009/09/05 16:18:43 sthen Exp $
@comment $OpenBSD: PLIST-main,v 1.6 2010/04/19 09:51:30 espie Exp $
@bin bin/pylupdate4
@bin bin/pyrcc4
bin/pyuic4
@comment lib/python${MODPY_VERSION}/
@comment lib/python${MODPY_VERSION}/site-packages/
@comment lib/python${MODPY_VERSION}/site-packages/dbus/
@comment lib/python${MODPY_VERSION}/site-packages/dbus/mainloop/
lib/python${MODPY_VERSION}/site-packages/PyQt4/
lib/python${MODPY_VERSION}/site-packages/PyQt4/Qt.so
lib/python${MODPY_VERSION}/site-packages/PyQt4/QtAssistant.so
@ -86,14 +82,8 @@ lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/widget-plugins/qscintilla.py
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/widget-plugins/qscintilla.pyc
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/widget-plugins/qtwebkit.py
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/widget-plugins/qtwebkit.pyc
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/widget-plugins/qwt.py
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/widget-plugins/qwt.pyc
lib/python${MODPY_VERSION}/site-packages/dbus/mainloop/qt.so
@comment lib/qt4/
@comment lib/qt4/plugins/
@comment lib/qt4/plugins/designer/
lib/qt4/plugins/designer/libpythonplugin.so
@comment lib/qt4/plugins/designer/python/
share/sip/
share/sip/Qt/
share/sip/Qt/Qtmod.sip
@ -102,9 +92,13 @@ share/sip/QtAssistant/QtAssistantmod.sip
share/sip/QtAssistant/qassistantclient.sip
share/sip/QtCore/
share/sip/QtCore/QtCoremod.sip
share/sip/QtCore/qabstractanimation.sip
share/sip/QtCore/qabstracteventdispatcher.sip
share/sip/QtCore/qabstractfileengine.sip
share/sip/QtCore/qabstractitemmodel.sip
share/sip/QtCore/qabstractstate.sip
share/sip/QtCore/qabstracttransition.sip
share/sip/QtCore/qanimationgroup.sip
share/sip/QtCore/qbasictimer.sip
share/sip/QtCore/qbitarray.sip
share/sip/QtCore/qbuffer.sip
@ -118,13 +112,17 @@ share/sip/QtCore/qdatastream.sip
share/sip/QtCore/qdatetime.sip
share/sip/QtCore/qdir.sip
share/sip/QtCore/qdiriterator.sip
share/sip/QtCore/qeasingcurve.sip
share/sip/QtCore/qeventloop.sip
share/sip/QtCore/qeventtransition.sip
share/sip/QtCore/qfile.sip
share/sip/QtCore/qfileinfo.sip
share/sip/QtCore/qfilesystemwatcher.sip
share/sip/QtCore/qfinalstate.sip
share/sip/QtCore/qfsfileengine.sip
share/sip/QtCore/qglobal.sip
share/sip/QtCore/qhash.sip
share/sip/QtCore/qhistorystate.sip
share/sip/QtCore/qiodevice.sip
share/sip/QtCore/qlibrary.sip
share/sip/QtCore/qlibraryinfo.sip
@ -132,6 +130,7 @@ share/sip/QtCore/qline.sip
share/sip/QtCore/qlist.sip
share/sip/QtCore/qlocale.sip
share/sip/QtCore/qmap.sip
share/sip/QtCore/qmargins.sip
share/sip/QtCore/qmetaobject.sip
share/sip/QtCore/qmetatype.sip
share/sip/QtCore/qmimedata.sip
@ -142,20 +141,28 @@ share/sip/QtCore/qobject.sip
share/sip/QtCore/qobjectcleanuphandler.sip
share/sip/QtCore/qobjectdefs.sip
share/sip/QtCore/qpair.sip
share/sip/QtCore/qparallelanimationgroup.sip
share/sip/QtCore/qpauseanimation.sip
share/sip/QtCore/qpluginloader.sip
share/sip/QtCore/qpoint.sip
share/sip/QtCore/qprocess.sip
share/sip/QtCore/qpropertyanimation.sip
share/sip/QtCore/qreadwritelock.sip
share/sip/QtCore/qrect.sip
share/sip/QtCore/qregexp.sip
share/sip/QtCore/qresource.sip
share/sip/QtCore/qrunnable.sip
share/sip/QtCore/qsemaphore.sip
share/sip/QtCore/qsequentialanimationgroup.sip
share/sip/QtCore/qset.sip
share/sip/QtCore/qsettings.sip
share/sip/QtCore/qsharedmemory.sip
share/sip/QtCore/qsignalmapper.sip
share/sip/QtCore/qsignaltransition.sip
share/sip/QtCore/qsize.sip
share/sip/QtCore/qsocketnotifier.sip
share/sip/QtCore/qstate.sip
share/sip/QtCore/qstatemachine.sip
share/sip/QtCore/qstring.sip
share/sip/QtCore/qstringlist.sip
share/sip/QtCore/qstringmatcher.sip
@ -172,6 +179,7 @@ share/sip/QtCore/qtranslator.sip
share/sip/QtCore/qurl.sip
share/sip/QtCore/quuid.sip
share/sip/QtCore/qvariant.sip
share/sip/QtCore/qvariantanimation.sip
share/sip/QtCore/qvector.sip
share/sip/QtCore/qwaitcondition.sip
share/sip/QtCore/qxmlstream.sip
@ -254,6 +262,11 @@ share/sip/QtGui/qfontinfo.sip
share/sip/QtGui/qfontmetrics.sip
share/sip/QtGui/qformlayout.sip
share/sip/QtGui/qframe.sip
share/sip/QtGui/qgenericmatrix.sip
share/sip/QtGui/qgesture.sip
share/sip/QtGui/qgesturerecognizer.sip
share/sip/QtGui/qgraphicsanchorlayout.sip
share/sip/QtGui/qgraphicseffect.sip
share/sip/QtGui/qgraphicsgridlayout.sip
share/sip/QtGui/qgraphicsitem.sip
share/sip/QtGui/qgraphicsitemanimation.sip
@ -263,6 +276,7 @@ share/sip/QtGui/qgraphicslinearlayout.sip
share/sip/QtGui/qgraphicsproxywidget.sip
share/sip/QtGui/qgraphicsscene.sip
share/sip/QtGui/qgraphicssceneevent.sip
share/sip/QtGui/qgraphicstransform.sip
share/sip/QtGui/qgraphicsview.sip
share/sip/QtGui/qgraphicswidget.sip
share/sip/QtGui/qgridlayout.sip
@ -280,6 +294,7 @@ share/sip/QtGui/qinputdialog.sip
share/sip/QtGui/qitemdelegate.sip
share/sip/QtGui/qitemeditorfactory.sip
share/sip/QtGui/qitemselectionmodel.sip
share/sip/QtGui/qkeyeventtransition.sip
share/sip/QtGui/qkeysequence.sip
share/sip/QtGui/qlabel.sip
share/sip/QtGui/qlayout.sip
@ -290,12 +305,14 @@ share/sip/QtGui/qlistview.sip
share/sip/QtGui/qlistwidget.sip
share/sip/QtGui/qmainwindow.sip
share/sip/QtGui/qmatrix.sip
share/sip/QtGui/qmatrix4x4.sip
share/sip/QtGui/qmdiarea.sip
share/sip/QtGui/qmdisubwindow.sip
share/sip/QtGui/qmenu.sip
share/sip/QtGui/qmenubar.sip
share/sip/QtGui/qmessagebox.sip
share/sip/QtGui/qmime.sip
share/sip/QtGui/qmouseeventtransition.sip
share/sip/QtGui/qmovie.sip
share/sip/QtGui/qpagesetupdialog.sip
share/sip/QtGui/qpaintdevice.sip
@ -320,6 +337,7 @@ share/sip/QtGui/qprogressdialog.sip
share/sip/QtGui/qproxymodel.sip
share/sip/QtGui/qpushbutton.sip
share/sip/QtGui/qpytextobject.sip
share/sip/QtGui/qquaternion.sip
share/sip/QtGui/qradiobutton.sip
share/sip/QtGui/qregion.sip
share/sip/QtGui/qrgb.sip
@ -376,6 +394,9 @@ share/sip/QtGui/qundogroup.sip
share/sip/QtGui/qundostack.sip
share/sip/QtGui/qundoview.sip
share/sip/QtGui/qvalidator.sip
share/sip/QtGui/qvector2d.sip
share/sip/QtGui/qvector3d.sip
share/sip/QtGui/qvector4d.sip
share/sip/QtGui/qwhatsthis.sip
share/sip/QtGui/qwidget.sip
share/sip/QtGui/qwidgetaction.sip
@ -397,6 +418,7 @@ share/sip/QtNetwork/qlocalserver.sip
share/sip/QtNetwork/qlocalsocket.sip
share/sip/QtNetwork/qnetworkaccessmanager.sip
share/sip/QtNetwork/qnetworkcookie.sip
share/sip/QtNetwork/qnetworkcookiejar.sip
share/sip/QtNetwork/qnetworkdiskcache.sip
share/sip/QtNetwork/qnetworkinterface.sip
share/sip/QtNetwork/qnetworkproxy.sip
@ -415,10 +437,12 @@ share/sip/QtNetwork/qudpsocket.sip
share/sip/QtNetwork/qurlinfo.sip
share/sip/QtOpenGL/
share/sip/QtOpenGL/QtOpenGLmod.sip
share/sip/QtOpenGL/opengl_types.sip
share/sip/QtOpenGL/qgl.sip
share/sip/QtOpenGL/qglcolormap.sip
share/sip/QtOpenGL/qglframebufferobject.sip
share/sip/QtOpenGL/qglpixelbuffer.sip
share/sip/QtOpenGL/qglshaderprogram.sip
share/sip/QtScript/
share/sip/QtScript/QtScriptmod.sip
share/sip/QtScript/qscriptclass.sip
@ -457,6 +481,7 @@ share/sip/QtTest/qtestcase.sip
share/sip/QtTest/qtestkeyboard.sip
share/sip/QtTest/qtestmouse.sip
share/sip/QtTest/qtestsystem.sip
share/sip/QtTest/qtesttouch.sip
share/sip/QtXml/
share/sip/QtXml/QtXmlmod.sip
share/sip/QtXml/qdom.sip