summaryrefslogtreecommitdiffstats
path: root/openbsd/14.0.0/dependencies/tqt3/pkg/DESCR-main
diff options
context:
space:
mode:
authorFrançois Andriot <albator78@libertysurf.fr>2014-09-18 20:24:13 +0200
committerFrançois Andriot <albator78@libertysurf.fr>2014-09-18 20:24:13 +0200
commit010731a80652ba71db51e4c12b1f670651a8bc2b (patch)
treefa1ee443841db8136f70579c37a815914285e673 /openbsd/14.0.0/dependencies/tqt3/pkg/DESCR-main
parent2174ce76117fff8f278b2ca696cbc9d1bd420f0a (diff)
downloadtde-packaging-010731a80652ba71db51e4c12b1f670651a8bc2b.tar.gz
tde-packaging-010731a80652ba71db51e4c12b1f670651a8bc2b.zip
OpenBSD: add tqt3
Diffstat (limited to 'openbsd/14.0.0/dependencies/tqt3/pkg/DESCR-main')
-rw-r--r--openbsd/14.0.0/dependencies/tqt3/pkg/DESCR-main29
1 files changed, 29 insertions, 0 deletions
diff --git a/openbsd/14.0.0/dependencies/tqt3/pkg/DESCR-main b/openbsd/14.0.0/dependencies/tqt3/pkg/DESCR-main
new file mode 100644
index 000000000..5429508ed
--- /dev/null
+++ b/openbsd/14.0.0/dependencies/tqt3/pkg/DESCR-main
@@ -0,0 +1,29 @@
+TQt is a toolkit for building a GUI for X in C++.
+There are some user documentation files in ${TQT_DOC}, but
+the main documentation is in the qt3-html package,
+or on the web.
+
+There are database plugins: tqt3-mysql and tqt3-postgresql.
+
+People who want to use tqt3 to compile applications outside the ports tree
+should note that tqt3's installation conforms to OpenBSD habits, not
+TrollTech's recommendations.
+Accordingly:
+- libs are separated from includes.
+- moc is installed as ${PREFIX}/bin/moc3, in order not to conflict
+ with other qt versions.
+- uic is installed as ${PREFIX}/bin/uic3
+
+Generally, it's just a question of invoking
+
+env MOC=moc3 UIC=uic3 configure --with-qt-includes=${PREFIX}/include/X11/qt3
+ --with-qt-libraries=${PREFIX}/lib/tqt3
+
+Or to force MOC/UIC in your make/gmake invocation:
+make MOC=moc3 UIC=uic3
+will override the Makefile contents.
+
+Warning: the tqt3 library also appears under ${PREFIX}/lib, but you
+*must* make sure your application sees ${PREFIX}/lib/tqt3 *first*, because
+${PREFIX}/lib may also contain a later incarnation of Qt, in which case
+the linker will pick up the most recent library.