aboutsummaryrefslogtreecommitdiff
path: root/devel/qmake
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2009-08-04 22:27:55 +0000
committerMartin Wilke <miwi@FreeBSD.org>2009-08-04 22:27:55 +0000
commit60271934fcc090608d4b73b0fa1b092e3d21e79c (patch)
treea487754f5ca69cc69adaeda0cfab3e6fae158880 /devel/qmake
parentb103b20f0293ed033cf5d480a1ab0124e4822766 (diff)
downloadports-60271934fcc090608d4b73b0fa1b092e3d21e79c.tar.gz
ports-60271934fcc090608d4b73b0fa1b092e3d21e79c.zip
Notes
Diffstat (limited to 'devel/qmake')
-rw-r--r--devel/qmake/Makefile75
-rw-r--r--devel/qmake/distinfo6
-rw-r--r--devel/qmake/files/Makefile.bsd22
-rw-r--r--devel/qmake/files/qconfig.cpp22
-rw-r--r--devel/qmake/pkg-descr2
-rw-r--r--devel/qmake/pkg-plist644
6 files changed, 257 insertions, 514 deletions
diff --git a/devel/qmake/Makefile b/devel/qmake/Makefile
index da3046f89877..eaeb1c63cf5e 100644
--- a/devel/qmake/Makefile
+++ b/devel/qmake/Makefile
@@ -1,84 +1,69 @@
-# New ports collection makefile for: qmake-4
-# Date created: Tue Jul 12 16:04:29 UTC 2005
-# Whom: lofi@freebsd.org,
-# mi@aldan.algebra.com
+# New ports collection makefile for: qmake
+# Date created: 2 September 2003
+# Whom: mi@aldan.algebra.com
#
# $FreeBSD$
+#
PORTNAME= qmake
-PORTVERSION= ${QT4_VERSION}
-PORTREVISION= 0
+PORTVERSION= 3.3.8
+PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_QT}
-PKGNAMEPREFIX= qt4-
-DISTNAME= qt-x11-opensource-src-${PORTVERSION}
+DISTNAME= qt-x11-free-${PORTVERSION}
DIST_SUBDIR= KDE
-MAINTAINER= kde@FreeBSD.org
+MAINTAINER= mi@aldan.algebra.com
COMMENT= The build utility of the Qt project
-QT_NONSTANDARD= yes
REINPLACE_ARGS= -i ""
WRKSRC= ${WRKDIR}/${DISTNAME}/qmake
MAKEFILE= ${FILESDIR}/Makefile.bsd
+ALL_TARGET= -j`${SYSCTL} -n hw.ncpu`
+PLIST_SUB+= _PREFIX="${PREFIX}"
MAKE_ENV+= FILESDIR="${FILESDIR}"
-#USE_BZIP2= yes
-MAKE_JOBS_SAFE= yes
+
+USE_BZIP2= yes
EXTRACT_AFTER_ARGS=| ${TAR} -xf - \
- '${DISTNAME}/config.tests/unix/padstring' \
'${DISTNAME}/mkspecs' \
- '${DISTNAME}/include/*/*' \
- '${DISTNAME}/src/*/*.h' \
- '${DISTNAME}/qmake' \
- '${DISTNAME}/src/corelib/tools' \
- '${DISTNAME}/src/corelib/io' \
- '${DISTNAME}/src/corelib/global' \
- '${DISTNAME}/src/corelib/plugin' \
- '${DISTNAME}/src/corelib/kernel' \
- '${DISTNAME}/src/script' \
- '${DISTNAME}/src/3rdparty/md4' \
- '${DISTNAME}/src/3rdparty/md5' \
- '${DISTNAME}/src/3rdparty/sha1'
+ '${DISTNAME}/src/*/*.h' '${DISTNAME}/qmake' \
+ '${DISTNAME}/src/tools'
+
+.if !defined(NOPORTDOCS)
+EXTRACT_AFTER_ARGS+='${DISTNAME}/doc/html/qmake*'
+DOCSDIR=${PREFIX}/share/doc/qt
+PLIST_SUB+= DOCSDIR='${DOCSDIR}'
+post-install:
+ ${MKDIR} '${DOCSDIR}'
+ ${CP} -Rp '${WRKSRC:H}/doc/html' '${DOCSDIR}'
+.endif
post-patch:
+ @${RM} -fr ${WRKSRC}/examples ${WRKSRC}/tutorial
@${REINPLACE_CMD} -e 's|-O2|${CXXFLAGS}|' \
- -e 's|gcc.*|${CC}|' \
- -e 's|g++.*|${CXX}|' \
+ -e 's|gcc|${CC}|' \
+ -e 's|g++|${CXX}|' \
-e 's|/usr/local|${LOCALBASE}|' \
-e 's|/usr/X11R6|${LOCALBASE}|' \
-e 's|release|release thread|' \
-e 's|-pthread -D_THREAD_SAFE|${PTHREAD_CFLAGS}|' \
-e 's|-pthread|${PTHREAD_LIBS}|' \
- -e 's|uic|uic-qt4|' \
- -e 's|moc|moc-qt4|' \
- ${WRKSRC}/../mkspecs/freebsd-g++/qmake.conf \
- ${WRKSRC}/../mkspecs/freebsd-g++34/qmake.conf \
- ${WRKSRC}/../mkspecs/freebsd-g++40/qmake.conf \
- ${WRKSRC}/../mkspecs/freebsd-icc/qmake.conf
- @${REINPLACE_CMD} -e 's|include(../common/c++|include(../common/g++.conf)|' \
- ${WRKSRC}/../mkspecs/freebsd-g++/qmake.conf
+ ${WRKSRC}/../mkspecs/freebsd-g++/qmake.conf
@${REINPLACE_CMD} -e 's|@QMAKE_QTOBJS@||g' ${WRKSRC}/Makefile.unix
do-configure:
${SED} -e 's|/usr/local|${PREFIX}|g' \
< ${FILESDIR}/qconfig.cpp \
- > ${WRKSRC:H}/src/corelib/global/qconfig.cpp
+ > ${WRKSRC:H}/src/tools/qconfig.cpp
${ECHO} '/* empty */' > ${WRKSRC}/qconfig.h
- ${LN} ${WRKSRC}/qconfig.h ${WRKSRC}/../include/QtCore/qconfig.h
+ ${LN} ${WRKSRC}/qconfig.h ${WRKSRC}/qmodules.h
+ ${LN} -s . ${WRKDIR}/${DISTNAME}/src/tools/private
.include <bsd.port.pre.mk>
-.include "${.CURDIR}/../../Mk/bsd.qt.mk"
.if ${ARCH} == "alpha"
CXXFLAGS+= -mieee
.endif
-.if ${OSVERSION} < 700042 && ${ARCH} == "amd64"
-CXXFLAGS+= -fno-gcse
-.endif
-
-post-install:
- ${LN} -sf ${PREFIX}/share/qt4/mkspecs/freebsd-g++ ${PREFIX}/share/qt4/mkspecs/default
-
.include <bsd.port.post.mk>
diff --git a/devel/qmake/distinfo b/devel/qmake/distinfo
index 27b0949354e8..0a949f0f5ec5 100644
--- a/devel/qmake/distinfo
+++ b/devel/qmake/distinfo
@@ -1,3 +1,3 @@
-MD5 (KDE/qt-x11-opensource-src-4.5.2.tar.gz) = d8bcc070a58db25c228b7729ffad4550
-SHA256 (KDE/qt-x11-opensource-src-4.5.2.tar.gz) = 4e4c8619335cac14ba0c52d1555fab549a562fb774c1c08dcbd2be9de38120a2
-SIZE (KDE/qt-x11-opensource-src-4.5.2.tar.gz) = 125803421
+MD5 (KDE/qt-x11-free-3.3.8.tar.bz2) = cf3c43a7dfde5bfb76f8001102fe6e85
+SHA256 (KDE/qt-x11-free-3.3.8.tar.bz2) = e8c3f703d00a4e2ab9ba63fd474caa8a9d0aa3d7f1d5451dd162bec9d778a449
+SIZE (KDE/qt-x11-free-3.3.8.tar.bz2) = 14360483
diff --git a/devel/qmake/files/Makefile.bsd b/devel/qmake/files/Makefile.bsd
index 08ccc6fb6d8c..30c96ae66b1c 100644
--- a/devel/qmake/files/Makefile.bsd
+++ b/devel/qmake/files/Makefile.bsd
@@ -5,20 +5,13 @@ _OBJS!= ${MAKE} -f Makefile.unix -V OBJS -V QOBJS
# next to -DHAVE_CONFIG_CPP below:
#_OBJS:= ${_OBJS:S/qconfig.o//}
SRCS:= ${_OBJS:.o=.cpp}
-NO_MAN= true # qmake.1 anyone?
-
-.PATH: ${.CURDIR} ${.CURDIR:H}/src/corelib/tools ${.CURDIR:H}/src/corelib/io \
- ${.CURDIR:H}/src/corelib/global ${.CURDIR:H}/src/corelib/plugin \
- ${.CURDIR:H}/src/corelib/kernel ${.CURDIR:H}/src/3rdparty/md5 \
- ${.CURDIR:H}/src/3rdparty/md4 ${.CURDIR:H}/src/3rdparty/sha1 \
- ${.CURDIR:H}/src/script
+NOMAN= true # qmake.1 anyone?
+.PATH: ${.CURDIR} ${.CURDIR:H}/src/tools
CXXFLAGS+=-I${.CURDIR:H}/mkspecs/freebsd-g++
-.for s in src/corelib/arch/generic src/global src/tools src/kernel src/codecs \
- src/3rdparty/md5 src/3rdparty/md4 src/3rdparty/sha1 \
- src/script include/QtCore include
-CXXFLAGS+=-I${.CURDIR:H}/$s
+.for s in tools kernel codecs
+CXXFLAGS+=-I${.CURDIR:H}/src/$s
.endfor
.for g in /. /unix /win32 /mac
@@ -29,8 +22,7 @@ CXXFLAGS+=-I${.CURDIR}/generators$g
CXXFLAGS+=-I. -I"${FILESDIR}"
CXXFLAGS+=-DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT \
- -DQT_NO_STL -DQT_BUILD_QMAKE -DQT_NO_COMPRESS -DHAVE_QCONFIG_CPP \
- -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT -DQMAKE_OPENSOURCE_EDITION
+ -DQT_NO_STL -DQT_NO_COMPRESS -DQT_INSTALL_DATA="\"${SHAREDIR}\""
# I guess, qconfig.cpp used to be optional, but no longer is -- due to
# bit-rot in Qt sources. So we still have to compile it, but, by not
@@ -38,9 +30,9 @@ CXXFLAGS+=-DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT \
# it:
# -DHAVE_QCONFIG_CPP
-PROG_CXX= qmake-qt4
+PROG_CXX= qmake
BINDIR= ${PREFIX}/bin
-SHAREDIR=${PREFIX}/share/qt4
+SHAREDIR=${PREFIX}/share/qt
${SHAREDIR}:
mkdir -p "$@"
diff --git a/devel/qmake/files/qconfig.cpp b/devel/qmake/files/qconfig.cpp
index d662b424fce0..3079f2acd576 100644
--- a/devel/qmake/files/qconfig.cpp
+++ b/devel/qmake/files/qconfig.cpp
@@ -4,16 +4,12 @@
* The default prefix (/ usr / local) is dynamicly replaced
* at configure time.
*/
-#define QT_CONFIGURE_LICENSEE "Open Source";
-#define QT_CONFIGURE_LICENSED_PRODUCTS "OpenSource";
-#define QT_CONFIGURE_PREFIX_PATH "/usr/local";
-#define QT_CONFIGURE_DOCUMENTATION_PATH "/usr/local/share/doc/qt4";
-#define QT_CONFIGURE_HEADERS_PATH "/usr/local/include/qt4";
-#define QT_CONFIGURE_LIBRARIES_PATH "/usr/local/lib/qt4";
-#define QT_CONFIGURE_BINARIES_PATH "/usr/local/bin";
-#define QT_CONFIGURE_PLUGINS_PATH "/usr/local/lib/qt4/plugins";
-#define QT_CONFIGURE_DATA_PATH "/usr/local/share/qt4";
-#define QT_CONFIGURE_TRANSLATIONS_PATH "/usr/local/share/qt4/translations";
-#define QT_CONFIGURE_SETTINGS_PATH "/usr/local/etc/xdg";
-#define QT_CONFIGURE_EXAMPLES_PATH "/usr/local/share/examples/qt4/examples";
-#define QT_CONFIGURE_DEMOS_PATH "/usr/local/share/examples/qt4/demos/";
+const char *qInstallPath() { return "/usr/local"; }
+const char *qInstallPathDocs() { return "/usr/local/share/doc/qt"; }
+const char *qInstallPathHeaders() { return "/usr/local/include"; }
+const char *qInstallPathLibs() { return "/usr/local/lib"; }
+const char *qInstallPathBins() { return "/usr/local/bin"; }
+const char *qInstallPathPlugins() { return "/usr/local/plugins"; }
+const char *qInstallPathData() { return "/usr/local/share/qt"; }
+const char *qInstallPathTranslations() { return "/usr/local/translations"; }
+const char *qInstallPathSysconf() { return "/usr/local/etc"; }
diff --git a/devel/qmake/pkg-descr b/devel/qmake/pkg-descr
index eccbc5d9c1e0..9c1e694a6b71 100644
--- a/devel/qmake/pkg-descr
+++ b/devel/qmake/pkg-descr
@@ -3,6 +3,6 @@ developers target all major operating systems with a single application
source code.
Qmake is a project and makefile creating utility, that is part of Qt.
-For ease of maintainance it is split out into a port of its own.
+For ease of maintenance it is split out into a port of its own.
WWW: http://www.trolltech.com/products/qt/index.html
diff --git a/devel/qmake/pkg-plist b/devel/qmake/pkg-plist
index fda1a09e3087..6eadb5351fe5 100644
--- a/devel/qmake/pkg-plist
+++ b/devel/qmake/pkg-plist
@@ -1,437 +1,207 @@
-bin/qmake-qt4
-share/qt4/mkspecs/aix-g++-64/qmake.conf
-share/qt4/mkspecs/aix-g++-64/qplatformdefs.h
-share/qt4/mkspecs/aix-g++/qmake.conf
-share/qt4/mkspecs/aix-g++/qplatformdefs.h
-share/qt4/mkspecs/aix-xlc-64/qmake.conf
-share/qt4/mkspecs/aix-xlc-64/qplatformdefs.h
-share/qt4/mkspecs/aix-xlc/qmake.conf
-share/qt4/mkspecs/aix-xlc/qplatformdefs.h
-share/qt4/mkspecs/common/g++.conf
-share/qt4/mkspecs/common/linux.conf
-share/qt4/mkspecs/common/llvm.conf
-share/qt4/mkspecs/common/mac-g++.conf
-share/qt4/mkspecs/common/mac-llvm.conf
-share/qt4/mkspecs/common/mac.conf
-share/qt4/mkspecs/common/qws.conf
-share/qt4/mkspecs/common/unix.conf
-share/qt4/mkspecs/common/wince.conf
-share/qt4/mkspecs/cygwin-g++/qmake.conf
-share/qt4/mkspecs/cygwin-g++/qplatformdefs.h
-share/qt4/mkspecs/darwin-g++/qmake.conf
-share/qt4/mkspecs/darwin-g++/qplatformdefs.h
-share/qt4/mkspecs/default
-share/qt4/mkspecs/features/assistant.prf
-share/qt4/mkspecs/features/build_pass.prf
-share/qt4/mkspecs/features/dbusadaptors.prf
-share/qt4/mkspecs/features/dbusinterfaces.prf
-share/qt4/mkspecs/features/debug.prf
-share/qt4/mkspecs/features/debug_and_release.prf
-share/qt4/mkspecs/features/default_post.prf
-share/qt4/mkspecs/features/default_pre.prf
-share/qt4/mkspecs/features/designer.prf
-share/qt4/mkspecs/features/dll.prf
-share/qt4/mkspecs/features/exclusive_builds.prf
-share/qt4/mkspecs/features/help.prf
-share/qt4/mkspecs/features/include_source_dir.prf
-share/qt4/mkspecs/features/incredibuild_xge.prf
-share/qt4/mkspecs/features/lex.prf
-share/qt4/mkspecs/features/link_pkgconfig.prf
-share/qt4/mkspecs/features/mac/default_post.prf
-share/qt4/mkspecs/features/mac/default_pre.prf
-share/qt4/mkspecs/features/mac/dwarf2.prf
-share/qt4/mkspecs/features/mac/objective_c.prf
-share/qt4/mkspecs/features/mac/ppc.prf
-share/qt4/mkspecs/features/mac/ppc64.prf
-share/qt4/mkspecs/features/mac/rez.prf
-share/qt4/mkspecs/features/mac/sdk.prf
-share/qt4/mkspecs/features/mac/x86.prf
-share/qt4/mkspecs/features/mac/x86_64.prf
-share/qt4/mkspecs/features/moc.prf
-share/qt4/mkspecs/features/no_debug_info.prf
-share/qt4/mkspecs/features/qdbus.prf
-share/qt4/mkspecs/features/qt.prf
-share/qt4/mkspecs/features/qt_config.prf
-share/qt4/mkspecs/features/qt_functions.prf
-share/qt4/mkspecs/features/qtestlib.prf
-share/qt4/mkspecs/features/qtopia.prf
-share/qt4/mkspecs/features/qtopiainc.prf
-share/qt4/mkspecs/features/qtopialib.prf
-share/qt4/mkspecs/features/release.prf
-share/qt4/mkspecs/features/resources.prf
-share/qt4/mkspecs/features/shared.prf
-share/qt4/mkspecs/features/silent.prf
-share/qt4/mkspecs/features/static.prf
-share/qt4/mkspecs/features/static_and_shared.prf
-share/qt4/mkspecs/features/staticlib.prf
-share/qt4/mkspecs/features/uic.prf
-share/qt4/mkspecs/features/uitools.prf
-share/qt4/mkspecs/features/unix/bsymbolic_functions.prf
-share/qt4/mkspecs/features/unix/dylib.prf
-share/qt4/mkspecs/features/unix/hide_symbols.prf
-share/qt4/mkspecs/features/unix/largefile.prf
-share/qt4/mkspecs/features/unix/opengl.prf
-share/qt4/mkspecs/features/unix/separate_debug_info.prf
-share/qt4/mkspecs/features/unix/thread.prf
-share/qt4/mkspecs/features/unix/x11.prf
-share/qt4/mkspecs/features/unix/x11inc.prf
-share/qt4/mkspecs/features/unix/x11lib.prf
-share/qt4/mkspecs/features/unix/x11sm.prf
-share/qt4/mkspecs/features/use_c_linker.prf
-share/qt4/mkspecs/features/warn_off.prf
-share/qt4/mkspecs/features/warn_on.prf
-share/qt4/mkspecs/features/win32/console.prf
-share/qt4/mkspecs/features/win32/default_post.prf
-share/qt4/mkspecs/features/win32/default_pre.prf
-share/qt4/mkspecs/features/win32/dumpcpp.prf
-share/qt4/mkspecs/features/win32/embed_manifest_dll.prf
-share/qt4/mkspecs/features/win32/embed_manifest_exe.prf
-share/qt4/mkspecs/features/win32/exceptions.prf
-share/qt4/mkspecs/features/win32/exceptions_off.prf
-share/qt4/mkspecs/features/win32/ltcg.prf
-share/qt4/mkspecs/features/win32/opengl.prf
-share/qt4/mkspecs/features/win32/qaxcontainer.prf
-share/qt4/mkspecs/features/win32/qaxserver.prf
-share/qt4/mkspecs/features/win32/qt_dll.prf
-share/qt4/mkspecs/features/win32/rtti.prf
-share/qt4/mkspecs/features/win32/rtti_off.prf
-share/qt4/mkspecs/features/win32/stl.prf
-share/qt4/mkspecs/features/win32/stl_off.prf
-share/qt4/mkspecs/features/win32/thread.prf
-share/qt4/mkspecs/features/win32/thread_off.prf
-share/qt4/mkspecs/features/win32/windows.prf
-share/qt4/mkspecs/features/yacc.prf
-share/qt4/mkspecs/freebsd-g++/qmake.conf
-share/qt4/mkspecs/freebsd-g++/qplatformdefs.h
-share/qt4/mkspecs/freebsd-g++34/qmake.conf
-share/qt4/mkspecs/freebsd-g++34/qplatformdefs.h
-share/qt4/mkspecs/freebsd-g++40/qmake.conf
-share/qt4/mkspecs/freebsd-g++40/qplatformdefs.h
-share/qt4/mkspecs/freebsd-icc/qmake.conf
-share/qt4/mkspecs/freebsd-icc/qplatformdefs.h
-share/qt4/mkspecs/hpux-acc-64/qmake.conf
-share/qt4/mkspecs/hpux-acc-64/qplatformdefs.h
-share/qt4/mkspecs/hpux-acc-o64/qmake.conf
-share/qt4/mkspecs/hpux-acc-o64/qplatformdefs.h
-share/qt4/mkspecs/hpux-acc/qmake.conf
-share/qt4/mkspecs/hpux-acc/qplatformdefs.h
-share/qt4/mkspecs/hpux-g++-64/qmake.conf
-share/qt4/mkspecs/hpux-g++-64/qplatformdefs.h
-share/qt4/mkspecs/hpux-g++/qmake.conf
-share/qt4/mkspecs/hpux-g++/qplatformdefs.h
-share/qt4/mkspecs/hpuxi-acc-32/qmake.conf
-share/qt4/mkspecs/hpuxi-acc-32/qplatformdefs.h
-share/qt4/mkspecs/hpuxi-acc-64/qmake.conf
-share/qt4/mkspecs/hpuxi-acc-64/qplatformdefs.h
-share/qt4/mkspecs/hpuxi-g++-64/qmake.conf
-share/qt4/mkspecs/hpuxi-g++-64/qplatformdefs.h
-share/qt4/mkspecs/hurd-g++/qmake.conf
-share/qt4/mkspecs/hurd-g++/qplatformdefs.h
-share/qt4/mkspecs/irix-cc-64/qmake.conf
-share/qt4/mkspecs/irix-cc-64/qplatformdefs.h
-share/qt4/mkspecs/irix-cc/qmake.conf
-share/qt4/mkspecs/irix-cc/qplatformdefs.h
-share/qt4/mkspecs/irix-g++-64/qmake.conf
-share/qt4/mkspecs/irix-g++-64/qplatformdefs.h
-share/qt4/mkspecs/irix-g++/qmake.conf
-share/qt4/mkspecs/irix-g++/qplatformdefs.h
-share/qt4/mkspecs/linux-cxx/qmake.conf
-share/qt4/mkspecs/linux-cxx/qplatformdefs.h
-share/qt4/mkspecs/linux-ecc-64/qmake.conf
-share/qt4/mkspecs/linux-ecc-64/qplatformdefs.h
-share/qt4/mkspecs/linux-g++-32/qmake.conf
-share/qt4/mkspecs/linux-g++-32/qplatformdefs.h
-share/qt4/mkspecs/linux-g++-64/qmake.conf
-share/qt4/mkspecs/linux-g++-64/qplatformdefs.h
-share/qt4/mkspecs/linux-g++/qmake.conf
-share/qt4/mkspecs/linux-g++/qplatformdefs.h
-share/qt4/mkspecs/linux-icc-32/qmake.conf
-share/qt4/mkspecs/linux-icc-32/qplatformdefs.h
-share/qt4/mkspecs/linux-icc-64/qmake.conf
-share/qt4/mkspecs/linux-icc-64/qplatformdefs.h
-share/qt4/mkspecs/linux-icc/qmake.conf
-share/qt4/mkspecs/linux-icc/qplatformdefs.h
-share/qt4/mkspecs/linux-kcc/qmake.conf
-share/qt4/mkspecs/linux-kcc/qplatformdefs.h
-share/qt4/mkspecs/linux-llvm/qmake.conf
-share/qt4/mkspecs/linux-llvm/qplatformdefs.h
-share/qt4/mkspecs/linux-lsb-g++/qmake.conf
-share/qt4/mkspecs/linux-lsb-g++/qplatformdefs.h
-share/qt4/mkspecs/linux-pgcc/qmake.conf
-share/qt4/mkspecs/linux-pgcc/qplatformdefs.h
-share/qt4/mkspecs/lynxos-g++/qmake.conf
-share/qt4/mkspecs/lynxos-g++/qplatformdefs.h
-share/qt4/mkspecs/macx-g++/Info.plist.app
-share/qt4/mkspecs/macx-g++/Info.plist.lib
-share/qt4/mkspecs/macx-g++/qmake.conf
-share/qt4/mkspecs/macx-g++/qplatformdefs.h
-share/qt4/mkspecs/macx-g++42/Info.plist.app
-share/qt4/mkspecs/macx-g++42/Info.plist.lib
-share/qt4/mkspecs/macx-g++42/qmake.conf
-share/qt4/mkspecs/macx-g++42/qplatformdefs.h
-share/qt4/mkspecs/macx-icc/qmake.conf
-share/qt4/mkspecs/macx-icc/qplatformdefs.h
-share/qt4/mkspecs/macx-llvm/Info.plist.app
-share/qt4/mkspecs/macx-llvm/Info.plist.lib
-share/qt4/mkspecs/macx-llvm/qmake.conf
-share/qt4/mkspecs/macx-llvm/qplatformdefs.h
-share/qt4/mkspecs/macx-pbuilder/Info.plist.app
-share/qt4/mkspecs/macx-pbuilder/qmake.conf
-share/qt4/mkspecs/macx-pbuilder/qplatformdefs.h
-share/qt4/mkspecs/macx-xcode/Info.plist.app
-share/qt4/mkspecs/macx-xcode/Info.plist.lib
-share/qt4/mkspecs/macx-xcode/qmake.conf
-share/qt4/mkspecs/macx-xcode/qplatformdefs.h
-share/qt4/mkspecs/macx-xlc/qmake.conf
-share/qt4/mkspecs/macx-xlc/qplatformdefs.h
-share/qt4/mkspecs/netbsd-g++/qmake.conf
-share/qt4/mkspecs/netbsd-g++/qplatformdefs.h
-share/qt4/mkspecs/openbsd-g++/qmake.conf
-share/qt4/mkspecs/openbsd-g++/qplatformdefs.h
-share/qt4/mkspecs/qws/freebsd-generic-g++/qmake.conf
-share/qt4/mkspecs/qws/freebsd-generic-g++/qplatformdefs.h
-share/qt4/mkspecs/qws/linux-arm-g++/qmake.conf
-share/qt4/mkspecs/qws/linux-arm-g++/qplatformdefs.h
-share/qt4/mkspecs/qws/linux-armv6-g++/qmake.conf
-share/qt4/mkspecs/qws/linux-armv6-g++/qplatformdefs.h
-share/qt4/mkspecs/qws/linux-avr32-g++/qmake.conf
-share/qt4/mkspecs/qws/linux-avr32-g++/qplatformdefs.h
-share/qt4/mkspecs/qws/linux-cellon-g++/qmake.conf
-share/qt4/mkspecs/qws/linux-cellon-g++/qplatformdefs.h
-share/qt4/mkspecs/qws/linux-dm7000-g++/qmake.conf
-share/qt4/mkspecs/qws/linux-dm7000-g++/qplatformdefs.h
-share/qt4/mkspecs/qws/linux-dm800-g++/qmake.conf
-share/qt4/mkspecs/qws/linux-dm800-g++/qplatformdefs.h
-share/qt4/mkspecs/qws/linux-generic-g++-32/qmake.conf
-share/qt4/mkspecs/qws/linux-generic-g++-32/qplatformdefs.h
-share/qt4/mkspecs/qws/linux-generic-g++/qmake.conf
-share/qt4/mkspecs/qws/linux-generic-g++/qplatformdefs.h
-share/qt4/mkspecs/qws/linux-ipaq-g++/qmake.conf
-share/qt4/mkspecs/qws/linux-ipaq-g++/qplatformdefs.h
-share/qt4/mkspecs/qws/linux-lsb-g++/qmake.conf
-share/qt4/mkspecs/qws/linux-lsb-g++/qplatformdefs.h
-share/qt4/mkspecs/qws/linux-mips-g++/qmake.conf
-share/qt4/mkspecs/qws/linux-mips-g++/qplatformdefs.h
-share/qt4/mkspecs/qws/linux-ppc-g++/qmake.conf
-share/qt4/mkspecs/qws/linux-ppc-g++/qplatformdefs.h
-share/qt4/mkspecs/qws/linux-sh-g++/qmake.conf
-share/qt4/mkspecs/qws/linux-sh-g++/qplatformdefs.h
-share/qt4/mkspecs/qws/linux-sh4al-g++/qmake.conf
-share/qt4/mkspecs/qws/linux-sh4al-g++/qplatformdefs.h
-share/qt4/mkspecs/qws/linux-sharp-g++/qmake.conf
-share/qt4/mkspecs/qws/linux-sharp-g++/qplatformdefs.h
-share/qt4/mkspecs/qws/linux-x86-g++/qmake.conf
-share/qt4/mkspecs/qws/linux-x86-g++/qplatformdefs.h
-share/qt4/mkspecs/qws/linux-x86_64-g++/qmake.conf
-share/qt4/mkspecs/qws/linux-x86_64-g++/qplatformdefs.h
-share/qt4/mkspecs/qws/linux-zylonite-g++/qmake.conf
-share/qt4/mkspecs/qws/linux-zylonite-g++/qplatformdefs.h
-share/qt4/mkspecs/qws/macx-generic-g++/qmake.conf
-share/qt4/mkspecs/qws/macx-generic-g++/qplatformdefs.h
-share/qt4/mkspecs/qws/solaris-generic-g++/qmake.conf
-share/qt4/mkspecs/qws/solaris-generic-g++/qplatformdefs.h
-share/qt4/mkspecs/sco-cc/qmake.conf
-share/qt4/mkspecs/sco-cc/qplatformdefs.h
-share/qt4/mkspecs/sco-g++/qmake.conf
-share/qt4/mkspecs/sco-g++/qplatformdefs.h
-share/qt4/mkspecs/solaris-cc-64/qmake.conf
-share/qt4/mkspecs/solaris-cc-64/qplatformdefs.h
-share/qt4/mkspecs/solaris-cc/qmake.conf
-share/qt4/mkspecs/solaris-cc/qplatformdefs.h
-share/qt4/mkspecs/solaris-g++-64/qmake.conf
-share/qt4/mkspecs/solaris-g++-64/qplatformdefs.h
-share/qt4/mkspecs/solaris-g++/qmake.conf
-share/qt4/mkspecs/solaris-g++/qplatformdefs.h
-share/qt4/mkspecs/tru64-cxx/qmake.conf
-share/qt4/mkspecs/tru64-cxx/qplatformdefs.h
-share/qt4/mkspecs/tru64-g++/qmake.conf
-share/qt4/mkspecs/tru64-g++/qplatformdefs.h
-share/qt4/mkspecs/unixware-cc/qmake.conf
-share/qt4/mkspecs/unixware-cc/qplatformdefs.h
-share/qt4/mkspecs/unixware-g++/qmake.conf
-share/qt4/mkspecs/unixware-g++/qplatformdefs.h
-share/qt4/mkspecs/win32-borland/qmake.conf
-share/qt4/mkspecs/win32-borland/qplatformdefs.h
-share/qt4/mkspecs/win32-g++/qmake.conf
-share/qt4/mkspecs/win32-g++/qplatformdefs.h
-share/qt4/mkspecs/win32-icc/qmake.conf
-share/qt4/mkspecs/win32-icc/qplatformdefs.h
-share/qt4/mkspecs/win32-msvc.net/qmake.conf
-share/qt4/mkspecs/win32-msvc.net/qplatformdefs.h
-share/qt4/mkspecs/win32-msvc/features/incremental.prf
-share/qt4/mkspecs/win32-msvc/features/incremental_off.prf
-share/qt4/mkspecs/win32-msvc/qmake.conf
-share/qt4/mkspecs/win32-msvc/qplatformdefs.h
-share/qt4/mkspecs/win32-msvc2002/qmake.conf
-share/qt4/mkspecs/win32-msvc2002/qplatformdefs.h
-share/qt4/mkspecs/win32-msvc2003/qmake.conf
-share/qt4/mkspecs/win32-msvc2003/qplatformdefs.h
-share/qt4/mkspecs/win32-msvc2005/qmake.conf
-share/qt4/mkspecs/win32-msvc2005/qplatformdefs.h
-share/qt4/mkspecs/win32-msvc2008/qmake.conf
-share/qt4/mkspecs/win32-msvc2008/qplatformdefs.h
-share/qt4/mkspecs/wince50standard-armv4i-msvc2005/default_post.prf
-share/qt4/mkspecs/wince50standard-armv4i-msvc2005/qmake.conf
-share/qt4/mkspecs/wince50standard-armv4i-msvc2005/qplatformdefs.h
-share/qt4/mkspecs/wince50standard-armv4i-msvc2008/default_post.prf
-share/qt4/mkspecs/wince50standard-armv4i-msvc2008/qmake.conf
-share/qt4/mkspecs/wince50standard-armv4i-msvc2008/qplatformdefs.h
-share/qt4/mkspecs/wince50standard-mipsii-msvc2005/default_post.prf
-share/qt4/mkspecs/wince50standard-mipsii-msvc2005/qmake.conf
-share/qt4/mkspecs/wince50standard-mipsii-msvc2005/qplatformdefs.h
-share/qt4/mkspecs/wince50standard-mipsii-msvc2008/default_post.prf
-share/qt4/mkspecs/wince50standard-mipsii-msvc2008/qmake.conf
-share/qt4/mkspecs/wince50standard-mipsii-msvc2008/qplatformdefs.h
-share/qt4/mkspecs/wince50standard-mipsiv-msvc2005/qmake.conf
-share/qt4/mkspecs/wince50standard-mipsiv-msvc2005/qplatformdefs.h
-share/qt4/mkspecs/wince50standard-mipsiv-msvc2008/qmake.conf
-share/qt4/mkspecs/wince50standard-mipsiv-msvc2008/qplatformdefs.h
-share/qt4/mkspecs/wince50standard-sh4-msvc2005/qmake.conf
-share/qt4/mkspecs/wince50standard-sh4-msvc2005/qplatformdefs.h
-share/qt4/mkspecs/wince50standard-sh4-msvc2008/qmake.conf
-share/qt4/mkspecs/wince50standard-sh4-msvc2008/qplatformdefs.h
-share/qt4/mkspecs/wince50standard-x86-msvc2005/default_post.prf
-share/qt4/mkspecs/wince50standard-x86-msvc2005/qmake.conf
-share/qt4/mkspecs/wince50standard-x86-msvc2005/qplatformdefs.h
-share/qt4/mkspecs/wince50standard-x86-msvc2008/default_post.prf
-share/qt4/mkspecs/wince50standard-x86-msvc2008/qmake.conf
-share/qt4/mkspecs/wince50standard-x86-msvc2008/qplatformdefs.h
-share/qt4/mkspecs/wince60standard-armv4i-msvc2005/qmake.conf
-share/qt4/mkspecs/wince60standard-armv4i-msvc2005/qplatformdefs.h
-share/qt4/mkspecs/wincewm50pocket-msvc2005/default_post.prf
-share/qt4/mkspecs/wincewm50pocket-msvc2005/qmake.conf
-share/qt4/mkspecs/wincewm50pocket-msvc2005/qplatformdefs.h
-share/qt4/mkspecs/wincewm50pocket-msvc2008/default_post.prf
-share/qt4/mkspecs/wincewm50pocket-msvc2008/qmake.conf
-share/qt4/mkspecs/wincewm50pocket-msvc2008/qplatformdefs.h
-share/qt4/mkspecs/wincewm50smart-msvc2005/default_post.prf
-share/qt4/mkspecs/wincewm50smart-msvc2005/qmake.conf
-share/qt4/mkspecs/wincewm50smart-msvc2005/qplatformdefs.h
-share/qt4/mkspecs/wincewm50smart-msvc2008/default_post.prf
-share/qt4/mkspecs/wincewm50smart-msvc2008/qmake.conf
-share/qt4/mkspecs/wincewm50smart-msvc2008/qplatformdefs.h
-share/qt4/mkspecs/wincewm60professional-msvc2005/default_post.prf
-share/qt4/mkspecs/wincewm60professional-msvc2005/qmake.conf
-share/qt4/mkspecs/wincewm60professional-msvc2005/qplatformdefs.h
-share/qt4/mkspecs/wincewm60professional-msvc2008/default_post.prf
-share/qt4/mkspecs/wincewm60professional-msvc2008/qmake.conf
-share/qt4/mkspecs/wincewm60professional-msvc2008/qplatformdefs.h
-share/qt4/mkspecs/wincewm60standard-msvc2005/default_post.prf
-share/qt4/mkspecs/wincewm60standard-msvc2005/qmake.conf
-share/qt4/mkspecs/wincewm60standard-msvc2005/qplatformdefs.h
-share/qt4/mkspecs/wincewm60standard-msvc2008/default_post.prf
-share/qt4/mkspecs/wincewm60standard-msvc2008/qmake.conf
-share/qt4/mkspecs/wincewm60standard-msvc2008/qplatformdefs.h
-@dirrm share/qt4/mkspecs/wincewm60standard-msvc2008
-@dirrm share/qt4/mkspecs/wincewm60standard-msvc2005
-@dirrm share/qt4/mkspecs/wincewm60professional-msvc2008
-@dirrm share/qt4/mkspecs/wincewm60professional-msvc2005
-@dirrm share/qt4/mkspecs/wincewm50smart-msvc2008
-@dirrm share/qt4/mkspecs/wincewm50smart-msvc2005
-@dirrm share/qt4/mkspecs/wincewm50pocket-msvc2008
-@dirrm share/qt4/mkspecs/wincewm50pocket-msvc2005
-@dirrm share/qt4/mkspecs/wince60standard-armv4i-msvc2005
-@dirrm share/qt4/mkspecs/wince50standard-x86-msvc2008
-@dirrm share/qt4/mkspecs/wince50standard-x86-msvc2005
-@dirrm share/qt4/mkspecs/wince50standard-sh4-msvc2008
-@dirrm share/qt4/mkspecs/wince50standard-sh4-msvc2005
-@dirrm share/qt4/mkspecs/wince50standard-mipsiv-msvc2008
-@dirrm share/qt4/mkspecs/wince50standard-mipsiv-msvc2005
-@dirrm share/qt4/mkspecs/wince50standard-mipsii-msvc2008
-@dirrm share/qt4/mkspecs/wince50standard-mipsii-msvc2005
-@dirrm share/qt4/mkspecs/wince50standard-armv4i-msvc2008
-@dirrm share/qt4/mkspecs/wince50standard-armv4i-msvc2005
-@dirrm share/qt4/mkspecs/win32-msvc2008
-@dirrm share/qt4/mkspecs/win32-msvc2005
-@dirrm share/qt4/mkspecs/win32-msvc2003
-@dirrm share/qt4/mkspecs/win32-msvc2002
-@dirrm share/qt4/mkspecs/win32-msvc/features
-@dirrm share/qt4/mkspecs/win32-msvc.net
-@dirrm share/qt4/mkspecs/win32-msvc
-@dirrm share/qt4/mkspecs/win32-icc
-@dirrm share/qt4/mkspecs/win32-g++
-@dirrm share/qt4/mkspecs/win32-borland
-@dirrm share/qt4/mkspecs/unixware-g++
-@dirrm share/qt4/mkspecs/unixware-cc
-@dirrm share/qt4/mkspecs/tru64-g++
-@dirrm share/qt4/mkspecs/tru64-cxx
-@dirrm share/qt4/mkspecs/solaris-g++-64
-@dirrm share/qt4/mkspecs/solaris-g++
-@dirrm share/qt4/mkspecs/solaris-cc-64
-@dirrm share/qt4/mkspecs/solaris-cc
-@dirrm share/qt4/mkspecs/sco-g++
-@dirrm share/qt4/mkspecs/sco-cc
-@dirrm share/qt4/mkspecs/qws/solaris-generic-g++
-@dirrm share/qt4/mkspecs/qws/macx-generic-g++
-@dirrm share/qt4/mkspecs/qws/linux-zylonite-g++
-@dirrm share/qt4/mkspecs/qws/linux-x86_64-g++
-@dirrm share/qt4/mkspecs/qws/linux-x86-g++
-@dirrm share/qt4/mkspecs/qws/linux-sharp-g++
-@dirrm share/qt4/mkspecs/qws/linux-sh4al-g++
-@dirrm share/qt4/mkspecs/qws/linux-sh-g++
-@dirrm share/qt4/mkspecs/qws/linux-ppc-g++
-@dirrm share/qt4/mkspecs/qws/linux-mips-g++
-@dirrm share/qt4/mkspecs/qws/linux-lsb-g++
-@dirrm share/qt4/mkspecs/qws/linux-ipaq-g++
-@dirrm share/qt4/mkspecs/qws/linux-generic-g++-32
-@dirrm share/qt4/mkspecs/qws/linux-generic-g++
-@dirrm share/qt4/mkspecs/qws/linux-dm800-g++
-@dirrm share/qt4/mkspecs/qws/linux-dm7000-g++
-@dirrm share/qt4/mkspecs/qws/linux-cellon-g++
-@dirrm share/qt4/mkspecs/qws/linux-avr32-g++
-@dirrm share/qt4/mkspecs/qws/linux-armv6-g++
-@dirrm share/qt4/mkspecs/qws/linux-arm-g++
-@dirrm share/qt4/mkspecs/qws/freebsd-generic-g++
-@dirrm share/qt4/mkspecs/qws
-@dirrm share/qt4/mkspecs/openbsd-g++
-@dirrm share/qt4/mkspecs/netbsd-g++
-@dirrm share/qt4/mkspecs/macx-xlc
-@dirrm share/qt4/mkspecs/macx-xcode
-@dirrm share/qt4/mkspecs/macx-pbuilder
-@dirrm share/qt4/mkspecs/macx-llvm
-@dirrm share/qt4/mkspecs/macx-icc
-@dirrm share/qt4/mkspecs/macx-g++42
-@dirrm share/qt4/mkspecs/macx-g++
-@dirrm share/qt4/mkspecs/lynxos-g++
-@dirrm share/qt4/mkspecs/linux-pgcc
-@dirrm share/qt4/mkspecs/linux-lsb-g++
-@dirrm share/qt4/mkspecs/linux-llvm
-@dirrm share/qt4/mkspecs/linux-kcc
-@dirrm share/qt4/mkspecs/linux-icc-64
-@dirrm share/qt4/mkspecs/linux-icc-32
-@dirrm share/qt4/mkspecs/linux-icc
-@dirrm share/qt4/mkspecs/linux-g++-64
-@dirrm share/qt4/mkspecs/linux-g++-32
-@dirrm share/qt4/mkspecs/linux-g++
-@dirrm share/qt4/mkspecs/linux-ecc-64
-@dirrm share/qt4/mkspecs/linux-cxx
-@dirrm share/qt4/mkspecs/irix-g++-64
-@dirrm share/qt4/mkspecs/irix-g++
-@dirrm share/qt4/mkspecs/irix-cc-64
-@dirrm share/qt4/mkspecs/irix-cc
-@dirrm share/qt4/mkspecs/hurd-g++
-@dirrm share/qt4/mkspecs/hpuxi-g++-64
-@dirrm share/qt4/mkspecs/hpuxi-acc-64
-@dirrm share/qt4/mkspecs/hpuxi-acc-32
-@dirrm share/qt4/mkspecs/hpux-g++-64
-@dirrm share/qt4/mkspecs/hpux-g++
-@dirrm share/qt4/mkspecs/hpux-acc-o64
-@dirrm share/qt4/mkspecs/hpux-acc-64
-@dirrm share/qt4/mkspecs/hpux-acc
-@dirrm share/qt4/mkspecs/freebsd-icc
-@dirrm share/qt4/mkspecs/freebsd-g++40
-@dirrm share/qt4/mkspecs/freebsd-g++34
-@dirrm share/qt4/mkspecs/freebsd-g++
-@dirrm share/qt4/mkspecs/features/win32
-@dirrm share/qt4/mkspecs/features/unix
-@dirrm share/qt4/mkspecs/features/mac
-@dirrmtry share/qt4/mkspecs/features
-@dirrm share/qt4/mkspecs/darwin-g++
-@dirrm share/qt4/mkspecs/cygwin-g++
-@dirrm share/qt4/mkspecs/common
-@dirrm share/qt4/mkspecs/aix-xlc-64
-@dirrm share/qt4/mkspecs/aix-xlc
-@dirrm share/qt4/mkspecs/aix-g++-64
-@dirrm share/qt4/mkspecs/aix-g++
-@dirrmtry share/qt4/mkspecs
-@dirrmtry share/qt4
+bin/qmake
+@comment A bug in pkg_* prevents us from using %D below
+@cwd %%_PREFIX%%/share/qt/mkspecs
+aix-g++-64/qmake.conf
+aix-g++-64/qplatformdefs.h
+aix-g++/qmake.conf
+aix-g++/qplatformdefs.h
+aix-xlc-64/qmake.conf
+aix-xlc-64/qplatformdefs.h
+aix-xlc/qmake.conf
+aix-xlc/qplatformdefs.h
+bsdi-g++/qmake.conf
+bsdi-g++/qplatformdefs.h
+cygwin-g++/qmake.conf
+cygwin-g++/qplatformdefs.h
+darwin-g++/qmake.conf
+darwin-g++/qplatformdefs.h
+dgux-g++/qmake.conf
+dgux-g++/qplatformdefs.h
+freebsd-g++/qmake.conf
+freebsd-g++/qplatformdefs.h
+freebsd-g++34/qmake.conf
+freebsd-g++34/qplatformdefs.h
+freebsd-icc/qmake.conf
+freebsd-icc/qplatformdefs.h
+hpux-acc-64/qmake.conf
+hpux-acc-64/qplatformdefs.h
+hpux-acc-o64/qmake.conf
+hpux-acc-o64/qplatformdefs.h
+hpux-acc/qmake.conf
+hpux-acc/qplatformdefs.h
+hpux-cc/qmake.conf
+hpux-cc/qplatformdefs.h
+hpux-g++-64/qmake.conf
+hpux-g++-64/qplatformdefs.h
+hpux-g++/qmake.conf
+hpux-g++/qplatformdefs.h
+hpuxi-acc-32/qmake.conf
+hpuxi-acc-32/qplatformdefs.h
+hpuxi-acc-64/qmake.conf
+hpuxi-acc-64/qplatformdefs.h
+hurd-g++/qmake.conf
+hurd-g++/qplatformdefs.h
+irix-cc-64/qmake.conf
+irix-cc-64/qplatformdefs.h
+irix-cc-o32/qmake.conf
+irix-cc-o32/qplatformdefs.h
+irix-cc/qmake.conf
+irix-cc/qplatformdefs.h
+irix-g++/qmake.conf
+irix-g++/qplatformdefs.h
+linux-cxx/qmake.conf
+linux-cxx/qplatformdefs.h
+linux-ecc-64/qmake.conf
+linux-ecc-64/qplatformdefs.h
+linux-g++-32/qmake.conf
+linux-g++-32/qplatformdefs.h
+linux-g++-64/qmake.conf
+linux-g++-64/qplatformdefs.h
+linux-g++/qmake.conf
+linux-g++/qplatformdefs.h
+linux-icc/qmake.conf
+linux-icc/qplatformdefs.h
+linux-kcc/qmake.conf
+linux-kcc/qplatformdefs.h
+linux-kylix/qmake.conf
+linux-kylix/qplatformdefs.h
+linux-pgcc/qmake.conf
+linux-pgcc/qplatformdefs.h
+lynxos-g++/qmake.conf
+lynxos-g++/qplatformdefs.h
+macx-g++/Info.plist.app
+macx-g++/qmake.conf
+macx-g++/qplatformdefs.h
+macx-mwerks/README
+macx-mwerks/mwerkstmpl.xml
+macx-mwerks/qmake.conf
+macx-mwerks/qplatformdefs.h
+macx-pbuilder/Info.plist.app
+macx-pbuilder/qmake.conf
+macx-pbuilder/qplatformdefs.h
+macx-xlc/qmake.conf
+macx-xlc/qplatformdefs.h
+netbsd-g++/qmake.conf
+netbsd-g++/qplatformdefs.h
+openbsd-g++/qmake.conf
+openbsd-g++/qplatformdefs.h
+qnx-g++/qmake.conf
+qnx-g++/qplatformdefs.h
+reliant-cds-64/qmake.conf
+reliant-cds-64/qplatformdefs.h
+reliant-cds/qmake.conf
+reliant-cds/qplatformdefs.h
+sco-cc/qmake.conf
+sco-cc/qplatformdefs.h
+sco-g++/qmake.conf
+sco-g++/qplatformdefs.h
+solaris-cc-64/qmake.conf
+solaris-cc-64/qplatformdefs.h
+solaris-cc/qmake.conf
+solaris-cc/qplatformdefs.h
+solaris-g++-64/qmake.conf
+solaris-g++-64/qplatformdefs.h
+solaris-g++/qmake.conf
+solaris-g++/qplatformdefs.h
+tru64-cxx/qmake.conf
+tru64-cxx/qplatformdefs.h
+tru64-g++/qmake.conf
+tru64-g++/qplatformdefs.h
+unixware-cc/qmake.conf
+unixware-cc/qplatformdefs.h
+unixware-g++/qmake.conf
+unixware-g++/qplatformdefs.h
+win32-borland/qmake.conf
+win32-borland/qplatformdefs.h
+win32-g++/qmake.conf
+win32-g++/qplatformdefs.h
+win32-g++/qtcrtentrypoint.cpp
+win32-icc/qmake.conf
+win32-icc/qplatformdefs.h
+win32-icc/win32app.dsp
+win32-icc/win32dll.dsp
+win32-icc/win32lib.dsp
+win32-msvc.net/qmake.conf
+win32-msvc.net/qplatformdefs.h
+win32-msvc/qmake.conf
+win32-msvc/qplatformdefs.h
+win32-msvc/win32app.dsp
+win32-msvc/win32dll.dsp
+win32-msvc/win32lib.dsp
+win32-msvc2005/qmake.conf
+win32-msvc2005/qplatformdefs.h
+win32-watcom/qmake.conf
+@dirrm aix-g++
+@dirrm aix-g++-64
+@dirrm aix-xlc
+@dirrm aix-xlc-64
+@dirrm bsdi-g++
+@dirrm cygwin-g++
+@dirrm darwin-g++
+@dirrm dgux-g++
+@dirrm freebsd-g++
+@dirrm freebsd-g++34
+@dirrm freebsd-icc
+@dirrm hpux-acc
+@dirrm hpux-acc-64
+@dirrm hpux-acc-o64
+@dirrm hpux-cc
+@dirrm hpux-g++
+@dirrm hpux-g++-64
+@dirrm hpuxi-acc-32
+@dirrm hpuxi-acc-64
+@dirrm hurd-g++
+@dirrm irix-cc
+@dirrm irix-cc-64
+@dirrm irix-cc-o32
+@dirrm irix-g++
+@dirrm linux-cxx
+@dirrm linux-ecc-64
+@dirrm linux-g++
+@dirrm linux-g++-32
+@dirrm linux-g++-64
+@dirrm linux-icc
+@dirrm linux-kcc
+@dirrm linux-kylix
+@dirrm linux-pgcc
+@dirrm lynxos-g++
+@dirrm macx-g++
+@dirrm macx-mwerks
+@dirrm macx-pbuilder
+@dirrm macx-xlc
+@dirrm netbsd-g++
+@dirrm openbsd-g++
+@dirrm qnx-g++
+@dirrm reliant-cds
+@dirrm reliant-cds-64
+@dirrm sco-cc
+@dirrm sco-g++
+@dirrm solaris-cc
+@dirrm solaris-cc-64
+@dirrm solaris-g++
+@dirrm solaris-g++-64
+@dirrm tru64-cxx
+@dirrm tru64-g++
+@dirrm unixware-cc
+@dirrm unixware-g++
+@dirrm win32-borland
+@dirrm win32-g++
+@dirrm win32-icc
+@dirrm win32-msvc
+@dirrm win32-msvc.net
+@dirrm win32-msvc2005
+@dirrm win32-watcom
+@unexec rmdir %%_PREFIX%%/share/qt/mkspecs
+@unexec rmdir %%_PREFIX%%/share/qt || echo %%_PREFIX%%/share/qt is still in use -- probably by the rest of Qt
+%%PORTDOCS%%@cwd %%DOCSDIR%%
+%%PORTDOCS%%html/qmake.dcf
+%%PORTDOCS%%html/qmake-manual.html
+%%PORTDOCS%%html/qmake-manual-1.html
+%%PORTDOCS%%html/qmake-manual-2.html
+%%PORTDOCS%%html/qmake-manual-3.html
+%%PORTDOCS%%html/qmake-manual-4.html
+%%PORTDOCS%%html/qmake-manual-5.html
+%%PORTDOCS%%html/qmake-manual-6.html
+%%PORTDOCS%%html/qmake-manual-7.html
+%%PORTDOCS%%html/qmake-manual-8.html
+%%PORTDOCS%%@unexec (rmdir %%DOCSDIR%%/html && rmdir %%DOCSDIR%%) || echo %%DOCSDIR%% is still in use -- by other Qt docs?