FreeBSD Bugzilla – Attachment 75970 Details for
Bug 109621
[new port] x11-toolkits/py-qt4-gui: PyQt4 bindings, QtGui module
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
08-py-qt4-gui.shar
08-py-qt4-gui.shar (text/plain), 17.72 KB, created by
Danny Pansters
on 2007-02-27 18:10:09 UTC
(
hide
)
Description:
08-py-qt4-gui.shar
Filename:
MIME Type:
Creator:
Danny Pansters
Created:
2007-02-27 18:10:09 UTC
Size:
17.72 KB
patch
obsolete
># This is a shell archive. Save it in a file, remove anything before ># this line, and then unpack it by entering "sh file". Note, it may ># create directories; files and directories will be owned by you and ># have default permissions. ># ># This archive contains: ># ># /usr/ports/x11-toolkits/py-qt4-gui ># /usr/ports/x11-toolkits/py-qt4-gui/files ># /usr/ports/x11-toolkits/py-qt4-gui/files/patch-configure.py ># /usr/ports/x11-toolkits/py-qt4-gui/pkg-plist ># /usr/ports/x11-toolkits/py-qt4-gui/pkg-descr ># /usr/ports/x11-toolkits/py-qt4-gui/Makefile ># /usr/ports/x11-toolkits/py-qt4-gui/distinfo ># >echo c - /usr/ports/x11-toolkits/py-qt4-gui >mkdir -p /usr/ports/x11-toolkits/py-qt4-gui > /dev/null 2>&1 >echo c - /usr/ports/x11-toolkits/py-qt4-gui/files >mkdir -p /usr/ports/x11-toolkits/py-qt4-gui/files > /dev/null 2>&1 >echo x - /usr/ports/x11-toolkits/py-qt4-gui/files/patch-configure.py >sed 's/^X//' >/usr/ports/x11-toolkits/py-qt4-gui/files/patch-configure.py << 'END-of-/usr/ports/x11-toolkits/py-qt4-gui/files/patch-configure.py' >X--- configure.py.orig Mon Feb 19 04:39:13 2007 >X+++ configure.py Tue Feb 20 16:07:52 2007 >X@@ -133,21 +133,21 @@ >X } >X >X def check_modules(self): >X- pyqt_modules.append("QtCore") >X+ #pyqt_modules.append("QtCore") >X >X check_module("QtGui", "qwidget.h", "new QWidget()") >X- check_module("QtNetwork", "qhostaddress.h", "new QHostAddress()") >X- check_module("QtOpenGL", "qgl.h", "new QGLWidget()") >X- check_module("QtSql", "qsqldatabase.h", "new QSqlDatabase()") >X- check_module("QtSvg", "qsvgwidget.h", "new QSvgWidget()") >X- check_module("QtTest", "QtTest", "QTest::qSleep(0)") >X- check_module("QtXml", "qdom.h", "new QDomDocument()") >X- check_module("QtAssistant", "qassistantclient.h", "new QAssistantClient(\"foo\")") >X- check_module("QtDesigner", "QExtensionFactory", "new QExtensionFactory()") >X- check_module("QAxContainer", "qaxobject.h", "new QAxObject()", "QAxContainer") >X+ #check_module("QtNetwork", "qhostaddress.h", "new QHostAddress()") >X+ #check_module("QtOpenGL", "qgl.h", "new QGLWidget()") >X+ #check_module("QtSql", "qsqldatabase.h", "new QSqlDatabase()") >X+ #check_module("QtSvg", "qsvgwidget.h", "new QSvgWidget()") >X+ #check_module("QtTest", "QtTest", "QTest::qSleep(0)") >X+ #check_module("QtXml", "qdom.h", "new QDomDocument()") >X+ #check_module("QtAssistant", "qassistantclient.h", "new QAssistantClient(\"foo\")") >X+ #check_module("QtDesigner", "QExtensionFactory", "new QExtensionFactory()") >X+ #check_module("QAxContainer", "qaxobject.h", "new QAxObject()", "QAxContainer") >X >X- if os.path.isdir("dbus"): >X- check_dbus() >X+ #if os.path.isdir("dbus"): >X+ # check_dbus() >X >X def code(self): >X # Note that the order of the dependent modules is important. >X@@ -201,31 +201,31 @@ >X generate_code("QAxContainer", ["QAxContainer", "QtGui", "QtCore"]) >X >X # Generate the consolidated module. >X- sipconfig.inform("Creating Qt consolidated module...") >X- f = open("Qt.py", "w") >X+ #sipconfig.inform("Creating Qt consolidated module...") >X+ #f = open("Qt.py", "w") >X >X- for m in pyqt_modules: >X- f.write("from PyQt4.%s import *\n" % m) >X+ #for m in pyqt_modules: >X+ # f.write("from PyQt4.%s import *\n" % m) >X >X- f.close() >X+ #f.close() >X >X # Generate the QScintilla API file. >X- sipconfig.inform("Creating QScintilla API file...") >X- f = open("PyQt4.api", "w") >X+ #sipconfig.inform("Creating QScintilla API file...") >X+ #f = open("PyQt4.api", "w") >X >X- for m in pyqt_modules: >X- api = open(m + ".api") >X+ #for m in pyqt_modules: >X+ # api = open(m + ".api") >X >X- for l in api: >X- f.write("PyQt4." + l) >X+ # for l in api: >X+ # f.write("PyQt4." + l) >X >X- api.close() >X- os.remove(m + ".api") >X+ # api.close() >X+ # os.remove(m + ".api") >X >X- f.close() >X+ #f.close() >X >X def module_installs(self): >X- return ["__init__.py", "Qt.py", "pyqtconfig.py"] >X+ return [] >X >X def qpylibs(self): >X # See which QPy libraries to build. >X@@ -278,7 +278,7 @@ >X tool.append("dbus") >X >X # Only include ElementTree for older versions of Python. >X- if sipcfg.py_version < 0x020500: >X+ """if sipcfg.py_version < 0x020500: >X sipconfig.inform("Creating elementtree Makefile...") >X >X makefile = sipconfig.PythonModuleMakefile( >X@@ -309,7 +309,7 @@ >X ) >X >X makefile.generate() >X- tool.append("pyuic") >X+ tool.append("pyuic")""" >X >X if "QtXml" in pyqt_modules: >X sipconfig.inform("Creating pylupdate4 Makefile...") >X@@ -428,7 +428,7 @@ >X >X sipconfig.inform("The PyQt .sip files will be installed in %s." % opt_pyqtsipdir) >X >X- sipconfig.inform("pyuic4, pyrcc4 and pylupdate4 will be installed in %s." % opt_pyqtbindir) >X+ #sipconfig.inform("pyuic4, pyrcc4 and pylupdate4 will be installed in %s." % opt_pyqtbindir) >X >X if opt_vendorcheck: >X sipconfig.inform("PyQt will only be usable with signed interpreters.") >X@@ -761,7 +761,8 @@ >X sipfiles = [] >X >X for s in glob.glob("sip/" + mname + "/*.sip"): >X- sipfiles.append(os.path.join("..", "sip", mname, os.path.basename(s))) >X+ if mname == "QtGui": >X+ sipfiles.append(os.path.join("..", "sip", mname, os.path.basename(s))) >X >X installs.append([sipfiles, os.path.join(opt_pyqtsipdir, mname)]) >X >X@@ -825,7 +826,7 @@ >X sipconfig.error("This version of PyQt and the %s edition of Qt have incompatible licenses." % qted) >X >X # Confirm the license. >X- print >X+ """print >X print "Type 'L' to view the license." >X print "Type 'yes' to accept the terms of the license." >X print "Type 'no' to decline the terms of the license." >X@@ -847,7 +848,7 @@ >X >X if resp == "l": >X os.system("more LICENSE") >X- >X+ """ >X # If there should be a license file then check it is where it should be. >X if lfile: >X if os.access(os.path.join("sip", lfile), os.F_OK): >X@@ -1367,16 +1368,18 @@ >X scidir = os.path.join(qt_datadir, "qsci") >X >X if opt_api or os.path.isdir(scidir): >X- installs.append(("PyQt4.api", os.path.join(scidir, "api", "python"))) >X+ installs.append(("QtGui.api", os.path.join(scidir, "api", "python"))) >X+ >X+ pyqt_modules = ["QtGui"] >X >X sipconfig.ParentMakefile( >X configuration=sipcfg, >X- subdirs=pyqt.qpylibs() + pyqt_modules + pyqt.tools(), >X+ subdirs=pyqt_modules, >X installs=installs >X ).generate() >X >X # Install the configuration module. >X- create_config("pyqtconfig.py", "pyqtconfig.py.in", macros) >X+ #create_config("pyqtconfig.py", "pyqtconfig.py.in", macros) >X >X >X ############################################################################### >END-of-/usr/ports/x11-toolkits/py-qt4-gui/files/patch-configure.py >echo x - /usr/ports/x11-toolkits/py-qt4-gui/pkg-plist >sed 's/^X//' >/usr/ports/x11-toolkits/py-qt4-gui/pkg-plist << 'END-of-/usr/ports/x11-toolkits/py-qt4-gui/pkg-plist' >X%%PYTHON_SITELIBDIR%%/PyQt4/QtGui.so >X%%SIPFILES%%%%SIPDIR%%/QtGui/QtGuimod.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qabstractbutton.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qabstractitemdelegate.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qabstractitemview.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qabstractprintdialog.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qabstractproxymodel.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qabstractscrollarea.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qabstractslider.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qabstractspinbox.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qabstracttextdocumentlayout.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qaction.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qactiongroup.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qapplication.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qbitmap.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qboxlayout.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qbrush.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qbuttongroup.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qcalendarwidget.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qcheckbox.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qclipboard.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qcolor.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qcolordialog.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qcombobox.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qcompleter.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qcursor.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qdatawidgetmapper.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qdatetimeedit.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qdesktopservices.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qdesktopwidget.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qdial.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qdialog.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qdialogbuttonbox.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qdirmodel.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qdockwidget.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qdrag.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qdrawutil.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qerrormessage.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qevent.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qfiledialog.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qfocusframe.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qfont.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qfontcombobox.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qfontdatabase.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qfontdialog.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qfontinfo.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qfontmetrics.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qframe.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qgraphicsitem.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qgraphicsitemanimation.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qgraphicsscene.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qgraphicssceneevent.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qgraphicsview.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qgridlayout.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qgroupbox.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qheaderview.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qicon.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qiconengine.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qimage.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qimageiohandler.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qimagereader.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qimagewriter.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qinputcontext.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qinputdialog.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qitemdelegate.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qitemeditorfactory.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qitemselectionmodel.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qkeysequence.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qlabel.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qlayout.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qlayoutitem.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qlcdnumber.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qlineedit.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qlistview.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qlistwidget.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qmainwindow.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qmatrix.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qmenu.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qmenubar.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qmessagebox.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qmime.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qmovie.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qpagesetupdialog.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qpaintdevice.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qpaintengine.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qpainter.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qpainterpath.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qpalette.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qpen.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qpicture.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qpixmap.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qpixmapcache.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qpolygon.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qprintdialog.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qprintengine.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qprinter.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qprogressbar.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qprogressdialog.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qproxymodel.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qpushbutton.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qradiobutton.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qregion.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qrgb.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qrubberband.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qscrollarea.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qscrollbar.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qsessionmanager.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qshortcut.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qsizegrip.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qsizepolicy.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qslider.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qsortfilterproxymodel.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qsound.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qspinbox.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qsplashscreen.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qsplitter.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qstackedlayout.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qstackedwidget.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qstandarditemmodel.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qstatusbar.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qstringlistmodel.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qstyle.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qstylefactory.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qstyleoption.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qstylepainter.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qsyntaxhighlighter.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qsystemtrayicon.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qtabbar.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qtableview.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qtablewidget.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qtabwidget.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qtextbrowser.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qtextcursor.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qtextdocument.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qtextdocumentfragment.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qtextedit.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qtextformat.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qtextlayout.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qtextlist.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qtextobject.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qtextoption.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qtexttable.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qtoolbar.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qtoolbox.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qtoolbutton.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qtooltip.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qtreeview.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qtreewidget.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qtreewidgetitemiterator.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qundogroup.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qundostack.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qundoview.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qvalidator.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qwhatsthis.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qwidget.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qwidgetaction.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qwindowdefs.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qworkspace.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qx11embed_x11.sip >X%%SIPFILES%%%%SIPDIR%%/QtGui/qx11info_x11.sip >X%%SIPFILES%%@dirrm %%SIPDIR%%/QtGui >X@cwd %%LOCALBASE%% >X%%API%%%%APIFILE%% >X%%API%%@dirrmtry share/qt4/qsci/api/python >X%%API%%@dirrmtry share/qt4/qsci/api >X%%API%%@dirrmtry share/qt4/qsci >END-of-/usr/ports/x11-toolkits/py-qt4-gui/pkg-plist >echo x - /usr/ports/x11-toolkits/py-qt4-gui/pkg-descr >sed 's/^X//' >/usr/ports/x11-toolkits/py-qt4-gui/pkg-descr << 'END-of-/usr/ports/x11-toolkits/py-qt4-gui/pkg-descr' >XPyQt4 is a set of Python bindings for Trolltech's Qt4 application framework. >XThis package provides the QtGui module. >X >XWWW: http://www.riverbankcomputing.co.uk/pyqt/ >END-of-/usr/ports/x11-toolkits/py-qt4-gui/pkg-descr >echo x - /usr/ports/x11-toolkits/py-qt4-gui/Makefile >sed 's/^X//' >/usr/ports/x11-toolkits/py-qt4-gui/Makefile << 'END-of-/usr/ports/x11-toolkits/py-qt4-gui/Makefile' >X# New ports collection makefile for: py-qt4-gui >X# Date created: 2007-02-20 >X# Whom: Danny Pansters <danny@ricin.com> >X# >X# $FreeBSD: Exp $ >X >XPORTNAME= gui >XPORTVERSION= 4.2 >XCATEGORIES= x11-toolkits devel python >XMASTER_SITES= http://www.riverbankcomputing.com/Downloads/Snapshots/PyQt4/ \ >X http://freebsd.ricin.com/ports/distfiles/ >XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}qt4- >XDISTNAME= PyQt-x11-gpl-4-snapshot-20070225 >X >XMAINTAINER= danny@ricin.com >XCOMMENT= Python bindings for the Qt4 toolkit, QtGui module >X >XBUILD_DEPENDS= ${PYTHON_SITELIBDIR}/PyQt4/QtCore.so:${PORTSDIR}/devel/py-qt4-core >XRUN_DEPENDS= ${BUILD_DEPENDS} >X >XHAS_CONFIGURE= yes >XUSE_PYTHON= 2.3+ >XUSE_QT_VER= 4 >XQT_COMPONENTS= gui imageformats iconengines qmake >X >XOPTIONS= API "Install QtGui API for QScintilla2" on \ >X DEBUG "Enable debugging in generated code" off \ >X SIPFILES "Install the QtGui SIP files" on \ >X TRACING "Enable tracing in generated code" off >X >XOPTIONSFILE= ${PORT_DBDIR}/py-qt4-${PORTNAME}/options >XAPIFILE= ${QT_PREFIX}/share/qt4/qsci/api/python/QtGui.api >XSIPDIR= ${PREFIX}/share/py-sip >XARGS= -b ${PREFIX}/bin -c -j 2 -d ${PYTHONPREFIX_SITELIBDIR}/PyQt4 \ >X -q ${QT_PREFIX}/bin/qmake-qt4 -a >X >X.include <bsd.port.pre.mk> >X >X.if defined(WITH_DEBUG) >XARGS+= -u >X.endif >X.if defined(WITHOUT_API) >XPLIST_SUB+= API="@comment " >XPLIST_SUB+= APIFILE="@comment " >X.else >XLIB_DEPENDS+= qscintilla2.1:${PORTSDIR}/devel/qscintilla2 >XPLIST_SUB+= API="" >XPLIST_SUB+= APIFILE="share/qt4/qsci/api/python/QtGui.api" >X.endif >X.if defined(WITHOUT_SIPFILES) >XARGS+= -v /dev/null >XPLIST_SUB+= SIPFILES="@comment " >XPLIST_SUB+= SIPDIR="@comment " >X.else >XARGS+= -v ${SIPDIR} >XPLIST_SUB+= SIPFILES="" >XPLIST_SUB+= SIPDIR="share/py-sip" >X.endif >X.if defined(WITH_TRACING) >XARGS+= -r >X.endif >X >Xdo-configure: >X ( cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \ >X ${PYTHON_CMD} configure.py ${ARGS} ) >X >Xpost-install: >X.if defined(WITHOUT_API) >X ( ${RM} ${APIFILE} ) >X.endif >X >X.include <bsd.port.post.mk> >END-of-/usr/ports/x11-toolkits/py-qt4-gui/Makefile >echo x - /usr/ports/x11-toolkits/py-qt4-gui/distinfo >sed 's/^X//' >/usr/ports/x11-toolkits/py-qt4-gui/distinfo << 'END-of-/usr/ports/x11-toolkits/py-qt4-gui/distinfo' >XMD5 (PyQt-x11-gpl-4-snapshot-20070225.tar.gz) = 89bc82feba24afe9bf3ea077e8f0cae2 >XSHA256 (PyQt-x11-gpl-4-snapshot-20070225.tar.gz) = d181fb50236885107863c6a0ab4c72cf54967b0711a1cd1aea3bff3e710f73af >XSIZE (PyQt-x11-gpl-4-snapshot-20070225.tar.gz) = 5620849 >END-of-/usr/ports/x11-toolkits/py-qt4-gui/distinfo >exit
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 Raw
Actions:
View
Attachments on
bug 109621
: 75970