Update to 3.0.6 (maintenance release).

Add basic framework for qt-mt flavor (untested for real yet).
This commit is contained in:
espie 2002-10-26 11:45:52 +00:00
parent 274a41046e
commit 2c271144f1
13 changed files with 99 additions and 261 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.13 2002/08/21 13:52:39 espie Exp $
# $OpenBSD: Makefile,v 1.14 2002/10/26 11:45:52 espie Exp $
# $FreeBSD: Makefile,v 1.33 1999/02/27 03:09:57 andreas Exp $
COMMENT= C++ X11 GUI toolkit
@ -7,7 +7,7 @@ COMMENT-html= off-line html documentation for qt3
COMMENT-postgresql= PostgresSQL plugin for qt3
COMMENT-mysql= MySQL plugin for qt3
VERSION= 0.5
VERSION= 0.6
DISTNAME= qt-x11-free-3.${VERSION}
CATEGORIES= x11
MASTER_SITES= ftp://ftp.troll.no/qt/source/
@ -16,6 +16,8 @@ HOMEPAGE= http://www.trolltech.com/qt/
MAINTAINER= Marc Espie <espie@openbsd.org>
FLAVORS=mt
PSEUDO_FLAVORS= no_mysql no_postgresql
# Adjust for arches where MySQL/PostgreSQL don't work.
.if !${MACHINE_ARCH:Mi386} && !${MACHINE_ARCH:Msparc} && \
@ -44,7 +46,7 @@ PORTHOME="${WRKDIST}"
MAKE_FLAGS= DESIGNER_SUBDIR=dummy
CONFIGURE_STYLE= simple
CONFIGURE_ARGS= -qt-gif -system-libmng -system-libpng -system-libjpeg \
-system-zlib -no-thread -sm -no-g++-exceptions \
-system-zlib -sm -no-g++-exceptions \
-v -stl -xrender \
-no-sql-odbc \
-I${LOCALBASE}/include/libpng \
@ -53,6 +55,16 @@ CONFIGURE_ARGS= -qt-gif -system-libmng -system-libpng -system-libjpeg \
-L${WRKSRC}/lib \
-L${LOCALBASE}/lib
.if ${FLAVOR:L:Mmt}
FULLPKGNAME= qt3-mt-${VERSION}
CONFIGURE_ARGS+=-thread
FLAVOR+=no_mysql no_postgresql
ALL_TARGET=sub-src
.else
CONFIGURE_ARGS+=-no-thread
MULTI_PACKAGES= -examples -html
.endif
# This is needed to find plugins
CONFIGURE_ARGS+= -prefix ${QT_LIBDIR}
#CONFIGURE_ARGS+=-static -debug
@ -63,7 +75,6 @@ CONFIGURE_ARGS+= -prefix ${QT_LIBDIR}
#CONFIGURE_ARGS+=-xft
CONFIGURE_ENV= QTDIR="${WRKSRC}" KDEDIR="${LOCALBASE}"
MULTI_PACKAGES= -examples -html
SUBPACKAGE?=
QTMODULES= styles tools kernel widgets dialogs \
@ -131,6 +142,19 @@ SUBST_VARS= VERSION QT_LIBDIR QT_DOC
DOCS= FAQ LICENSE.GPL README README.QT \
changes-3*
VMEM_WARNING= Yes
.if ${FLAVOR:L:Mmt}
post-patch:
-rm -rf ${WRKSRC}/examples
-rm -rf ${WRKSRC}/tutorial
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/lib/qt3
${INSTALL_DATA} ${WRKBUILD}/lib/libqt-mt.so.3.6 ${PREFIX}/lib/qt3
ln -sf qt3/libqt-mt.so.3.6 ${PREFIX}/lib
.else
post-configure:
@cd ${WRKSRC} && cp -R examples examples-src
@find ${WRKSRC}/examples-src -name '*.orig' |xargs rm
@ -141,9 +165,7 @@ post-configure:
@find ${WRKSRC}/tutorial-src -name '.moc' |xargs rm -r
@find ${WRKSRC}/tutorial-src -name '.obj' |xargs rm -r
VMEM_WARNING= Yes
LIBRARIES=qt.so.3.5 editor.so.1.0 qui.so.1.0
LIBRARIES=qt.so.3.6 editor.so.1.0 qui.so.1.0
PROGRAMS3=designer findtr moc qt20fix qtrename140 uic
PROGRAMS=assistant linguist lrelease lupdate qm2ts qmake qtconfig
@ -156,7 +178,7 @@ do-install:
${INSTALL_DATA_DIR} ${QT_TUTORIAL}
${INSTALL_DATA_DIR} ${QT_DOC}/html
# libraries
.for l in ${LIBRARIES}
. for l in ${LIBRARIES}
@if [ -f ${WRKBUILD}/lib/lib${l:C/\.so\..*/.a/} ]; then \
${INSTALL_DATA} ${WRKBUILD}/lib/lib${l:C/\.so\..*/.a/} ${PREFIX}/lib/qt3; \
fi
@ -164,15 +186,15 @@ do-install:
${INSTALL_DATA} ${WRKBUILD}/lib/lib$l ${PREFIX}/lib/qt3; \
ln -sf qt3/lib$l ${PREFIX}/lib; \
fi
.endfor
. endfor
# programs
.for p in ${PROGRAMS3}
. for p in ${PROGRAMS3}
${INSTALL_PROGRAM} ${WRKBUILD}/bin/$p ${QT_LIBDIR}/bin
@ln -sf ${TRUEPREFIX}/lib/qt3/bin/$p ${PREFIX}/bin/$p3
.endfor
.for p in ${PROGRAMS}
. endfor
. for p in ${PROGRAMS}
${INSTALL_PROGRAM} ${WRKBUILD}/bin/$p ${PREFIX}/bin
.endfor
. endfor
# includes
@rm -f ${WRKSRC}/include/qt_{mac,windows}.h
${INSTALL_DATA_DIR} ${QT_INCDIR}/private
@ -213,14 +235,14 @@ do-install:
${QT_PLUGINSDIR}/imageformats
${INSTALL_DATA} ${WRKBUILD}/plugins/imageformats/libqmng.so \
${QT_PLUGINSDIR}/imageformats
.if empty(FLAVOR:L:Mno_postgresql)
. if empty(FLAVOR:L:Mno_postgresql)
${INSTALL_DATA} ${WRKBUILD}/plugins/sqldrivers/libqsqlpsql.so \
${QT_PLUGINSDIR}/sqldrivers
.endif
.if empty(FLAVOR:L:Mno_mysql)
. endif
. if empty(FLAVOR:L:Mno_mysql)
${INSTALL_DATA} ${WRKBUILD}/plugins/sqldrivers/libqsqlmysql.so \
${QT_PLUGINSDIR}/sqldrivers
.endif
. endif
${INSTALL_DATA} ${WRKBUILD}/plugins/designer/libwizards.so \
${QT_PLUGINSDIR}/designer
${INSTALL_DATA} ${WRKBUILD}/plugins/designer/libcppeditor.so \
@ -229,6 +251,7 @@ do-install:
${QT_PLUGINSDIR}/designer
${INSTALL_DATA} ${WRKBUILD}/plugins/designer/librcplugin.so \
${QT_PLUGINSDIR}/designer
.endif
PKGNAME= qt3-${VERSION}
PKGNAME-examples= qt3-examples-${VERSION}

View File

@ -1,3 +1,3 @@
MD5 (qt-x11-free-3.0.5.tar.gz) = 98dab506c55e50741e428c4cc43ac828
RMD160 (qt-x11-free-3.0.5.tar.gz) = 1ddb0e526a3d0a737f6b4c1d86fb1418e31979b7
SHA1 (qt-x11-free-3.0.5.tar.gz) = 8d6c3c5b17da2a32f1b4ff60a61998d0822c3e41
MD5 (qt-x11-free-3.0.6.tar.gz) = 841b2ce1116b05688340313d7e9ccc58
RMD160 (qt-x11-free-3.0.6.tar.gz) = f3c7b5d59a6a220f994af3199cf62250ef6bc7b4
SHA1 (qt-x11-free-3.0.6.tar.gz) = 7fb6a9d17091d9a60dd18fb3235098a17f142542

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-configure,v 1.3 2002/07/17 21:43:36 espie Exp $
--- configure.orig Thu Jul 4 08:37:30 2002
+++ configure Tue Jul 16 17:58:07 2002
@@ -694,7 +694,7 @@ while [ -n "$1" ]; do
$OpenBSD: patch-configure,v 1.4 2002/10/26 11:45:52 espie Exp $
--- configure.orig Sun Oct 6 03:02:22 2002
+++ configure Thu Oct 24 12:13:00 2002
@@ -700,7 +700,7 @@ while [ -n "$1" ]; do
UNKNOWN_OPT=yes
fi
# takes two verboses to turn on qmake debugs
@ -10,7 +10,7 @@ $OpenBSD: patch-configure,v 1.3 2002/07/17 21:43:36 espie Exp $
;;
concurrent)
OPT_CONCURRENT="$VAL"
@@ -1180,7 +1180,7 @@ if echo $MODULES | grep sql >/dev/null;
@@ -1204,7 +1204,7 @@ if echo $MODULES | grep sql >/dev/null;
MYSQL_REQ="-lmysqlclient mysql.h"
OCI_REQ="-lclntsh -lwtc8 oci.h"
PSQL_REQ="-lpq postgres.h libpq/libpq-fs.h catalog/pg_type.h libpq-fe.h"
@ -19,7 +19,7 @@ $OpenBSD: patch-configure,v 1.3 2002/07/17 21:43:36 espie Exp $
TDS_REQ="-lsybdb sybfront.h sybdb.h"
for _SQLDR in $CFG_SQL_AVAILABLE; do
case $_SQLDR in
@@ -1586,7 +1586,7 @@ if [ "$Edition" = "free" ]; then
@@ -1610,7 +1610,7 @@ if [ "$Edition" = "free" ]; then
echo "Type 'no' to decline this license offer."
echo
echo "Do you accept the terms of $affix license?"

