Update to qt-3.1.2, move samples from qt to qt-mt, enable tablet support.
This commit is contained in:
parent
28eb82429f
commit
eea691e9a2
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.26 2003/02/09 19:17:32 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.27 2003/04/05 14:45:19 espie Exp $
|
||||
# $FreeBSD: Makefile,v 1.33 1999/02/27 03:09:57 andreas Exp $
|
||||
|
||||
COMMENT= C++ X11 GUI toolkit
|
||||
@ -8,7 +8,7 @@ COMMENT-postgresql= PostgresSQL plugin for qt3
|
||||
COMMENT-mysql= MySQL plugin for qt3
|
||||
COMMENT-base= include and docs for qt3
|
||||
|
||||
VERSION= 1.1
|
||||
VERSION= 1.2
|
||||
DISTNAME= qt-x11-free-3.${VERSION}
|
||||
CATEGORIES= x11
|
||||
MASTER_SITES= ftp://ftp.troll.no/qt/source/
|
||||
@ -48,6 +48,8 @@ CONFIGURE_ARGS= -qt-gif -system-libmng -system-libpng -system-libjpeg \
|
||||
-system-zlib -sm -no-g++-exceptions \
|
||||
-v -stl -xrender \
|
||||
-no-sql-odbc \
|
||||
-tablet \
|
||||
-xinerama \
|
||||
-I${LOCALBASE}/include/libpng \
|
||||
-I${X11BASE}/include/freetype2 \
|
||||
-I${LOCALBASE}/include \
|
||||
@ -57,12 +59,12 @@ CONFIGURE_ARGS= -qt-gif -system-libmng -system-libpng -system-libjpeg \
|
||||
MULTI_PACKAGES+=-base -html
|
||||
|
||||
.if ${FLAVOR:L:Mmt}
|
||||
FULLPKGNAME= qt3-mt-${VERSION}p0
|
||||
FULLPKGNAME= qt3-mt-${VERSION}
|
||||
CONFIGURE_ARGS+=-thread
|
||||
ALL_TARGET=sub-src sub-tools
|
||||
MULTI_PACKAGES+= -examples
|
||||
.else
|
||||
CONFIGURE_ARGS+=-no-thread
|
||||
MULTI_PACKAGES+= -examples
|
||||
ALL_TARGET=sub-src sub-tools
|
||||
.endif
|
||||
|
||||
# This is needed to find plugins
|
||||
@ -156,15 +158,7 @@ PROGRAMS=assistant linguist lrelease lupdate qm2ts qmake qtconfig
|
||||
|
||||
.if ${FLAVOR:L:Mmt}
|
||||
MT_SUFX=-mt
|
||||
LIBRARIES=qt${MT_SUFX}.so.3.11 qui${MT_SUFX}.so.1.0
|
||||
|
||||
post-patch:
|
||||
-rm -rf ${WRKSRC}/examples
|
||||
-rm -rf ${WRKSRC}/tutorial
|
||||
|
||||
.else
|
||||
MT_SUFX=
|
||||
LIBRARIES=qt.so.3.11 editor.so.1.0 qui.so.1.0
|
||||
LIBRARIES=qt${MT_SUFX}.so.3.12 qui${MT_SUFX}.so.1.0
|
||||
|
||||
post-configure:
|
||||
@cd ${WRKSRC} && cp -R examples examples-src
|
||||
@ -194,6 +188,14 @@ pre-install:
|
||||
if [ -x $$i/$$i ]; then \
|
||||
${INSTALL_PROGRAM} $$i/$$i ${QT_TUTORIAL}/$$i; \
|
||||
fi; done
|
||||
.else
|
||||
MT_SUFX=
|
||||
LIBRARIES=qt.so.3.11 editor.so.1.0 qui.so.1.0
|
||||
|
||||
post-patch:
|
||||
-rm -rf ${WRKSRC}/examples
|
||||
-rm -rf ${WRKSRC}/tutorial
|
||||
|
||||
.endif
|
||||
|
||||
do-install:
|
||||
@ -203,6 +205,8 @@ do-install:
|
||||
${INSTALL_DATA_DIR} ${QT_DOC}/html
|
||||
# includes
|
||||
@rm -f ${WRKSRC}/include/qt_{mac,windows}.h
|
||||
@rm -f ${WRKSRC}/include/qmotif{,dialog,widget}.h
|
||||
@rm -f ${WRKSRC}/include/qxtwidget.h
|
||||
${INSTALL_DATA_DIR} ${QT_INCDIR}/private
|
||||
${INSTALL_DATA} ${WRKSRC}/include/*.h ${QT_INCDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/include/private/*.h ${QT_INCDIR}/private
|
||||
@ -264,11 +268,11 @@ do-install:
|
||||
${QT_PLUGINSDIR}/designer
|
||||
|
||||
|
||||
PKGNAME= qt3-${VERSION}p0
|
||||
PKGNAME= qt3-${VERSION}
|
||||
PKGNAME-mysql= qt3-mysql-${VERSION}
|
||||
PKGNAME-postgresql= qt3-postgresql-${VERSION}
|
||||
PKGNAME-examples= qt3-examples-${VERSION}
|
||||
FULLPKGNAME-base= qt3-base-${VERSION}p0
|
||||
FULLPKGNAME-base= qt3-base-${VERSION}
|
||||
FULLPKGNAME-html= qt3-html-${VERSION}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (qt-x11-free-3.1.1.tar.gz) = f7b008a5b27b834cb31f0abd91452760
|
||||
RMD160 (qt-x11-free-3.1.1.tar.gz) = ef689b37092993e435ca94b83c1b6171a3d767fa
|
||||
SHA1 (qt-x11-free-3.1.1.tar.gz) = 0abfa0528080c97682954af523b16b19ab901a44
|
||||
MD5 (qt-x11-free-3.1.2.tar.gz) = e73abf1927f2f24a474b5647a0efcc44
|
||||
RMD160 (qt-x11-free-3.1.2.tar.gz) = 8a5d822bda9f62a6ade1c0d3acf9affb69e46b1c
|
||||
SHA1 (qt-x11-free-3.1.2.tar.gz) = cf0bb0d57298acd88137c23b85b27af9a8f52758
|
||||
|
@ -1,7 +1,7 @@
|
||||
$OpenBSD: patch-configure,v 1.6 2003/01/19 17:36:51 espie Exp $
|
||||
--- configure.orig Fri Nov 29 15:26:24 2002
|
||||
+++ configure Sun Jan 19 15:55:15 2003
|
||||
@@ -828,7 +828,7 @@ while [ "$#" -gt 0 ]; do
|
||||
$OpenBSD: patch-configure,v 1.7 2003/04/05 14:45:19 espie Exp $
|
||||
--- configure.orig Tue Feb 11 04:19:48 2003
|
||||
+++ configure Sat Mar 22 17:59:44 2003
|
||||
@@ -830,7 +830,7 @@ while [ "$#" -gt 0 ]; do
|
||||
v|verbose)
|
||||
if [ "$VAL" = "yes" ]; then
|
||||
if [ "$OPT_VERBOSE" = "$VAL" ]; then # takes two verboses to turn on qmake debugs
|
||||
@ -10,7 +10,7 @@ $OpenBSD: patch-configure,v 1.6 2003/01/19 17:36:51 espie Exp $
|
||||
else
|
||||
OPT_VERBOSE=yes
|
||||
fi
|
||||
@@ -1438,7 +1438,7 @@ if echo $MODULES | grep sql >/dev/null;
|
||||
@@ -1440,7 +1440,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,12 +19,12 @@ $OpenBSD: patch-configure,v 1.6 2003/01/19 17:36:51 espie Exp $
|
||||
TDS_REQ="-lsybdb sybfront.h sybdb.h"
|
||||
for _SQLDR in $CFG_SQL_AVAILABLE; do
|
||||
case $_SQLDR in
|
||||
@@ -1999,7 +1999,7 @@ if [ "$Edition" = "free" ]; then
|
||||
@@ -2001,7 +2001,7 @@ if [ "$Edition" = "free" ]; then
|
||||
else
|
||||
echo "Do you accept the terms of $affix license? \c"
|
||||
fi
|
||||
- read acceptance
|
||||
+ acceptance=yes
|
||||
echo
|
||||
if [ "$acceptance" = "yes" ]; then
|
||||
break
|
||||
elif [ "$acceptance" = "no" ]; then
|
||||
|
@ -1,6 +1,6 @@
|
||||
$OpenBSD: patch-mkspecs_openbsd-g++_qmake_conf,v 1.12 2003/01/20 12:58:58 espie Exp $
|
||||
--- mkspecs/openbsd-g++/qmake.conf.orig Mon Dec 9 10:41:32 2002
|
||||
+++ mkspecs/openbsd-g++/qmake.conf Sun Jan 19 15:55:15 2003
|
||||
$OpenBSD: patch-mkspecs_openbsd-g++_qmake_conf,v 1.13 2003/04/05 14:45:19 espie Exp $
|
||||
--- mkspecs/openbsd-g++/qmake.conf.orig Mon Feb 24 09:31:39 2003
|
||||
+++ mkspecs/openbsd-g++/qmake.conf Sat Mar 22 18:07:01 2003
|
||||
@@ -8,6 +8,7 @@ MAKEFILE_GENERATOR = UNIX
|
||||
TEMPLATE = app
|
||||
CONFIG += qt warn_on release
|
||||
|
@ -1,6 +1,6 @@
|
||||
$OpenBSD: patch-qmake_generators_unix_unixmake2_cpp,v 1.8 2003/01/19 17:36:51 espie Exp $
|
||||
--- qmake/generators/unix/unixmake2.cpp.orig Mon Dec 9 10:41:04 2002
|
||||
+++ qmake/generators/unix/unixmake2.cpp Sun Jan 19 15:55:16 2003
|
||||
$OpenBSD: patch-qmake_generators_unix_unixmake2_cpp,v 1.9 2003/04/05 14:45:19 espie Exp $
|
||||
--- qmake/generators/unix/unixmake2.cpp.orig Mon Feb 24 09:30:51 2003
|
||||
+++ qmake/generators/unix/unixmake2.cpp Sat Mar 22 17:57:45 2003
|
||||
@@ -228,10 +228,14 @@ UnixMakefileGenerator::writeMakeParts(QT
|
||||
} else if (!project->isActiveConfig("staticlib") && project->variables()["QMAKE_APP_FLAG"].isEmpty()) {
|
||||
t << "TARGETA = " << var("TARGETA") << endl;
|
||||
@ -20,7 +20,7 @@ $OpenBSD: patch-qmake_generators_unix_unixmake2_cpp,v 1.8 2003/01/19 17:36:51 es
|
||||
} else {
|
||||
t << "TARGETD = " << var("TARGET_x") << endl;
|
||||
t << "TARGET0 = " << var("TARGET_") << endl;
|
||||
@@ -1019,6 +1023,7 @@ void UnixMakefileGenerator::init2()
|
||||
@@ -1024,6 +1028,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.8 2003/01/19 17:36:51 es
|
||||
} else {
|
||||
project->variables()["TARGET_"].append("lib" + project->first("TARGET") + "." +
|
||||
project->first("QMAKE_EXTENSION_SHLIB"));
|
||||
@@ -1039,10 +1044,19 @@ void UnixMakefileGenerator::init2()
|
||||
@@ -1044,10 +1049,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.8 2003/01/19 17:36:51 es
|
||||
project->variables()["TARGET_x.y.z"].append("lib" + project->first("TARGET") +
|
||||
"." +
|
||||
project->variables()[
|
||||
@@ -1051,7 +1065,10 @@ void UnixMakefileGenerator::init2()
|
||||
@@ -1056,7 +1070,10 @@ void UnixMakefileGenerator::init2()
|
||||
project->first("VER_MIN") + "." +
|
||||
project->first("VER_PAT"));
|
||||
}
|
||||
|
@ -1,11 +1,11 @@
|
||||
$OpenBSD: patch-src_dialogs_qfiledialog_cpp,v 1.3 2003/01/19 17:36:51 espie Exp $
|
||||
--- src/dialogs/qfiledialog.cpp.orig Mon Dec 9 10:40:29 2002
|
||||
+++ src/dialogs/qfiledialog.cpp Sun Jan 19 15:55:16 2003
|
||||
@@ -3168,7 +3168,7 @@ void QFileDialog::setDir( const QString
|
||||
$OpenBSD: patch-src_dialogs_qfiledialog_cpp,v 1.4 2003/04/05 14:45:19 espie Exp $
|
||||
--- src/dialogs/qfiledialog.cpp.orig Mon Feb 24 09:29:49 2003
|
||||
+++ src/dialogs/qfiledialog.cpp Sat Mar 22 18:01:06 2003
|
||||
@@ -3182,7 +3182,7 @@ void QFileDialog::setDir( const QString
|
||||
user = dr.mid( 1, i-1 ).local8Bit();
|
||||
dr = dr.mid( i, dr.length() );
|
||||
struct passwd *pw;
|
||||
-#if defined(QT_THREAD_SUPPORT) && defined(_POSIX_THREAD_SAFE_FUNCTIONS)
|
||||
-#if defined(QT_THREAD_SUPPORT) && defined(_POSIX_THREAD_SAFE_FUNCTIONS) && !defined(Q_OS_FREEBSD)
|
||||
+#if defined(QT_THREAD_SUPPORT) && defined(_POSIX_THREAD_SAFE_FUNCTIONS) && !defined(__OpenBSD__)
|
||||
struct passwd mt_pw;
|
||||
char buffer[2048];
|
||||
|
@ -1,25 +1,13 @@
|
||||
$OpenBSD: patch-tools_designer_designer_designer_pro,v 1.2 2003/02/09 19:17:32 espie Exp $
|
||||
--- tools/designer/designer/designer.pro.orig Tue Nov 26 15:39:41 2002
|
||||
+++ tools/designer/designer/designer.pro Sun Feb 9 18:49:53 2003
|
||||
@@ -16,6 +16,11 @@ DEFINES += QT_INTERNAL_ICONVIEW
|
||||
DEFINES += QT_INTERNAL_TABLE
|
||||
table:win32-msvc:DEFINES+=QM_TEMPLATE_EXTERN_TABLE=extern
|
||||
|
||||
+unix {
|
||||
+ QMAKE_CFLAGS += $$QMAKE_CFLAGS_SHLIB
|
||||
+ QMAKE_CXXFLAGS += $$QMAKE_CXXFLAGS_SHLIB
|
||||
+}
|
||||
+
|
||||
include( ../../../src/qt_professional.pri )
|
||||
|
||||
SOURCES += command.cpp \
|
||||
@@ -411,7 +416,8 @@ table {
|
||||
$OpenBSD: patch-tools_designer_designer_designer_pro,v 1.3 2003/04/05 14:45:19 espie Exp $
|
||||
--- tools/designer/designer/designer.pro.orig Sat Mar 22 20:03:18 2003
|
||||
+++ tools/designer/designer/designer.pro Sat Mar 22 20:03:52 2003
|
||||
@@ -416,7 +416,8 @@ table {
|
||||
|
||||
INCLUDEPATH += ../shared ../uilib
|
||||
win32:LIBS += $$QT_BUILD_TREE/lib/qui.lib $$QT_BUILD_TREE/lib/qassistantclient.lib
|
||||
-unix:LIBS += -L$$QT_BUILD_TREE/lib -lqui -lqassistantclient
|
||||
+unix:thread:LIBS += -L$$QT_BUILD_TREE/lib -lqui-mt -lqassistantclient
|
||||
+unix:!thread:LIBS += -L$$QT_BUILD_TREE/lib -lqui -lqassistantclient
|
||||
-unix:LIBS += -L$$QT_BUILD_TREE/lib -lqui $$QT_BUILD_TREE/lib/libqassistantclient.a
|
||||
+unix:!thread:LIBS += -L$$QT_BUILD_TREE/lib -lqui $$QT_BUILD_TREE/lib/libqassistantclient.a
|
||||
+unix:thread:LIBS += -L$$QT_BUILD_TREE/lib -lqui-mt $$QT_BUILD_TREE/lib/libqassistantclient.a
|
||||
|
||||
TRANSLATIONS = designer_de.ts designer_fr.ts
|
||||
|
||||
|
@ -1,12 +1,5 @@
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.7 2003/01/06 06:22:53 espie Exp $
|
||||
lib/libqt.so.3.11
|
||||
lib/libqui.so.1.0
|
||||
lib/qt3/libqt.so.3.11
|
||||
lib/qt3/libqui.so.1.0
|
||||
lib/qt3/plugins/designer/libcppeditor.so
|
||||
lib/qt3/plugins/designer/libdlgplugin.so
|
||||
lib/qt3/plugins/designer/librcplugin.so
|
||||
lib/qt3/plugins/designer/libwizards.so
|
||||
lib/qt3/plugins/imageformats/libqjpeg.so
|
||||
lib/qt3/plugins/imageformats/libqmng.so
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.8 2003/04/05 14:45:19 espie Exp $
|
||||
lib/libqui${FLAVOR_EXT}.so.1.0
|
||||
lib/qt3/libqui${FLAVOR_EXT}.so.1.0
|
||||
DYNLIBDIR(%D/lib)
|
||||
NEWDYNLIBDIR(%D/lib/qt3)
|
||||
|
@ -1,7 +1,12 @@
|
||||
@comment $OpenBSD: PLIST-base,v 1.4 2003/02/06 11:18:09 espie Exp $
|
||||
@comment $OpenBSD: PLIST-base,v 1.5 2003/04/05 14:45:19 espie Exp $
|
||||
@pkgcfl qt3-0.*
|
||||
@pkgcfl qt3-1.0
|
||||
@pkgcfl qt3-1.1
|
||||
include/X11/qt3/jri.h
|
||||
include/X11/qt3/jri_md.h
|
||||
include/X11/qt3/jritypes.h
|
||||
include/X11/qt3/npapi.h
|
||||
include/X11/qt3/npupp.h
|
||||
include/X11/qt3/private/qapplication_p.h
|
||||
include/X11/qt3/private/qcolor_p.h
|
||||
include/X11/qt3/private/qcom_p.h
|
||||
@ -202,11 +207,8 @@ include/X11/qt3/qmime.h
|
||||
include/X11/qt3/qmlined.h
|
||||
include/X11/qt3/qmngio.h
|
||||
include/X11/qt3/qmodules.h
|
||||
include/X11/qt3/qmotif.h
|
||||
include/X11/qt3/qmotifdialog.h
|
||||
include/X11/qt3/qmotifplusstyle.h
|
||||
include/X11/qt3/qmotifstyle.h
|
||||
include/X11/qt3/qmotifwidget.h
|
||||
include/X11/qt3/qmovie.h
|
||||
include/X11/qt3/qmsgbox.h
|
||||
include/X11/qt3/qmultilinedit.h
|
||||
@ -215,6 +217,7 @@ include/X11/qt3/qmutex.h
|
||||
include/X11/qt3/qnamespace.h
|
||||
include/X11/qt3/qnetwork.h
|
||||
include/X11/qt3/qnetworkprotocol.h
|
||||
include/X11/qt3/qnp.h
|
||||
include/X11/qt3/qobjcoll.h
|
||||
include/X11/qt3/qobjdefs.h
|
||||
include/X11/qt3/qobject.h
|
||||
@ -375,11 +378,11 @@ include/X11/qt3/qwindow.h
|
||||
include/X11/qt3/qwindowdefs.h
|
||||
include/X11/qt3/qwindowsstyle.h
|
||||
include/X11/qt3/qwindowsxpstyle.h
|
||||
include/X11/qt3/qwinexport.h
|
||||
include/X11/qt3/qwizard.h
|
||||
include/X11/qt3/qwmatrix.h
|
||||
include/X11/qt3/qworkspace.h
|
||||
include/X11/qt3/qxml.h
|
||||
include/X11/qt3/qxtwidget.h
|
||||
lib/qt3/man/man1/lrelease.1
|
||||
lib/qt3/man/man1/lupdate.1
|
||||
lib/qt3/man/man1/moc3.1
|
||||
@ -592,11 +595,8 @@ lib/qt3/man/man3/QMetaObject.3
|
||||
lib/qt3/man/man3/QMetaProperty.3
|
||||
lib/qt3/man/man3/QMimeSource.3
|
||||
lib/qt3/man/man3/QMimeSourceFactory.3
|
||||
lib/qt3/man/man3/QMotif.3
|
||||
lib/qt3/man/man3/QMotifDialog.3
|
||||
lib/qt3/man/man3/QMotifPlusStyle.3
|
||||
lib/qt3/man/man3/QMotifStyle.3
|
||||
lib/qt3/man/man3/QMotifWidget.3
|
||||
lib/qt3/man/man3/QMouseDriverFactory.3
|
||||
lib/qt3/man/man3/QMouseDriverPlugin.3
|
||||
lib/qt3/man/man3/QMouseEvent.3
|
||||
@ -604,6 +604,10 @@ lib/qt3/man/man3/QMoveEvent.3
|
||||
lib/qt3/man/man3/QMovie.3
|
||||
lib/qt3/man/man3/QMutex.3
|
||||
lib/qt3/man/man3/QMutexLocker.3
|
||||
lib/qt3/man/man3/QNPInstance.3
|
||||
lib/qt3/man/man3/QNPStream.3
|
||||
lib/qt3/man/man3/QNPWidget.3
|
||||
lib/qt3/man/man3/QNPlugin.3
|
||||
lib/qt3/man/man3/QNetworkOperation.3
|
||||
lib/qt3/man/man3/QNetworkProtocol.3
|
||||
lib/qt3/man/man3/QObject.3
|
||||
@ -776,7 +780,6 @@ lib/qt3/man/man3/QXmlNamespaceSupport.3
|
||||
lib/qt3/man/man3/QXmlParseException.3
|
||||
lib/qt3/man/man3/QXmlReader.3
|
||||
lib/qt3/man/man3/QXmlSimpleReader.3
|
||||
lib/qt3/man/man3/QXtWidget.3
|
||||
lib/qt3/man/man3/Qt.3
|
||||
lib/qt3/man/man3/qaccel.3
|
||||
lib/qt3/man/man3/qaccessible.3
|
||||
@ -986,11 +989,8 @@ lib/qt3/man/man3/qmetaobject.3
|
||||
lib/qt3/man/man3/qmetaproperty.3
|
||||
lib/qt3/man/man3/qmimesource.3
|
||||
lib/qt3/man/man3/qmimesourcefactory.3
|
||||
lib/qt3/man/man3/qmotif.3
|
||||
lib/qt3/man/man3/qmotifdialog.3
|
||||
lib/qt3/man/man3/qmotifplusstyle.3
|
||||
lib/qt3/man/man3/qmotifstyle.3
|
||||
lib/qt3/man/man3/qmotifwidget.3
|
||||
lib/qt3/man/man3/qmousedriverfactory.3
|
||||
lib/qt3/man/man3/qmousedriverplugin.3
|
||||
lib/qt3/man/man3/qmouseevent.3
|
||||
@ -1000,6 +1000,10 @@ lib/qt3/man/man3/qmutex.3
|
||||
lib/qt3/man/man3/qmutexlocker.3
|
||||
lib/qt3/man/man3/qnetworkoperation.3
|
||||
lib/qt3/man/man3/qnetworkprotocol.3
|
||||
lib/qt3/man/man3/qnpinstance.3
|
||||
lib/qt3/man/man3/qnplugin.3
|
||||
lib/qt3/man/man3/qnpstream.3
|
||||
lib/qt3/man/man3/qnpwidget.3
|
||||
lib/qt3/man/man3/qobject.3
|
||||
lib/qt3/man/man3/qobjectcleanuphandler.3
|
||||
lib/qt3/man/man3/qobjectlist.3
|
||||
@ -1171,7 +1175,6 @@ lib/qt3/man/man3/qxmlnamespacesupport.3
|
||||
lib/qt3/man/man3/qxmlparseexception.3
|
||||
lib/qt3/man/man3/qxmlreader.3
|
||||
lib/qt3/man/man3/qxmlsimplereader.3
|
||||
lib/qt3/man/man3/qxtwidget.3
|
||||
lib/qt3/mkspecs/aix-g++/qmake.conf
|
||||
lib/qt3/mkspecs/aix-g++/qplatformdefs.h
|
||||
lib/qt3/mkspecs/aix-xlc-64/qmake.conf
|
||||
@ -1197,6 +1200,8 @@ lib/qt3/mkspecs/hpux-acc/qmake.conf
|
||||
lib/qt3/mkspecs/hpux-acc/qplatformdefs.h
|
||||
lib/qt3/mkspecs/hpux-cc/qmake.conf
|
||||
lib/qt3/mkspecs/hpux-cc/qplatformdefs.h
|
||||
lib/qt3/mkspecs/hpux-g++-64/qmake.conf
|
||||
lib/qt3/mkspecs/hpux-g++-64/qplatformdefs.h
|
||||
lib/qt3/mkspecs/hpux-g++/qmake.conf
|
||||
lib/qt3/mkspecs/hpux-g++/qplatformdefs.h
|
||||
lib/qt3/mkspecs/hurd-g++/qmake.conf
|
||||
@ -1219,6 +1224,8 @@ lib/qt3/mkspecs/linux-kcc/qmake.conf
|
||||
lib/qt3/mkspecs/linux-kcc/qplatformdefs.h
|
||||
lib/qt3/mkspecs/linux-pgcc/qmake.conf
|
||||
lib/qt3/mkspecs/linux-pgcc/qplatformdefs.h
|
||||
lib/qt3/mkspecs/lynxos-g++/qmake.conf
|
||||
lib/qt3/mkspecs/lynxos-g++/qplatformdefs.h
|
||||
lib/qt3/mkspecs/mac9-mwerks/mwerksapp.xml
|
||||
lib/qt3/mkspecs/mac9-mwerks/mwerkslib.xml
|
||||
lib/qt3/mkspecs/mac9-mwerks/qmake.conf
|
||||
@ -1261,7 +1268,6 @@ lib/qt3/mkspecs/tru64-cxx/qmake.conf
|
||||
lib/qt3/mkspecs/tru64-cxx/qplatformdefs.h
|
||||
lib/qt3/mkspecs/tru64-g++/qmake.conf
|
||||
lib/qt3/mkspecs/tru64-g++/qplatformdefs.h
|
||||
lib/qt3/mkspecs/ultrix-g++/qmake.conf
|
||||
lib/qt3/mkspecs/unixware-cc/qmake.conf
|
||||
lib/qt3/mkspecs/unixware-cc/qplatformdefs.h
|
||||
lib/qt3/mkspecs/unixware-g++/qmake.conf
|
||||
@ -1269,6 +1275,7 @@ lib/qt3/mkspecs/unixware-g++/qplatformdefs.h
|
||||
lib/qt3/mkspecs/win32-borland/qmake.conf
|
||||
lib/qt3/mkspecs/win32-borland/qplatformdefs.h
|
||||
lib/qt3/mkspecs/win32-g++/qmake.conf
|
||||
lib/qt3/mkspecs/win32-g++/qplatformdefs.h
|
||||
lib/qt3/mkspecs/win32-icc/qmake.conf
|
||||
lib/qt3/mkspecs/win32-icc/qplatformdefs.h
|
||||
lib/qt3/mkspecs/win32-icc/win32app.dsp
|
||||
@ -1281,7 +1288,6 @@ lib/qt3/mkspecs/win32-msvc/qplatformdefs.h
|
||||
lib/qt3/mkspecs/win32-msvc/win32app.dsp
|
||||
lib/qt3/mkspecs/win32-msvc/win32dll.dsp
|
||||
lib/qt3/mkspecs/win32-msvc/win32lib.dsp
|
||||
lib/qt3/mkspecs/win32-visage/qmake.conf
|
||||
lib/qt3/mkspecs/win32-watcom/qmake.conf
|
||||
share/doc/qt3/FAQ
|
||||
share/doc/qt3/LICENSE.GPL
|
||||
@ -1289,7 +1295,6 @@ share/doc/qt3/README
|
||||
share/doc/qt3/README.QT
|
||||
share/doc/qt3/changes-3.${VERSION}
|
||||
@dirrm lib/qt3/mkspecs/win32-watcom
|
||||
@dirrm lib/qt3/mkspecs/win32-visage
|
||||
@dirrm lib/qt3/mkspecs/win32-msvc.net
|
||||
@dirrm lib/qt3/mkspecs/win32-msvc
|
||||
@dirrm lib/qt3/mkspecs/win32-icc
|
||||
@ -1297,7 +1302,6 @@ share/doc/qt3/changes-3.${VERSION}
|
||||
@dirrm lib/qt3/mkspecs/win32-borland
|
||||
@dirrm lib/qt3/mkspecs/unixware-g++
|
||||
@dirrm lib/qt3/mkspecs/unixware-cc
|
||||
@dirrm lib/qt3/mkspecs/ultrix-g++
|
||||
@dirrm lib/qt3/mkspecs/tru64-g++
|
||||
@dirrm lib/qt3/mkspecs/tru64-cxx
|
||||
@dirrm lib/qt3/mkspecs/solaris-kcc
|
||||
@ -1316,6 +1320,7 @@ share/doc/qt3/changes-3.${VERSION}
|
||||
@dirrm lib/qt3/mkspecs/macx-mwerks
|
||||
@dirrm lib/qt3/mkspecs/macx-g++
|
||||
@dirrm lib/qt3/mkspecs/mac9-mwerks
|
||||
@dirrm lib/qt3/mkspecs/lynxos-g++
|
||||
@dirrm lib/qt3/mkspecs/linux-pgcc
|
||||
@dirrm lib/qt3/mkspecs/linux-kcc
|
||||
@dirrm lib/qt3/mkspecs/linux-icc
|
||||
@ -1326,6 +1331,7 @@ share/doc/qt3/changes-3.${VERSION}
|
||||
@dirrm lib/qt3/mkspecs/irix-cc-64
|
||||
@dirrm lib/qt3/mkspecs/irix-cc
|
||||
@dirrm lib/qt3/mkspecs/hurd-g++
|
||||
@dirrm lib/qt3/mkspecs/hpux-g++-64
|
||||
@dirrm lib/qt3/mkspecs/hpux-g++
|
||||
@dirrm lib/qt3/mkspecs/hpux-cc
|
||||
@dirrm lib/qt3/mkspecs/hpux-acc-o64
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST-examples,v 1.4 2002/11/23 18:52:22 espie Exp $
|
||||
@comment $OpenBSD: PLIST-examples,v 1.5 2003/04/05 14:45:19 espie Exp $
|
||||
lib/qt3/examples/Makefile
|
||||
lib/qt3/examples/README
|
||||
lib/qt3/examples/aclock/Makefile
|
||||
@ -1060,6 +1060,7 @@ lib/qt3/examples/tablet/canvas.h
|
||||
lib/qt3/examples/tablet/main.cpp
|
||||
lib/qt3/examples/tablet/scribble.cpp
|
||||
lib/qt3/examples/tablet/scribble.h
|
||||
lib/qt3/examples/tablet/tablet
|
||||
lib/qt3/examples/tablet/tablet.doc
|
||||
lib/qt3/examples/tablet/tablet.pro
|
||||
lib/qt3/examples/tablet/tabletstats.cpp
|
||||
|
@ -1,12 +1,9 @@
|
||||
@comment $OpenBSD: PLIST-html,v 1.7 2002/12/29 16:13:28 espie Exp $
|
||||
@comment $OpenBSD: PLIST-html,v 1.8 2003/04/05 14:45:20 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.png
|
||||
share/doc/qt3/html/addmainwidg.png
|
||||
share/doc/qt3/html/addmenuitem.png
|
||||
share/doc/qt3/html/addressbook-example.html
|
||||
share/doc/qt3/html/advanced.html
|
||||
share/doc/qt3/html/annotated.html
|
||||
@ -31,7 +28,6 @@ share/doc/qt3/html/brush-styles.png
|
||||
share/doc/qt3/html/bughowto.html
|
||||
share/doc/qt3/html/buttongroup-w.png
|
||||
share/doc/qt3/html/buttongroups-example.html
|
||||
share/doc/qt3/html/buttons.png
|
||||
share/doc/qt3/html/buyhowto.html
|
||||
share/doc/qt3/html/canvas-chart-example.html
|
||||
share/doc/qt3/html/canvas-example.html
|
||||
@ -61,11 +57,8 @@ share/doc/qt3/html/classchart.html
|
||||
share/doc/qt3/html/classes.html
|
||||
share/doc/qt3/html/clientserver-example.html
|
||||
share/doc/qt3/html/collection.html
|
||||
share/doc/qt3/html/coloriconv.png
|
||||
share/doc/qt3/html/colortable.png
|
||||
share/doc/qt3/html/commonproblems.html
|
||||
share/doc/qt3/html/concrete-connections.png
|
||||
share/doc/qt3/html/containers.png
|
||||
share/doc/qt3/html/coordsys.html
|
||||
share/doc/qt3/html/coordsys.png
|
||||
share/doc/qt3/html/credits.html
|
||||
@ -76,7 +69,6 @@ share/doc/qt3/html/customlayout.html
|
||||
share/doc/qt3/html/customstyles.html
|
||||
share/doc/qt3/html/database-connections.png
|
||||
share/doc/qt3/html/database.html
|
||||
share/doc/qt3/html/database.png
|
||||
share/doc/qt3/html/datastreamformat.html
|
||||
share/doc/qt3/html/datetimewidgets.png
|
||||
share/doc/qt3/html/dclock-example.html
|
||||
@ -122,29 +114,21 @@ share/doc/qt3/html/dialog3layout.png
|
||||
share/doc/qt3/html/dialog3sample.png
|
||||
share/doc/qt3/html/dialogs.html
|
||||
share/doc/qt3/html/dirview-example.html
|
||||
share/doc/qt3/html/display.png
|
||||
share/doc/qt3/html/distributingqt.html
|
||||
share/doc/qt3/html/dnd.html
|
||||
share/doc/qt3/html/doneandnext.png
|
||||
share/doc/qt3/html/dragaction.png
|
||||
share/doc/qt3/html/draganddrop.html
|
||||
share/doc/qt3/html/dragdrop-example.html
|
||||
share/doc/qt3/html/drawdemo-example.html
|
||||
share/doc/qt3/html/drawlines-example.html
|
||||
share/doc/qt3/html/edit-dbtable-dialog.png
|
||||
share/doc/qt3/html/editconn.png
|
||||
share/doc/qt3/html/editconn1.png
|
||||
share/doc/qt3/html/editconn2.png
|
||||
share/doc/qt3/html/editconn3.png
|
||||
share/doc/qt3/html/editcopy.png
|
||||
share/doc/qt3/html/editcut.png
|
||||
share/doc/qt3/html/editfind.png
|
||||
share/doc/qt3/html/editfunc.png
|
||||
share/doc/qt3/html/editions.html
|
||||
share/doc/qt3/html/editpaste.png
|
||||
share/doc/qt3/html/editredo.png
|
||||
share/doc/qt3/html/editundo.png
|
||||
share/doc/qt3/html/editvar.png
|
||||
share/doc/qt3/html/emb-accel.html
|
||||
share/doc/qt3/html/emb-charinput.html
|
||||
share/doc/qt3/html/emb-classes.html
|
||||
@ -173,8 +157,6 @@ share/doc/qt3/html/filesave.png
|
||||
share/doc/qt3/html/finddialog.png
|
||||
share/doc/qt3/html/focus.html
|
||||
share/doc/qt3/html/forever-example.html
|
||||
share/doc/qt3/html/formsettings.png
|
||||
share/doc/qt3/html/forwdec.png
|
||||
share/doc/qt3/html/frames.png
|
||||
share/doc/qt3/html/ftpclient-example.html
|
||||
share/doc/qt3/html/functions.html
|
||||
@ -182,6 +164,8 @@ share/doc/qt3/html/geomanagement.html
|
||||
share/doc/qt3/html/geometry.html
|
||||
share/doc/qt3/html/geometry.png
|
||||
share/doc/qt3/html/gpl.html
|
||||
share/doc/qt3/html/graph.g1n
|
||||
share/doc/qt3/html/grapher-nsplugin-example.html
|
||||
share/doc/qt3/html/graphics.html
|
||||
share/doc/qt3/html/gridlayout.png
|
||||
share/doc/qt3/html/groupbox-w.png
|
||||
@ -203,19 +187,14 @@ share/doc/qt3/html/iconview-simple_dd-main-cpp.html
|
||||
share/doc/qt3/html/iconview-simple_dd-main-h.html
|
||||
share/doc/qt3/html/iconview.html
|
||||
share/doc/qt3/html/images.html
|
||||
share/doc/qt3/html/incimp.png
|
||||
share/doc/qt3/html/index
|
||||
share/doc/qt3/html/index.html
|
||||
share/doc/qt3/html/input.png
|
||||
share/doc/qt3/html/inputdialogs.png
|
||||
share/doc/qt3/html/install-win.html
|
||||
share/doc/qt3/html/install-x11.html
|
||||
share/doc/qt3/html/installation.html
|
||||
share/doc/qt3/html/io.html
|
||||
share/doc/qt3/html/keyfeatures30.html
|
||||
share/doc/qt3/html/laycoloriconv.png
|
||||
share/doc/qt3/html/laycolortable.png
|
||||
share/doc/qt3/html/laymainwidg.png
|
||||
share/doc/qt3/html/layout-example.html
|
||||
share/doc/qt3/html/layout.html
|
||||
share/doc/qt3/html/layout1.png
|
||||
@ -248,25 +227,46 @@ share/doc/qt3/html/metaobjects.html
|
||||
share/doc/qt3/html/misc.html
|
||||
share/doc/qt3/html/moc.html
|
||||
share/doc/qt3/html/modules.html
|
||||
share/doc/qt3/html/motif-customwidget-example.html
|
||||
share/doc/qt3/html/motif-dialog-example.html
|
||||
share/doc/qt3/html/motif-examples.html
|
||||
share/doc/qt3/html/motif-extension.html
|
||||
share/doc/qt3/html/movies-example.html
|
||||
share/doc/qt3/html/multimedia.html
|
||||
share/doc/qt3/html/mwwiz.png
|
||||
share/doc/qt3/html/mwwiz2.png
|
||||
share/doc/qt3/html/mw-actiongroup.png
|
||||
share/doc/qt3/html/mw-addmainwidg.png
|
||||
share/doc/qt3/html/mw-addmenuitem.png
|
||||
share/doc/qt3/html/mw-coloriconv.png
|
||||
share/doc/qt3/html/mw-colortable.png
|
||||
share/doc/qt3/html/mw-colortool1.png
|
||||
share/doc/qt3/html/mw-colortool2.png
|
||||
share/doc/qt3/html/mw-conn1.png
|
||||
share/doc/qt3/html/mw-conn2.png
|
||||
share/doc/qt3/html/mw-conn3.png
|
||||
share/doc/qt3/html/mw-conn4.png
|
||||
share/doc/qt3/html/mw-dragaction.png
|
||||
share/doc/qt3/html/mw-editforw.png
|
||||
share/doc/qt3/html/mw-editfunc.png
|
||||
share/doc/qt3/html/mw-editincimp.png
|
||||
share/doc/qt3/html/mw-editvar.png
|
||||
share/doc/qt3/html/mw-laycoloriconv.png
|
||||
share/doc/qt3/html/mw-laycolortable.png
|
||||
share/doc/qt3/html/mw-laymainwidg.png
|
||||
share/doc/qt3/html/mw-menuwiz.png
|
||||
share/doc/qt3/html/mw-newfile.png
|
||||
share/doc/qt3/html/mw-objexplor.png
|
||||
share/doc/qt3/html/mw-previewform.png
|
||||
share/doc/qt3/html/mw-projset.png
|
||||
share/doc/qt3/html/mw-propedit.png
|
||||
share/doc/qt3/html/mw-settoolwiz.png
|
||||
share/doc/qt3/html/mw-startdesign.png
|
||||
share/doc/qt3/html/mw-toolbarpits.png
|
||||
share/doc/qt3/html/netscape-plugin.html
|
||||
share/doc/qt3/html/network-examples.html
|
||||
share/doc/qt3/html/network.html
|
||||
share/doc/qt3/html/networkprotocol-example.html
|
||||
share/doc/qt3/html/newfiledialog.png
|
||||
share/doc/qt3/html/newopendialog.png
|
||||
share/doc/qt3/html/next.png
|
||||
share/doc/qt3/html/nextunfinished.png
|
||||
share/doc/qt3/html/nsplugin-examples.html
|
||||
share/doc/qt3/html/object.html
|
||||
share/doc/qt3/html/objectmodel.html
|
||||
share/doc/qt3/html/objecttrees.html
|
||||
share/doc/qt3/html/objexplor.png
|
||||
share/doc/qt3/html/opengl-box-example.html
|
||||
share/doc/qt3/html/opengl-examples.html
|
||||
share/doc/qt3/html/opengl-gear-example.html
|
||||
@ -295,14 +295,11 @@ share/doc/qt3/html/popup-example.html
|
||||
share/doc/qt3/html/porting.html
|
||||
share/doc/qt3/html/porting2.html
|
||||
share/doc/qt3/html/prev.png
|
||||
share/doc/qt3/html/previewform.png
|
||||
share/doc/qt3/html/prevunfinished.png
|
||||
share/doc/qt3/html/primes.html
|
||||
share/doc/qt3/html/process-example.html
|
||||
share/doc/qt3/html/progress-example.html
|
||||
share/doc/qt3/html/progressbar-example.html
|
||||
share/doc/qt3/html/projset.png
|
||||
share/doc/qt3/html/propedit.png
|
||||
share/doc/qt3/html/properties.html
|
||||
share/doc/qt3/html/propertydocs
|
||||
share/doc/qt3/html/propertyindex
|
||||
@ -482,21 +479,7 @@ share/doc/qt3/html/qcustomevent-members.html
|
||||
share/doc/qt3/html/qcustomevent.html
|
||||
share/doc/qt3/html/qcustommenuitem-members.html
|
||||
share/doc/qt3/html/qcustommenuitem.html
|
||||
share/doc/qt3/html/qd-buttonstoolbuttons3.png
|
||||
share/doc/qt3/html/qd-chooseanimage.png
|
||||
share/doc/qt3/html/qd-chooseapixmap.png
|
||||
share/doc/qt3/html/qd-chooseimages.png
|
||||
share/doc/qt3/html/qd-colortool-name.png
|
||||
share/doc/qt3/html/qd-colortool1.png
|
||||
share/doc/qt3/html/qd-colortool2.png
|
||||
share/doc/qt3/html/qd-configmainfile.png
|
||||
share/doc/qt3/html/qd-containertoolbuttons3.png
|
||||
share/doc/qt3/html/qd-createtemplate.png
|
||||
share/doc/qt3/html/qd-customwidgettoolbutton.png
|
||||
share/doc/qt3/html/qd-custwiddeftab.png
|
||||
share/doc/qt3/html/qd-custwidproptab.png
|
||||
share/doc/qt3/html/qd-custwidslotstab.png
|
||||
share/doc/qt3/html/qd-databasetoolbuttons3.png
|
||||
share/doc/qt3/html/qd-databrowserwzd.png
|
||||
share/doc/qt3/html/qd-databrowserwzdpage2.png
|
||||
share/doc/qt3/html/qd-databrowserwzdpage3.png
|
||||
@ -512,66 +495,10 @@ share/doc/qt3/html/qd-dataviewwzd.png
|
||||
share/doc/qt3/html/qd-dataviewwzdpage2.png
|
||||
share/doc/qt3/html/qd-dataviewwzdpage3.png
|
||||
share/doc/qt3/html/qd-dataviewwzdpage4.png
|
||||
share/doc/qt3/html/qd-displaytoolbuttons3.png
|
||||
share/doc/qt3/html/qd-editclassvariables.png
|
||||
share/doc/qt3/html/qd-editcustwidsigtab.png
|
||||
share/doc/qt3/html/qd-editforwarddeclarations.png
|
||||
share/doc/qt3/html/qd-editiconview.png
|
||||
share/doc/qt3/html/qd-editincludesindeclaration.png
|
||||
share/doc/qt3/html/qd-editincludesinimplementation.png
|
||||
share/doc/qt3/html/qd-editlistbox.png
|
||||
share/doc/qt3/html/qd-editlistview.png
|
||||
share/doc/qt3/html/qd-editlistviewcolumns.png
|
||||
share/doc/qt3/html/qd-editmenu1.png
|
||||
share/doc/qt3/html/qd-editpalettedialog.png
|
||||
share/doc/qt3/html/qd-editpreferencesc++.png
|
||||
share/doc/qt3/html/qd-editpreferencesgeneral.png
|
||||
share/doc/qt3/html/qd-edittablecolumns.png
|
||||
share/doc/qt3/html/qd-edittablerows.png
|
||||
share/doc/qt3/html/qd-edittoolbuttons3.png
|
||||
share/doc/qt3/html/qd-filemenu1.png
|
||||
share/doc/qt3/html/qd-filenew2.png
|
||||
share/doc/qt3/html/qd-fileopen.png
|
||||
share/doc/qt3/html/qd-fileoverviewwindow.png
|
||||
share/doc/qt3/html/qd-filesaveasdialog.png
|
||||
share/doc/qt3/html/qd-filesaveformasdialog.png
|
||||
share/doc/qt3/html/qd-filesaveformdialog.png
|
||||
share/doc/qt3/html/qd-filesaveprojectsettingsdialog.png
|
||||
share/doc/qt3/html/qd-filetoolbuttons3.png
|
||||
share/doc/qt3/html/qd-finddirectorydialog.png
|
||||
share/doc/qt3/html/qd-helpmenu.png
|
||||
share/doc/qt3/html/qd-helptoolbuttons3.png
|
||||
share/doc/qt3/html/qd-inputtoolbuttons3.png
|
||||
share/doc/qt3/html/qd-layoutmenu1.png
|
||||
share/doc/qt3/html/qd-layouttoolbuttons3.png
|
||||
share/doc/qt3/html/qd-mainwinwzd.png
|
||||
share/doc/qt3/html/qd-mainwinwzdpage2.png
|
||||
share/doc/qt3/html/qd-objexpwindowwidgettab.png
|
||||
share/doc/qt3/html/qd-objexpwinsourcetab.png
|
||||
share/doc/qt3/html/qd-pagetitle.png
|
||||
share/doc/qt3/html/qd-previewmenu.png
|
||||
share/doc/qt3/html/qd-projectaddfile.png
|
||||
share/doc/qt3/html/qd-projectdbaseconnections.png
|
||||
share/doc/qt3/html/qd-projectimages.png
|
||||
share/doc/qt3/html/qd-projectmenu.png
|
||||
share/doc/qt3/html/qd-projectsettingsc++tabdialog.png
|
||||
share/doc/qt3/html/qd-projectsettingsdialog.png
|
||||
share/doc/qt3/html/qd-propedsigtab.png
|
||||
share/doc/qt3/html/qd-propedwinproptab.png
|
||||
share/doc/qt3/html/qd-searchfindtextdialog.png
|
||||
share/doc/qt3/html/qd-searchgotoline.png
|
||||
share/doc/qt3/html/qd-searchmenu.png
|
||||
share/doc/qt3/html/qd-searchreplacetext.png
|
||||
share/doc/qt3/html/qd-searchttoolbuttons3.png
|
||||
share/doc/qt3/html/qd-selectcolordialog.png
|
||||
share/doc/qt3/html/qd-selectfontdialog.png
|
||||
share/doc/qt3/html/qd-textdialog.png
|
||||
share/doc/qt3/html/qd-title.png
|
||||
share/doc/qt3/html/qd-toolsmenu.png
|
||||
share/doc/qt3/html/qd-toolstoolbuttons4.png
|
||||
share/doc/qt3/html/qd-tunepalettedialog.png
|
||||
share/doc/qt3/html/qd-viewstoolbuttons5.png
|
||||
share/doc/qt3/html/qd-windowmenu1.png
|
||||
share/doc/qt3/html/qd-preface.png
|
||||
share/doc/qt3/html/qdatabrowser-h.html
|
||||
share/doc/qt3/html/qdatabrowser-members.html
|
||||
share/doc/qt3/html/qdatabrowser.html
|
||||
@ -1013,21 +940,12 @@ share/doc/qt3/html/qmimesourcefactory-members.html
|
||||
share/doc/qt3/html/qmimesourcefactory.html
|
||||
share/doc/qt3/html/qmlined-m.png
|
||||
share/doc/qt3/html/qmlined-w.png
|
||||
share/doc/qt3/html/qmotif-h.html
|
||||
share/doc/qt3/html/qmotif-members.html
|
||||
share/doc/qt3/html/qmotif.html
|
||||
share/doc/qt3/html/qmotifdialog-h.html
|
||||
share/doc/qt3/html/qmotifdialog-members.html
|
||||
share/doc/qt3/html/qmotifdialog.html
|
||||
share/doc/qt3/html/qmotifplusstyle-h.html
|
||||
share/doc/qt3/html/qmotifplusstyle-members.html
|
||||
share/doc/qt3/html/qmotifplusstyle.html
|
||||
share/doc/qt3/html/qmotifstyle-h.html
|
||||
share/doc/qt3/html/qmotifstyle-members.html
|
||||
share/doc/qt3/html/qmotifstyle.html
|
||||
share/doc/qt3/html/qmotifwidget-h.html
|
||||
share/doc/qt3/html/qmotifwidget-members.html
|
||||
share/doc/qt3/html/qmotifwidget.html
|
||||
share/doc/qt3/html/qmouse_qws-h.html
|
||||
share/doc/qt3/html/qmousedriverfactory-members.html
|
||||
share/doc/qt3/html/qmousedriverfactory.html
|
||||
@ -1060,6 +978,15 @@ share/doc/qt3/html/qnetworkoperation.html
|
||||
share/doc/qt3/html/qnetworkprotocol-h.html
|
||||
share/doc/qt3/html/qnetworkprotocol-members.html
|
||||
share/doc/qt3/html/qnetworkprotocol.html
|
||||
share/doc/qt3/html/qnp-h.html
|
||||
share/doc/qt3/html/qnpinstance-members.html
|
||||
share/doc/qt3/html/qnpinstance.html
|
||||
share/doc/qt3/html/qnplugin-members.html
|
||||
share/doc/qt3/html/qnplugin.html
|
||||
share/doc/qt3/html/qnpstream-members.html
|
||||
share/doc/qt3/html/qnpstream.html
|
||||
share/doc/qt3/html/qnpwidget-members.html
|
||||
share/doc/qt3/html/qnpwidget.html
|
||||
share/doc/qt3/html/qobject-h.html
|
||||
share/doc/qt3/html/qobject-members.html
|
||||
share/doc/qt3/html/qobject.html
|
||||
@ -1184,6 +1111,20 @@ share/doc/qt3/html/qregion.html
|
||||
share/doc/qt3/html/qresizeevent-members.html
|
||||
share/doc/qt3/html/qresizeevent.html
|
||||
share/doc/qt3/html/qrtlcodec-h.html
|
||||
share/doc/qt3/html/qs-addwidg.png
|
||||
share/doc/qt3/html/qs-editconn1.png
|
||||
share/doc/qt3/html/qs-editconn2.png
|
||||
share/doc/qt3/html/qs-editfunc.png
|
||||
share/doc/qt3/html/qs-editlistbox1.png
|
||||
share/doc/qt3/html/qs-laygrid.png
|
||||
share/doc/qt3/html/qs-layhoriz.png
|
||||
share/doc/qt3/html/qs-layvert.png
|
||||
share/doc/qt3/html/qs-newdlg.png
|
||||
share/doc/qt3/html/qs-projset.png
|
||||
share/doc/qt3/html/qs-pushbutt.png
|
||||
share/doc/qt3/html/qs-spacers.png
|
||||
share/doc/qt3/html/qs-taborder.png
|
||||
share/doc/qt3/html/qs-txtlbl.png
|
||||
share/doc/qt3/html/qscrbar-m.png
|
||||
share/doc/qt3/html/qscrbar-w.png
|
||||
share/doc/qt3/html/qscreen-members.html
|
||||
@ -1244,6 +1185,7 @@ share/doc/qt3/html/qslider-m.png
|
||||
share/doc/qt3/html/qslider-members.html
|
||||
share/doc/qt3/html/qslider-w.png
|
||||
share/doc/qt3/html/qslider.html
|
||||
share/doc/qt3/html/qsmetric.png
|
||||
share/doc/qt3/html/qsocket-h.html
|
||||
share/doc/qt3/html/qsocket-members.html
|
||||
share/doc/qt3/html/qsocket.html
|
||||
@ -1583,15 +1525,76 @@ share/doc/qt3/html/qxmlreader-members.html
|
||||
share/doc/qt3/html/qxmlreader.html
|
||||
share/doc/qt3/html/qxmlsimplereader-members.html
|
||||
share/doc/qt3/html/qxmlsimplereader.html
|
||||
share/doc/qt3/html/qxtwidget-h.html
|
||||
share/doc/qt3/html/qxtwidget-members.html
|
||||
share/doc/qt3/html/qxtwidget.html
|
||||
share/doc/qt3/html/rangecontrols-example.html
|
||||
share/doc/qt3/html/rd-add.png
|
||||
share/doc/qt3/html/rd-chooseanimage.png
|
||||
share/doc/qt3/html/rd-chooseapixmap.png
|
||||
share/doc/qt3/html/rd-configmf.png
|
||||
share/doc/qt3/html/rd-configtb.png
|
||||
share/doc/qt3/html/rd-cwidgdef.png
|
||||
share/doc/qt3/html/rd-cwidgprop.png
|
||||
share/doc/qt3/html/rd-cwidgsig.png
|
||||
share/doc/qt3/html/rd-cwidgslot.png
|
||||
share/doc/qt3/html/rd-dbconn.png
|
||||
share/doc/qt3/html/rd-ediconview.png
|
||||
share/doc/qt3/html/rd-editincdec.png
|
||||
share/doc/qt3/html/rd-edittext1.png
|
||||
share/doc/qt3/html/rd-edittext2.png
|
||||
share/doc/qt3/html/rd-edlistbox.png
|
||||
share/doc/qt3/html/rd-edlistview.png
|
||||
share/doc/qt3/html/rd-edlistview2.png
|
||||
share/doc/qt3/html/rd-edpalette.png
|
||||
share/doc/qt3/html/rd-edtablecol.png
|
||||
share/doc/qt3/html/rd-edtablerow.png
|
||||
share/doc/qt3/html/rd-find.png
|
||||
share/doc/qt3/html/rd-formset.png
|
||||
share/doc/qt3/html/rd-goto.png
|
||||
share/doc/qt3/html/rd-image.png
|
||||
share/doc/qt3/html/rd-open.png
|
||||
share/doc/qt3/html/rd-pagetitle.png
|
||||
share/doc/qt3/html/rd-prefedit1.png
|
||||
share/doc/qt3/html/rd-prefgen1.png
|
||||
share/doc/qt3/html/rd-projset.png
|
||||
share/doc/qt3/html/rd-projset2.png
|
||||
share/doc/qt3/html/rd-replace.png
|
||||
share/doc/qt3/html/rd-saveas.png
|
||||
share/doc/qt3/html/rd-saveform.png
|
||||
share/doc/qt3/html/rd-saveformas.png
|
||||
share/doc/qt3/html/rd-saveprojset.png
|
||||
share/doc/qt3/html/rd-selcolor.png
|
||||
share/doc/qt3/html/rd-selfont.png
|
||||
share/doc/qt3/html/rd-startdesigntab2.png
|
||||
share/doc/qt3/html/rd-template.png
|
||||
share/doc/qt3/html/rd-text.png
|
||||
share/doc/qt3/html/rd-title.png
|
||||
share/doc/qt3/html/rd-tunepalette.png
|
||||
share/doc/qt3/html/removed20.html
|
||||
share/doc/qt3/html/richtext-example.html
|
||||
share/doc/qt3/html/rintersect.png
|
||||
share/doc/qt3/html/rmo-editmenu.png
|
||||
share/doc/qt3/html/rmo-filemenu.png
|
||||
share/doc/qt3/html/rmo-helpmenu.png
|
||||
share/doc/qt3/html/rmo-layoutmenu.png
|
||||
share/doc/qt3/html/rmo-previewmenu.png
|
||||
share/doc/qt3/html/rmo-projectmenu.png
|
||||
share/doc/qt3/html/rmo-searchmenu.png
|
||||
share/doc/qt3/html/rmo-toolsmenu.png
|
||||
share/doc/qt3/html/rmo-windowmenu.png
|
||||
share/doc/qt3/html/rot-example.html
|
||||
share/doc/qt3/html/rsubtract.png
|
||||
share/doc/qt3/html/rtb-edit.png
|
||||
share/doc/qt3/html/rtb-file.png
|
||||
share/doc/qt3/html/rtb-layout.png
|
||||
share/doc/qt3/html/rtb-search.png
|
||||
share/doc/qt3/html/rtb-tbbuttons.png
|
||||
share/doc/qt3/html/rtb-tbcontain.png
|
||||
share/doc/qt3/html/rtb-tbcustom.png
|
||||
share/doc/qt3/html/rtb-tbdatabase.png
|
||||
share/doc/qt3/html/rtb-tbdisplay.png
|
||||
share/doc/qt3/html/rtb-tbinput.png
|
||||
share/doc/qt3/html/rtb-tbviews.png
|
||||
share/doc/qt3/html/rtb-toolbox.png
|
||||
share/doc/qt3/html/rtb-tools.png
|
||||
share/doc/qt3/html/runion.png
|
||||
share/doc/qt3/html/rxor.png
|
||||
share/doc/qt3/html/scaling.png
|
||||
@ -1732,11 +1735,10 @@ share/doc/qt3/html/timers.html
|
||||
share/doc/qt3/html/titleindex
|
||||
share/doc/qt3/html/toggleaction-example.html
|
||||
share/doc/qt3/html/toolbar.png
|
||||
share/doc/qt3/html/toolbarpits.png
|
||||
share/doc/qt3/html/toolbox.png
|
||||
share/doc/qt3/html/tools-list.html
|
||||
share/doc/qt3/html/tools.html
|
||||
share/doc/qt3/html/tooltip-example.html
|
||||
share/doc/qt3/html/trivial-nsplugin-example.html
|
||||
share/doc/qt3/html/troll.html
|
||||
share/doc/qt3/html/tt1_en.png
|
||||
share/doc/qt3/html/tt1_la.png
|
||||
@ -1782,11 +1784,14 @@ share/doc/qt3/html/unsmooth.png
|
||||
share/doc/qt3/html/validateaccelerators.png
|
||||
share/doc/qt3/html/validatephrases.png
|
||||
share/doc/qt3/html/validatepunctuation.png
|
||||
share/doc/qt3/html/vieweditconn.png
|
||||
share/doc/qt3/html/views.png
|
||||
share/doc/qt3/html/whatsthis
|
||||
share/doc/qt3/html/whatsthis.png
|
||||
share/doc/qt3/html/widgets-example.html
|
||||
share/doc/qt3/html/win-objexplor1.png
|
||||
share/doc/qt3/html/win-objexplor2.png
|
||||
share/doc/qt3/html/win-projoverview.png
|
||||
share/doc/qt3/html/win-propedit1.png
|
||||
share/doc/qt3/html/win-propedit2.png
|
||||
share/doc/qt3/html/winsystem.html
|
||||
share/doc/qt3/html/wizard-example.html
|
||||
share/doc/qt3/html/wizard-wizard-cpp.html
|
||||
|
@ -1,46 +1,46 @@
|
||||
@comment $OpenBSD: PLIST-mt,v 1.6 2003/02/09 19:17:33 espie Exp $
|
||||
bin/assistant-mt
|
||||
bin/designer3-mt
|
||||
bin/findtr3-mt
|
||||
bin/linguist-mt
|
||||
bin/lrelease-mt
|
||||
bin/lupdate-mt
|
||||
bin/moc3-mt
|
||||
bin/qm2ts-mt
|
||||
bin/qmake-mt
|
||||
bin/qt20fix3-mt
|
||||
bin/qtconfig-mt
|
||||
bin/qtrename1403-mt
|
||||
bin/uic3-mt
|
||||
lib/qt3/bin-mt/assistant
|
||||
lib/qt3/bin-mt/designer
|
||||
lib/qt3/bin-mt/findtr
|
||||
lib/qt3/bin-mt/linguist
|
||||
lib/qt3/bin-mt/lrelease
|
||||
lib/qt3/bin-mt/lupdate
|
||||
lib/qt3/bin-mt/moc
|
||||
lib/qt3/bin-mt/qm2ts
|
||||
lib/qt3/bin-mt/qmake
|
||||
lib/qt3/bin-mt/qt20fix
|
||||
lib/qt3/bin-mt/qtconfig
|
||||
lib/qt3/bin-mt/qtrename140
|
||||
lib/qt3/bin-mt/uic
|
||||
lib/libqt-mt.so.3.11
|
||||
@comment $OpenBSD: PLIST-mt,v 1.7 2003/04/05 14:45:20 espie Exp $
|
||||
bin/assistant${FLAVOR_EXT}
|
||||
bin/designer3${FLAVOR_EXT}
|
||||
bin/findtr3${FLAVOR_EXT}
|
||||
bin/linguist${FLAVOR_EXT}
|
||||
bin/lrelease${FLAVOR_EXT}
|
||||
bin/lupdate${FLAVOR_EXT}
|
||||
bin/moc3${FLAVOR_EXT}
|
||||
bin/qm2ts${FLAVOR_EXT}
|
||||
bin/qmake${FLAVOR_EXT}
|
||||
bin/qt20fix3${FLAVOR_EXT}
|
||||
bin/qtconfig${FLAVOR_EXT}
|
||||
bin/qtrename1403${FLAVOR_EXT}
|
||||
bin/uic3${FLAVOR_EXT}
|
||||
lib/libqt-mt.so.3.12
|
||||
lib/libqui-mt.so.1.0
|
||||
lib/qt3/libqt-mt.so.3.11
|
||||
lib/qt3/bin${FLAVOR_EXT}/assistant
|
||||
lib/qt3/bin${FLAVOR_EXT}/designer
|
||||
lib/qt3/bin${FLAVOR_EXT}/findtr
|
||||
lib/qt3/bin${FLAVOR_EXT}/linguist
|
||||
lib/qt3/bin${FLAVOR_EXT}/lrelease
|
||||
lib/qt3/bin${FLAVOR_EXT}/lupdate
|
||||
lib/qt3/bin${FLAVOR_EXT}/moc
|
||||
lib/qt3/bin${FLAVOR_EXT}/qm2ts
|
||||
lib/qt3/bin${FLAVOR_EXT}/qmake
|
||||
lib/qt3/bin${FLAVOR_EXT}/qt20fix
|
||||
lib/qt3/bin${FLAVOR_EXT}/qtconfig
|
||||
lib/qt3/bin${FLAVOR_EXT}/qtrename140
|
||||
lib/qt3/bin${FLAVOR_EXT}/uic
|
||||
lib/qt3/libqt-mt.so.3.12
|
||||
lib/qt3/libqui-mt.so.1.0
|
||||
lib/qt3/plugins-mt/designer/libcppeditor.so
|
||||
lib/qt3/plugins-mt/designer/libdlgplugin.so
|
||||
lib/qt3/plugins-mt/designer/librcplugin.so
|
||||
lib/qt3/plugins-mt/designer/libwizards.so
|
||||
lib/qt3/plugins-mt/imageformats/libqjpeg.so
|
||||
lib/qt3/plugins-mt/imageformats/libqmng.so
|
||||
lib/qt3/plugins${FLAVOR_EXT}/designer/libcppeditor.so
|
||||
lib/qt3/plugins${FLAVOR_EXT}/designer/libdlgplugin.so
|
||||
lib/qt3/plugins${FLAVOR_EXT}/designer/librcplugin.so
|
||||
lib/qt3/plugins${FLAVOR_EXT}/designer/libwizards.so
|
||||
lib/qt3/plugins${FLAVOR_EXT}/imageformats/libqjpeg.so
|
||||
lib/qt3/plugins${FLAVOR_EXT}/imageformats/libqmng.so
|
||||
DYNLIBDIR(%D/lib)
|
||||
@exec mkdir -p %D/lib/qt3/plugins-mt/styles
|
||||
@exec mkdir -p %D/lib/qt3/plugins-mt/sqldrivers
|
||||
@dirrm lib/qt3/plugins-mt/styles
|
||||
@dirrm lib/qt3/plugins-mt/sqldrivers
|
||||
@dirrm lib/qt3/plugins-mt/imageformats
|
||||
@dirrm lib/qt3/plugins-mt/designer
|
||||
@dirrm lib/qt3/plugins-mt
|
||||
@dirrm lib/qt3/bin-mt
|
||||
@exec mkdir -p %D/lib/qt3/plugins${FLAVOR_EXT}/styles
|
||||
@exec mkdir -p %D/lib/qt3/plugins${FLAVOR_EXT}/sqldrivers
|
||||
@dirrm lib/qt3/plugins${FLAVOR_EXT}/styles
|
||||
@dirrm lib/qt3/plugins${FLAVOR_EXT}/sqldrivers
|
||||
@dirrm lib/qt3/plugins${FLAVOR_EXT}/imageformats
|
||||
@dirrm lib/qt3/plugins${FLAVOR_EXT}/designer
|
||||
@dirrm lib/qt3/plugins${FLAVOR_EXT}
|
||||
@dirrm lib/qt3/bin${FLAVOR_EXT}
|
||||
|
Loading…
x
Reference in New Issue
Block a user