1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

QXmpp is pretty intuitive and easy to use. It uses Qt extensively.

Qt is the only third party library it is dependent on. Users need
to a have working knowledge of C++ and Qt basics (Signals and Slots
and Qt data types). The underlying TCP socket and the XMPP RFCs
(RFC3920 and RFC3921) have been encapsulated into classes and
functions. Therefore the user would not be bothered with these
details. But it is always recommended to the advanced users to read
and enjoy the low level details.

WWW:	http://code.google.com/p/qxmpp/

PR:		ports/163967
Submitted by:	Gvozdikov Veniamin <g.veniamin@googlemail.com>
This commit is contained in:
Pawel Pekala 2012-01-11 19:54:27 +00:00
parent 88db743951
commit a8327869bc
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=288975
9 changed files with 615 additions and 0 deletions

View File

@ -149,6 +149,7 @@
SUBDIR += qutim-plugin-jabber
SUBDIR += qwit
SUBDIR += qwit-devel
SUBDIR += qxmpp
SUBDIR += ramblercontacts
SUBDIR += rubygem-termtter
SUBDIR += rubygem-xmpp4r

30
net-im/qxmpp/Makefile Normal file
View File

@ -0,0 +1,30 @@
# New ports collection makefile for: qxmpp
# Date created: 2012-01-07
# Whom: Gvozdikov Veniamin <g.veniamin@googlemail.com>
#
# $FreeBSD$
#
PORTNAME= qxmpp
PORTVERSION= 0.3.91
CATEGORIES= net-im
MASTER_SITES= GOOGLE_CODE
MAINTAINER= g.veniamin@googlemail.com
COMMENT= QXmpp is an xmpp client library based on Qt & C++
LICENSE= LGPL21
USE_QT_VER= 4
QT_COMPONENTS= gui network xml qmake_build uic_build moc_build rcc_build
CONFLICTS= ${PORTNAME}-leechcraft-[0-9]*
do-configure:
${REINPLACE_CMD} -e 's|%%QT_LIBDIR_REL%%|${QT_LIBDIR_REL}|g' \
${WRKSRC}/src/src.pro
${REINPLACE_CMD} -e 's|%%DOCSDIR%%|${DOCSDIR}|g' \
${WRKSRC}/${PORTNAME}.pro
cd ${WRKSRC} && ${QMAKE} ${QMAKEFLAGS} PREFIX=${PREFIX}
.include <bsd.port.mk>

2
net-im/qxmpp/distinfo Normal file
View File

@ -0,0 +1,2 @@
SHA256 (qxmpp-0.3.91.tar.gz) = 7797f5afd3cdc30d00e8c5750b451633ea1ec3007621e6b2fb1f4a6011294561
SIZE (qxmpp-0.3.91.tar.gz) = 899912

View File

@ -0,0 +1,14 @@
--- qxmpp.pri.orig 2011-04-07 05:36:03.000000000 +0000
+++ qxmpp.pri 2012-01-08 14:08:13.744880936 +0000
@@ -35,3 +35,11 @@
QXMPP_LIBRARY_FILE = $${QXMPP_LIBRARY_DIR}/lib$${QXMPP_LIBRARY_NAME}.a
}
+unix {
+ isEmpty(PREFIX) {
+ PREFIX = /usr/local
+ }
+ isEmpty(LIBDIR) {
+ LIBDIR = lib
+ }
+}

View File

@ -0,0 +1,20 @@
--- qxmpp.pro.orig 2012-01-07 22:29:59.855639988 +0000
+++ qxmpp.pro 2012-01-07 22:30:28.846689409 +0000
@@ -3,8 +3,6 @@ include(qxmpp.pri)
TEMPLATE = subdirs
SUBDIRS = src \
- tests \
- examples \
doc
CONFIG += ordered
@@ -24,7 +22,7 @@ dist.depends = docs
# Install rules
htmldocs.files = doc/html
-htmldocs.path = $$[QT_INSTALL_PREFIX]/share/doc/qxmpp
+htmldocs.path = %%DOCSDIR%%
htmldocs.CONFIG += no_check_exist directory
QMAKE_EXTRA_TARGETS += dist docs

View File

@ -0,0 +1,16 @@
--- src/QXmppSrvInfo.h.orig 2012-01-07 19:34:05.556368712 +0000
+++ src/QXmppSrvInfo.h 2012-01-07 19:34:38.676876486 +0000
@@ -27,6 +27,13 @@
#include <QList>
#include <QString>
+#ifdef __FreeBSD__
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <netinet/ip.h>
+#endif
+
class QObject;
class QXmppSrvInfoPrivate;
class QXmppSrvRecordPrivate;

View File

