freebsd-ports/devel/py-qt4-core/files/Qt.py
Max Brazhnikov 43a46c6993 KDE FreeBSD team is glad to present Qt 4.7.1 in ports.
Along with Qt4 the following ports are updated:

PyQt4 ports to 4.8.1
devel/py-sip to 4.11.2
devel/qscintilla2 to 2.4.5
PyKDE3 to 3.16.7
PyQt3 tp 3.18.2-snapshot-20091119

New ports added:
devel/qt4-declarative
devel/py-qt4-declarative
x11/qt4-graphicssystems-opengl

This release has been contributed by:
Thomas Abthorpe (tabthorpe)
Max Brazhnikov (makc)
Dima Panov (fluffy)
Alberto Villa (avilla)

We'd like to thank Martin Wilke (miwi) for exp-run.
2010-12-02 19:47:17 +00:00

73 lines
1.3 KiB
Python

# Replacement for the composite module PyQt4.Qt for FreeBSD
# Provides namespace for all installed PyQt4 modules by importing them
from PyQt4.QtCore import *
try:
from PyQt4.QtGui import *
except ImportError:
pass
try:
from PyQt4.QtXml import *
except ImportError:
pass
try:
from PyQt4.QtXmlPatterns import *
except ImportError:
pass
try:
from PyQt4.QtAssistant import *
except ImportError:
pass
try:
from PyQt4.QtDeclarative import *
except ImportError:
pass
try:
from PyQt4.QtDesigner import *
except ImportError:
pass
try:
from PyQt4.QtNetwork import *
except ImportError:
pass
try:
from PyQt4.QtOpenGL import *
except ImportError:
pass
try:
from PyQt4.QtScript import *
except ImportError:
pass
try:
from PyQt4.QtSql import *
except ImportError:
pass
try:
from PyQt4.QtSvg import *
except ImportError:
pass
try:
from PyQt4.QtTest import *
except ImportError:
pass
try:
from PyQt4.QtHelp import *
except ImportError:
pass
try:
from PyQt4.QtWebKit import *
except ImportError:
pass
try:
from PyQt4.QtMultimedia import *
except ImportError:
pass
try:
from PyQt4.phonon import *
except ImportError:
pass
try:
from PyQt4.Qsci import *
except:
pass