aboutsummaryrefslogtreecommitdiff
path: root/devel/qt4-corelib
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2008-08-05 00:46:16 +0000
committerMartin Wilke <miwi@FreeBSD.org>2008-08-05 00:46:16 +0000
commit6182ae0b35624687f9101f803cd0de08130c62a5 (patch)
treee71e781635305338d7f2afb3e66374c265ff9067 /devel/qt4-corelib
parent098a2242e41fb0edc656835ec414e6911de3f34b (diff)
downloadports-6182ae0b35624687f9101f803cd0de08130c62a5.tar.gz
ports-6182ae0b35624687f9101f803cd0de08130c62a5.zip
Notes
Diffstat (limited to 'devel/qt4-corelib')
-rw-r--r--devel/qt4-corelib/Makefile40
-rw-r--r--devel/qt4-corelib/distinfo6
-rw-r--r--devel/qt4-corelib/pkg-plist939
3 files changed, 536 insertions, 449 deletions
diff --git a/devel/qt4-corelib/Makefile b/devel/qt4-corelib/Makefile
index a92a06990038..fbe033da3d51 100644
--- a/devel/qt4-corelib/Makefile
+++ b/devel/qt4-corelib/Makefile
@@ -8,7 +8,7 @@
PORTNAME= corelib
PORTVERSION= ${QT4_VERSION}
-PORTREVISION= 1
+PORTREVISION= 0
CATEGORIES?= devel
MASTER_SITES= ${MASTER_SITE_QT}
PKGNAMEPREFIX= qt4-
@@ -26,23 +26,24 @@ QT_NONSTANDARD= yes
QT_DIST= yes
HAS_CONFIGURE= yes
-USE_LDCONFIG= yes
+USE_LDCONFIG= ${PREFIX}/lib/qt4
+
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \
PATH=${WRKSRC}/bin:$$PATH
-EXTRACT_AFTER_ARGS=| ${TAR} -xf - \
- --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \
- --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \
- --exclude '${DISTNAME}/src/gui' --exclude '${DISTNAME}/src/network' \
- --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \
- --exclude '${DISTNAME}/src/sql' --exclude '${DISTNAME}/src/xml' \
- --exclude '${DISTNAME}/src/tools/moc' --exclude '${DISTNAME}/src/tools/rcc' \
- --exclude '${DISTNAME}/src/tools/uic' --exclude '${DISTNAME}/src/tools/uic3' \
- --exclude '${DISTNAME}/tools/assistant' --exclude '${DISTNAME}/tools/designer' \
- --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \
- --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb'
+
+DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
+ src/dbus src/gui src/network src/opengl src/phonon \
+ src/qt3support src/script src/sql src/svg src/testlib \
+ src/tools src/xml src/xmlpatterns src/3rdparty/clucene \
+ src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit
+EXTRACT_AFTER_ARGS= | ${TAR} -xf -
+.for dne in ${DO_NOT_EXTRACT}
+EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
+.endfor
+
WRKSRC= ${WRKDIR}/${DISTNAME}/src/${PORTNAME}
CONFIGURE_WRKSRC=${WRKSRC}/../../
PATCH_WRKSRC=${CONFIGURE_WRKSRC}
@@ -51,22 +52,18 @@ PATCH_WRKSRC=${CONFIGURE_WRKSRC}
pre-configure:
${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC}
- ${REINPLACE_CMD} -e 's|target.path.*|target.path=${PREFIX}/lib|g' \
- -e 's|flat_headers.path.*|flat_headers.path=${PREFIX}/include/Qt|g' \
- -e 's|targ_headers.path.*|targ_headers.path=${PREFIX}/include/$$$$TARGET|g' \
- ${WRKSRC}/${PORTNAME}.pro ${WRKSRC}/../qt_install.pri
${MKDIR} ${WRKSRC}/../../mkspecs
${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../bin/qmake
${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../bin/moc
post-configure:
- ${REINPLACE_CMD} -e 's|${PREFIX}/lib/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
+ ${REINPLACE_CMD} -e 's|${PREFIX}/lib/qt4/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
-e 's|.*$$(QMAKE).*||g' ${WRKSRC}/Makefile
${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
-E -e 's|(.*location=).*moc|\1${PREFIX}/bin/moc-qt4|g' \
-E -e 's|(.*location=).*uic|\1${PREFIX}/bin/uic-qt4|g' \
- -E -e 's|(.*Cflags:.*)-I${LOCALBASE}/include |\1|g' \
- ${WRKSRC}/../../lib/pkgconfig/*Qt*
- ${HEAD} -n 19 ${WRKSRC}/global/qconfig.h > ${WRKDIR}/qconfig.tmp
+ ${WRKSRC}/../../lib/pkgconfig/QtCore.pc
+ #hack to hard-code the feature part of qconfig.h
+ ${HEAD} -n 27 ${WRKSRC}/global/qconfig.h > ${WRKDIR}/qconfig.tmp
${CHMOD} 644 ${WRKSRC}/global/qconfig.h
${CAT} ${WRKDIR}/qconfig.tmp ${FILESDIR}/qconfig.h.in > ${WRKSRC}/global/qconfig.h
.if ${OSVERSION} >= 700042
@@ -76,5 +73,6 @@ post-configure:
post-install:
${MKDIR} ${PREFIX}/lib/qt4/plugins
${TOUCH} ${PREFIX}/lib/qt4/plugins/.keep_me
+ ${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/mkspecs/qconfig.pri ${PREFIX}/share/qt4/mkspecs/
.include <bsd.port.post.mk>
diff --git a/devel/qt4-corelib/distinfo b/devel/qt4-corelib/distinfo
index 9451a68b5c02..0c630f09baf6 100644
--- a/devel/qt4-corelib/distinfo
+++ b/devel/qt4-corelib/distinfo
@@ -1,3 +1,3 @@
-MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93
-SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2
-SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710
+MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d
+SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386
+SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120
diff --git a/devel/qt4-corelib/pkg-plist b/devel/qt4-corelib/pkg-plist
index e4804565c656..afa4f19cdc63 100644
--- a/devel/qt4-corelib/pkg-plist
+++ b/devel/qt4-corelib/pkg-plist
@@ -1,429 +1,518 @@
-include/Qt/QtCore
-include/Qt/qabstracteventdispatcher.h
-include/Qt/qabstractfileengine.h
-include/Qt/qabstractitemmodel.h
-include/Qt/qalgorithms.h
-include/Qt/qatomic.h
-include/Qt/qatomic_alpha.h
-include/Qt/qatomic_arch.h
-include/Qt/qatomic_arm.h
-include/Qt/qatomic_boundschecker.h
-include/Qt/qatomic_generic.h
-include/Qt/qatomic_i386.h
-include/Qt/qatomic_ia64.h
-include/Qt/qatomic_mips.h
-include/Qt/qatomic_parisc.h
-include/Qt/qatomic_powerpc.h
-include/Qt/qatomic_s390.h
-include/Qt/qatomic_sparc.h
-include/Qt/qatomic_x86_64.h
-include/Qt/qbasictimer.h
-include/Qt/qbitarray.h
-include/Qt/qbuffer.h
-include/Qt/qbytearray.h
-include/Qt/qbytearraymatcher.h
-include/Qt/qcache.h
-include/Qt/qchar.h
-include/Qt/qconfig-dist.h
-include/Qt/qconfig-large.h
-include/Qt/qconfig-medium.h
-include/Qt/qconfig-minimal.h
-include/Qt/qconfig-small.h
-include/Qt/qconfig.h
-include/Qt/qcontainerfwd.h
-include/Qt/qcoreapplication.h
-include/Qt/qcoreevent.h
-include/Qt/qcryptographichash.h
-include/Qt/qdatastream.h
-include/Qt/qdatetime.h
-include/Qt/qdebug.h
-include/Qt/qdir.h
-include/Qt/qdiriterator.h
-include/Qt/qendian.h
-include/Qt/qeventloop.h
-include/Qt/qfactoryinterface.h
-include/Qt/qfeatures.h
-include/Qt/qfile.h
-include/Qt/qfileinfo.h
-include/Qt/qfilesystemwatcher.h
-include/Qt/qfsfileengine.h
-include/Qt/qglobal.h
-include/Qt/qhash.h
-include/Qt/qiodevice.h
-include/Qt/qiterator.h
-include/Qt/qlibrary.h
-include/Qt/qlibraryinfo.h
-include/Qt/qline.h
-include/Qt/qlinkedlist.h
-include/Qt/qlist.h
-include/Qt/qlocale.h
-include/Qt/qmap.h
-include/Qt/qmetaobject.h
-include/Qt/qmetatype.h
-include/Qt/qmimedata.h
-include/Qt/qmutex.h
-include/Qt/qnamespace.h
-include/Qt/qnumeric.h
-include/Qt/qobject.h
-include/Qt/qobjectcleanuphandler.h
-include/Qt/qobjectdefs.h
-include/Qt/qpair.h
-include/Qt/qplugin.h
-include/Qt/qpluginloader.h
-include/Qt/qpoint.h
-include/Qt/qpointer.h
-include/Qt/qprocess.h
-include/Qt/qqueue.h
-include/Qt/qreadwritelock.h
-include/Qt/qrect.h
-include/Qt/qregexp.h
-include/Qt/qresource.h
-include/Qt/qsemaphore.h
-include/Qt/qset.h
-include/Qt/qsettings.h
-include/Qt/qshareddata.h
-include/Qt/qsignalmapper.h
-include/Qt/qsize.h
-include/Qt/qsocketnotifier.h
-include/Qt/qstack.h
-include/Qt/qstring.h
-include/Qt/qstringlist.h
-include/Qt/qstringmatcher.h
-include/Qt/qtemporaryfile.h
-include/Qt/qtextcodec.h
-include/Qt/qtextcodecplugin.h
-include/Qt/qtextstream.h
-include/Qt/qthread.h
-include/Qt/qthreadstorage.h
-include/Qt/qtimeline.h
-include/Qt/qtimer.h
-include/Qt/qtranslator.h
-include/Qt/qurl.h
-include/Qt/quuid.h
-include/Qt/qvariant.h
-include/Qt/qvarlengtharray.h
-include/Qt/qvector.h
-include/Qt/qwaitcondition.h
-include/QtCore/QAbstractEventDispatcher
-include/QtCore/QAbstractFileEngine
-include/QtCore/QAbstractFileEngineHandler
-include/QtCore/QAbstractFileEngineIterator
-include/QtCore/QAbstractItemModel
-include/QtCore/QAbstractListModel
-include/QtCore/QAbstractTableModel
-include/QtCore/QArgument
-include/QtCore/QAtomic
-include/QtCore/QAtomicPointer
-include/QtCore/QBasicAtomic
-include/QtCore/QBasicAtomicPointer
-include/QtCore/QBasicTimer
-include/QtCore/QBitArray
-include/QtCore/QBitRef
-include/QtCore/QBool
-include/QtCore/QBuffer
-include/QtCore/QByteArray
-include/QtCore/QByteArrayMatcher
-include/QtCore/QByteRef
-include/QtCore/QCOORD
-include/QtCore/QCache
-include/QtCore/QChar
-include/QtCore/QCharRef
-include/QtCore/QChildEvent
-include/QtCore/QConstString
-include/QtCore/QCoreApplication
-include/QtCore/QCryptographicHash
-include/QtCore/QCustomEvent
-include/QtCore/QDataStream
-include/QtCore/QDate
-include/QtCore/QDateTime
-include/QtCore/QDebug
-include/QtCore/QDir
-include/QtCore/QDirIterator
-include/QtCore/QDynamicPropertyChangeEvent
-include/QtCore/QEvent
-include/QtCore/QEventLoop
-include/QtCore/QExplicitlySharedDataPointer
-include/QtCore/QFSFileEngine
-include/QtCore/QFactoryInterface
-include/QtCore/QFile
-include/QtCore/QFileInfo
-include/QtCore/QFileInfoList
-include/QtCore/QFileInfoListIterator
-include/QtCore/QFileSystemWatcher
-include/QtCore/QFlag
-include/QtCore/QFlags
-include/QtCore/QForeachContainer
-include/QtCore/QForeachContainerBase
-include/QtCore/QGenericArgument
-include/QtCore/QGenericReturnArgument
-include/QtCore/QGlobalStatic
-include/QtCore/QGlobalStaticDeleter
-include/QtCore/QHash
-include/QtCore/QHashData
-include/QtCore/QHashDummyNode
-include/QtCore/QHashDummyValue
-include/QtCore/QHashIterator
-include/QtCore/QHashNode
-include/QtCore/QIODevice
-include/QtCore/QIntForSize
-include/QtCore/QIntForType
-include/QtCore/QInternal
-include/QtCore/QLatin1Char
-include/QtCore/QLatin1String
-include/QtCore/QLibrary
-include/QtCore/QLibraryInfo
-include/QtCore/QLine
-include/QtCore/QLineF
-include/QtCore/QLinkedList
-include/QtCore/QLinkedListData
-include/QtCore/QLinkedListIterator
-include/QtCore/QLinkedListNode
-include/QtCore/QList
-include/QtCore/QListData
-include/QtCore/QListIterator
-include/QtCore/QLocale
-include/QtCore/QMap
-include/QtCore/QMapData
-include/QtCore/QMapIterator
-include/QtCore/QMetaClassInfo
-include/QtCore/QMetaEnum
-include/QtCore/QMetaMethod
-include/QtCore/QMetaObject
-include/QtCore/QMetaProperty
-include/QtCore/QMetaType
-include/QtCore/QMetaTypeId
-include/QtCore/QMetaTypeId2
-include/QtCore/QMimeData
-include/QtCore/QModelIndex
-include/QtCore/QModelIndexList
-include/QtCore/QMultiHash
-include/QtCore/QMultiMap
-include/QtCore/QMutableHashIterator
-include/QtCore/QMutableLinkedListIterator
-include/QtCore/QMutableListIterator
-include/QtCore/QMutableMapIterator
-include/QtCore/QMutableSetIterator
-include/QtCore/QMutableStringListIterator
-include/QtCore/QMutableVectorIterator
-include/QtCore/QMutex
-include/QtCore/QMutexLocker
-include/QtCore/QNoDebug
-include/QtCore/QNoImplicitBoolCast
-include/QtCore/QObject
-include/QtCore/QObjectCleanupHandler
-include/QtCore/QObjectData
-include/QtCore/QObjectList
-include/QtCore/QObjectUserData
-include/QtCore/QPair
-include/QtCore/QPersistentModelIndex
-include/QtCore/QPluginLoader
-include/QtCore/QPoint
-include/QtCore/QPointF
-include/QtCore/QPointer
-include/QtCore/QProcess
-include/QtCore/QQueue
-include/QtCore/QReadLocker
-include/QtCore/QReadWriteLock
-include/QtCore/QRect
-include/QtCore/QRectF
-include/QtCore/QRegExp
-include/QtCore/QResource
-include/QtCore/QReturnArgument
-include/QtCore/QSemaphore
-include/QtCore/QSet
-include/QtCore/QSetIterator
-include/QtCore/QSettings
-include/QtCore/QSharedData
-include/QtCore/QSharedDataPointer
-include/QtCore/QSignalMapper
-include/QtCore/QSize
-include/QtCore/QSizeF
-include/QtCore/QSocketNotifier
-include/QtCore/QStack
-include/QtCore/QStdWString
-include/QtCore/QString
-include/QtCore/QStringList
-include/QtCore/QStringListIterator
-include/QtCore/QStringMatcher
-include/QtCore/QStringRef
-include/QtCore/QSysInfo
-include/QtCore/QSystemLocale
-include/QtCore/QTS
-include/QtCore/QTemporaryFile
-include/QtCore/QTextCodec
-include/QtCore/QTextCodecFactoryInterface
-include/QtCore/QTextCodecPlugin
-include/QtCore/QTextDecoder
-include/QtCore/QTextEncoder
-include/QtCore/QTextIStream
-include/QtCore/QTextOStream
-include/QtCore/QTextStream
-include/QtCore/QTextStreamFunction
-include/QtCore/QTextStreamManipulator
-include/QtCore/QThread
-include/QtCore/QThreadStorage
-include/QtCore/QThreadStorageData
-include/QtCore/QTime
-include/QtCore/QTimeLine
-include/QtCore/QTimer
-include/QtCore/QTimerEvent
-include/QtCore/QTranslator
-include/QtCore/QTypeInfo
-include/QtCore/QUintForSize
-include/QtCore/QUintForType
-include/QtCore/QUrl
-include/QtCore/QUuid
-include/QtCore/QVarLengthArray
-include/QtCore/QVariant
-include/QtCore/QVariantComparisonHelper
-include/QtCore/QVariantList
-include/QtCore/QVariantMap
-include/QtCore/QVector
-include/QtCore/QVectorData
-include/QtCore/QVectorIterator
-include/QtCore/QVectorTypedData
-include/QtCore/QWaitCondition
-include/QtCore/QWriteLocker
-include/QtCore/Q_INT16
-include/QtCore/Q_INT32
-include/QtCore/Q_INT64
-include/QtCore/Q_INT8
-include/QtCore/Q_LLONG
-include/QtCore/Q_LONG
-include/QtCore/Q_PID
-include/QtCore/Q_UINT16
-include/QtCore/Q_UINT32
-include/QtCore/Q_UINT64
-include/QtCore/Q_UINT8
-include/QtCore/Q_ULLONG
-include/QtCore/Q_ULONG
-include/QtCore/Qt
-include/QtCore/QtAlgorithms
-include/QtCore/QtCleanUpFunction
-include/QtCore/QtContainerFwd
-include/QtCore/QtCore
-include/QtCore/QtDebug
-include/QtCore/QtEndian
-include/QtCore/QtGlobal
-include/QtCore/QtMsgHandler
-include/QtCore/QtPlugin
-include/QtCore/QtPluginInstanceFunction
-include/QtCore/qabstracteventdispatcher.h
-include/QtCore/qabstractfileengine.h
-include/QtCore/qabstractitemmodel.h
-include/QtCore/qalgorithms.h
-include/QtCore/qatomic.h
-include/QtCore/qatomic_alpha.h
-include/QtCore/qatomic_arch.h
-include/QtCore/qatomic_arm.h
-include/QtCore/qatomic_boundschecker.h
-include/QtCore/qatomic_generic.h
-include/QtCore/qatomic_i386.h
-include/QtCore/qatomic_ia64.h
-include/QtCore/qatomic_mips.h
-include/QtCore/qatomic_parisc.h
-include/QtCore/qatomic_powerpc.h
-include/QtCore/qatomic_s390.h
-include/QtCore/qatomic_sparc.h
-include/QtCore/qatomic_x86_64.h
-include/QtCore/qbasictimer.h
-include/QtCore/qbitarray.h
-include/QtCore/qbuffer.h
-include/QtCore/qbytearray.h
-include/QtCore/qbytearraymatcher.h
-include/QtCore/qcache.h
-include/QtCore/qchar.h
-include/QtCore/qconfig-dist.h
-include/QtCore/qconfig-large.h
-include/QtCore/qconfig-medium.h
-include/QtCore/qconfig-minimal.h
-include/QtCore/qconfig-small.h
-include/QtCore/qconfig.h
-include/QtCore/qcontainerfwd.h
-include/QtCore/qcoreapplication.h
-include/QtCore/qcoreevent.h
-include/QtCore/qcryptographichash.h
-include/QtCore/qdatastream.h
-include/QtCore/qdatetime.h
-include/QtCore/qdebug.h
-include/QtCore/qdir.h
-include/QtCore/qdiriterator.h
-include/QtCore/qendian.h
-include/QtCore/qeventloop.h
-include/QtCore/qfactoryinterface.h
-include/QtCore/qfeatures.h
-include/QtCore/qfile.h
-include/QtCore/qfileinfo.h
-include/QtCore/qfilesystemwatcher.h
-include/QtCore/qfsfileengine.h
-include/QtCore/qglobal.h
-include/QtCore/qhash.h
-include/QtCore/qiodevice.h
-include/QtCore/qiterator.h
-include/QtCore/qlibrary.h
-include/QtCore/qlibraryinfo.h
-include/QtCore/qline.h
-include/QtCore/qlinkedlist.h
-include/QtCore/qlist.h
-include/QtCore/qlocale.h
-include/QtCore/qmap.h
-include/QtCore/qmetaobject.h
-include/QtCore/qmetatype.h
-include/QtCore/qmimedata.h
-include/QtCore/qmutex.h
-include/QtCore/qnamespace.h
-include/QtCore/qnumeric.h
-include/QtCore/qobject.h
-include/QtCore/qobjectcleanuphandler.h
-include/QtCore/qobjectdefs.h
-include/QtCore/qpair.h
-include/QtCore/qplugin.h
-include/QtCore/qpluginloader.h
-include/QtCore/qpoint.h
-include/QtCore/qpointer.h
-include/QtCore/qprocess.h
-include/QtCore/qqueue.h
-include/QtCore/qreadwritelock.h
-include/QtCore/qrect.h
-include/QtCore/qregexp.h
-include/QtCore/qresource.h
-include/QtCore/qsemaphore.h
-include/QtCore/qset.h
-include/QtCore/qsettings.h
-include/QtCore/qshareddata.h
-include/QtCore/qsignalmapper.h
-include/QtCore/qsize.h
-include/QtCore/qsocketnotifier.h
-include/QtCore/qstack.h
-include/QtCore/qstring.h
-include/QtCore/qstringlist.h
-include/QtCore/qstringmatcher.h
-include/QtCore/qtemporaryfile.h
-include/QtCore/qtextcodec.h
-include/QtCore/qtextcodecplugin.h
-include/QtCore/qtextstream.h
-include/QtCore/qthread.h
-include/QtCore/qthreadstorage.h
-include/QtCore/qtimeline.h
-include/QtCore/qtimer.h
-include/QtCore/qtranslator.h
-include/QtCore/qurl.h
-include/QtCore/quuid.h
-include/QtCore/qvariant.h
-include/QtCore/qvarlengtharray.h
-include/QtCore/qvector.h
-include/QtCore/qwaitcondition.h
-lib/libQtCore.la
-lib/libQtCore.prl
-lib/libQtCore.so
-lib/libQtCore.so.4
-lib/libQtCore.so.4.3
-lib/libQtCore.so.4.3.4
-%%DEBUG%%lib/libQtCore.so.4.3.4.debug
+include/qt4/Qt/QtCore
+include/qt4/Qt/qabstracteventdispatcher.h
+include/qt4/Qt/qabstractfileengine.h
+include/qt4/Qt/qabstractitemmodel.h
+include/qt4/Qt/qalgorithms.h
+include/qt4/Qt/qatomic.h
+include/qt4/Qt/qatomic_alpha.h
+include/qt4/Qt/qatomic_arch.h
+include/qt4/Qt/qatomic_arm.h
+include/qt4/Qt/qatomic_avr32.h
+include/qt4/Qt/qatomic_bfin.h
+include/qt4/Qt/qatomic_bootstrap.h
+include/qt4/Qt/qatomic_generic.h
+include/qt4/Qt/qatomic_i386.h
+include/qt4/Qt/qatomic_ia64.h
+include/qt4/Qt/qatomic_mips.h
+include/qt4/Qt/qatomic_parisc.h
+include/qt4/Qt/qatomic_powerpc.h
+include/qt4/Qt/qatomic_s390.h
+include/qt4/Qt/qatomic_sparc.h
+include/qt4/Qt/qatomic_x86_64.h
+include/qt4/Qt/qbasicatomic.h
+include/qt4/Qt/qbasictimer.h
+include/qt4/Qt/qbitarray.h
+include/qt4/Qt/qbuffer.h
+include/qt4/Qt/qbytearray.h
+include/qt4/Qt/qbytearraymatcher.h
+include/qt4/Qt/qcache.h
+include/qt4/Qt/qchar.h
+include/qt4/Qt/qconfig-dist.h
+include/qt4/Qt/qconfig-large.h
+include/qt4/Qt/qconfig-medium.h
+include/qt4/Qt/qconfig-minimal.h
+include/qt4/Qt/qconfig-small.h
+include/qt4/Qt/qconfig.h
+include/qt4/Qt/qcontainerfwd.h
+include/qt4/Qt/qcoreapplication.h
+include/qt4/Qt/qcoreevent.h
+include/qt4/Qt/qcryptographichash.h
+include/qt4/Qt/qdatastream.h
+include/qt4/Qt/qdatetime.h
+include/qt4/Qt/qdebug.h
+include/qt4/Qt/qdir.h
+include/qt4/Qt/qdiriterator.h
+include/qt4/Qt/qendian.h
+include/qt4/Qt/qeventloop.h
+include/qt4/Qt/qfactoryinterface.h
+include/qt4/Qt/qfeatures.h
+include/qt4/Qt/qfile.h
+include/qt4/Qt/qfileinfo.h
+include/qt4/Qt/qfilesystemwatcher.h
+include/qt4/Qt/qfsfileengine.h
+include/qt4/Qt/qfuture.h
+include/qt4/Qt/qfutureinterface.h
+include/qt4/Qt/qfuturesynchronizer.h
+include/qt4/Qt/qfuturewatcher.h
+include/qt4/Qt/qglobal.h
+include/qt4/Qt/qhash.h
+include/qt4/Qt/qiodevice.h
+include/qt4/Qt/qiterator.h
+include/qt4/Qt/qlibrary.h
+include/qt4/Qt/qlibraryinfo.h
+include/qt4/Qt/qline.h
+include/qt4/Qt/qlinkedlist.h
+include/qt4/Qt/qlist.h
+include/qt4/Qt/qlocale.h
+include/qt4/Qt/qmap.h
+include/qt4/Qt/qmath.h
+include/qt4/Qt/qmetaobject.h
+include/qt4/Qt/qmetatype.h
+include/qt4/Qt/qmimedata.h
+include/qt4/Qt/qmutex.h
+include/qt4/Qt/qnamespace.h
+include/qt4/Qt/qnumeric.h
+include/qt4/Qt/qobject.h
+include/qt4/Qt/qobjectcleanuphandler.h
+include/qt4/Qt/qobjectdefs.h
+include/qt4/Qt/qpair.h
+include/qt4/Qt/qplugin.h
+include/qt4/Qt/qpluginloader.h
+include/qt4/Qt/qpoint.h
+include/qt4/Qt/qpointer.h
+include/qt4/Qt/qprocess.h
+include/qt4/Qt/qqueue.h
+include/qt4/Qt/qreadwritelock.h
+include/qt4/Qt/qrect.h
+include/qt4/Qt/qregexp.h
+include/qt4/Qt/qresource.h
+include/qt4/Qt/qrunnable.h
+include/qt4/Qt/qsemaphore.h
+include/qt4/Qt/qset.h
+include/qt4/Qt/qsettings.h
+include/qt4/Qt/qshareddata.h
+include/qt4/Qt/qsharedmemory.h
+include/qt4/Qt/qsignalmapper.h
+include/qt4/Qt/qsize.h
+include/qt4/Qt/qsocketnotifier.h
+include/qt4/Qt/qstack.h
+include/qt4/Qt/qstring.h
+include/qt4/Qt/qstringlist.h
+include/qt4/Qt/qstringmatcher.h
+include/qt4/Qt/qsystemsemaphore.h
+include/qt4/Qt/qtconcurrentcompilertest.h
+include/qt4/Qt/qtconcurrentexception.h
+include/qt4/Qt/qtconcurrentfilter.h
+include/qt4/Qt/qtconcurrentfilterkernel.h
+include/qt4/Qt/qtconcurrentfunctionwrappers.h
+include/qt4/Qt/qtconcurrentiteratekernel.h
+include/qt4/Qt/qtconcurrentmap.h
+include/qt4/Qt/qtconcurrentmapkernel.h
+include/qt4/Qt/qtconcurrentmedian.h
+include/qt4/Qt/qtconcurrentreducekernel.h
+include/qt4/Qt/qtconcurrentresultstore.h
+include/qt4/Qt/qtconcurrentrun.h
+include/qt4/Qt/qtconcurrentrunbase.h
+include/qt4/Qt/qtconcurrentstoredfunctioncall.h
+include/qt4/Qt/qtconcurrentthreadengine.h
+include/qt4/Qt/qtemporaryfile.h
+include/qt4/Qt/qtextboundaryfinder.h
+include/qt4/Qt/qtextcodec.h
+include/qt4/Qt/qtextcodecplugin.h
+include/qt4/Qt/qtextstream.h
+include/qt4/Qt/qthread.h
+include/qt4/Qt/qthreadpool.h
+include/qt4/Qt/qthreadstorage.h
+include/qt4/Qt/qtimeline.h
+include/qt4/Qt/qtimer.h
+include/qt4/Qt/qtranslator.h
+include/qt4/Qt/qurl.h
+include/qt4/Qt/quuid.h
+include/qt4/Qt/qvariant.h
+include/qt4/Qt/qvarlengtharray.h
+include/qt4/Qt/qvector.h
+include/qt4/Qt/qwaitcondition.h
+include/qt4/Qt/qxmlstream.h
+include/qt4/QtCore/QAbstractEventDispatcher
+include/qt4/QtCore/QAbstractFileEngine
+include/qt4/QtCore/QAbstractFileEngineHandler
+include/qt4/QtCore/QAbstractFileEngineIterator
+include/qt4/QtCore/QAbstractItemModel
+include/qt4/QtCore/QAbstractListModel
+include/qt4/QtCore/QAbstractTableModel
+include/qt4/QtCore/QArgument
+include/qt4/QtCore/QAtomicInt
+include/qt4/QtCore/QAtomicPointer
+include/qt4/QtCore/QBasicAtomicInt
+include/qt4/QtCore/QBasicAtomicPointer
+include/qt4/QtCore/QBasicTimer
+include/qt4/QtCore/QBitArray
+include/qt4/QtCore/QBitRef
+include/qt4/QtCore/QBool
+include/qt4/QtCore/QBuffer
+include/qt4/QtCore/QByteArray
+include/qt4/QtCore/QByteArrayMatcher
+include/qt4/QtCore/QByteRef
+include/qt4/QtCore/QCOORD
+include/qt4/QtCore/QCache
+include/qt4/QtCore/QChar
+include/qt4/QtCore/QCharRef
+include/qt4/QtCore/QChildEvent
+include/qt4/QtCore/QConstString
+include/qt4/QtCore/QCoreApplication
+include/qt4/QtCore/QCryptographicHash
+include/qt4/QtCore/QCustomEvent
+include/qt4/QtCore/QDataStream
+include/qt4/QtCore/QDate
+include/qt4/QtCore/QDateTime
+include/qt4/QtCore/QDebug
+include/qt4/QtCore/QDir
+include/qt4/QtCore/QDirIterator
+include/qt4/QtCore/QDynamicPropertyChangeEvent
+include/qt4/QtCore/QEvent
+include/qt4/QtCore/QEventLoop
+include/qt4/QtCore/QExplicitlySharedDataPointer
+include/qt4/QtCore/QFSFileEngine
+include/qt4/QtCore/QFactoryInterface
+include/qt4/QtCore/QFile
+include/qt4/QtCore/QFileInfo
+include/qt4/QtCore/QFileInfoList
+include/qt4/QtCore/QFileInfoListIterator
+include/qt4/QtCore/QFileSystemWatcher
+include/qt4/QtCore/QFlag
+include/qt4/QtCore/QFlags
+include/qt4/QtCore/QForeachContainer
+include/qt4/QtCore/QForeachContainerBase
+include/qt4/QtCore/QFuture
+include/qt4/QtCore/QFutureInterface
+include/qt4/QtCore/QFutureInterfaceBase
+include/qt4/QtCore/QFutureIterator
+include/qt4/QtCore/QFutureSynchronizer
+include/qt4/QtCore/QFutureWatcher
+include/qt4/QtCore/QFutureWatcherBase
+include/qt4/QtCore/QGenericArgument
+include/qt4/QtCore/QGenericReturnArgument
+include/qt4/QtCore/QGlobalStatic
+include/qt4/QtCore/QGlobalStaticDeleter
+include/qt4/QtCore/QHash
+include/qt4/QtCore/QHashData
+include/qt4/QtCore/QHashDummyNode
+include/qt4/QtCore/QHashDummyValue
+include/qt4/QtCore/QHashIterator
+include/qt4/QtCore/QHashNode
+include/qt4/QtCore/QIODevice
+include/qt4/QtCore/QIntForSize
+include/qt4/QtCore/QIntForType
+include/qt4/QtCore/QInternal
+include/qt4/QtCore/QLatin1Char
+include/qt4/QtCore/QLatin1String
+include/qt4/QtCore/QLibrary
+include/qt4/QtCore/QLibraryInfo
+include/qt4/QtCore/QLine
+include/qt4/QtCore/QLineF
+include/qt4/QtCore/QLinkedList
+include/qt4/QtCore/QLinkedListData
+include/qt4/QtCore/QLinkedListIterator
+include/qt4/QtCore/QLinkedListNode
+include/qt4/QtCore/QList
+include/qt4/QtCore/QListData
+include/qt4/QtCore/QListIterator
+include/qt4/QtCore/QLocale
+include/qt4/QtCore/QMap
+include/qt4/QtCore/QMapData
+include/qt4/QtCore/QMapIterator
+include/qt4/QtCore/QMetaClassInfo
+include/qt4/QtCore/QMetaEnum
+include/qt4/QtCore/QMetaMethod
+include/qt4/QtCore/QMetaObject
+include/qt4/QtCore/QMetaProperty
+include/qt4/QtCore/QMetaType
+include/qt4/QtCore/QMetaTypeId
+include/qt4/QtCore/QMetaTypeId2
+include/qt4/QtCore/QMimeData
+include/qt4/QtCore/QModelIndex
+include/qt4/QtCore/QModelIndexList
+include/qt4/QtCore/QMultiHash
+include/qt4/QtCore/QMultiMap
+include/qt4/QtCore/QMutableFutureIterator
+include/qt4/QtCore/QMutableHashIterator
+include/qt4/QtCore/QMutableLinkedListIterator
+include/qt4/QtCore/QMutableListIterator
+include/qt4/QtCore/QMutableMapIterator
+include/qt4/QtCore/QMutableSetIterator
+include/qt4/QtCore/QMutableStringListIterator
+include/qt4/QtCore/QMutableVectorIterator
+include/qt4/QtCore/QMutex
+include/qt4/QtCore/QMutexLocker
+include/qt4/QtCore/QNoDebug
+include/qt4/QtCore/QNoImplicitBoolCast
+include/qt4/QtCore/QObject
+include/qt4/QtCore/QObjectCleanupHandler
+include/qt4/QtCore/QObjectData
+include/qt4/QtCore/QObjectList
+include/qt4/QtCore/QObjectUserData
+include/qt4/QtCore/QPair
+include/qt4/QtCore/QPersistentModelIndex
+include/qt4/QtCore/QPluginLoader
+include/qt4/QtCore/QPoint
+include/qt4/QtCore/QPointF
+include/qt4/QtCore/QPointer
+include/qt4/QtCore/QProcess
+include/qt4/QtCore/QQueue
+include/qt4/QtCore/QReadLocker
+include/qt4/QtCore/QReadWriteLock
+include/qt4/QtCore/QRect
+include/qt4/QtCore/QRectF
+include/qt4/QtCore/QRegExp
+include/qt4/QtCore/QResource
+include/qt4/QtCore/QReturnArgument
+include/qt4/QtCore/QRunnable
+include/qt4/QtCore/QSemaphore
+include/qt4/QtCore/QSet
+include/qt4/QtCore/QSetIterator
+include/qt4/QtCore/QSettings
+include/qt4/QtCore/QSharedData
+include/qt4/QtCore/QSharedDataPointer
+include/qt4/QtCore/QSharedMemory
+include/qt4/QtCore/QSignalMapper
+include/qt4/QtCore/QSize
+include/qt4/QtCore/QSizeF
+include/qt4/QtCore/QSocketNotifier
+include/qt4/QtCore/QStack
+include/qt4/QtCore/QStdWString
+include/qt4/QtCore/QString
+include/qt4/QtCore/QStringList
+include/qt4/QtCore/QStringListIterator
+include/qt4/QtCore/QStringMatcher
+include/qt4/QtCore/QStringRef
+include/qt4/QtCore/QSysInfo
+include/qt4/QtCore/QSystemLocale
+include/qt4/QtCore/QSystemSemaphore
+include/qt4/QtCore/QTS
+include/qt4/QtCore/QTemporaryFile
+include/qt4/QtCore/QTextBoundaryFinder
+include/qt4/QtCore/QTextCodec
+include/qt4/QtCore/QTextCodecFactoryInterface
+include/qt4/QtCore/QTextCodecPlugin
+include/qt4/QtCore/QTextDecoder
+include/qt4/QtCore/QTextEncoder
+include/qt4/QtCore/QTextIStream
+include/qt4/QtCore/QTextOStream
+include/qt4/QtCore/QTextStream
+include/qt4/QtCore/QTextStreamFunction
+include/qt4/QtCore/QTextStreamManipulator
+include/qt4/QtCore/QThread
+include/qt4/QtCore/QThreadPool
+include/qt4/QtCore/QThreadStorage
+include/qt4/QtCore/QThreadStorageData
+include/qt4/QtCore/QTime
+include/qt4/QtCore/QTimeLine
+include/qt4/QtCore/QTimer
+include/qt4/QtCore/QTimerEvent
+include/qt4/QtCore/QTranslator
+include/qt4/QtCore/QTypeInfo
+include/qt4/QtCore/QUintForSize
+include/qt4/QtCore/QUintForType
+include/qt4/QtCore/QUrl
+include/qt4/QtCore/QUuid
+include/qt4/QtCore/QVarLengthArray
+include/qt4/QtCore/QVariant
+include/qt4/QtCore/QVariantComparisonHelper
+include/qt4/QtCore/QVariantList
+include/qt4/QtCore/QVariantMap
+include/qt4/QtCore/QVector
+include/qt4/QtCore/QVectorData
+include/qt4/QtCore/QVectorIterator
+include/qt4/QtCore/QVectorTypedData
+include/qt4/QtCore/QWaitCondition
+include/qt4/QtCore/QWriteLocker
+include/qt4/QtCore/QXmlStreamAttribute
+include/qt4/QtCore/QXmlStreamAttributes
+include/qt4/QtCore/QXmlStreamEntityDeclaration
+include/qt4/QtCore/QXmlStreamEntityDeclarations
+include/qt4/QtCore/QXmlStreamEntityResolver
+include/qt4/QtCore/QXmlStreamNamespaceDeclaration
+include/qt4/QtCore/QXmlStreamNamespaceDeclarations
+include/qt4/QtCore/QXmlStreamNotationDeclaration
+include/qt4/QtCore/QXmlStreamNotationDeclarations
+include/qt4/QtCore/QXmlStreamReader
+include/qt4/QtCore/QXmlStreamStringRef
+include/qt4/QtCore/QXmlStreamWriter
+include/qt4/QtCore/Q_INT16
+include/qt4/QtCore/Q_INT32
+include/qt4/QtCore/Q_INT64
+include/qt4/QtCore/Q_INT8
+include/qt4/QtCore/Q_LLONG
+include/qt4/QtCore/Q_LONG
+include/qt4/QtCore/Q_PID
+include/qt4/QtCore/Q_UINT16
+include/qt4/QtCore/Q_UINT32
+include/qt4/QtCore/Q_UINT64
+include/qt4/QtCore/Q_UINT8
+include/qt4/QtCore/Q_ULLONG
+include/qt4/QtCore/Q_ULONG
+include/qt4/QtCore/Qt
+include/qt4/QtCore/QtAlgorithms
+include/qt4/QtCore/QtCleanUpFunction
+include/qt4/QtCore/QtConcurrentFilter
+include/qt4/QtCore/QtConcurrentMap
+include/qt4/QtCore/QtConcurrentRun
+include/qt4/QtCore/QtContainerFwd
+include/qt4/QtCore/QtCore
+include/qt4/QtCore/QtDebug
+include/qt4/QtCore/QtEndian
+include/qt4/QtCore/QtGlobal
+include/qt4/QtCore/QtMsgHandler
+include/qt4/QtCore/QtPlugin
+include/qt4/QtCore/QtPluginInstanceFunction
+include/qt4/QtCore/qabstracteventdispatcher.h
+include/qt4/QtCore/qabstractfileengine.h
+include/qt4/QtCore/qabstractitemmodel.h
+include/qt4/QtCore/qalgorithms.h
+include/qt4/QtCore/qatomic.h
+include/qt4/QtCore/qatomic_alpha.h
+include/qt4/QtCore/qatomic_arch.h
+include/qt4/QtCore/qatomic_arm.h
+include/qt4/QtCore/qatomic_avr32.h
+include/qt4/QtCore/qatomic_bfin.h
+include/qt4/QtCore/qatomic_bootstrap.h
+include/qt4/QtCore/qatomic_generic.h
+include/qt4/QtCore/qatomic_i386.h
+include/qt4/QtCore/qatomic_ia64.h
+include/qt4/QtCore/qatomic_mips.h
+include/qt4/QtCore/qatomic_parisc.h
+include/qt4/QtCore/qatomic_powerpc.h
+include/qt4/QtCore/qatomic_s390.h
+include/qt4/QtCore/qatomic_sparc.h
+include/qt4/QtCore/qatomic_x86_64.h
+include/qt4/QtCore/qbasicatomic.h
+include/qt4/QtCore/qbasictimer.h
+include/qt4/QtCore/qbitarray.h
+include/qt4/QtCore/qbuffer.h
+include/qt4/QtCore/qbytearray.h
+include/qt4/QtCore/qbytearraymatcher.h
+include/qt4/QtCore/qcache.h
+include/qt4/QtCore/qchar.h
+include/qt4/QtCore/qconfig-dist.h
+include/qt4/QtCore/qconfig-large.h
+include/qt4/QtCore/qconfig-medium.h
+include/qt4/QtCore/qconfig-minimal.h
+include/qt4/QtCore/qconfig-small.h
+include/qt4/QtCore/qconfig.h
+include/qt4/QtCore/qcontainerfwd.h
+include/qt4/QtCore/qcoreapplication.h
+include/qt4/QtCore/qcoreevent.h
+include/qt4/QtCore/qcryptographichash.h
+include/qt4/QtCore/qdatastream.h
+include/qt4/QtCore/qdatetime.h
+include/qt4/QtCore/qdebug.h
+include/qt4/QtCore/qdir.h
+include/qt4/QtCore/qdiriterator.h
+include/qt4/QtCore/qendian.h
+include/qt4/QtCore/qeventloop.h
+include/qt4/QtCore/qfactoryinterface.h
+include/qt4/QtCore/qfeatures.h
+include/qt4/QtCore/qfile.h
+include/qt4/QtCore/qfileinfo.h
+include/qt4/QtCore/qfilesystemwatcher.h
+include/qt4/QtCore/qfsfileengine.h
+include/qt4/QtCore/qfuture.h
+include/qt4/QtCore/qfutureinterface.h
+include/qt4/QtCore/qfuturesynchronizer.h
+include/qt4/QtCore/qfuturewatcher.h
+include/qt4/QtCore/qglobal.h
+include/qt4/QtCore/qhash.h
+include/qt4/QtCore/qiodevice.h
+include/qt4/QtCore/qiterator.h
+include/qt4/QtCore/qlibrary.h
+include/qt4/QtCore/qlibraryinfo.h
+include/qt4/QtCore/qline.h
+include/qt4/QtCore/qlinkedlist.h
+include/qt4/QtCore/qlist.h
+include/qt4/QtCore/qlocale.h
+include/qt4/QtCore/qmap.h
+include/qt4/QtCore/qmath.h
+include/qt4/QtCore/qmetaobject.h
+include/qt4/QtCore/qmetatype.h
+include/qt4/QtCore/qmimedata.h
+include/qt4/QtCore/qmutex.h
+include/qt4/QtCore/qnamespace.h
+include/qt4/QtCore/qnumeric.h
+include/qt4/QtCore/qobject.h
+include/qt4/QtCore/qobjectcleanuphandler.h
+include/qt4/QtCore/qobjectdefs.h
+include/qt4/QtCore/qpair.h
+include/qt4/QtCore/qplugin.h
+include/qt4/QtCore/qpluginloader.h
+include/qt4/QtCore/qpoint.h
+include/qt4/QtCore/qpointer.h
+include/qt4/QtCore/qprocess.h
+include/qt4/QtCore/qqueue.h
+include/qt4/QtCore/qreadwritelock.h
+include/qt4/QtCore/qrect.h
+include/qt4/QtCore/qregexp.h
+include/qt4/QtCore/qresource.h
+include/qt4/QtCore/qrunnable.h
+include/qt4/QtCore/qsemaphore.h
+include/qt4/QtCore/qset.h
+include/qt4/QtCore/qsettings.h
+include/qt4/QtCore/qshareddata.h
+include/qt4/QtCore/qsharedmemory.h
+include/qt4/QtCore/qsignalmapper.h
+include/qt4/QtCore/qsize.h
+include/qt4/QtCore/qsocketnotifier.h
+include/qt4/QtCore/qstack.h
+include/qt4/QtCore/qstring.h
+include/qt4/QtCore/qstringlist.h
+include/qt4/QtCore/qstringmatcher.h
+include/qt4/QtCore/qsystemsemaphore.h
+include/qt4/QtCore/qtconcurrentcompilertest.h
+include/qt4/QtCore/qtconcurrentexception.h
+include/qt4/QtCore/qtconcurrentfilter.h
+include/qt4/QtCore/qtconcurrentfilterkernel.h
+include/qt4/QtCore/qtconcurrentfunctionwrappers.h
+include/qt4/QtCore/qtconcurrentiteratekernel.h
+include/qt4/QtCore/qtconcurrentmap.h
+include/qt4/QtCore/qtconcurrentmapkernel.h
+include/qt4/QtCore/qtconcurrentmedian.h
+include/qt4/QtCore/qtconcurrentreducekernel.h
+include/qt4/QtCore/qtconcurrentresultstore.h
+include/qt4/QtCore/qtconcurrentrun.h
+include/qt4/QtCore/qtconcurrentrunbase.h
+include/qt4/QtCore/qtconcurrentstoredfunctioncall.h
+include/qt4/QtCore/qtconcurrentthreadengine.h
+include/qt4/QtCore/qtemporaryfile.h
+include/qt4/QtCore/qtextboundaryfinder.h
+include/qt4/QtCore/qtextcodec.h
+include/qt4/QtCore/qtextcodecplugin.h
+include/qt4/QtCore/qtextstream.h
+include/qt4/QtCore/qthread.h
+include/qt4/QtCore/qthreadpool.h
+include/qt4/QtCore/qthreadstorage.h
+include/qt4/QtCore/qtimeline.h
+include/qt4/QtCore/qtimer.h
+include/qt4/QtCore/qtranslator.h
+include/qt4/QtCore/qurl.h
+include/qt4/QtCore/quuid.h
+include/qt4/QtCore/qvariant.h
+include/qt4/QtCore/qvarlengtharray.h
+include/qt4/QtCore/qvector.h
+include/qt4/QtCore/qwaitcondition.h
+include/qt4/QtCore/qxmlstream.h
+lib/qt4/libQtCore.la
+lib/qt4/libQtCore.prl
+lib/qt4/libQtCore.so
+lib/qt4/libQtCore.so.4
+lib/qt4/libQtCore.so.4.4
+%%DEBUG%%lib/qt4/libQtCore.so.4.4.1.debug
+lib/qt4/libQtCore.so.4.4.1
lib/qt4/plugins/.keep_me
libdata/pkgconfig/QtCore.pc
+share/qt4/mkspecs/qconfig.pri
+@dirrmtry share/qt4/mkspecs
@dirrmtry share/qt4
@dirrm lib/qt4/plugins
-@dirrm lib/qt4
-@dirrm include/QtCore
-@dirrm include/Qt
+@dirrmtry lib/qt4
+@dirrm include/qt4/QtCore
+@dirrmtry include/qt4/Qt
+@dirrmtry include/qt4