@ -0,0 +1,18 @@
--- src/src.pro.orig 2012-01-07 23:02:25.327074206 +0000
+++ src/src.pro 2012-01-07 23:06:28.619562777 +0000
@@ -174,12 +174,12 @@
# Installation
headers.files = $$INSTALL_HEADERS
-headers.path = $$[QT_INSTALL_PREFIX]/include/qxmpp
-target.path = $$[QT_INSTALL_LIBS]
+headers.path = $$PREFIX/include/qxmpp
+target.path = $$PREFIX/%%QT_LIBDIR_REL%%
INSTALLS += headers target
# pkg-config support
CONFIG += create_pc create_prl no_install_prl
-QMAKE_PKGCONFIG_DESTDIR = $$QXMPP_LIBRARY_DIR/pkgconfig
+QMAKE_PKGCONFIG_DESTDIR = $$QXMPP_LIBRARY_DIR/../../libdata/pkgconfig
QMAKE_PKGCONFIG_LIBDIR = $$target.path
QMAKE_PKGCONFIG_INCDIR = $$headers.path

10
net-im/qxmpp/pkg-descr Normal file
View File

@ -0,0 +1,10 @@
QXmpp is pretty intuitive and easy to use. It uses Qt extensively.
Qt is the only third party library it is dependent on. Users need
to a have working knowledge of C++ and Qt basics (Signals and Slots
and Qt data types). The underlying TCP socket and the XMPP RFCs
(RFC3920 and RFC3921) have been encapsulated into classes and
functions. Therefore the user would not be bothered with these
details. But it is always recommended to the advanced users to read
and enjoy the low level details.
WWW: http://code.google.com/p/qxmpp/

504
net-im/qxmpp/pkg-plist Normal file
View File