View File

@ -1,6 +1,6 @@
$OpenBSD: patch-mkspecs_openbsd-g++_qmake_conf,v 1.5 2002/08/21 15:05:20 espie Exp $
--- mkspecs/openbsd-g++/qmake.conf.orig Mon Jul 8 12:28:01 2002
+++ mkspecs/openbsd-g++/qmake.conf Wed Aug 21 16:35:15 2002
$OpenBSD: patch-mkspecs_openbsd-g++_qmake_conf,v 1.6 2002/10/26 11:45:52 espie Exp $
--- mkspecs/openbsd-g++/qmake.conf.orig Thu Oct 17 17:10:22 2002
+++ mkspecs/openbsd-g++/qmake.conf Thu Oct 24 12:13:00 2002
@@ -8,6 +8,7 @@ MAKEFILE_GENERATOR = UNIX
TEMPLATE = app
CONFIG += qt warn_on release

View File

@ -1,16 +1,16 @@
$OpenBSD: patch-qmake_generators_unix_unixmake2_cpp,v 1.5 2002/07/17 21:43:36 espie Exp $
--- qmake/generators/unix/unixmake2.cpp.orig Mon Jul 8 12:27:37 2002
+++ qmake/generators/unix/unixmake2.cpp Wed Jul 17 12:58:24 2002
@@ -220,10 +220,14 @@ UnixMakefileGenerator::writeMakeParts(QT
$OpenBSD: patch-qmake_generators_unix_unixmake2_cpp,v 1.6 2002/10/26 11:45:52 espie Exp $
--- qmake/generators/unix/unixmake2.cpp.orig Thu Oct 17 17:09:32 2002
+++ qmake/generators/unix/unixmake2.cpp Thu Oct 24 12:15:28 2002
@@ -219,10 +219,14 @@ UnixMakefileGenerator::writeMakeParts(QT
} else if (!project->isActiveConfig("staticlib") && project->variables()["QMAKE_APP_FLAG"].isEmpty()) {
t << "TARGETA = " << var("TARGETA") << endl;
if(project->variables()["QMAKE_HPUX_SHLIBS"].isEmpty()) {
if(project->isEmpty("QMAKE_HPUX_SHLIBS")) {
- t << "TARGETD = " << var("TARGET_x.y.z") << endl;
- t << "TARGET0 = " << var("TARGET_") << endl;
- t << "TARGET1 = " << var("TARGET_x") << endl;
- t << "TARGET2 = " << var("TARGET_x.y") << endl;
+ if (!project->variables()["QMAKE_OPENBSD_SHLIBS"].isEmpty()) {
+ t << "TARGETD = " << var("TARGET_x.y") << endl;
+ if (!project->isEmpty("QMAKE_OPENBSD_SHLIBS")) {
+ t << "TARGETD = " << var("TARGET_x.y") << endl;
+ } else {
+ t << "TARGETD = " << var("TARGET_x.y.z") << endl;
+ t << "TARGET0 = " << var("TARGET_") << endl;
@ -20,7 +20,7 @@ $OpenBSD: patch-qmake_generators_unix_unixmake2_cpp,v 1.5 2002/07/17 21:43:36 es
}
else {
t << "TARGETD = " << var("TARGET_x") << endl;
@@ -916,6 +920,7 @@ void UnixMakefileGenerator::init2()
@@ -920,6 +924,7 @@ void UnixMakefileGenerator::init2()
project->first("VER_PAT"));
}
project->variables()["TARGET"] = project->variables()["TARGET_x.y.z"];
@ -28,7 +28,7 @@ $OpenBSD: patch-qmake_generators_unix_unixmake2_cpp,v 1.5 2002/07/17 21:43:36 es
} else {
project->variables()["TARGET_"].append("lib" + project->first("TARGET") + "." +
project->first("QMAKE_EXTENSION_SHLIB"));
@@ -936,10 +941,19 @@ void UnixMakefileGenerator::init2()
@@ -940,10 +945,19 @@ void UnixMakefileGenerator::init2()
project->variables()["TARGET_x"].append("lib" + project->first("TARGET") + "." +
project->first("QMAKE_EXTENSION_SHLIB") +
"." + project->first("VER_MAJ"));
@ -52,7 +52,7 @@ $OpenBSD: patch-qmake_generators_unix_unixmake2_cpp,v 1.5 2002/07/17 21:43:36 es
project->variables()["TARGET_x.y.z"].append("lib" + project->first("TARGET") +
"." +
project->variables()[
@@ -948,7 +962,10 @@ void UnixMakefileGenerator::init2()
@@ -952,7 +966,10 @@ void UnixMakefileGenerator::init2()
project->first("VER_MIN") + "." +
project->first("VER_PAT"));
}
@ -62,5 +62,5 @@ $OpenBSD: patch-qmake_generators_unix_unixmake2_cpp,v 1.5 2002/07/17 21:43:36 es
+ else
+ project->variables()["TARGET"] = project->variables()["TARGET_x.y.z"];
}
project->variables()["QMAKE_LN_SHLIB"].append("-ln -s");
project->variables()["DESTDIR_TARGET"].append("$(TARGET)");
if(project->isEmpty("QMAKE_LN_SHLIB"))
project->variables()["QMAKE_LN_SHLIB"].append("ln -s");

View File

@ -1,13 +0,0 @@
$OpenBSD: patch-src_tools_qlibrary_unix_cpp,v 1.2 2002/07/17 21:43:36 espie Exp $
--- src/tools/qlibrary_unix.cpp.orig Mon Jul 8 12:26:47 2002
+++ src/tools/qlibrary_unix.cpp Wed Jul 17 15:31:14 2002
@@ -35,7 +35,9 @@
**
**********************************************************************/
+#include <string.h>
#include "private/qlibrary_p.h"
+#include "qplatformdefs.h"
/*
The platform dependent implementations of

View File

@ -1,22 +1,12 @@
$OpenBSD: patch-src_tools_qsettings_unix_cpp,v 1.1 2002/07/17 21:43:36 espie Exp $
--- src/tools/qsettings_unix.cpp.orig Wed Jul 17 19:55:58 2002
+++ src/tools/qsettings_unix.cpp Wed Jul 17 23:32:50 2002
@@ -212,6 +212,8 @@ static int openlock( const QString &name
int fd = open( QFile::encodeName( lockfile ),
O_RDWR | O_CREAT, S_IRUSR | S_IWUSR );
$OpenBSD: patch-src_tools_qsettings_unix_cpp,v 1.2 2002/10/26 11:45:52 espie Exp $
--- src/tools/qsettings_unix.cpp.orig Thu Oct 17 17:08:57 2002
+++ src/tools/qsettings_unix.cpp Thu Oct 24 12:13:00 2002
@@ -218,6 +218,8 @@ static int openlock( const QString &name
return fd;
}
+ if (fd == -1)
+ return fd;
struct flock fl;
fl.l_type = type;
fl.l_whence = SEEK_SET;
@@ -230,6 +232,9 @@ static int openlock( const QString &name
*/
static void closelock( int fd )
{
+ if (fd == -1)
+ return;
+
struct flock fl;
fl.l_type = F_UNLCK;
fl.l_whence = SEEK_SET;

View File

@ -1,20 +0,0 @@
$OpenBSD: patch-src_widgets_qtoolbar_cpp,v 1.1 2002/07/17 21:43:36 espie Exp $
--- src/widgets/qtoolbar.cpp.orig Mon Jul 8 12:27:25 2002
+++ src/widgets/qtoolbar.cpp Tue Jul 16 17:48:08 2002
@@ -617,10 +617,14 @@ void QToolBar::resizeEvent( QResizeEvent
hide = FALSE;
QPoint p = w->parentWidget()->mapTo( this, w->geometry().bottomRight() );
if ( orientation() == Horizontal ) {
- if ( p.x() > e->size().width()-d->extension->width()/2 )
+ if ( p.x() > ( doHide ?
+ e->size().width()-d->extension->width()/2 :
+ e->size().width() ) )
hide = TRUE;
} else {
- if ( p.y() > e->size().height()-d->extension->height()/2 )
+ if ( p.y() > ( doHide ?
+ e->size().height()-d->extension->height()/2 :
+ e->size().height() ) )
hide = TRUE;
}
if ( hide && !w->isHidden() ) {

View File

@ -1,8 +1,8 @@
@comment $OpenBSD: PFRAG.shared,v 1.3 2002/07/17 21:43:36 espie Exp $
@comment $OpenBSD: PFRAG.shared,v 1.4 2002/10/26 11:45:52 espie Exp $
lib/libeditor.so.1.0
lib/libqt.so.3.5
lib/libqt.so.3.6
lib/libqui.so.1.0
lib/qt3/libeditor.so.1.0
lib/qt3/libqt.so.3.5
lib/qt3/libqt.so.3.6
lib/qt3/libqui.so.1.0
DYNLIBDIR(%D/lib)

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.6 2002/07/17 21:43:36 espie Exp $
@comment $OpenBSD: PLIST,v 1.7 2002/10/26 11:45:52 espie Exp $
bin/assistant
bin/designer3
bin/findtr3
@ -136,7 +136,6 @@ include/X11/qt3/qfocusdata.h
include/X11/qt3/qfont.h
include/X11/qt3/qfontdatabase.h
include/X11/qt3/qfontdialog.h
include/X11/qt3/qfontdta.h
include/X11/qt3/qfontinf.h
include/X11/qt3/qfontinfo.h
include/X11/qt3/qfontmet.h

View File

@ -1,7 +1,6 @@
@comment $OpenBSD: PLIST-examples,v 1.2 2002/07/17 21:43:36 espie Exp $
@comment $OpenBSD: PLIST-examples,v 1.3 2002/10/26 11:45:52 espie Exp $
lib/qt3/examples/Makefile
lib/qt3/examples/README
lib/qt3/examples/aclock/.qmake.internal.cache
lib/qt3/examples/aclock/Makefile
lib/qt3/examples/aclock/README
lib/qt3/examples/aclock/aclock
@ -10,17 +9,9 @@ lib/qt3/examples/aclock/aclock.doc
lib/qt3/examples/aclock/aclock.h
lib/qt3/examples/aclock/aclock.pro
lib/qt3/examples/aclock/main.cpp
lib/qt3/examples/action/.qmake.internal.cache
lib/qt3/examples/action/Makefile
lib/qt3/examples/action/action
lib/qt3/examples/action/action.pro
lib/qt3/examples/action/actiongroup/.qmake.internal.cache
lib/qt3/examples/action/actiongroup/Makefile
lib/qt3/examples/action/actiongroup/actiongroup.doc
lib/qt3/examples/action/actiongroup/actiongroup.pro
lib/qt3/examples/action/actiongroup/editor.cpp
lib/qt3/examples/action/actiongroup/editor.h
lib/qt3/examples/action/actiongroup/main.cpp
lib/qt3/examples/action/application.cpp
lib/qt3/examples/action/application.doc
lib/qt3/examples/action/application.h
@ -28,13 +19,11 @@ lib/qt3/examples/action/fileopen.xpm
lib/qt3/examples/action/fileprint.xpm
lib/qt3/examples/action/filesave.xpm
lib/qt3/examples/action/main.cpp
lib/qt3/examples/action/toggleaction/.qmake.internal.cache
lib/qt3/examples/action/toggleaction/Makefile
lib/qt3/examples/action/toggleaction/labelonoff.xpm
lib/qt3/examples/action/toggleaction/toggleaction.cpp
lib/qt3/examples/action/toggleaction/toggleaction.doc
lib/qt3/examples/action/toggleaction/toggleaction.pro
lib/qt3/examples/addressbook/.qmake.internal.cache
lib/qt3/examples/addressbook/Makefile
lib/qt3/examples/addressbook/addressbook
lib/qt3/examples/addressbook/addressbook.doc
@ -47,7 +36,6 @@ lib/qt3/examples/addressbook/filesave.xpm
lib/qt3/examples/addressbook/main.cpp
lib/qt3/examples/addressbook/mainwindow.cpp
lib/qt3/examples/addressbook/mainwindow.h
lib/qt3/examples/application/.qmake.internal.cache
lib/qt3/examples/application/Makefile
lib/qt3/examples/application/application
lib/qt3/examples/application/application.cpp
@ -58,7 +46,6 @@ lib/qt3/examples/application/fileopen.xpm
lib/qt3/examples/application/fileprint.xpm
lib/qt3/examples/application/filesave.xpm
lib/qt3/examples/application/main.cpp
lib/qt3/examples/biff/.qmake.internal.cache
lib/qt3/examples/biff/Makefile
lib/qt3/examples/biff/biff.cpp
lib/qt3/examples/biff/biff.doc
@ -66,7 +53,6 @@ lib/qt3/examples/biff/biff.h
lib/qt3/examples/biff/biff.pro
lib/qt3/examples/biff/bmp.cpp
lib/qt3/examples/biff/main.cpp
lib/qt3/examples/buttongroups/.qmake.internal.cache
lib/qt3/examples/buttongroups/Makefile
lib/qt3/examples/buttongroups/README
lib/qt3/examples/buttongroups/buttongroups
@ -75,7 +61,6 @@ lib/qt3/examples/buttongroups/buttongroups.doc
lib/qt3/examples/buttongroups/buttongroups.h
lib/qt3/examples/buttongroups/buttongroups.pro
lib/qt3/examples/buttongroups/main.cpp
lib/qt3/examples/canvas/.qmake.internal.cache
lib/qt3/examples/canvas/Makefile
lib/qt3/examples/canvas/blendshadow.cpp
lib/qt3/examples/canvas/butterfly.png
@ -88,7 +73,6 @@ lib/qt3/examples/canvas/main.cpp
lib/qt3/examples/canvas/makeimg.cpp
lib/qt3/examples/canvas/qt-trans.xpm
lib/qt3/examples/canvas/qtlogo.png
lib/qt3/examples/chart/.qmake.internal.cache
lib/qt3/examples/chart/Makefile
lib/qt3/examples/chart/canvastext.h
lib/qt3/examples/chart/canvasview.cpp
@ -133,7 +117,6 @@ lib/qt3/examples/chart/optionsform.cpp
lib/qt3/examples/chart/optionsform.h
lib/qt3/examples/chart/setdataform.cpp
lib/qt3/examples/chart/setdataform.h
lib/qt3/examples/checklists/.qmake.internal.cache
lib/qt3/examples/checklists/Makefile
lib/qt3/examples/checklists/checklists
lib/qt3/examples/checklists/checklists.cpp
@ -141,14 +124,12 @@ lib/qt3/examples/checklists/checklists.doc
lib/qt3/examples/checklists/checklists.h
lib/qt3/examples/checklists/checklists.pro
lib/qt3/examples/checklists/main.cpp
lib/qt3/examples/cursor/.qmake.internal.cache
lib/qt3/examples/cursor/Makefile
lib/qt3/examples/cursor/README
lib/qt3/examples/cursor/cursor
lib/qt3/examples/cursor/cursor.cpp
lib/qt3/examples/cursor/cursor.doc
lib/qt3/examples/cursor/cursor.pro
lib/qt3/examples/customlayout/.qmake.internal.cache
lib/qt3/examples/customlayout/Makefile
lib/qt3/examples/customlayout/border.cpp
lib/qt3/examples/customlayout/border.h
@ -160,7 +141,6 @@ lib/qt3/examples/customlayout/customlayout.pro
lib/qt3/examples/customlayout/flow.cpp
lib/qt3/examples/customlayout/flow.h
lib/qt3/examples/customlayout/main.cpp
lib/qt3/examples/dclock/.qmake.internal.cache
lib/qt3/examples/dclock/Makefile
lib/qt3/examples/dclock/README
lib/qt3/examples/dclock/dclock
@ -169,7 +149,6 @@ lib/qt3/examples/dclock/dclock.doc
lib/qt3/examples/dclock/dclock.h
lib/qt3/examples/dclock/dclock.pro
lib/qt3/examples/dclock/main.cpp
lib/qt3/examples/demo/.qmake.internal.cache
lib/qt3/examples/demo/Makefile
lib/qt3/examples/demo/demo
lib/qt3/examples/demo/demo.doc
@ -449,13 +428,11 @@ lib/qt3/examples/demo/widgets/widgetsbase.ui
lib/qt3/examples/demo/widgets/widgetsbase.ui.h
lib/qt3/examples/demo/widgets/widgetsbase_pro.ui
lib/qt3/examples/demo/widgets/widgetsbase_pro.ui.h
lib/qt3/examples/desktop/.qmake.internal.cache
lib/qt3/examples/desktop/Makefile
lib/qt3/examples/desktop/README
lib/qt3/examples/desktop/desktop.cpp
lib/qt3/examples/desktop/desktop.doc
lib/qt3/examples/desktop/desktop.pro
lib/qt3/examples/dirview/.qmake.internal.cache
lib/qt3/examples/dirview/Makefile
lib/qt3/examples/dirview/dirview
lib/qt3/examples/dirview/dirview.cpp
@ -463,7 +440,6 @@ lib/qt3/examples/dirview/dirview.doc
lib/qt3/examples/dirview/dirview.h
lib/qt3/examples/dirview/dirview.pro
lib/qt3/examples/dirview/main.cpp
lib/qt3/examples/dragdrop/.qmake.internal.cache
lib/qt3/examples/dragdrop/Makefile
lib/qt3/examples/dragdrop/dragdrop
lib/qt3/examples/dragdrop/dragdrop.doc
@ -475,14 +451,12 @@ lib/qt3/examples/dragdrop/secret.cpp
lib/qt3/examples/dragdrop/secret.h
lib/qt3/examples/dragdrop/trolltech.bmp
lib/qt3/examples/dragdrop/trolltech.gif
lib/qt3/examples/drawdemo/.qmake.internal.cache
lib/qt3/examples/drawdemo/Makefile
lib/qt3/examples/drawdemo/README
lib/qt3/examples/drawdemo/drawdemo
lib/qt3/examples/drawdemo/drawdemo.cpp
lib/qt3/examples/drawdemo/drawdemo.doc
lib/qt3/examples/drawdemo/drawdemo.pro
lib/qt3/examples/drawlines/.qmake.internal.cache
lib/qt3/examples/drawlines/Makefile
lib/qt3/examples/drawlines/README
lib/qt3/examples/drawlines/connect.cpp
@ -490,7 +464,6 @@ lib/qt3/examples/drawlines/drawlines
lib/qt3/examples/drawlines/drawlines.doc
lib/qt3/examples/drawlines/drawlines.pro
lib/qt3/examples/examples.pro
lib/qt3/examples/fileiconview/.qmake.internal.cache
lib/qt3/examples/fileiconview/Makefile
lib/qt3/examples/fileiconview/fileiconview
lib/qt3/examples/fileiconview/fileiconview.doc
@ -500,17 +473,14 @@ lib/qt3/examples/fileiconview/mainwindow.cpp
lib/qt3/examples/fileiconview/mainwindow.h
lib/qt3/examples/fileiconview/qfileiconview.cpp
lib/qt3/examples/fileiconview/qfileiconview.h
lib/qt3/examples/fonts/.qmake.internal.cache
lib/qt3/examples/fonts/Makefile
lib/qt3/examples/fonts/fonts.pro
lib/qt3/examples/fonts/simple-qfont-demo/.qmake.internal.cache
lib/qt3/examples/fonts/simple-qfont-demo/Makefile
lib/qt3/examples/fonts/simple-qfont-demo/simple-qfont-demo.cpp
lib/qt3/examples/fonts/simple-qfont-demo/simple-qfont-demo.doc
lib/qt3/examples/fonts/simple-qfont-demo/simple-qfont-demo.pro
lib/qt3/examples/fonts/simple-qfont-demo/viewer.cpp
lib/qt3/examples/fonts/simple-qfont-demo/viewer.h
lib/qt3/examples/forever/.qmake.internal.cache
lib/qt3/examples/forever/Makefile
lib/qt3/examples/forever/README
lib/qt3/examples/forever/forever
@ -518,12 +488,10 @@ lib/qt3/examples/forever/forever.cpp
lib/qt3/examples/forever/forever.doc
lib/qt3/examples/forever/forever.h
lib/qt3/examples/forever/forever.pro
lib/qt3/examples/gridview/.qmake.internal.cache
lib/qt3/examples/gridview/Makefile
lib/qt3/examples/gridview/gridview
lib/qt3/examples/gridview/gridview.cpp
lib/qt3/examples/gridview/gridview.pro
lib/qt3/examples/hello/.qmake.internal.cache
lib/qt3/examples/hello/Makefile
lib/qt3/examples/hello/README
lib/qt3/examples/hello/hello
@ -532,7 +500,6 @@ lib/qt3/examples/hello/hello.doc
lib/qt3/examples/hello/hello.h
lib/qt3/examples/hello/hello.pro
lib/qt3/examples/hello/main.cpp
lib/qt3/examples/helpviewer/.qmake.internal.cache
lib/qt3/examples/helpviewer/Makefile
lib/qt3/examples/helpviewer/back.xpm
lib/qt3/examples/helpviewer/forward.xpm
@ -543,7 +510,6 @@ lib/qt3/examples/helpviewer/helpwindow.cpp
lib/qt3/examples/helpviewer/helpwindow.h
lib/qt3/examples/helpviewer/home.xpm
lib/qt3/examples/helpviewer/main.cpp
lib/qt3/examples/i18n/.qmake.internal.cache
lib/qt3/examples/i18n/Makefile
lib/qt3/examples/i18n/README
lib/qt3/examples/i18n/i18n
@ -576,25 +542,21 @@ lib/qt3/examples/i18n/mywidget_ru.qm
lib/qt3/examples/i18n/mywidget_ru.ts
lib/qt3/examples/i18n/mywidget_zh.qm
lib/qt3/examples/i18n/mywidget_zh.ts
lib/qt3/examples/iconview/.qmake.internal.cache
lib/qt3/examples/iconview/Makefile
lib/qt3/examples/iconview/iconview
lib/qt3/examples/iconview/iconview.doc
lib/qt3/examples/iconview/iconview.pro
lib/qt3/examples/iconview/main.cpp
lib/qt3/examples/iconview/simple_dd/.qmake.internal.cache
lib/qt3/examples/iconview/simple_dd/Makefile
lib/qt3/examples/iconview/simple_dd/main.cpp
lib/qt3/examples/iconview/simple_dd/main.h
lib/qt3/examples/iconview/simple_dd/simple_dd.doc
lib/qt3/examples/iconview/simple_dd/simple_dd.pro
lib/qt3/examples/layout/.qmake.internal.cache
lib/qt3/examples/layout/Makefile
lib/qt3/examples/layout/layout
lib/qt3/examples/layout/layout.cpp
lib/qt3/examples/layout/layout.doc
lib/qt3/examples/layout/layout.pro
lib/qt3/examples/life/.qmake.internal.cache
lib/qt3/examples/life/Makefile
lib/qt3/examples/life/life
lib/qt3/examples/life/life.cpp
@ -605,7 +567,6 @@ lib/qt3/examples/life/lifedlg.cpp
lib/qt3/examples/life/lifedlg.h
lib/qt3/examples/life/main.cpp
lib/qt3/examples/life/patterns.cpp
lib/qt3/examples/lineedits/.qmake.internal.cache
lib/qt3/examples/lineedits/Makefile
lib/qt3/examples/lineedits/lineedits
lib/qt3/examples/lineedits/lineedits.cpp
@ -613,7 +574,6 @@ lib/qt3/examples/lineedits/lineedits.doc
lib/qt3/examples/lineedits/lineedits.h
lib/qt3/examples/lineedits/lineedits.pro
lib/qt3/examples/lineedits/main.cpp
lib/qt3/examples/listbox/.qmake.internal.cache
lib/qt3/examples/listbox/Makefile
lib/qt3/examples/listbox/listbox
lib/qt3/examples/listbox/listbox.cpp
@ -621,7 +581,6 @@ lib/qt3/examples/listbox/listbox.doc
lib/qt3/examples/listbox/listbox.h
lib/qt3/examples/listbox/listbox.pro
lib/qt3/examples/listbox/main.cpp
lib/qt3/examples/listboxcombo/.qmake.internal.cache
lib/qt3/examples/listboxcombo/Makefile
lib/qt3/examples/listboxcombo/fileopen.xpm
lib/qt3/examples/listboxcombo/listboxcombo
@ -631,7 +590,6 @@ lib/qt3/examples/listboxcombo/listboxcombo.h
lib/qt3/examples/listboxcombo/listboxcombo.pro
lib/qt3/examples/listboxcombo/main.cpp
lib/qt3/examples/listboxcombo/qtlogo.png
lib/qt3/examples/listviews/.qmake.internal.cache
lib/qt3/examples/listviews/Makefile
lib/qt3/examples/listviews/listviews
lib/qt3/examples/listviews/listviews.cpp
@ -639,7 +597,6 @@ lib/qt3/examples/listviews/listviews.doc
lib/qt3/examples/listviews/listviews.h
lib/qt3/examples/listviews/listviews.pro
lib/qt3/examples/listviews/main.cpp
lib/qt3/examples/mdi/.qmake.internal.cache
lib/qt3/examples/mdi/Makefile
lib/qt3/examples/mdi/application.cpp
lib/qt3/examples/mdi/application.h
@ -651,14 +608,12 @@ lib/qt3/examples/mdi/main.cpp
lib/qt3/examples/mdi/mdi
lib/qt3/examples/mdi/mdi.doc
lib/qt3/examples/mdi/mdi.pro
lib/qt3/examples/menu/.qmake.internal.cache
lib/qt3/examples/menu/Makefile
lib/qt3/examples/menu/menu
lib/qt3/examples/menu/menu.cpp
lib/qt3/examples/menu/menu.doc
lib/qt3/examples/menu/menu.h
lib/qt3/examples/menu/menu.pro
lib/qt3/examples/movies/.qmake.internal.cache
lib/qt3/examples/movies/Makefile
lib/qt3/examples/movies/README
lib/qt3/examples/movies/fire.mng
@ -667,16 +622,13 @@ lib/qt3/examples/movies/movies
lib/qt3/examples/movies/movies.doc
lib/qt3/examples/movies/movies.pro
lib/qt3/examples/movies/trolltech.gif
lib/qt3/examples/network/clientserver/client/.qmake.internal.cache
lib/qt3/examples/network/clientserver/client/Makefile
lib/qt3/examples/network/clientserver/client/client.cpp
lib/qt3/examples/network/clientserver/client/client.pro
lib/qt3/examples/network/clientserver/clientserver.doc
lib/qt3/examples/network/clientserver/server/.qmake.internal.cache
lib/qt3/examples/network/clientserver/server/Makefile
lib/qt3/examples/network/clientserver/server/server.cpp
lib/qt3/examples/network/clientserver/server/server.pro
lib/qt3/examples/network/ftpclient/.qmake.internal.cache
lib/qt3/examples/network/ftpclient/Makefile
lib/qt3/examples/network/ftpclient/README
lib/qt3/examples/network/ftpclient/ftpclient.doc
@ -686,13 +638,11 @@ lib/qt3/examples/network/ftpclient/ftpmainwindow.h
lib/qt3/examples/network/ftpclient/ftpview.cpp
lib/qt3/examples/network/ftpclient/ftpview.h
lib/qt3/examples/network/ftpclient/main.cpp
lib/qt3/examples/network/httpd/.qmake.internal.cache
lib/qt3/examples/network/httpd/Makefile
lib/qt3/examples/network/httpd/README
lib/qt3/examples/network/httpd/httpd.cpp
lib/qt3/examples/network/httpd/httpd.doc
lib/qt3/examples/network/httpd/httpd.pro
lib/qt3/examples/network/mail/.qmake.internal.cache
lib/qt3/examples/network/mail/Makefile
lib/qt3/examples/network/mail/composer.cpp
lib/qt3/examples/network/mail/composer.h
@ -701,7 +651,6 @@ lib/qt3/examples/network/mail/mail.pro
lib/qt3/examples/network/mail/main.cpp
lib/qt3/examples/network/mail/smtp.cpp
lib/qt3/examples/network/mail/smtp.h
lib/qt3/examples/network/networkprotocol/.qmake.internal.cache
lib/qt3/examples/network/networkprotocol/Makefile
lib/qt3/examples/network/networkprotocol/README
lib/qt3/examples/network/networkprotocol/main.cpp
@ -711,7 +660,6 @@ lib/qt3/examples/network/networkprotocol/nntp.cpp
lib/qt3/examples/network/networkprotocol/nntp.h
lib/qt3/examples/network/networkprotocol/view.cpp
lib/qt3/examples/network/networkprotocol/view.h
lib/qt3/examples/opengl/box/.qmake.internal.cache
lib/qt3/examples/opengl/box/Makefile
lib/qt3/examples/opengl/box/README
lib/qt3/examples/opengl/box/box.doc
@ -721,13 +669,11 @@ lib/qt3/examples/opengl/box/glbox.h
lib/qt3/examples/opengl/box/globjwin.cpp
lib/qt3/examples/opengl/box/globjwin.h
lib/qt3/examples/opengl/box/main.cpp
lib/qt3/examples/opengl/gear/.qmake.internal.cache
lib/qt3/examples/opengl/gear/Makefile
lib/qt3/examples/opengl/gear/README
lib/qt3/examples/opengl/gear/gear.cpp
lib/qt3/examples/opengl/gear/gear.doc
lib/qt3/examples/opengl/gear/gear.pro
lib/qt3/examples/opengl/glpixmap/.qmake.internal.cache
lib/qt3/examples/opengl/glpixmap/Makefile
lib/qt3/examples/opengl/glpixmap/README
lib/qt3/examples/opengl/glpixmap/glbox.cpp
@ -737,7 +683,6 @@ lib/qt3/examples/opengl/glpixmap/globjwin.h
lib/qt3/examples/opengl/glpixmap/glpixmap.doc
lib/qt3/examples/opengl/glpixmap/glpixmap.pro
lib/qt3/examples/opengl/glpixmap/main.cpp
lib/qt3/examples/opengl/overlay/.qmake.internal.cache
lib/qt3/examples/opengl/overlay/Makefile
lib/qt3/examples/opengl/overlay/README
lib/qt3/examples/opengl/overlay/globjwin.cpp
@ -747,7 +692,6 @@ lib/qt3/examples/opengl/overlay/glteapots.h
lib/qt3/examples/opengl/overlay/main.cpp
lib/qt3/examples/opengl/overlay/overlay.doc
lib/qt3/examples/opengl/overlay/overlay.pro
lib/qt3/examples/opengl/overlay_x11/.qmake.internal.cache
lib/qt3/examples/opengl/overlay_x11/Makefile
lib/qt3/examples/opengl/overlay_x11/README
lib/qt3/examples/opengl/overlay_x11/README.X11-OVERLAYS
@ -766,7 +710,6 @@ lib/qt3/examples/opengl/overlay_x11/utilities/sovinfo/Makefile
lib/qt3/examples/opengl/overlay_x11/utilities/sovinfo/sovLayerUtil.h
lib/qt3/examples/opengl/overlay_x11/utilities/sovinfo/sovinfo.c
lib/qt3/examples/opengl/overlay_x11/utilities/sovinfo/sovlayerutil.c
lib/qt3/examples/opengl/sharedbox/.qmake.internal.cache
lib/qt3/examples/opengl/sharedbox/Makefile
lib/qt3/examples/opengl/sharedbox/README
lib/qt3/examples/opengl/sharedbox/glbox.cpp
@ -776,7 +719,6 @@ lib/qt3/examples/opengl/sharedbox/globjwin.h
lib/qt3/examples/opengl/sharedbox/main.cpp
lib/qt3/examples/opengl/sharedbox/sharedbox.doc
lib/qt3/examples/opengl/sharedbox/sharedbox.pro
lib/qt3/examples/opengl/texture/.qmake.internal.cache
lib/qt3/examples/opengl/texture/Makefile
lib/qt3/examples/opengl/texture/README
lib/qt3/examples/opengl/texture/gllogo.bmp
@ -788,7 +730,6 @@ lib/qt3/examples/opengl/texture/main.cpp
lib/qt3/examples/opengl/texture/qtlogo.bmp
lib/qt3/examples/opengl/texture/texture.doc
lib/qt3/examples/opengl/texture/texture.pro
lib/qt3/examples/picture/.qmake.internal.cache
lib/qt3/examples/picture/Makefile
lib/qt3/examples/picture/README
lib/qt3/examples/picture/car_orig.pic
@ -797,7 +738,6 @@ lib/qt3/examples/picture/picture
lib/qt3/examples/picture/picture.cpp
lib/qt3/examples/picture/picture.doc
lib/qt3/examples/picture/picture.pro
lib/qt3/examples/popup/.qmake.internal.cache
lib/qt3/examples/popup/Makefile
lib/qt3/examples/popup/README
lib/qt3/examples/popup/popup
@ -805,7 +745,6 @@ lib/qt3/examples/popup/popup.cpp
lib/qt3/examples/popup/popup.doc
lib/qt3/examples/popup/popup.h
lib/qt3/examples/popup/popup.pro
lib/qt3/examples/process/.qmake.internal.cache
lib/qt3/examples/process/Makefile
lib/qt3/examples/process/README
lib/qt3/examples/process/process
@ -813,14 +752,12 @@ lib/qt3/examples/process/process.cpp
lib/qt3/examples/process/process.doc
lib/qt3/examples/process/process.pro
lib/qt3/examples/process/small_dialog.ui
lib/qt3/examples/progress/.qmake.internal.cache
lib/qt3/examples/progress/Makefile
lib/qt3/examples/progress/README
lib/qt3/examples/progress/progress
lib/qt3/examples/progress/progress.cpp
lib/qt3/examples/progress/progress.doc
lib/qt3/examples/progress/progress.pro
lib/qt3/examples/progressbar/.qmake.internal.cache
lib/qt3/examples/progressbar/Makefile
lib/qt3/examples/progressbar/main.cpp
lib/qt3/examples/progressbar/progressbar
@ -828,14 +765,12 @@ lib/qt3/examples/progressbar/progressbar.cpp
lib/qt3/examples/progressbar/progressbar.doc
lib/qt3/examples/progressbar/progressbar.h
lib/qt3/examples/progressbar/progressbar.pro
lib/qt3/examples/qdir/.qmake.internal.cache
lib/qt3/examples/qdir/Makefile
lib/qt3/examples/qdir/qdir
lib/qt3/examples/qdir/qdir.cpp
lib/qt3/examples/qdir/qdir.doc
lib/qt3/examples/qdir/qdir.h
lib/qt3/examples/qdir/qdir.pro
lib/qt3/examples/qfd/.qmake.internal.cache
lib/qt3/examples/qfd/Makefile
lib/qt3/examples/qfd/fontdisplayer.cpp
lib/qt3/examples/qfd/fontdisplayer.h
@ -843,20 +778,17 @@ lib/qt3/examples/qfd/qfd
lib/qt3/examples/qfd/qfd.cpp
lib/qt3/examples/qfd/qfd.doc
lib/qt3/examples/qfd/qfd.pro
lib/qt3/examples/qmag/.qmake.internal.cache
lib/qt3/examples/qmag/Makefile
lib/qt3/examples/qmag/README
lib/qt3/examples/qmag/qmag
lib/qt3/examples/qmag/qmag.cpp
lib/qt3/examples/qmag/qmag.doc
lib/qt3/examples/qmag/qmag.pro
lib/qt3/examples/qtl/.qmake.internal.cache
lib/qt3/examples/qtl/Makefile
lib/qt3/examples/qtl/qtl
lib/qt3/examples/qtl/qtl-qvaluelist.doc
lib/qt3/examples/qtl/qtl.pro
lib/qt3/examples/qtl/qvaluelistiterator.cpp
lib/qt3/examples/qwerty/.qmake.internal.cache
lib/qt3/examples/qwerty/ANSI_X3.110-1983.map
lib/qt3/examples/qwerty/ANSI_X3.110-1983.txt
lib/qt3/examples/qwerty/IBM277.map
@ -873,7 +805,6 @@ lib/qt3/examples/qwerty/qwerty.doc
lib/qt3/examples/qwerty/qwerty.h
lib/qt3/examples/qwerty/qwerty.pro
lib/qt3/examples/qwerty/unicode.txt
lib/qt3/examples/rangecontrols/.qmake.internal.cache
lib/qt3/examples/rangecontrols/Makefile
lib/qt3/examples/rangecontrols/main.cpp
lib/qt3/examples/rangecontrols/rangecontrols
@ -881,7 +812,6 @@ lib/qt3/examples/rangecontrols/rangecontrols.cpp
lib/qt3/examples/rangecontrols/rangecontrols.doc
lib/qt3/examples/rangecontrols/rangecontrols.h
lib/qt3/examples/rangecontrols/rangecontrols.pro
lib/qt3/examples/richtext/.qmake.internal.cache
lib/qt3/examples/richtext/Makefile
lib/qt3/examples/richtext/main.cpp
lib/qt3/examples/richtext/marble.png
@ -890,14 +820,12 @@ lib/qt3/examples/richtext/richtext.cpp
lib/qt3/examples/richtext/richtext.doc
lib/qt3/examples/richtext/richtext.h
lib/qt3/examples/richtext/richtext.pro
lib/qt3/examples/rot13/.qmake.internal.cache
lib/qt3/examples/rot13/Makefile
lib/qt3/examples/rot13/rot13
lib/qt3/examples/rot13/rot13.cpp
lib/qt3/examples/rot13/rot13.doc
lib/qt3/examples/rot13/rot13.h
lib/qt3/examples/rot13/rot13.pro
lib/qt3/examples/scribble/.qmake.internal.cache
lib/qt3/examples/scribble/Makefile
lib/qt3/examples/scribble/main.cpp
lib/qt3/examples/scribble/scribble
@ -905,7 +833,6 @@ lib/qt3/examples/scribble/scribble.cpp
lib/qt3/examples/scribble/scribble.doc
lib/qt3/examples/scribble/scribble.h
lib/qt3/examples/scribble/scribble.pro
lib/qt3/examples/scrollview/.qmake.internal.cache
lib/qt3/examples/scrollview/Makefile
lib/qt3/examples/scrollview/README
lib/qt3/examples/scrollview/bg.ppm
@ -913,7 +840,6 @@ lib/qt3/examples/scrollview/scrollview
lib/qt3/examples/scrollview/scrollview.cpp
lib/qt3/examples/scrollview/scrollview.doc
lib/qt3/examples/scrollview/scrollview.pro
lib/qt3/examples/showimg/.qmake.internal.cache
lib/qt3/examples/showimg/Makefile
lib/qt3/examples/showimg/README
lib/qt3/examples/showimg/imagefip.cpp
@ -926,7 +852,6 @@ lib/qt3/examples/showimg/showimg.cpp
lib/qt3/examples/showimg/showimg.doc
lib/qt3/examples/showimg/showimg.h
lib/qt3/examples/showimg/showimg.pro
lib/qt3/examples/sound/.qmake.internal.cache
lib/qt3/examples/sound/Makefile
lib/qt3/examples/sound/sound.cpp
lib/qt3/examples/sound/sound.doc
@ -936,156 +861,125 @@ lib/qt3/examples/sound/sounds/1.wav
lib/qt3/examples/sound/sounds/2.wav
lib/qt3/examples/sound/sounds/3.wav
lib/qt3/examples/sound/sounds/4.wav
lib/qt3/examples/splitter/.qmake.internal.cache
lib/qt3/examples/splitter/Makefile
lib/qt3/examples/splitter/splitter
lib/qt3/examples/splitter/splitter.cpp
lib/qt3/examples/splitter/splitter.doc
lib/qt3/examples/splitter/splitter.pro
lib/qt3/examples/sql/.qmake.internal.cache
lib/qt3/examples/sql/Makefile
lib/qt3/examples/sql/overview/.qmake.internal.cache
lib/qt3/examples/sql/overview/Makefile
lib/qt3/examples/sql/overview/basicbrowsing/.qmake.internal.cache
lib/qt3/examples/sql/overview/basicbrowsing/Makefile
lib/qt3/examples/sql/overview/basicbrowsing/README
lib/qt3/examples/sql/overview/basicbrowsing/basicbrowsing.pro
lib/qt3/examples/sql/overview/basicbrowsing/main.cpp
lib/qt3/examples/sql/overview/basicbrowsing2/.qmake.internal.cache
lib/qt3/examples/sql/overview/basicbrowsing2/Makefile
lib/qt3/examples/sql/overview/basicbrowsing2/README
lib/qt3/examples/sql/overview/basicbrowsing2/basicbrowsing2.pro
lib/qt3/examples/sql/overview/basicbrowsing2/main.cpp
lib/qt3/examples/sql/overview/basicdatamanip/.qmake.internal.cache
lib/qt3/examples/sql/overview/basicdatamanip/Makefile
lib/qt3/examples/sql/overview/basicdatamanip/README
lib/qt3/examples/sql/overview/basicdatamanip/basicdatamanip.pro
lib/qt3/examples/sql/overview/basicdatamanip/main.cpp
lib/qt3/examples/sql/overview/connect1/.qmake.internal.cache
lib/qt3/examples/sql/overview/connect1/Makefile
lib/qt3/examples/sql/overview/connect1/README
lib/qt3/examples/sql/overview/connect1/connect1.pro
lib/qt3/examples/sql/overview/connect1/main.cpp
lib/qt3/examples/sql/overview/create_connections/.qmake.internal.cache
lib/qt3/examples/sql/overview/connection.cpp
lib/qt3/examples/sql/overview/connection.h
lib/qt3/examples/sql/overview/create_connections/Makefile
lib/qt3/examples/sql/overview/create_connections/README
lib/qt3/examples/sql/overview/create_connections/create_connections.pro
lib/qt3/examples/sql/overview/create_connections/main.cpp
lib/qt3/examples/sql/overview/custom1/.qmake.internal.cache
lib/qt3/examples/sql/overview/custom1/Makefile
lib/qt3/examples/sql/overview/custom1/custom1.pro
lib/qt3/examples/sql/overview/custom1/main.cpp
lib/qt3/examples/sql/overview/custom1/main.h
lib/qt3/examples/sql/overview/del/.qmake.internal.cache
lib/qt3/examples/sql/overview/del/Makefile
lib/qt3/examples/sql/overview/del/README
lib/qt3/examples/sql/overview/del/del.pro
lib/qt3/examples/sql/overview/del/main.cpp
lib/qt3/examples/sql/overview/extract/.qmake.internal.cache
lib/qt3/examples/sql/overview/extract/Makefile
lib/qt3/examples/sql/overview/extract/README
lib/qt3/examples/sql/overview/extract/extract.pro
lib/qt3/examples/sql/overview/extract/main.cpp
lib/qt3/examples/sql/overview/form1/.qmake.internal.cache
lib/qt3/examples/sql/overview/form1/Makefile
lib/qt3/examples/sql/overview/form1/form1.pro
lib/qt3/examples/sql/overview/form1/main.cpp
lib/qt3/examples/sql/overview/form2/.qmake.internal.cache
lib/qt3/examples/sql/overview/form2/Makefile
lib/qt3/examples/sql/overview/form2/form2.pro
lib/qt3/examples/sql/overview/form2/main.cpp
lib/qt3/examples/sql/overview/form2/main.h
lib/qt3/examples/sql/overview/insert/.qmake.internal.cache
lib/qt3/examples/sql/overview/insert/Makefile
lib/qt3/examples/sql/overview/insert/README
lib/qt3/examples/sql/overview/insert/insert.pro
lib/qt3/examples/sql/overview/insert/main.cpp
lib/qt3/examples/sql/overview/insert2/.qmake.internal.cache
lib/qt3/examples/sql/overview/insert2/Makefile
lib/qt3/examples/sql/overview/insert2/insert2.pro
lib/qt3/examples/sql/overview/insert2/main.cpp
lib/qt3/examples/sql/overview/login.h
lib/qt3/examples/sql/overview/navigating/.qmake.internal.cache
lib/qt3/examples/sql/overview/navigating/Makefile
lib/qt3/examples/sql/overview/navigating/README
lib/qt3/examples/sql/overview/navigating/main.cpp
lib/qt3/examples/sql/overview/navigating/navigating.pro
lib/qt3/examples/sql/overview/order1/.qmake.internal.cache
lib/qt3/examples/sql/overview/order1/Makefile
lib/qt3/examples/sql/overview/order1/README
lib/qt3/examples/sql/overview/order1/main.cpp
lib/qt3/examples/sql/overview/order1/order1.pro
lib/qt3/examples/sql/overview/order2/.qmake.internal.cache
lib/qt3/examples/sql/overview/order2/Makefile
lib/qt3/examples/sql/overview/order2/README
lib/qt3/examples/sql/overview/order2/main.cpp
lib/qt3/examples/sql/overview/order2/order2.pro
lib/qt3/examples/sql/overview/overview.pro
lib/qt3/examples/sql/overview/retrieve1/.qmake.internal.cache
lib/qt3/examples/sql/overview/retrieve1/Makefile
lib/qt3/examples/sql/overview/retrieve1/README
lib/qt3/examples/sql/overview/retrieve1/main.cpp
lib/qt3/examples/sql/overview/retrieve1/retrieve1.pro
lib/qt3/examples/sql/overview/retrieve2/.qmake.internal.cache
lib/qt3/examples/sql/overview/retrieve2/Makefile
lib/qt3/examples/sql/overview/retrieve2/README
lib/qt3/examples/sql/overview/retrieve2/main.cpp
lib/qt3/examples/sql/overview/retrieve2/retrieve2.pro
lib/qt3/examples/sql/overview/subclass1/.qmake.internal.cache
lib/qt3/examples/sql/overview/subclass1/Makefile
lib/qt3/examples/sql/overview/subclass1/main.cpp
lib/qt3/examples/sql/overview/subclass1/subclass1.pro
lib/qt3/examples/sql/overview/subclass2/.qmake.internal.cache
lib/qt3/examples/sql/overview/subclass2/Makefile
lib/qt3/examples/sql/overview/subclass2/main.cpp
lib/qt3/examples/sql/overview/subclass2/main.h
lib/qt3/examples/sql/overview/subclass2/subclass2.pro
lib/qt3/examples/sql/overview/subclass3/.qmake.internal.cache
lib/qt3/examples/sql/overview/subclass3/Makefile
lib/qt3/examples/sql/overview/subclass3/main.cpp
lib/qt3/examples/sql/overview/subclass3/main.h
lib/qt3/examples/sql/overview/subclass3/subclass3.pro
lib/qt3/examples/sql/overview/subclass4/.qmake.internal.cache
lib/qt3/examples/sql/overview/subclass4/Makefile
lib/qt3/examples/sql/overview/subclass4/main.cpp
lib/qt3/examples/sql/overview/subclass4/main.h
lib/qt3/examples/sql/overview/subclass4/subclass4.pro
lib/qt3/examples/sql/overview/subclass5/.qmake.internal.cache
lib/qt3/examples/sql/overview/subclass5/Makefile
lib/qt3/examples/sql/overview/subclass5/main.cpp
lib/qt3/examples/sql/overview/subclass5/main.h
lib/qt3/examples/sql/overview/subclass5/subclass5.pro
lib/qt3/examples/sql/overview/table1/.qmake.internal.cache
lib/qt3/examples/sql/overview/table1/Makefile
lib/qt3/examples/sql/overview/table1/main.cpp
lib/qt3/examples/sql/overview/table1/table1.pro
lib/qt3/examples/sql/overview/table2/.qmake.internal.cache
lib/qt3/examples/sql/overview/table2/Makefile
lib/qt3/examples/sql/overview/table2/main.cpp
lib/qt3/examples/sql/overview/table2/table2.pro
lib/qt3/examples/sql/overview/table3/.qmake.internal.cache
lib/qt3/examples/sql/overview/table3/Makefile
lib/qt3/examples/sql/overview/table3/main.cpp
lib/qt3/examples/sql/overview/table3/main.h
lib/qt3/examples/sql/overview/table3/table3.pro
lib/qt3/examples/sql/overview/table4/.qmake.internal.cache
lib/qt3/examples/sql/overview/table4/Makefile
lib/qt3/examples/sql/overview/table4/main.cpp
lib/qt3/examples/sql/overview/table4/main.h
lib/qt3/examples/sql/overview/table4/table4.pro
lib/qt3/examples/sql/overview/update/.qmake.internal.cache
lib/qt3/examples/sql/overview/update/Makefile
lib/qt3/examples/sql/overview/update/README
lib/qt3/examples/sql/overview/update/main.cpp
lib/qt3/examples/sql/overview/update/update.pro
lib/qt3/examples/sql/sql.pro
lib/qt3/examples/sql/sqltable/.qmake.internal.cache
lib/qt3/examples/sql/sqltable/Makefile
lib/qt3/examples/sql/sqltable/README
lib/qt3/examples/sql/sqltable/main.cpp
lib/qt3/examples/sql/sqltable/sqltable.doc
lib/qt3/examples/sql/sqltable/sqltable.pro
lib/qt3/examples/tabdialog/.qmake.internal.cache
lib/qt3/examples/tabdialog/Makefile
lib/qt3/examples/tabdialog/main.cpp
lib/qt3/examples/tabdialog/tabdialog
@ -1093,18 +987,15 @@ lib/qt3/examples/tabdialog/tabdialog.cpp
lib/qt3/examples/tabdialog/tabdialog.doc
lib/qt3/examples/tabdialog/tabdialog.h
lib/qt3/examples/tabdialog/tabdialog.pro
lib/qt3/examples/table/bigtable/.qmake.internal.cache
lib/qt3/examples/table/bigtable/Makefile
lib/qt3/examples/table/bigtable/bigtable.doc
lib/qt3/examples/table/bigtable/bigtable.pro
lib/qt3/examples/table/bigtable/main.cpp
lib/qt3/examples/table/small-table-demo/.qmake.internal.cache
lib/qt3/examples/table/small-table-demo/Makefile
lib/qt3/examples/table/small-table-demo/main.cpp
lib/qt3/examples/table/small-table-demo/qtlogo.xpm
lib/qt3/examples/table/small-table-demo/small-table-demo.doc
lib/qt3/examples/table/small-table-demo/small-table-demo.pro
lib/qt3/examples/table/statistics/.qmake.internal.cache
lib/qt3/examples/table/statistics/Makefile
lib/qt3/examples/table/statistics/main.cpp
lib/qt3/examples/table/statistics/statistics.cpp
@ -1122,7 +1013,6 @@ lib/qt3/examples/tablet/tablet.pro
lib/qt3/examples/tablet/tabletstats.cpp
lib/qt3/examples/tablet/tabletstats.h
lib/qt3/examples/tablet/tabletstatsbase.ui
lib/qt3/examples/tetrix/.qmake.internal.cache
lib/qt3/examples/tetrix/Makefile
lib/qt3/examples/tetrix/README
lib/qt3/examples/tetrix/gtetrix.cpp
@ -1139,7 +1029,6 @@ lib/qt3/examples/tetrix/tetrix.doc
lib/qt3/examples/tetrix/tetrix.pro
lib/qt3/examples/tetrix/tpiece.cpp
lib/qt3/examples/tetrix/tpiece.h
lib/qt3/examples/textedit/.qmake.internal.cache
lib/qt3/examples/textedit/Makefile
lib/qt3/examples/textedit/editcopy.xpm
lib/qt3/examples/textedit/editcut.xpm
@ -1164,7 +1053,6 @@ lib/qt3/examples/textedit/textjustify.xpm
lib/qt3/examples/textedit/textleft.xpm
lib/qt3/examples/textedit/textright.xpm
lib/qt3/examples/textedit/textunder.xpm
lib/qt3/examples/themes/.qmake.internal.cache
lib/qt3/examples/themes/Makefile
lib/qt3/examples/themes/fileopen.xpm
lib/qt3/examples/themes/main.cpp
@ -1190,7 +1078,6 @@ lib/qt3/examples/thread/prodcons/prodcons.pro
lib/qt3/examples/thread/semaphores/Makefile
lib/qt3/examples/thread/semaphores/main.cpp
lib/qt3/examples/thread/semaphores/semaphores.pro
lib/qt3/examples/tictac/.qmake.internal.cache
lib/qt3/examples/tictac/Makefile
lib/qt3/examples/tictac/README
lib/qt3/examples/tictac/main.cpp
@ -1199,7 +1086,6 @@ lib/qt3/examples/tictac/tictac.cpp
lib/qt3/examples/tictac/tictac.doc
lib/qt3/examples/tictac/tictac.h
lib/qt3/examples/tictac/tictac.pro
lib/qt3/examples/tooltip/.qmake.internal.cache
lib/qt3/examples/tooltip/Makefile
lib/qt3/examples/tooltip/README
lib/qt3/examples/tooltip/main.cpp
@ -1208,24 +1094,20 @@ lib/qt3/examples/tooltip/tooltip.cpp
lib/qt3/examples/tooltip/tooltip.doc
lib/qt3/examples/tooltip/tooltip.h
lib/qt3/examples/tooltip/tooltip.pro
lib/qt3/examples/trayicon/.qmake.internal.cache
lib/qt3/examples/trayicon/Makefile
lib/qt3/examples/trayicon/main.cpp
lib/qt3/examples/trayicon/trayicon.cpp
lib/qt3/examples/trayicon/trayicon.h
lib/qt3/examples/trayicon/trayicon.pro
lib/qt3/examples/tux/.qmake.internal.cache
lib/qt3/examples/tux/Makefile
lib/qt3/examples/tux/tux
lib/qt3/examples/tux/tux.cpp
lib/qt3/examples/tux/tux.png
lib/qt3/examples/tux/tux.pro
lib/qt3/examples/widgets/.qmake.internal.cache
lib/qt3/examples/widgets/Makefile
lib/qt3/examples/widgets/README
lib/qt3/examples/widgets/main.cpp
lib/qt3/examples/widgets/qt.png
lib/qt3/examples/widgets/trolltech.bmp
lib/qt3/examples/widgets/trolltech.gif
lib/qt3/examples/widgets/tt-logo.png
lib/qt3/examples/widgets/widgets
@ -1233,7 +1115,6 @@ lib/qt3/examples/widgets/widgets.cpp
lib/qt3/examples/widgets/widgets.doc
lib/qt3/examples/widgets/widgets.h
lib/qt3/examples/widgets/widgets.pro
lib/qt3/examples/wizard/.qmake.internal.cache
lib/qt3/examples/wizard/Makefile
lib/qt3/examples/wizard/main.cpp
lib/qt3/examples/wizard/wizard
@ -1241,7 +1122,6 @@ lib/qt3/examples/wizard/wizard.cpp
lib/qt3/examples/wizard/wizard.doc
lib/qt3/examples/wizard/wizard.h
lib/qt3/examples/wizard/wizard.pro
lib/qt3/examples/xform/.qmake.internal.cache
lib/qt3/examples/xform/Makefile
lib/qt3/examples/xform/README
lib/qt3/examples/xform/aticatac.cpp
@ -1251,7 +1131,6 @@ lib/qt3/examples/xform/xform
lib/qt3/examples/xform/xform.cpp
lib/qt3/examples/xform/xform.doc
lib/qt3/examples/xform/xform.pro
lib/qt3/examples/xml/outliner/.qmake.internal.cache
lib/qt3/examples/xml/outliner/Makefile
lib/qt3/examples/xml/outliner/main.cpp
lib/qt3/examples/xml/outliner/outliner.doc
@ -1259,7 +1138,6 @@ lib/qt3/examples/xml/outliner/outliner.pro
lib/qt3/examples/xml/outliner/outlinetree.cpp
lib/qt3/examples/xml/outliner/outlinetree.h
lib/qt3/examples/xml/outliner/todos.opml
lib/qt3/examples/xml/tagreader-with-features/.qmake.internal.cache
lib/qt3/examples/xml/tagreader-with-features/Makefile
lib/qt3/examples/xml/tagreader-with-features/fnord.xml
lib/qt3/examples/xml/tagreader-with-features/structureparser.cpp
@ -1267,7 +1145,6 @@ lib/qt3/examples/xml/tagreader-with-features/structureparser.h
lib/qt3/examples/xml/tagreader-with-features/tagreader-with-features.pro
lib/qt3/examples/xml/tagreader-with-features/tagreader.cpp
lib/qt3/examples/xml/tagreader-with-features/tagreader.doc
lib/qt3/examples/xml/tagreader/.qmake.internal.cache
lib/qt3/examples/xml/tagreader/Makefile
lib/qt3/examples/xml/tagreader/animals.xml
lib/qt3/examples/xml/tagreader/structureparser.cpp
@ -1277,12 +1154,10 @@ lib/qt3/examples/xml/tagreader/tagreader.doc
lib/qt3/examples/xml/tagreader/tagreader.pro
lib/qt3/tutorial/Makefile
lib/qt3/tutorial/README
lib/qt3/tutorial/t1/.qmake.internal.cache
lib/qt3/tutorial/t1/Makefile
lib/qt3/tutorial/t1/main.cpp
lib/qt3/tutorial/t1/t1
lib/qt3/tutorial/t1/t1.pro
lib/qt3/tutorial/t10/.qmake.internal.cache
lib/qt3/tutorial/t10/Makefile
lib/qt3/tutorial/t10/cannon.cpp
lib/qt3/tutorial/t10/cannon.h
@ -1291,7 +1166,6 @@ lib/qt3/tutorial/t10/lcdrange.h
lib/qt3/tutorial/t10/main.cpp
lib/qt3/tutorial/t10/t10
lib/qt3/tutorial/t10/t10.pro
lib/qt3/tutorial/t11/.qmake.internal.cache
lib/qt3/tutorial/t11/Makefile
lib/qt3/tutorial/t11/cannon.cpp
lib/qt3/tutorial/t11/cannon.h
@ -1300,7 +1174,6 @@ lib/qt3/tutorial/t11/lcdrange.h
lib/qt3/tutorial/t11/main.cpp
lib/qt3/tutorial/t11/t11
lib/qt3/tutorial/t11/t11.pro
lib/qt3/tutorial/t12/.qmake.internal.cache
lib/qt3/tutorial/t12/Makefile
lib/qt3/tutorial/t12/cannon.cpp
lib/qt3/tutorial/t12/cannon.h
@ -1309,7 +1182,6 @@ lib/qt3/tutorial/t12/lcdrange.h
lib/qt3/tutorial/t12/main.cpp
lib/qt3/tutorial/t12/t12
lib/qt3/tutorial/t12/t12.pro
lib/qt3/tutorial/t13/.qmake.internal.cache
lib/qt3/tutorial/t13/Makefile
lib/qt3/tutorial/t13/cannon.cpp
lib/qt3/tutorial/t13/cannon.h
@ -1320,7 +1192,6 @@ lib/qt3/tutorial/t13/lcdrange.h
lib/qt3/tutorial/t13/main.cpp
lib/qt3/tutorial/t13/t13
lib/qt3/tutorial/t13/t13.pro
lib/qt3/tutorial/t14/.qmake.internal.cache
lib/qt3/tutorial/t14/Makefile
lib/qt3/tutorial/t14/cannon.cpp
lib/qt3/tutorial/t14/cannon.h
@ -1331,39 +1202,32 @@ lib/qt3/tutorial/t14/lcdrange.h
lib/qt3/tutorial/t14/main.cpp
lib/qt3/tutorial/t14/t14
lib/qt3/tutorial/t14/t14.pro
lib/qt3/tutorial/t2/.qmake.internal.cache
lib/qt3/tutorial/t2/Makefile
lib/qt3/tutorial/t2/main.cpp
lib/qt3/tutorial/t2/t2
lib/qt3/tutorial/t2/t2.pro
lib/qt3/tutorial/t3/.qmake.internal.cache
lib/qt3/tutorial/t3/Makefile
lib/qt3/tutorial/t3/main.cpp
lib/qt3/tutorial/t3/t3
lib/qt3/tutorial/t3/t3.pro
lib/qt3/tutorial/t4/.qmake.internal.cache
lib/qt3/tutorial/t4/Makefile
lib/qt3/tutorial/t4/main.cpp
lib/qt3/tutorial/t4/t4
lib/qt3/tutorial/t4/t4.pro
lib/qt3/tutorial/t5/.qmake.internal.cache
lib/qt3/tutorial/t5/Makefile
lib/qt3/tutorial/t5/main.cpp
lib/qt3/tutorial/t5/t5
lib/qt3/tutorial/t5/t5.pro
lib/qt3/tutorial/t6/.qmake.internal.cache
lib/qt3/tutorial/t6/Makefile
lib/qt3/tutorial/t6/main.cpp
lib/qt3/tutorial/t6/t6
lib/qt3/tutorial/t6/t6.pro
lib/qt3/tutorial/t7/.qmake.internal.cache
lib/qt3/tutorial/t7/Makefile
lib/qt3/tutorial/t7/lcdrange.cpp
lib/qt3/tutorial/t7/lcdrange.h
lib/qt3/tutorial/t7/main.cpp
lib/qt3/tutorial/t7/t7
lib/qt3/tutorial/t7/t7.pro
lib/qt3/tutorial/t8/.qmake.internal.cache
lib/qt3/tutorial/t8/Makefile
lib/qt3/tutorial/t8/cannon.cpp
lib/qt3/tutorial/t8/cannon.h
@ -1372,7 +1236,6 @@ lib/qt3/tutorial/t8/lcdrange.h
lib/qt3/tutorial/t8/main.cpp
lib/qt3/tutorial/t8/t8
lib/qt3/tutorial/t8/t8.pro
lib/qt3/tutorial/t9/.qmake.internal.cache
lib/qt3/tutorial/t9/Makefile
lib/qt3/tutorial/t9/cannon.cpp
lib/qt3/tutorial/t9/cannon.h
@ -1544,7 +1407,6 @@ lib/qt3/tutorial/tutorial.pro
@dirrm lib/qt3/examples/application
@dirrm lib/qt3/examples/addressbook
@dirrm lib/qt3/examples/action/toggleaction
@dirrm lib/qt3/examples/action/actiongroup
@dirrm lib/qt3/examples/action
@dirrm lib/qt3/examples/aclock
@dirrm lib/qt3/examples

View File

@ -1,11 +1,9 @@
@comment $OpenBSD: PLIST-html,v 1.4 2002/07/17 21:43:37 espie Exp $
@comment $OpenBSD: PLIST-html,v 1.5 2002/10/26 11:45:52 espie Exp $
share/doc/qt3/html/aboutqt.html
share/doc/qt3/html/abstract-connections.png
share/doc/qt3/html/abstractwidgets.html
share/doc/qt3/html/accelerators.html
share/doc/qt3/html/aclock-example.html
share/doc/qt3/html/actiongroup-example.html
share/doc/qt3/html/actiongroup.html
share/doc/qt3/html/addressbook-example.html
share/doc/qt3/html/advanced.html
share/doc/qt3/html/annotated.html
@ -17,7 +15,6 @@ share/doc/qt3/html/assistant-2.html
share/doc/qt3/html/assistant-3.html
share/doc/qt3/html/assistant-4.html
share/doc/qt3/html/assistant.html
share/doc/qt3/html/assistant.xml
share/doc/qt3/html/basic.html
share/doc/qt3/html/bearings.png
share/doc/qt3/html/biff-example.html
@ -34,11 +31,26 @@ share/doc/qt3/html/callbacks.png
share/doc/qt3/html/canvas-chart-example.html
share/doc/qt3/html/canvas-example.html
share/doc/qt3/html/canvas.html
share/doc/qt3/html/chart-canvastext-h.html
share/doc/qt3/html/chart-canvasview-cpp.html
share/doc/qt3/html/chart-canvasview-h.html
share/doc/qt3/html/chart-chart-pro.html
share/doc/qt3/html/chart-chartform-cpp.html
share/doc/qt3/html/chart-chartform-h.html
share/doc/qt3/html/chart-chartform_canvas-cpp.html
share/doc/qt3/html/chart-chartform_files-cpp.html
share/doc/qt3/html/chart-element-cpp.html
share/doc/qt3/html/chart-element-h.html
share/doc/qt3/html/chart-forms.png
share/doc/qt3/html/chart-main-cpp.html
share/doc/qt3/html/chart-main.png
share/doc/qt3/html/chart-main2.png
share/doc/qt3/html/chart-options.png
share/doc/qt3/html/chart-optionsform-cpp.html
share/doc/qt3/html/chart-optionsform-h.html
share/doc/qt3/html/chart-setdata.png
share/doc/qt3/html/chart-setdataform-cpp.html
share/doc/qt3/html/chart-setdataform-h.html
share/doc/qt3/html/checklists-example.html
share/doc/qt3/html/classchart.html
share/doc/qt3/html/classes.html
@ -78,7 +90,6 @@ share/doc/qt3/html/designer-manual-8.html
share/doc/qt3/html/designer-manual-9.html
share/doc/qt3/html/designer-manual.html
share/doc/qt3/html/designer.png
share/doc/qt3/html/designer.xml
share/doc/qt3/html/designer1.jpg
share/doc/qt3/html/designer2.jpg
share/doc/qt3/html/designer3.jpg
@ -119,21 +130,6 @@ share/doc/qt3/html/embedporting.html
share/doc/qt3/html/environment.html
share/doc/qt3/html/events.html
share/doc/qt3/html/eventsandfilters.html
share/doc/qt3/html/examples-chart-canvastext-h.html
share/doc/qt3/html/examples-chart-canvasview-cpp.html
share/doc/qt3/html/examples-chart-canvasview-h.html
share/doc/qt3/html/examples-chart-chart-pro.html
share/doc/qt3/html/examples-chart-chartform-cpp.html
share/doc/qt3/html/examples-chart-chartform-h.html
share/doc/qt3/html/examples-chart-chartform_canvas-cpp.html
share/doc/qt3/html/examples-chart-chartform_files-cpp.html
share/doc/qt3/html/examples-chart-element-cpp.html
share/doc/qt3/html/examples-chart-element-h.html
share/doc/qt3/html/examples-chart-main-cpp.html
share/doc/qt3/html/examples-chart-optionsform-cpp.html
share/doc/qt3/html/examples-chart-optionsform-h.html
share/doc/qt3/html/examples-chart-setdataform-cpp.html
share/doc/qt3/html/examples-chart-setdataform-h.html
share/doc/qt3/html/examples.html
share/doc/qt3/html/face.jpg
share/doc/qt3/html/filechooser.png
@ -196,11 +192,11 @@ share/doc/qt3/html/linguist-manual-3.html
share/doc/qt3/html/linguist-manual-4.html
share/doc/qt3/html/linguist-manual.html
share/doc/qt3/html/linguist.png
share/doc/qt3/html/linguist.xml
share/doc/qt3/html/listbox-example.html
share/doc/qt3/html/listboxcombo-example.html
share/doc/qt3/html/listviews-example.html
share/doc/qt3/html/logo32.png
share/doc/qt3/html/mac-differences.html
share/doc/qt3/html/mail-example.html
share/doc/qt3/html/mailinglists.html
share/doc/qt3/html/mainclasses.html
@ -950,7 +946,6 @@ share/doc/qt3/html/qmake-manual-5.html
share/doc/qt3/html/qmake-manual-6.html
share/doc/qt3/html/qmake-manual-7.html
share/doc/qt3/html/qmake-manual.html
share/doc/qt3/html/qmake.xml
share/doc/qt3/html/qmap-h.html
share/doc/qt3/html/qmap-members.html
share/doc/qt3/html/qmap.html
@ -1328,7 +1323,6 @@ share/doc/qt3/html/qt-colors.png
share/doc/qt3/html/qt-members.html
share/doc/qt3/html/qt-template-lib.html
share/doc/qt3/html/qt.html
share/doc/qt3/html/qt.xml
share/doc/qt3/html/qt30-class-chart.png
share/doc/qt3/html/qtab-members.html
share/doc/qt3/html/qtab.html
@ -1573,6 +1567,7 @@ share/doc/qt3/html/rot-example.html
share/doc/qt3/html/rsubtract.png
share/doc/qt3/html/runion.png
share/doc/qt3/html/rxor.png
share/doc/qt3/html/scaling.png
share/doc/qt3/html/scribble-example.html
share/doc/qt3/html/scripts.html
share/doc/qt3/html/scrollview-example.html
@ -1583,11 +1578,9 @@ share/doc/qt3/html/shclass.html
share/doc/qt3/html/showimg-example.html
share/doc/qt3/html/signals-and-slots.png
share/doc/qt3/html/signalsandslots.html
share/doc/qt3/html/simple-application-action.html
share/doc/qt3/html/simple-application-example.html
share/doc/qt3/html/simple-application.html
share/doc/qt3/html/simple-font-demo-example.html
share/doc/qt3/html/simple-qfont-demo-walkthrough.html
share/doc/qt3/html/simple_dd-example.html
share/doc/qt3/html/small-table-example-example.html
share/doc/qt3/html/smooth.png

4
x11/qt3/pkg/PLIST-mt Normal file
View File

@ -0,0 +1,4 @@
@comment $OpenBSD: PLIST-mt,v 1.1 2002/10/26 11:45:52 espie Exp $
lib/libqt-mt.so.3.6
lib/qt3/libqt-mt.so.3.6
DYNLIBDIR(%D/lib)