Index: head/net-im/telepathy-qt4/files/patch-git_7389dc9 =================================================================== --- head/net-im/telepathy-qt4/files/patch-git_7389dc9 (revision 418640) +++ head/net-im/telepathy-qt4/files/patch-git_7389dc9 (nonexistent) @@ -1,20 +0,0 @@ -This commit is required to avoid occasional build failures in parallel builds. - -commit 7389dc990c67d4269f3a79c924c054e87f2e4ac5 -Author: Alexandr Akulich -Date: Fri, 15 Jan 2016 18:54:09 +0500 - - CMakeLists: Added missing service dependence. - - telepathy-qt-service depends on generated stable and future types and consts. - ---- TelepathyQt/CMakeLists.txt -+++ TelepathyQt/CMakeLists.txt -@@ -953,6 +953,7 @@ if(ENABLE_SERVICE_SUPPORT) - #endif (ENABLE_COMPILER_COVERAGE) - # lets build a static only library until we have a stable API/ABI - add_library(telepathy-qt${QT_VERSION_MAJOR}-service STATIC ${telepathy_qt_service_SRCS}) -+ add_dependencies(telepathy-qt${QT_VERSION_MAJOR}-service stable-typesgen future-typesgen) - - # generate service moc files - foreach(moc_src ${telepathy_qt_service_MOC_SRCS}) Property changes on: head/net-im/telepathy-qt4/files/patch-git_7389dc9 ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/net-im/telepathy-qt4/files/patch-git_1e1f53e9 =================================================================== --- head/net-im/telepathy-qt4/files/patch-git_1e1f53e9 (revision 418640) +++ head/net-im/telepathy-qt4/files/patch-git_1e1f53e9 (nonexistent) @@ -1,21 +0,0 @@ -This commit is required to avoid occasional build failures in parallel builds -especially after CMake 3.5.0. - -commit 1e1f53e9d91684918c34ec50392f86287e001a1e -Author: Alexandr Akulich -Date: Fri Jan 15 18:52:59 2016 +0500 - - BaseChannel: Reduced includes (doesn't depend on client stuff anymore). - ---- TelepathyQt/base-channel.cpp -+++ TelepathyQt/base-channel.cpp -@@ -26,7 +26,8 @@ - - #include "TelepathyQt/_gen/base-channel.moc.hpp" - #include "TelepathyQt/_gen/base-channel-internal.moc.hpp" --#include "TelepathyQt/future-internal.h" -+#include "TelepathyQt/_gen/future-constants.h" -+#include "TelepathyQt/_gen/future-types.h" - - #include "TelepathyQt/debug-internal.h" - Property changes on: head/net-im/telepathy-qt4/files/patch-git_1e1f53e9 ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/net-im/telepathy-qt4/files/patch-git_ec4a3d6 =================================================================== --- head/net-im/telepathy-qt4/files/patch-git_ec4a3d6 (revision 418640) +++ head/net-im/telepathy-qt4/files/patch-git_ec4a3d6 (nonexistent) @@ -1,79 +0,0 @@ -Required for the port to build with GStreamer 1.6+. - -commit ec4a3d62b68a57254515f01fc5ea3325ffb1dbfb -Author: Niels Ole Salscheider -Date: Tue Sep 29 20:52:15 2015 +0200 - - Farstream: gst/gstconfig.h can be in LIBDIR, search for it explicitly - - Since GStreamer-1.5.1 config header file moved to LIBDIR. - - Reviewed-by: Alexandr Akulich - ---- TelepathyQt/Farstream/CMakeLists.txt -+++ TelepathyQt/Farstream/CMakeLists.txt -@@ -2,7 +2,7 @@ if(FARSTREAM_COMPONENTS_FOUND) - include_directories(${TELEPATHY_FARSTREAM_INCLUDE_DIR} - ${TELEPATHY_GLIB_INCLUDE_DIR} - ${FARSTREAM_INCLUDE_DIR} -- ${GSTREAMER_INCLUDE_DIR} -+ ${GSTREAMER_INCLUDE_DIRS} - ${GLIB2_INCLUDE_DIR} - ${LIBXML2_INCLUDE_DIR} - ${DBUS_INCLUDE_DIR}) ---- cmake/modules/FindGStreamer.cmake -+++ cmake/modules/FindGStreamer.cmake -@@ -13,12 +13,12 @@ - - # TODO: Other versions --> GSTREAMER_X_Y_FOUND (Example: GSTREAMER_0_8_FOUND and GSTREAMER_0_10_FOUND etc) - --IF (GSTREAMER_INCLUDE_DIR AND GSTREAMER_LIBRARIES AND GSTREAMER_BASE_LIBRARY AND GSTREAMER_INTERFACE_LIBRARY) -+IF (GSTREAMER_INCLUDE_DIRS AND GSTREAMER_LIBRARIES AND GSTREAMER_BASE_LIBRARY AND GSTREAMER_INTERFACE_LIBRARY) - # in cache already - SET(GSTREAMER_FIND_QUIETLY TRUE) --ELSE (GSTREAMER_INCLUDE_DIR AND GSTREAMER_LIBRARIES AND GSTREAMER_BASE_LIBRARY AND GSTREAMER_INTERFACE_LIBRARY) -+ELSE (GSTREAMER_INCLUDE_DIRS AND GSTREAMER_LIBRARIES AND GSTREAMER_BASE_LIBRARY AND GSTREAMER_INTERFACE_LIBRARY) - SET(GSTREAMER_FIND_QUIETLY FALSE) --ENDIF (GSTREAMER_INCLUDE_DIR AND GSTREAMER_LIBRARIES AND GSTREAMER_BASE_LIBRARY AND GSTREAMER_INTERFACE_LIBRARY) -+ENDIF (GSTREAMER_INCLUDE_DIRS AND GSTREAMER_LIBRARIES AND GSTREAMER_BASE_LIBRARY AND GSTREAMER_INTERFACE_LIBRARY) - - IF (NOT WIN32) - # use pkg-config to get the directories and then use these values -@@ -38,6 +38,15 @@ FIND_PATH(GSTREAMER_INCLUDE_DIR gst/gst.h - PATH_SUFFIXES gstreamer-1.0 - ) - -+FIND_PATH(GSTREAMER_CONF_INCLUDE_DIR gst/gstconfig.h -+ PATHS -+ ${PC_GSTREAMER_INCLUDEDIR} -+ ${PC_GSTREAMER_INCLUDE_DIRS} -+ PATH_SUFFIXES gstreamer-1.0 -+ ) -+ -+SET(GSTREAMER_INCLUDE_DIRS ${GSTREAMER_INCLUDE_DIR} ${GSTREAMER_CONF_INCLUDE_DIR}) -+ - FIND_LIBRARY(GSTREAMER_LIBRARIES NAMES gstreamer-1.0 - PATHS - ${PC_GSTREAMER_LIBDIR} -@@ -57,6 +66,12 @@ ELSE (GSTREAMER_INCLUDE_DIR) - MESSAGE(STATUS "GStreamer: WARNING: include dir not found") - ENDIF (GSTREAMER_INCLUDE_DIR) - -+IF (GSTREAMER_CONF_INCLUDE_DIR) -+ #MESSAGE(STATUS "DEBUG: Found GStreamer config include dir: ${GSTREAMER_CONF_INCLUDE_DIR}") -+ELSE (GSTREAMER_CONF_INCLUDE_DIR) -+ MESSAGE(STATUS "GStreamer: WARNING: config include dir not found") -+ENDIF (GSTREAMER_CONF_INCLUDE_DIR) -+ - IF (GSTREAMER_LIBRARIES) - #MESSAGE(STATUS "DEBUG: Found GStreamer library: ${GSTREAMER_LIBRARIES}") - ELSE (GSTREAMER_LIBRARIES) -@@ -65,6 +80,6 @@ ENDIF (GSTREAMER_LIBRARIES) - - - INCLUDE(FindPackageHandleStandardArgs) --FIND_PACKAGE_HANDLE_STANDARD_ARGS(GStreamer DEFAULT_MSG GSTREAMER_LIBRARIES GSTREAMER_INCLUDE_DIR GSTREAMER_BASE_LIBRARY) -+FIND_PACKAGE_HANDLE_STANDARD_ARGS(GStreamer DEFAULT_MSG GSTREAMER_LIBRARIES GSTREAMER_INCLUDE_DIRS GSTREAMER_BASE_LIBRARY) - --MARK_AS_ADVANCED(GSTREAMER_INCLUDE_DIR GSTREAMER_LIBRARIES GSTREAMER_BASE_LIBRARY) -+MARK_AS_ADVANCED(GSTREAMER_INCLUDE_DIRS GSTREAMER_LIBRARIES GSTREAMER_BASE_LIBRARY) Property changes on: head/net-im/telepathy-qt4/files/patch-git_ec4a3d6 ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/net-im/telepathy-qt4/Makefile =================================================================== --- head/net-im/telepathy-qt4/Makefile (revision 418640) +++ head/net-im/telepathy-qt4/Makefile (revision 418641) @@ -1,56 +1,55 @@ # Created by: Alberto Villa # $FreeBSD$ PORTNAME= telepathy-qt4 -PORTVERSION= 0.9.6.1 -PORTREVISION= 1 +PORTVERSION= 0.9.7 CATEGORIES= net-im MASTER_SITES= https://telepathy.freedesktop.org/releases/${PORTNAME:C/4//}/ DISTNAME= ${PORTNAME:C/4//}-${PORTVERSION} MAINTAINER= kde@FreeBSD.org COMMENT= High-level Qt binding for Telepathy LICENSE= LGPL21 BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/_dbus_bindings.so:devel/py-dbus LIB_DEPENDS= libtelepathy-farstream.so:net-im/telepathy-farstream \ libtelepathy-glib.so:net-im/telepathy-glib RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_dbus_bindings.so:devel/py-dbus OPTIONS_DEFINE= DOCS USE_GNOME= glib20 libxslt:build USE_GSTREAMER= yes USE_QT4= corelib dbus gui network qtestlib_build xml \ moc_build qmake_build rcc_build uic_build USES= cmake:outsource gettext pathfix pkgconfig python:build CMAKE_ARGS= -DENABLE_EXAMPLES:BOOL=False \ -DENABLE_FARSIGHT:BOOL=False \ -DENABLE_FARSTREAM:BOOL=True \ -DENABLE_TESTS:BOOL=False \ -DDESIRED_QT_VERSION:STRING=4 \ -DQT_QMAKE_EXECUTABLE:FILEPATH=${QMAKE} USE_LDCONFIG= yes # Required because FindGObject.cmake is too old and uses the pkg-config values # directly (-lgobject-2.0 instead of /path/to/libgobject-2.0.so). CXXFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib # We do not need Doxygen because the tarball already ships with prebuilt # documentation. CMAKE_ARGS+= -DDOXYGEN_EXECUTABLE:FILEPATH="" PLIST_SUB= PORTVERSION="${PORTVERSION}" PORTDOCS= AUTHORS ChangeLog HACKING NEWS README html post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${CP} -R doc/html . . for f in ${PORTDOCS} cd ${WRKSRC} && ${COPYTREE_SHARE} ${f} ${STAGEDIR}${DOCSDIR} . endfor .include Index: head/net-im/telepathy-qt4/distinfo =================================================================== --- head/net-im/telepathy-qt4/distinfo (revision 418640) +++ head/net-im/telepathy-qt4/distinfo (revision 418641) @@ -1,2 +1,3 @@ -SHA256 (telepathy-qt-0.9.6.1.tar.gz) = 496eb4951ea9b181d7d68a2122a885474c4f73b519319496aa1b97d9b361a1f8 -SIZE (telepathy-qt-0.9.6.1.tar.gz) = 6067468 +TIMESTAMP = 1466432953 +SHA256 (telepathy-qt-0.9.7.tar.gz) = 21bad30be7ebc4ba667d53d92cd1cec1be23114103f2149404d9740721693d4f +SIZE (telepathy-qt-0.9.7.tar.gz) = 6213405 Index: head/net-im/telepathy-qt4/pkg-plist =================================================================== --- head/net-im/telepathy-qt4/pkg-plist (revision 418640) +++ head/net-im/telepathy-qt4/pkg-plist (revision 418641) @@ -1,429 +1,435 @@ include/telepathy-qt4/TelepathyQt/AbstractAdaptor include/telepathy-qt4/TelepathyQt/AbstractClient include/telepathy-qt4/TelepathyQt/AbstractClientApprover include/telepathy-qt4/TelepathyQt/AbstractClientHandler include/telepathy-qt4/TelepathyQt/AbstractClientObserver include/telepathy-qt4/TelepathyQt/AbstractDBusServiceInterface include/telepathy-qt4/TelepathyQt/AbstractInterface include/telepathy-qt4/TelepathyQt/AbstractProtocolInterface include/telepathy-qt4/TelepathyQt/Account include/telepathy-qt4/TelepathyQt/AccountCapabilityFilter include/telepathy-qt4/TelepathyQt/AccountFactory include/telepathy-qt4/TelepathyQt/AccountFilter include/telepathy-qt4/TelepathyQt/AccountInterface include/telepathy-qt4/TelepathyQt/AccountInterfaceAddressingInterface include/telepathy-qt4/TelepathyQt/AccountInterfaceAvatarInterface include/telepathy-qt4/TelepathyQt/AccountInterfaceStorageInterface include/telepathy-qt4/TelepathyQt/AccountManager include/telepathy-qt4/TelepathyQt/AccountManagerInterface include/telepathy-qt4/TelepathyQt/AccountPropertyFilter include/telepathy-qt4/TelepathyQt/AccountSet include/telepathy-qt4/TelepathyQt/AndFilter include/telepathy-qt4/TelepathyQt/AuthenticationTLSCertificateInterface include/telepathy-qt4/TelepathyQt/AvatarData include/telepathy-qt4/TelepathyQt/AvatarSpec include/telepathy-qt4/TelepathyQt/BaseCall include/telepathy-qt4/TelepathyQt/BaseChannel include/telepathy-qt4/TelepathyQt/BaseConnection include/telepathy-qt4/TelepathyQt/BaseConnectionManager +include/telepathy-qt4/TelepathyQt/BaseDebug include/telepathy-qt4/TelepathyQt/BaseProtocol include/telepathy-qt4/TelepathyQt/BaseProtocolAddressingInterface include/telepathy-qt4/TelepathyQt/BaseProtocolAvatarsInterface include/telepathy-qt4/TelepathyQt/BaseProtocolPresenceInterface include/telepathy-qt4/TelepathyQt/CallChannel include/telepathy-qt4/TelepathyQt/CallContent include/telepathy-qt4/TelepathyQt/CallContentInterface include/telepathy-qt4/TelepathyQt/CallContentInterfaceAudioControlInterface include/telepathy-qt4/TelepathyQt/CallContentInterfaceDTMFInterface include/telepathy-qt4/TelepathyQt/CallContentInterfaceMediaInterface include/telepathy-qt4/TelepathyQt/CallContentInterfaceVideoControlInterface include/telepathy-qt4/TelepathyQt/CallContentMediaDescription include/telepathy-qt4/TelepathyQt/CallContentMediaDescriptionInterface include/telepathy-qt4/TelepathyQt/CallContentMediaDescriptionInterfaceRTCPExtendedReportsInterface include/telepathy-qt4/TelepathyQt/CallContentMediaDescriptionInterfaceRTCPFeedbackInterface include/telepathy-qt4/TelepathyQt/CallContentMediaDescriptionInterfaceRTPHeaderExtensionsInterface include/telepathy-qt4/TelepathyQt/CallStream include/telepathy-qt4/TelepathyQt/CallStreamEndpoint include/telepathy-qt4/TelepathyQt/CallStreamEndpointInterface include/telepathy-qt4/TelepathyQt/CallStreamInterface include/telepathy-qt4/TelepathyQt/CallStreamInterfaceMediaInterface include/telepathy-qt4/TelepathyQt/Callbacks include/telepathy-qt4/TelepathyQt/CapabilitiesBase include/telepathy-qt4/TelepathyQt/Captcha include/telepathy-qt4/TelepathyQt/CaptchaAuthentication include/telepathy-qt4/TelepathyQt/Channel include/telepathy-qt4/TelepathyQt/ChannelClassFeatures include/telepathy-qt4/TelepathyQt/ChannelClassSpec include/telepathy-qt4/TelepathyQt/ChannelClassSpecList include/telepathy-qt4/TelepathyQt/ChannelDispatchOperation include/telepathy-qt4/TelepathyQt/ChannelDispatchOperationInterface include/telepathy-qt4/TelepathyQt/ChannelDispatcher include/telepathy-qt4/TelepathyQt/ChannelDispatcherInterface include/telepathy-qt4/TelepathyQt/ChannelFactory include/telepathy-qt4/TelepathyQt/ChannelInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceAnonymityInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceCallStateInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceCaptchaAuthenticationInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceChatStateInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceConferenceInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceDTMFInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceDestroyableInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceFileTransferMetadataInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceGroupInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceHoldInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceMediaSignallingInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceMessagesInterface include/telepathy-qt4/TelepathyQt/ChannelInterfacePasswordInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceRoomConfigInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceRoomInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceSASLAuthenticationInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceSMSInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceSecurableInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceServicePointInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceSubjectInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceTubeInterface include/telepathy-qt4/TelepathyQt/ChannelRequest include/telepathy-qt4/TelepathyQt/ChannelRequestHints include/telepathy-qt4/TelepathyQt/ChannelRequestInterface include/telepathy-qt4/TelepathyQt/ChannelTypeCallInterface include/telepathy-qt4/TelepathyQt/ChannelTypeContactListInterface include/telepathy-qt4/TelepathyQt/ChannelTypeContactSearchInterface include/telepathy-qt4/TelepathyQt/ChannelTypeDBusTubeInterface include/telepathy-qt4/TelepathyQt/ChannelTypeFileTransferInterface include/telepathy-qt4/TelepathyQt/ChannelTypeRoomListInterface include/telepathy-qt4/TelepathyQt/ChannelTypeServerAuthenticationInterface include/telepathy-qt4/TelepathyQt/ChannelTypeServerTLSConnectionInterface include/telepathy-qt4/TelepathyQt/ChannelTypeStreamTubeInterface include/telepathy-qt4/TelepathyQt/ChannelTypeStreamedMediaInterface include/telepathy-qt4/TelepathyQt/ChannelTypeTextInterface include/telepathy-qt4/TelepathyQt/ChannelTypeTubeInterface include/telepathy-qt4/TelepathyQt/ChannelTypeTubesInterface include/telepathy-qt4/TelepathyQt/Client include/telepathy-qt4/TelepathyQt/ClientApproverInterface include/telepathy-qt4/TelepathyQt/ClientHandlerInterface include/telepathy-qt4/TelepathyQt/ClientInterface include/telepathy-qt4/TelepathyQt/ClientInterfaceRequestsInterface include/telepathy-qt4/TelepathyQt/ClientObserverInterface include/telepathy-qt4/TelepathyQt/ClientRegistrar include/telepathy-qt4/TelepathyQt/Connection include/telepathy-qt4/TelepathyQt/ConnectionCapabilities include/telepathy-qt4/TelepathyQt/ConnectionFactory include/telepathy-qt4/TelepathyQt/ConnectionInterface include/telepathy-qt4/TelepathyQt/ConnectionInterfaceAddressingInterface include/telepathy-qt4/TelepathyQt/ConnectionInterfaceAliasingInterface include/telepathy-qt4/TelepathyQt/ConnectionInterfaceAnonymityInterface include/telepathy-qt4/TelepathyQt/ConnectionInterfaceAvatarsInterface include/telepathy-qt4/TelepathyQt/ConnectionInterfaceBalanceInterface include/telepathy-qt4/TelepathyQt/ConnectionInterfaceCapabilitiesInterface include/telepathy-qt4/TelepathyQt/ConnectionInterfaceCellularInterface include/telepathy-qt4/TelepathyQt/ConnectionInterfaceClientTypesInterface include/telepathy-qt4/TelepathyQt/ConnectionInterfaceContactBlockingInterface include/telepathy-qt4/TelepathyQt/ConnectionInterfaceContactCapabilitiesInterface include/telepathy-qt4/TelepathyQt/ConnectionInterfaceContactGroupsInterface include/telepathy-qt4/TelepathyQt/ConnectionInterfaceContactInfoInterface include/telepathy-qt4/TelepathyQt/ConnectionInterfaceContactListInterface include/telepathy-qt4/TelepathyQt/ConnectionInterfaceContactsInterface include/telepathy-qt4/TelepathyQt/ConnectionInterfaceLocationInterface include/telepathy-qt4/TelepathyQt/ConnectionInterfaceMailNotificationInterface include/telepathy-qt4/TelepathyQt/ConnectionInterfacePowerSavingInterface include/telepathy-qt4/TelepathyQt/ConnectionInterfacePresenceInterface include/telepathy-qt4/TelepathyQt/ConnectionInterfaceRequestsInterface include/telepathy-qt4/TelepathyQt/ConnectionInterfaceServicePointInterface include/telepathy-qt4/TelepathyQt/ConnectionInterfaceSimplePresenceInterface include/telepathy-qt4/TelepathyQt/ConnectionLowlevel include/telepathy-qt4/TelepathyQt/ConnectionManager include/telepathy-qt4/TelepathyQt/ConnectionManagerInterface include/telepathy-qt4/TelepathyQt/ConnectionManagerLowlevel include/telepathy-qt4/TelepathyQt/Constants include/telepathy-qt4/TelepathyQt/Contact include/telepathy-qt4/TelepathyQt/ContactCapabilities include/telepathy-qt4/TelepathyQt/ContactFactory include/telepathy-qt4/TelepathyQt/ContactManager include/telepathy-qt4/TelepathyQt/ContactMessenger include/telepathy-qt4/TelepathyQt/ContactSearchChannel include/telepathy-qt4/TelepathyQt/DBus include/telepathy-qt4/TelepathyQt/DBusDaemonInterface include/telepathy-qt4/TelepathyQt/DBusError include/telepathy-qt4/TelepathyQt/DBusObject include/telepathy-qt4/TelepathyQt/DBusProxy include/telepathy-qt4/TelepathyQt/DBusProxyFactory include/telepathy-qt4/TelepathyQt/DBusService include/telepathy-qt4/TelepathyQt/DBusTubeChannel include/telepathy-qt4/TelepathyQt/Debug include/telepathy-qt4/TelepathyQt/DebugReceiver include/telepathy-qt4/TelepathyQt/Farstream/Channel include/telepathy-qt4/TelepathyQt/Farstream/Global include/telepathy-qt4/TelepathyQt/Farstream/PendingChannel include/telepathy-qt4/TelepathyQt/Farstream/channel.h include/telepathy-qt4/TelepathyQt/Farstream/global.h include/telepathy-qt4/TelepathyQt/Feature include/telepathy-qt4/TelepathyQt/Features include/telepathy-qt4/TelepathyQt/FileTransferChannel include/telepathy-qt4/TelepathyQt/FileTransferChannelCreationProperties include/telepathy-qt4/TelepathyQt/Filter include/telepathy-qt4/TelepathyQt/FixedFeatureFactory include/telepathy-qt4/TelepathyQt/Functors include/telepathy-qt4/TelepathyQt/GenericCapabilityFilter include/telepathy-qt4/TelepathyQt/GenericPropertyFilter include/telepathy-qt4/TelepathyQt/Global include/telepathy-qt4/TelepathyQt/HandledChannelNotifier +include/telepathy-qt4/TelepathyQt/IODevice include/telepathy-qt4/TelepathyQt/IncomingDBusTubeChannel include/telepathy-qt4/TelepathyQt/IncomingFileTransferChannel include/telepathy-qt4/TelepathyQt/IncomingStreamTubeChannel include/telepathy-qt4/TelepathyQt/IntrospectableInterface include/telepathy-qt4/TelepathyQt/LocationInfo include/telepathy-qt4/TelepathyQt/MediaSessionHandler include/telepathy-qt4/TelepathyQt/MediaSessionHandlerInterface include/telepathy-qt4/TelepathyQt/MediaStreamHandler include/telepathy-qt4/TelepathyQt/MediaStreamHandlerInterface include/telepathy-qt4/TelepathyQt/Message include/telepathy-qt4/TelepathyQt/MessageContentPart include/telepathy-qt4/TelepathyQt/MessageContentPartList include/telepathy-qt4/TelepathyQt/MethodInvocationContext include/telepathy-qt4/TelepathyQt/NotFilter include/telepathy-qt4/TelepathyQt/Object include/telepathy-qt4/TelepathyQt/OptionalInterfaceFactory include/telepathy-qt4/TelepathyQt/OrFilter include/telepathy-qt4/TelepathyQt/OutgoingDBusTubeChannel include/telepathy-qt4/TelepathyQt/OutgoingFileTransferChannel include/telepathy-qt4/TelepathyQt/OutgoingStreamTubeChannel include/telepathy-qt4/TelepathyQt/PeerInterface include/telepathy-qt4/TelepathyQt/PendingAccount include/telepathy-qt4/TelepathyQt/PendingCallContent include/telepathy-qt4/TelepathyQt/PendingCaptchas include/telepathy-qt4/TelepathyQt/PendingChannel include/telepathy-qt4/TelepathyQt/PendingChannelRequest include/telepathy-qt4/TelepathyQt/PendingComposite include/telepathy-qt4/TelepathyQt/PendingConnection include/telepathy-qt4/TelepathyQt/PendingContactAttributes include/telepathy-qt4/TelepathyQt/PendingContactInfo include/telepathy-qt4/TelepathyQt/PendingContacts include/telepathy-qt4/TelepathyQt/PendingDBusTubeConnection include/telepathy-qt4/TelepathyQt/PendingDebugMessageList include/telepathy-qt4/TelepathyQt/PendingFailure include/telepathy-qt4/TelepathyQt/PendingHandles include/telepathy-qt4/TelepathyQt/PendingOperation include/telepathy-qt4/TelepathyQt/PendingReady include/telepathy-qt4/TelepathyQt/PendingSendMessage include/telepathy-qt4/TelepathyQt/PendingStreamTubeConnection include/telepathy-qt4/TelepathyQt/PendingStreamedMediaStreams include/telepathy-qt4/TelepathyQt/PendingString include/telepathy-qt4/TelepathyQt/PendingStringList include/telepathy-qt4/TelepathyQt/PendingSuccess include/telepathy-qt4/TelepathyQt/PendingVariant include/telepathy-qt4/TelepathyQt/PendingVariantMap include/telepathy-qt4/TelepathyQt/PendingVoid include/telepathy-qt4/TelepathyQt/Presence include/telepathy-qt4/TelepathyQt/PresenceSpec include/telepathy-qt4/TelepathyQt/PresenceSpecList include/telepathy-qt4/TelepathyQt/Profile include/telepathy-qt4/TelepathyQt/ProfileManager include/telepathy-qt4/TelepathyQt/Properties include/telepathy-qt4/TelepathyQt/PropertiesInterface include/telepathy-qt4/TelepathyQt/PropertiesInterfaceInterface include/telepathy-qt4/TelepathyQt/ProtocolInfo include/telepathy-qt4/TelepathyQt/ProtocolInfoList include/telepathy-qt4/TelepathyQt/ProtocolInterface include/telepathy-qt4/TelepathyQt/ProtocolInterfaceAddressingInterface include/telepathy-qt4/TelepathyQt/ProtocolInterfaceAvatarsInterface include/telepathy-qt4/TelepathyQt/ProtocolInterfacePresenceInterface include/telepathy-qt4/TelepathyQt/ProtocolParameter include/telepathy-qt4/TelepathyQt/ProtocolParameterList include/telepathy-qt4/TelepathyQt/ReadinessHelper include/telepathy-qt4/TelepathyQt/ReadyObject include/telepathy-qt4/TelepathyQt/ReceivedMessage include/telepathy-qt4/TelepathyQt/RefCounted include/telepathy-qt4/TelepathyQt/ReferencedHandles include/telepathy-qt4/TelepathyQt/ReferencedHandlesIterator include/telepathy-qt4/TelepathyQt/RequestableChannelClassSpec include/telepathy-qt4/TelepathyQt/RequestableChannelClassSpecList include/telepathy-qt4/TelepathyQt/RoomListChannel include/telepathy-qt4/TelepathyQt/ServerAuthenticationChannel include/telepathy-qt4/TelepathyQt/ServiceTypes include/telepathy-qt4/TelepathyQt/SharedPtr include/telepathy-qt4/TelepathyQt/SimpleCallObserver include/telepathy-qt4/TelepathyQt/SimpleObserver include/telepathy-qt4/TelepathyQt/SimpleTextObserver include/telepathy-qt4/TelepathyQt/StatefulDBusProxy include/telepathy-qt4/TelepathyQt/StatelessDBusProxy include/telepathy-qt4/TelepathyQt/StreamTubeChannel include/telepathy-qt4/TelepathyQt/StreamTubeClient include/telepathy-qt4/TelepathyQt/StreamTubeServer include/telepathy-qt4/TelepathyQt/StreamedMediaChannel include/telepathy-qt4/TelepathyQt/StreamedMediaStream include/telepathy-qt4/TelepathyQt/TextChannel include/telepathy-qt4/TelepathyQt/TubeChannel include/telepathy-qt4/TelepathyQt/Types include/telepathy-qt4/TelepathyQt/Utils include/telepathy-qt4/TelepathyQt/_gen/cli-account-manager.h include/telepathy-qt4/TelepathyQt/_gen/cli-account.h include/telepathy-qt4/TelepathyQt/_gen/cli-call-content-media-description.h include/telepathy-qt4/TelepathyQt/_gen/cli-call-content.h include/telepathy-qt4/TelepathyQt/_gen/cli-call-stream-endpoint.h include/telepathy-qt4/TelepathyQt/_gen/cli-call-stream.h include/telepathy-qt4/TelepathyQt/_gen/cli-channel-dispatch-operation.h include/telepathy-qt4/TelepathyQt/_gen/cli-channel-dispatcher.h include/telepathy-qt4/TelepathyQt/_gen/cli-channel-request.h include/telepathy-qt4/TelepathyQt/_gen/cli-channel.h include/telepathy-qt4/TelepathyQt/_gen/cli-client.h include/telepathy-qt4/TelepathyQt/_gen/cli-connection-manager.h include/telepathy-qt4/TelepathyQt/_gen/cli-connection.h include/telepathy-qt4/TelepathyQt/_gen/cli-dbus.h include/telepathy-qt4/TelepathyQt/_gen/cli-debug-receiver.h include/telepathy-qt4/TelepathyQt/_gen/cli-media-session-handler.h include/telepathy-qt4/TelepathyQt/_gen/cli-media-stream-handler.h include/telepathy-qt4/TelepathyQt/_gen/cli-properties.h include/telepathy-qt4/TelepathyQt/_gen/cli-tls-certificate.h include/telepathy-qt4/TelepathyQt/_gen/constants.h include/telepathy-qt4/TelepathyQt/_gen/svc-call.h include/telepathy-qt4/TelepathyQt/_gen/svc-channel.h include/telepathy-qt4/TelepathyQt/_gen/svc-connection-manager.h include/telepathy-qt4/TelepathyQt/_gen/svc-connection.h include/telepathy-qt4/TelepathyQt/_gen/types.h include/telepathy-qt4/TelepathyQt/abstract-adaptor.h include/telepathy-qt4/TelepathyQt/abstract-client.h include/telepathy-qt4/TelepathyQt/abstract-interface.h include/telepathy-qt4/TelepathyQt/account-capability-filter.h include/telepathy-qt4/TelepathyQt/account-factory.h include/telepathy-qt4/TelepathyQt/account-filter.h include/telepathy-qt4/TelepathyQt/account-manager.h include/telepathy-qt4/TelepathyQt/account-property-filter.h include/telepathy-qt4/TelepathyQt/account-set.h include/telepathy-qt4/TelepathyQt/account.h include/telepathy-qt4/TelepathyQt/and-filter.h include/telepathy-qt4/TelepathyQt/avatar.h include/telepathy-qt4/TelepathyQt/base-call.h include/telepathy-qt4/TelepathyQt/base-channel.h include/telepathy-qt4/TelepathyQt/base-connection-manager.h include/telepathy-qt4/TelepathyQt/base-connection.h +include/telepathy-qt4/TelepathyQt/base-debug.h include/telepathy-qt4/TelepathyQt/base-protocol.h include/telepathy-qt4/TelepathyQt/call-channel.h include/telepathy-qt4/TelepathyQt/call-content-media-description.h include/telepathy-qt4/TelepathyQt/call-content.h include/telepathy-qt4/TelepathyQt/call-stream-endpoint.h include/telepathy-qt4/TelepathyQt/call-stream.h include/telepathy-qt4/TelepathyQt/callbacks.h include/telepathy-qt4/TelepathyQt/capabilities-base.h include/telepathy-qt4/TelepathyQt/captcha-authentication.h include/telepathy-qt4/TelepathyQt/captcha.h include/telepathy-qt4/TelepathyQt/channel-class-features.h include/telepathy-qt4/TelepathyQt/channel-class-spec.h include/telepathy-qt4/TelepathyQt/channel-dispatch-operation.h include/telepathy-qt4/TelepathyQt/channel-dispatcher.h include/telepathy-qt4/TelepathyQt/channel-factory.h include/telepathy-qt4/TelepathyQt/channel-request.h include/telepathy-qt4/TelepathyQt/channel.h include/telepathy-qt4/TelepathyQt/client-registrar.h include/telepathy-qt4/TelepathyQt/client.h include/telepathy-qt4/TelepathyQt/connection-capabilities.h include/telepathy-qt4/TelepathyQt/connection-factory.h include/telepathy-qt4/TelepathyQt/connection-lowlevel.h include/telepathy-qt4/TelepathyQt/connection-manager-lowlevel.h include/telepathy-qt4/TelepathyQt/connection-manager.h include/telepathy-qt4/TelepathyQt/connection.h include/telepathy-qt4/TelepathyQt/constants.h include/telepathy-qt4/TelepathyQt/contact-capabilities.h include/telepathy-qt4/TelepathyQt/contact-factory.h include/telepathy-qt4/TelepathyQt/contact-manager.h include/telepathy-qt4/TelepathyQt/contact-messenger.h include/telepathy-qt4/TelepathyQt/contact-search-channel.h include/telepathy-qt4/TelepathyQt/contact.h include/telepathy-qt4/TelepathyQt/dbus-error.h include/telepathy-qt4/TelepathyQt/dbus-object.h include/telepathy-qt4/TelepathyQt/dbus-proxy-factory.h include/telepathy-qt4/TelepathyQt/dbus-proxy.h include/telepathy-qt4/TelepathyQt/dbus-service.h include/telepathy-qt4/TelepathyQt/dbus-tube-channel.h include/telepathy-qt4/TelepathyQt/dbus.h include/telepathy-qt4/TelepathyQt/debug-receiver.h include/telepathy-qt4/TelepathyQt/debug.h include/telepathy-qt4/TelepathyQt/feature.h include/telepathy-qt4/TelepathyQt/file-transfer-channel-creation-properties.h include/telepathy-qt4/TelepathyQt/file-transfer-channel.h include/telepathy-qt4/TelepathyQt/filter.h include/telepathy-qt4/TelepathyQt/fixed-feature-factory.h include/telepathy-qt4/TelepathyQt/functors.h include/telepathy-qt4/TelepathyQt/generic-capability-filter.h include/telepathy-qt4/TelepathyQt/generic-property-filter.h include/telepathy-qt4/TelepathyQt/global.h include/telepathy-qt4/TelepathyQt/handled-channel-notifier.h +include/telepathy-qt4/TelepathyQt/io-device.h include/telepathy-qt4/TelepathyQt/incoming-dbus-tube-channel.h include/telepathy-qt4/TelepathyQt/incoming-file-transfer-channel.h include/telepathy-qt4/TelepathyQt/incoming-stream-tube-channel.h include/telepathy-qt4/TelepathyQt/location-info.h include/telepathy-qt4/TelepathyQt/media-session-handler.h include/telepathy-qt4/TelepathyQt/media-stream-handler.h include/telepathy-qt4/TelepathyQt/message-content-part.h include/telepathy-qt4/TelepathyQt/message.h include/telepathy-qt4/TelepathyQt/method-invocation-context.h include/telepathy-qt4/TelepathyQt/not-filter.h include/telepathy-qt4/TelepathyQt/object.h include/telepathy-qt4/TelepathyQt/optional-interface-factory.h include/telepathy-qt4/TelepathyQt/or-filter.h include/telepathy-qt4/TelepathyQt/outgoing-dbus-tube-channel.h include/telepathy-qt4/TelepathyQt/outgoing-file-transfer-channel.h include/telepathy-qt4/TelepathyQt/outgoing-stream-tube-channel.h include/telepathy-qt4/TelepathyQt/pending-account.h include/telepathy-qt4/TelepathyQt/pending-captchas.h include/telepathy-qt4/TelepathyQt/pending-channel-request.h include/telepathy-qt4/TelepathyQt/pending-channel.h include/telepathy-qt4/TelepathyQt/pending-connection.h include/telepathy-qt4/TelepathyQt/pending-contact-attributes.h include/telepathy-qt4/TelepathyQt/pending-contact-info.h include/telepathy-qt4/TelepathyQt/pending-contacts.h include/telepathy-qt4/TelepathyQt/pending-dbus-tube-connection.h include/telepathy-qt4/TelepathyQt/pending-debug-message-list.h include/telepathy-qt4/TelepathyQt/pending-handles.h include/telepathy-qt4/TelepathyQt/pending-operation.h include/telepathy-qt4/TelepathyQt/pending-ready.h include/telepathy-qt4/TelepathyQt/pending-send-message.h include/telepathy-qt4/TelepathyQt/pending-stream-tube-connection.h include/telepathy-qt4/TelepathyQt/pending-string-list.h include/telepathy-qt4/TelepathyQt/pending-string.h include/telepathy-qt4/TelepathyQt/pending-variant-map.h include/telepathy-qt4/TelepathyQt/pending-variant.h include/telepathy-qt4/TelepathyQt/presence.h include/telepathy-qt4/TelepathyQt/profile-manager.h include/telepathy-qt4/TelepathyQt/profile.h include/telepathy-qt4/TelepathyQt/properties.h include/telepathy-qt4/TelepathyQt/protocol-info.h include/telepathy-qt4/TelepathyQt/protocol-parameter.h include/telepathy-qt4/TelepathyQt/readiness-helper.h include/telepathy-qt4/TelepathyQt/ready-object.h include/telepathy-qt4/TelepathyQt/referenced-handles.h include/telepathy-qt4/TelepathyQt/requestable-channel-class-spec.h include/telepathy-qt4/TelepathyQt/room-list-channel.h include/telepathy-qt4/TelepathyQt/server-authentication-channel.h include/telepathy-qt4/TelepathyQt/service-types.h include/telepathy-qt4/TelepathyQt/shared-ptr.h include/telepathy-qt4/TelepathyQt/simple-call-observer.h include/telepathy-qt4/TelepathyQt/simple-observer.h include/telepathy-qt4/TelepathyQt/simple-pending-operations.h include/telepathy-qt4/TelepathyQt/simple-text-observer.h include/telepathy-qt4/TelepathyQt/stream-tube-channel.h include/telepathy-qt4/TelepathyQt/stream-tube-client.h include/telepathy-qt4/TelepathyQt/stream-tube-server.h include/telepathy-qt4/TelepathyQt/streamed-media-channel.h include/telepathy-qt4/TelepathyQt/text-channel.h include/telepathy-qt4/TelepathyQt/tls-certificate.h include/telepathy-qt4/TelepathyQt/tube-channel.h include/telepathy-qt4/TelepathyQt/types.h include/telepathy-qt4/TelepathyQt/utils.h lib/cmake/TelepathyQt4/TelepathyQt4Config.cmake lib/cmake/TelepathyQt4/TelepathyQt4ConfigVersion.cmake lib/cmake/TelepathyQt4/TelepathyQt4Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/TelepathyQt4/TelepathyQt4Targets.cmake lib/cmake/TelepathyQt4Farstream/TelepathyQt4FarstreamConfig.cmake lib/cmake/TelepathyQt4Farstream/TelepathyQt4FarstreamConfigVersion.cmake lib/cmake/TelepathyQt4Service/TelepathyQt4ServiceConfig.cmake lib/cmake/TelepathyQt4Service/TelepathyQt4ServiceConfigVersion.cmake lib/libtelepathy-qt4-farstream.so lib/libtelepathy-qt4-farstream.so.2 lib/libtelepathy-qt4-farstream.so.2.%%PORTVERSION%% -lib/libtelepathy-qt4-service.a +lib/libtelepathy-qt4-service.so +lib/libtelepathy-qt4-service.so.0 +lib/libtelepathy-qt4-service.so.2.%%PORTVERSION%% lib/libtelepathy-qt4.so lib/libtelepathy-qt4.so.2 lib/libtelepathy-qt4.so.2.%%PORTVERSION%% libdata/pkgconfig/TelepathyQt4.pc libdata/pkgconfig/TelepathyQt4Farstream.pc libdata/pkgconfig/TelepathyQt4Service.pc