@ -0,0 +1,504 @@
libdata/pkgconfig/qxmpp.pc
include/qxmpp/QXmppVersionManager.h
include/qxmpp/QXmppVersionIq.h
include/qxmpp/QXmppVCardManager.h
include/qxmpp/QXmppVCardIq.h
include/qxmpp/QXmppUtils.h
include/qxmpp/QXmppTransferManager.h
include/qxmpp/QXmppStun.h
include/qxmpp/QXmppStreamInitiationIq.h
include/qxmpp/QXmppStreamFeatures.h
include/qxmpp/QXmppStream.h
include/qxmpp/QXmppStanza.h
include/qxmpp/QXmppSrvInfo.h
include/qxmpp/QXmppSocks.h
include/qxmpp/QXmppSessionIq.h
include/qxmpp/QXmppServerPlugin.h
include/qxmpp/QXmppServerExtension.h
include/qxmpp/QXmppServer.h
include/qxmpp/QXmppSaslAuth.h
include/qxmpp/QXmppRtpChannel.h
include/qxmpp/QXmppRpcManager.h
include/qxmpp/QXmppRpcIq.h
include/qxmpp/QXmppRosterManager.h
include/qxmpp/QXmppRosterIq.h
include/qxmpp/QXmppRemoteMethod.h
include/qxmpp/QXmppReconnectionManager.h
include/qxmpp/QXmppPubSubIq.h
include/qxmpp/QXmppPresence.h
include/qxmpp/QXmppPingIq.h
include/qxmpp/QXmppPasswordChecker.h
include/qxmpp/QXmppPacket.h
include/qxmpp/QXmppOutgoingServer.h
include/qxmpp/QXmppOutgoingClient.h
include/qxmpp/QXmppNonSASLAuth.h
include/qxmpp/QXmppMucManager.h
include/qxmpp/QXmppMucIq.h
include/qxmpp/QXmppMessage.h
include/qxmpp/QXmppLogger.h
include/qxmpp/QXmppJingleIq.h
include/qxmpp/QXmppIq.h
include/qxmpp/QXmppInvokable.h
include/qxmpp/QXmppIncomingServer.h
include/qxmpp/QXmppIncomingClient.h
include/qxmpp/QXmppIbbIq.h
include/qxmpp/QXmppGlobal.h
include/qxmpp/QXmppEntityTimeManager.h
include/qxmpp/QXmppEntityTimeIq.h
include/qxmpp/QXmppElement.h
include/qxmpp/QXmppDiscoveryManager.h
include/qxmpp/QXmppDiscoveryIq.h
include/qxmpp/QXmppDialback.h
include/qxmpp/QXmppDataForm.h
include/qxmpp/QXmppConstants.h
include/qxmpp/QXmppConfiguration.h
include/qxmpp/QXmppCodec.h
include/qxmpp/QXmppClientExtension.h
include/qxmpp/QXmppClient.h
include/qxmpp/QXmppCallManager.h
include/qxmpp/QXmppByteStreamIq.h
include/qxmpp/QXmppBindIq.h
include/qxmpp/QXmppArchiveManager.h
include/qxmpp/QXmppArchiveIq.h
%%QT_LIBDIR_REL%%/libqxmpp.a
%%DOCSDIR%%/html/tabs.css
%%DOCSDIR%%/html/tab_s.png
%%DOCSDIR%%/html/tab_h.png
%%DOCSDIR%%/html/tab_b.png
%%DOCSDIR%%/html/tab_a.png
%%DOCSDIR%%/html/search/search_r.png
%%DOCSDIR%%/html/search/search_m.png
%%DOCSDIR%%/html/search/search_l.png
%%DOCSDIR%%/html/search/search.js
%%DOCSDIR%%/html/search/search.css
%%DOCSDIR%%/html/search/properties_76.html
%%DOCSDIR%%/html/search/properties_73.html
%%DOCSDIR%%/html/search/properties_70.html
%%DOCSDIR%%/html/search/properties_6e.html
%%DOCSDIR%%/html/search/properties_6d.html
%%DOCSDIR%%/html/search/properties_6c.html
%%DOCSDIR%%/html/search/properties_6a.html
%%DOCSDIR%%/html/search/properties_69.html
%%DOCSDIR%%/html/search/properties_64.html
%%DOCSDIR%%/html/search/properties_61.html
%%DOCSDIR%%/html/search/nomatches.html
%%DOCSDIR%%/html/search/mag_sel.png
%%DOCSDIR%%/html/search/functions_7e.html
%%DOCSDIR%%/html/search/functions_78.html
%%DOCSDIR%%/html/search/functions_77.html
%%DOCSDIR%%/html/search/functions_76.html
%%DOCSDIR%%/html/search/functions_75.html
%%DOCSDIR%%/html/search/functions_74.html
%%DOCSDIR%%/html/search/functions_73.html
%%DOCSDIR%%/html/search/functions_72.html
%%DOCSDIR%%/html/search/functions_71.html
%%DOCSDIR%%/html/search/functions_70.html
%%DOCSDIR%%/html/search/functions_6f.html
%%DOCSDIR%%/html/search/functions_6e.html
%%DOCSDIR%%/html/search/functions_6d.html
%%DOCSDIR%%/html/search/functions_6c.html
%%DOCSDIR%%/html/search/functions_6b.html
%%DOCSDIR%%/html/search/functions_6a.html
%%DOCSDIR%%/html/search/functions_69.html
%%DOCSDIR%%/html/search/functions_68.html
%%DOCSDIR%%/html/search/functions_67.html
%%DOCSDIR%%/html/search/functions_66.html
%%DOCSDIR%%/html/search/functions_65.html
%%DOCSDIR%%/html/search/functions_64.html
%%DOCSDIR%%/html/search/functions_63.html
%%DOCSDIR%%/html/search/functions_62.html
%%DOCSDIR%%/html/search/functions_61.html
%%DOCSDIR%%/html/search/enumvalues_7a.html
%%DOCSDIR%%/html/search/enumvalues_78.html
%%DOCSDIR%%/html/search/enumvalues_77.html
%%DOCSDIR%%/html/search/enumvalues_76.html
%%DOCSDIR%%/html/search/enumvalues_75.html
%%DOCSDIR%%/html/search/enumvalues_74.html
%%DOCSDIR%%/html/search/enumvalues_73.html
%%DOCSDIR%%/html/search/enumvalues_72.html
%%DOCSDIR%%/html/search/enumvalues_70.html
%%DOCSDIR%%/html/search/enumvalues_6f.html
%%DOCSDIR%%/html/search/enumvalues_6e.html
%%DOCSDIR%%/html/search/enumvalues_6b.html
%%DOCSDIR%%/html/search/enumvalues_69.html
%%DOCSDIR%%/html/search/enumvalues_68.html
%%DOCSDIR%%/html/search/enumvalues_67.html
%%DOCSDIR%%/html/search/enumvalues_66.html
%%DOCSDIR%%/html/search/enumvalues_65.html
%%DOCSDIR%%/html/search/enumvalues_64.html
%%DOCSDIR%%/html/search/enumvalues_63.html
%%DOCSDIR%%/html/search/enumvalues_62.html
%%DOCSDIR%%/html/search/enumvalues_61.html
%%DOCSDIR%%/html/search/enums_76.html
%%DOCSDIR%%/html/search/enums_74.html
%%DOCSDIR%%/html/search/enums_73.html
%%DOCSDIR%%/html/search/enums_72.html
%%DOCSDIR%%/html/search/enums_71.html
%%DOCSDIR%%/html/search/enums_6e.html
%%DOCSDIR%%/html/search/enums_6d.html
%%DOCSDIR%%/html/search/enums_6c.html
%%DOCSDIR%%/html/search/enums_65.html
%%DOCSDIR%%/html/search/enums_64.html
%%DOCSDIR%%/html/search/enums_63.html
%%DOCSDIR%%/html/search/enums_61.html
%%DOCSDIR%%/html/search/close.png
%%DOCSDIR%%/html/search/classes_73.html
%%DOCSDIR%%/html/search/classes_71.html
%%DOCSDIR%%/html/search/classes_69.html
%%DOCSDIR%%/html/search/classes_66.html
%%DOCSDIR%%/html/search/all_7e.html
%%DOCSDIR%%/html/search/all_7a.html
%%DOCSDIR%%/html/search/all_78.html
%%DOCSDIR%%/html/search/all_77.html
%%DOCSDIR%%/html/search/all_76.html
%%DOCSDIR%%/html/search/all_75.html
%%DOCSDIR%%/html/search/all_74.html
%%DOCSDIR%%/html/search/all_73.html
%%DOCSDIR%%/html/search/all_72.html
%%DOCSDIR%%/html/search/all_71.html
%%DOCSDIR%%/html/search/all_70.html
%%DOCSDIR%%/html/search/all_6f.html
%%DOCSDIR%%/html/search/all_6e.html
%%DOCSDIR%%/html/search/all_6d.html
%%DOCSDIR%%/html/search/all_6c.html
%%DOCSDIR%%/html/search/all_6b.html
%%DOCSDIR%%/html/search/all_6a.html
%%DOCSDIR%%/html/search/all_69.html
%%DOCSDIR%%/html/search/all_68.html
%%DOCSDIR%%/html/search/all_67.html
%%DOCSDIR%%/html/search/all_66.html
%%DOCSDIR%%/html/search/all_65.html
%%DOCSDIR%%/html/search/all_64.html
%%DOCSDIR%%/html/search/all_63.html
%%DOCSDIR%%/html/search/all_62.html
%%DOCSDIR%%/html/search/all_61.html
%%DOCSDIR%%/html/open.png
%%DOCSDIR%%/html/nav_h.png
%%DOCSDIR%%/html/nav_f.png
%%DOCSDIR%%/html/modules.html
%%DOCSDIR%%/html/jquery.js
%%DOCSDIR%%/html/installdox
%%DOCSDIR%%/html/index.html
%%DOCSDIR%%/html/hierarchy.html
%%DOCSDIR%%/html/group__Stanzas.html
%%DOCSDIR%%/html/group__Managers.html
%%DOCSDIR%%/html/group__Core.html
%%DOCSDIR%%/html/functions_prop.html
%%DOCSDIR%%/html/functions_func_0x7e.html
%%DOCSDIR%%/html/functions_func_0x78.html
%%DOCSDIR%%/html/functions_func_0x77.html
%%DOCSDIR%%/html/functions_func_0x76.html
%%DOCSDIR%%/html/functions_func_0x75.html
%%DOCSDIR%%/html/functions_func_0x74.html
%%DOCSDIR%%/html/functions_func_0x73.html
%%DOCSDIR%%/html/functions_func_0x72.html
%%DOCSDIR%%/html/functions_func_0x71.html
%%DOCSDIR%%/html/functions_func_0x70.html
%%DOCSDIR%%/html/functions_func_0x6f.html
%%DOCSDIR%%/html/functions_func_0x6e.html
%%DOCSDIR%%/html/functions_func_0x6d.html
%%DOCSDIR%%/html/functions_func_0x6c.html
%%DOCSDIR%%/html/functions_func_0x6b.html
%%DOCSDIR%%/html/functions_func_0x6a.html
%%DOCSDIR%%/html/functions_func_0x69.html
%%DOCSDIR%%/html/functions_func_0x68.html
%%DOCSDIR%%/html/functions_func_0x67.html
%%DOCSDIR%%/html/functions_func_0x66.html
%%DOCSDIR%%/html/functions_func_0x65.html
%%DOCSDIR%%/html/functions_func_0x64.html
%%DOCSDIR%%/html/functions_func_0x63.html
%%DOCSDIR%%/html/functions_func_0x62.html
%%DOCSDIR%%/html/functions_func.html
%%DOCSDIR%%/html/functions_eval.html
%%DOCSDIR%%/html/functions_enum.html
%%DOCSDIR%%/html/functions_0x7e.html
%%DOCSDIR%%/html/functions_0x7a.html
%%DOCSDIR%%/html/functions_0x78.html
%%DOCSDIR%%/html/functions_0x77.html
%%DOCSDIR%%/html/functions_0x76.html
%%DOCSDIR%%/html/functions_0x75.html
%%DOCSDIR%%/html/functions_0x74.html
%%DOCSDIR%%/html/functions_0x73.html
%%DOCSDIR%%/html/functions_0x72.html
%%DOCSDIR%%/html/functions_0x71.html
%%DOCSDIR%%/html/functions_0x70.html
%%DOCSDIR%%/html/functions_0x6f.html
%%DOCSDIR%%/html/functions_0x6e.html
%%DOCSDIR%%/html/functions_0x6d.html
%%DOCSDIR%%/html/functions_0x6c.html
%%DOCSDIR%%/html/functions_0x6b.html
%%DOCSDIR%%/html/functions_0x6a.html
%%DOCSDIR%%/html/functions_0x69.html
%%DOCSDIR%%/html/functions_0x68.html
%%DOCSDIR%%/html/functions_0x67.html
%%DOCSDIR%%/html/functions_0x66.html
%%DOCSDIR%%/html/functions_0x65.html
%%DOCSDIR%%/html/functions_0x64.html
%%DOCSDIR%%/html/functions_0x63.html
%%DOCSDIR%%/html/functions_0x62.html
%%DOCSDIR%%/html/functions.html
%%DOCSDIR%%/html/files.html
%%DOCSDIR%%/html/doxygen.png
%%DOCSDIR%%/html/doxygen.css
%%DOCSDIR%%/html/closed.png
%%DOCSDIR%%/html/classes.html
%%DOCSDIR%%/html/classQXmppVideoFrame.html
%%DOCSDIR%%/html/classQXmppVideoFrame-members.html
%%DOCSDIR%%/html/classQXmppVideoDecoder.html
%%DOCSDIR%%/html/classQXmppVideoDecoder-members.html
%%DOCSDIR%%/html/classQXmppVersionManager.png
%%DOCSDIR%%/html/classQXmppVersionManager.html
%%DOCSDIR%%/html/classQXmppVersionManager-members.html
%%DOCSDIR%%/html/classQXmppVersionIq.png
%%DOCSDIR%%/html/classQXmppVersionIq.html
%%DOCSDIR%%/html/classQXmppVersionIq-members.html
%%DOCSDIR%%/html/classQXmppVCardManager.png
%%DOCSDIR%%/html/classQXmppVCardManager.html
%%DOCSDIR%%/html/classQXmppVCardManager-members.html
%%DOCSDIR%%/html/classQXmppVCardIq.png
%%DOCSDIR%%/html/classQXmppVCardIq.html
%%DOCSDIR%%/html/classQXmppVCardIq-members.html
%%DOCSDIR%%/html/classQXmppTransferManager.png
%%DOCSDIR%%/html/classQXmppTransferManager.html
%%DOCSDIR%%/html/classQXmppTransferManager-members.html
%%DOCSDIR%%/html/classQXmppTransferJob.png
%%DOCSDIR%%/html/classQXmppTransferJob.html
%%DOCSDIR%%/html/classQXmppTransferJob-members.html
%%DOCSDIR%%/html/classQXmppStream.png
%%DOCSDIR%%/html/classQXmppStream.html
%%DOCSDIR%%/html/classQXmppStream-members.html
%%DOCSDIR%%/html/classQXmppStanza.png
%%DOCSDIR%%/html/classQXmppStanza.html
%%DOCSDIR%%/html/classQXmppStanza-members.html
%%DOCSDIR%%/html/classQXmppSslServer.html
%%DOCSDIR%%/html/classQXmppSslServer-members.html
%%DOCSDIR%%/html/classQXmppSrvRecord.html
%%DOCSDIR%%/html/classQXmppSrvRecord-members.html
%%DOCSDIR%%/html/classQXmppSrvInfo.html
%%DOCSDIR%%/html/classQXmppSrvInfo-members.html
%%DOCSDIR%%/html/classQXmppSessionIq.png
%%DOCSDIR%%/html/classQXmppSessionIq.html
%%DOCSDIR%%/html/classQXmppSessionIq-members.html
%%DOCSDIR%%/html/classQXmppServerPlugin.html
%%DOCSDIR%%/html/classQXmppServerPlugin-members.html
%%DOCSDIR%%/html/classQXmppServerExtension.png
%%DOCSDIR%%/html/classQXmppServerExtension.html
%%DOCSDIR%%/html/classQXmppServerExtension-members.html
%%DOCSDIR%%/html/classQXmppServer.png
%%DOCSDIR%%/html/classQXmppServer.html
%%DOCSDIR%%/html/classQXmppServer-members.html
%%DOCSDIR%%/html/classQXmppRtpVideoChannel.png
%%DOCSDIR%%/html/classQXmppRtpVideoChannel.html
%%DOCSDIR%%/html/classQXmppRtpVideoChannel-members.html
%%DOCSDIR%%/html/classQXmppRtpPacket.html
%%DOCSDIR%%/html/classQXmppRtpPacket-members.html
%%DOCSDIR%%/html/classQXmppRtpAudioChannel.html
%%DOCSDIR%%/html/classQXmppRtpAudioChannel-members.html
%%DOCSDIR%%/html/classQXmppRpcResponseIq.png
%%DOCSDIR%%/html/classQXmppRpcResponseIq.html
%%DOCSDIR%%/html/classQXmppRpcResponseIq-members.html
%%DOCSDIR%%/html/classQXmppRpcManager.png
%%DOCSDIR%%/html/classQXmppRpcManager.html
%%DOCSDIR%%/html/classQXmppRpcManager-members.html
%%DOCSDIR%%/html/classQXmppRpcInvokeIq.png
%%DOCSDIR%%/html/classQXmppRpcInvokeIq.html
%%DOCSDIR%%/html/classQXmppRpcInvokeIq-members.html
%%DOCSDIR%%/html/classQXmppRosterManager.png
%%DOCSDIR%%/html/classQXmppRosterManager.html
%%DOCSDIR%%/html/classQXmppRosterManager-members.html
%%DOCSDIR%%/html/classQXmppRosterIq_1_1Item.html
%%DOCSDIR%%/html/classQXmppRosterIq_1_1Item-members.html
%%DOCSDIR%%/html/classQXmppRosterIq.png
%%DOCSDIR%%/html/classQXmppRosterIq.html
%%DOCSDIR%%/html/classQXmppRosterIq-members.html
%%DOCSDIR%%/html/classQXmppPubSubItem.html
%%DOCSDIR%%/html/classQXmppPubSubItem-members.html
%%DOCSDIR%%/html/classQXmppPubSubIq.png
%%DOCSDIR%%/html/classQXmppPubSubIq.html
%%DOCSDIR%%/html/classQXmppPubSubIq-members.html
%%DOCSDIR%%/html/classQXmppPresence_1_1Status.html
%%DOCSDIR%%/html/classQXmppPresence_1_1Status-members.html
%%DOCSDIR%%/html/classQXmppPresence.png
%%DOCSDIR%%/html/classQXmppPresence.html
%%DOCSDIR%%/html/classQXmppPresence-members.html
%%DOCSDIR%%/html/classQXmppPasswordRequest.html
%%DOCSDIR%%/html/classQXmppPasswordRequest-members.html
%%DOCSDIR%%/html/classQXmppPasswordReply.html
%%DOCSDIR%%/html/classQXmppPasswordReply-members.html
%%DOCSDIR%%/html/classQXmppPasswordChecker.html
%%DOCSDIR%%/html/classQXmppPasswordChecker-members.html
%%DOCSDIR%%/html/classQXmppOutgoingServer.png
%%DOCSDIR%%/html/classQXmppOutgoingServer.html
%%DOCSDIR%%/html/classQXmppOutgoingServer-members.html
%%DOCSDIR%%/html/classQXmppOutgoingClient.png
%%DOCSDIR%%/html/classQXmppOutgoingClient.html
%%DOCSDIR%%/html/classQXmppOutgoingClient-members.html
%%DOCSDIR%%/html/classQXmppMucRoom.html
%%DOCSDIR%%/html/classQXmppMucRoom-members.html
%%DOCSDIR%%/html/classQXmppMucOwnerIq.png
%%DOCSDIR%%/html/classQXmppMucOwnerIq.html
%%DOCSDIR%%/html/classQXmppMucOwnerIq-members.html
%%DOCSDIR%%/html/classQXmppMucManager.png
%%DOCSDIR%%/html/classQXmppMucManager.html
%%DOCSDIR%%/html/classQXmppMucManager-members.html
%%DOCSDIR%%/html/classQXmppMucItem.html
%%DOCSDIR%%/html/classQXmppMucItem-members.html
%%DOCSDIR%%/html/classQXmppMucAdminIq.png
%%DOCSDIR%%/html/classQXmppMucAdminIq.html
%%DOCSDIR%%/html/classQXmppMucAdminIq-members.html
%%DOCSDIR%%/html/classQXmppMessage.png
%%DOCSDIR%%/html/classQXmppMessage.html
%%DOCSDIR%%/html/classQXmppMessage-members.html
%%DOCSDIR%%/html/classQXmppLogger.html
%%DOCSDIR%%/html/classQXmppLogger-members.html
%%DOCSDIR%%/html/classQXmppLoggable.png
%%DOCSDIR%%/html/classQXmppLoggable.html
%%DOCSDIR%%/html/classQXmppLoggable-members.html
%%DOCSDIR%%/html/classQXmppJinglePayloadType.html
%%DOCSDIR%%/html/classQXmppJinglePayloadType-members.html
%%DOCSDIR%%/html/classQXmppJingleIq.png
%%DOCSDIR%%/html/classQXmppJingleIq.html
%%DOCSDIR%%/html/classQXmppJingleIq-members.html
%%DOCSDIR%%/html/classQXmppJingleCandidate.html
%%DOCSDIR%%/html/classQXmppJingleCandidate-members.html
%%DOCSDIR%%/html/classQXmppIq.png
%%DOCSDIR%%/html/classQXmppIq.html
%%DOCSDIR%%/html/classQXmppIq-members.html
%%DOCSDIR%%/html/classQXmppInvokable.html
%%DOCSDIR%%/html/classQXmppInvokable-members.html
%%DOCSDIR%%/html/classQXmppIncomingServer.png
%%DOCSDIR%%/html/classQXmppIncomingServer.html
%%DOCSDIR%%/html/classQXmppIncomingServer-members.html
%%DOCSDIR%%/html/classQXmppIncomingClient.png
%%DOCSDIR%%/html/classQXmppIncomingClient.html
%%DOCSDIR%%/html/classQXmppIncomingClient-members.html
%%DOCSDIR%%/html/classQXmppIceConnection.png
%%DOCSDIR%%/html/classQXmppIceConnection.html
%%DOCSDIR%%/html/classQXmppIceConnection-members.html
%%DOCSDIR%%/html/classQXmppIceComponent.png
%%DOCSDIR%%/html/classQXmppIceComponent.html
%%DOCSDIR%%/html/classQXmppIceComponent-members.html
%%DOCSDIR%%/html/classQXmppEntityTimeManager.png
%%DOCSDIR%%/html/classQXmppEntityTimeManager.html
%%DOCSDIR%%/html/classQXmppEntityTimeManager-members.html
%%DOCSDIR%%/html/classQXmppDiscoveryManager.png
%%DOCSDIR%%/html/classQXmppDiscoveryManager.html
%%DOCSDIR%%/html/classQXmppDiscoveryManager-members.html
%%DOCSDIR%%/html/classQXmppDialback.png
%%DOCSDIR%%/html/classQXmppDialback.html
%%DOCSDIR%%/html/classQXmppDialback-members.html
%%DOCSDIR%%/html/classQXmppDataForm_1_1Field.html
%%DOCSDIR%%/html/classQXmppDataForm_1_1Field-members.html
%%DOCSDIR%%/html/classQXmppDataForm.html
%%DOCSDIR%%/html/classQXmppDataForm-members.html
%%DOCSDIR%%/html/classQXmppConfiguration.html
%%DOCSDIR%%/html/classQXmppConfiguration-members.html
%%DOCSDIR%%/html/classQXmppCodec.html
%%DOCSDIR%%/html/classQXmppCodec-members.html
%%DOCSDIR%%/html/classQXmppClientExtension.png
%%DOCSDIR%%/html/classQXmppClientExtension.html
%%DOCSDIR%%/html/classQXmppClientExtension-members.html
%%DOCSDIR%%/html/classQXmppClient.png
%%DOCSDIR%%/html/classQXmppClient.html
%%DOCSDIR%%/html/classQXmppClient-members.html
%%DOCSDIR%%/html/classQXmppCallManager.png
%%DOCSDIR%%/html/classQXmppCallManager.html
%%DOCSDIR%%/html/classQXmppCallManager-members.html
%%DOCSDIR%%/html/classQXmppCall.png
%%DOCSDIR%%/html/classQXmppCall.html
%%DOCSDIR%%/html/classQXmppCall-members.html
%%DOCSDIR%%/html/classQXmppBindIq.png
%%DOCSDIR%%/html/classQXmppBindIq.html
%%DOCSDIR%%/html/classQXmppBindIq-members.html
%%DOCSDIR%%/html/classQXmppArchiveRetrieveIq.png
%%DOCSDIR%%/html/classQXmppArchiveRetrieveIq.html
%%DOCSDIR%%/html/classQXmppArchiveRetrieveIq-members.html
%%DOCSDIR%%/html/classQXmppArchiveRemoveIq.png
%%DOCSDIR%%/html/classQXmppArchiveRemoveIq.html
%%DOCSDIR%%/html/classQXmppArchiveRemoveIq-members.html
%%DOCSDIR%%/html/classQXmppArchivePrefIq.png
%%DOCSDIR%%/html/classQXmppArchivePrefIq.html
%%DOCSDIR%%/html/classQXmppArchivePrefIq-members.html
%%DOCSDIR%%/html/classQXmppArchiveMessage.html
%%DOCSDIR%%/html/classQXmppArchiveMessage-members.html
%%DOCSDIR%%/html/classQXmppArchiveManager.png
%%DOCSDIR%%/html/classQXmppArchiveManager.html
%%DOCSDIR%%/html/classQXmppArchiveManager-members.html
%%DOCSDIR%%/html/classQXmppArchiveListIq.png
%%DOCSDIR%%/html/classQXmppArchiveListIq.html
%%DOCSDIR%%/html/classQXmppArchiveListIq-members.html
%%DOCSDIR%%/html/classQXmppArchiveChatIq.png
%%DOCSDIR%%/html/classQXmppArchiveChatIq.html
%%DOCSDIR%%/html/classQXmppArchiveChatIq-members.html
%%DOCSDIR%%/html/classQXmppArchiveChat.html
%%DOCSDIR%%/html/classQXmppArchiveChat-members.html
%%DOCSDIR%%/html/bc_s.png
%%DOCSDIR%%/html/annotated.html
%%DOCSDIR%%/html/QXmppVersionManager_8h_source.html
%%DOCSDIR%%/html/QXmppVersionIq_8h_source.html
%%DOCSDIR%%/html/QXmppVCardManager_8h_source.html
%%DOCSDIR%%/html/QXmppVCardIq_8h_source.html
%%DOCSDIR%%/html/QXmppUtils_8h_source.html
%%DOCSDIR%%/html/QXmppTransferManager_8h_source.html
%%DOCSDIR%%/html/QXmppStun_8h_source.html
%%DOCSDIR%%/html/QXmppStream_8h_source.html
%%DOCSDIR%%/html/QXmppStreamInitiationIq_8h_source.html
%%DOCSDIR%%/html/QXmppStreamFeatures_8h_source.html
%%DOCSDIR%%/html/QXmppStanza_8h_source.html
%%DOCSDIR%%/html/QXmppSrvInfo__p_8h_source.html
%%DOCSDIR%%/html/QXmppSrvInfo_8h_source.html
%%DOCSDIR%%/html/QXmppSocks_8h_source.html
%%DOCSDIR%%/html/QXmppSessionIq_8h_source.html
%%DOCSDIR%%/html/QXmppServer_8h_source.html
%%DOCSDIR%%/html/QXmppServerPlugin_8h_source.html
%%DOCSDIR%%/html/QXmppServerExtension_8h_source.html
%%DOCSDIR%%/html/QXmppSaslAuth_8h_source.html
%%DOCSDIR%%/html/QXmppRtpChannel_8h_source.html
%%DOCSDIR%%/html/QXmppRpcManager_8h_source.html
%%DOCSDIR%%/html/QXmppRpcIq_8h_source.html
%%DOCSDIR%%/html/QXmppRosterManager_8h_source.html
%%DOCSDIR%%/html/QXmppRosterIq_8h_source.html
%%DOCSDIR%%/html/QXmppRemoteMethod_8h_source.html
%%DOCSDIR%%/html/QXmppReconnectionManager_8h_source.html
%%DOCSDIR%%/html/QXmppPubSubIq_8h_source.html
%%DOCSDIR%%/html/QXmppPresence_8h_source.html
%%DOCSDIR%%/html/QXmppPingIq_8h_source.html
%%DOCSDIR%%/html/QXmppPasswordChecker_8h_source.html
%%DOCSDIR%%/html/QXmppPacket_8h_source.html
%%DOCSDIR%%/html/QXmppOutgoingServer_8h_source.html
%%DOCSDIR%%/html/QXmppOutgoingClient_8h_source.html
%%DOCSDIR%%/html/QXmppNonSASLAuth_8h_source.html
%%DOCSDIR%%/html/QXmppMucManager_8h_source.html
%%DOCSDIR%%/html/QXmppMucIq_8h_source.html
%%DOCSDIR%%/html/QXmppMessage_8h_source.html
%%DOCSDIR%%/html/QXmppLogger_8h_source.html
%%DOCSDIR%%/html/QXmppJingleIq_8h_source.html
%%DOCSDIR%%/html/QXmppIq_8h_source.html
%%DOCSDIR%%/html/QXmppInvokable_8h_source.html
%%DOCSDIR%%/html/QXmppIncomingServer_8h_source.html
%%DOCSDIR%%/html/QXmppIncomingClient_8h_source.html
%%DOCSDIR%%/html/QXmppIbbIq_8h_source.html
%%DOCSDIR%%/html/QXmppGlobal_8h_source.html
%%DOCSDIR%%/html/QXmppEntityTimeManager_8h_source.html
%%DOCSDIR%%/html/QXmppEntityTimeIq_8h_source.html
%%DOCSDIR%%/html/QXmppElement_8h_source.html
%%DOCSDIR%%/html/QXmppDiscoveryManager_8h_source.html
%%DOCSDIR%%/html/QXmppDiscoveryIq_8h_source.html
%%DOCSDIR%%/html/QXmppDialback_8h_source.html
%%DOCSDIR%%/html/QXmppDataForm_8h_source.html
%%DOCSDIR%%/html/QXmppConstants_8h_source.html
%%DOCSDIR%%/html/QXmppConfiguration_8h_source.html
%%DOCSDIR%%/html/QXmppCodec_8h_source.html
%%DOCSDIR%%/html/QXmppClient_8h_source.html
%%DOCSDIR%%/html/QXmppClientExtension_8h_source.html
%%DOCSDIR%%/html/QXmppCallManager_8h_source.html
%%DOCSDIR%%/html/QXmppByteStreamIq_8h_source.html
%%DOCSDIR%%/html/QXmppBindIq_8h_source.html
%%DOCSDIR%%/html/QXmppArchiveManager_8h_source.html
%%DOCSDIR%%/html/QXmppArchiveIq_8h_source.html
@dirrm include/qxmpp
@dirrmtry libdata/pkgconfig
@dirrmtry libdata
@dirrm %%DOCSDIR%%/html/search
@dirrm %%DOCSDIR%%/html
@dirrm %%DOCSDIR%%