From owner-svn-ports-all@freebsd.org Sun Jul 17 16:48:20 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D86A7B9C441; Sun, 17 Jul 2016 16:48:20 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7851C1E88; Sun, 17 Jul 2016 16:48:20 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6HGmJQn093720; Sun, 17 Jul 2016 16:48:19 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6HGmJJm093715; Sun, 17 Jul 2016 16:48:19 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201607171648.u6HGmJJm093715@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 17 Jul 2016 16:48:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418671 - in head/net-im: . telepathy-qt5 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jul 2016 16:48:21 -0000 Author: rakuco Date: Sun Jul 17 16:48:19 2016 New Revision: 418671 URL: https://svnweb.freebsd.org/changeset/ports/418671 Log: New port: net-im/telepathy-qt5. This is the Qt5 counterpart of net-im/telepathy-qt4. It was worked on by tcberner and myself. From pkg-descr: This is a library for Qt-based Telepathy clients. Telepathy is a D-Bus framework for unifying real time communication, including instant messaging, voice calls and video calls. It abstracts differences between protocols to provide a unified interface for applications. WWW: http://telepathy.freedesktop.org/doc/telepathy-qt Added: head/net-im/telepathy-qt5/ head/net-im/telepathy-qt5/Makefile (contents, props changed) head/net-im/telepathy-qt5/distinfo (contents, props changed) head/net-im/telepathy-qt5/pkg-descr (contents, props changed) head/net-im/telepathy-qt5/pkg-plist (contents, props changed) Modified: head/net-im/Makefile Modified: head/net-im/Makefile ============================================================================== --- head/net-im/Makefile Sun Jul 17 15:41:55 2016 (r418670) +++ head/net-im/Makefile Sun Jul 17 16:48:19 2016 (r418671) @@ -175,6 +175,7 @@ SUBDIR += telepathy-mission-control SUBDIR += telepathy-python SUBDIR += telepathy-qt4 + SUBDIR += telepathy-qt5 SUBDIR += telepathy-rakia SUBDIR += telepathy-salut SUBDIR += telepathy-sofiasip Added: head/net-im/telepathy-qt5/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/telepathy-qt5/Makefile Sun Jul 17 16:48:19 2016 (r418671) @@ -0,0 +1,54 @@ +# $FreeBSD$ + +PORTNAME= telepathy-qt5 +PORTVERSION= 0.9.7 +CATEGORIES= net-im +MASTER_SITES= https://telepathy.freedesktop.org/releases/${PORTNAME:C/5$//}/ +DISTNAME= ${PORTNAME:C/5$//}-${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_QT5= core dbus gui network xml \ + buildtools_build qmake_build testlib_build widgets_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=5 \ + -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 Added: head/net-im/telepathy-qt5/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/telepathy-qt5/distinfo Sun Jul 17 16:48:19 2016 (r418671) @@ -0,0 +1,3 @@ +TIMESTAMP = 1466432547 +SHA256 (telepathy-qt-0.9.7.tar.gz) = 21bad30be7ebc4ba667d53d92cd1cec1be23114103f2149404d9740721693d4f +SIZE (telepathy-qt-0.9.7.tar.gz) = 6213405 Added: head/net-im/telepathy-qt5/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/telepathy-qt5/pkg-descr Sun Jul 17 16:48:19 2016 (r418671) @@ -0,0 +1,8 @@ +This is a library for Qt-based Telepathy clients. + +Telepathy is a D-Bus framework for unifying real time communication, +including instant messaging, voice calls and video calls. It abstracts +differences between protocols to provide a unified interface for +applications. + +WWW: http://telepathy.freedesktop.org/doc/telepathy-qt Added: head/net-im/telepathy-qt5/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/telepathy-qt5/pkg-plist Sun Jul 17 16:48:19 2016 (r418671) @@ -0,0 +1,435 @@ +include/telepathy-qt5/TelepathyQt/AbstractAdaptor +include/telepathy-qt5/TelepathyQt/AbstractClient +include/telepathy-qt5/TelepathyQt/AbstractClientApprover +include/telepathy-qt5/TelepathyQt/AbstractClientHandler +include/telepathy-qt5/TelepathyQt/AbstractClientObserver +include/telepathy-qt5/TelepathyQt/AbstractDBusServiceInterface +include/telepathy-qt5/TelepathyQt/AbstractInterface +include/telepathy-qt5/TelepathyQt/AbstractProtocolInterface +include/telepathy-qt5/TelepathyQt/Account +include/telepathy-qt5/TelepathyQt/AccountCapabilityFilter +include/telepathy-qt5/TelepathyQt/AccountFactory +include/telepathy-qt5/TelepathyQt/AccountFilter +include/telepathy-qt5/TelepathyQt/AccountInterface +include/telepathy-qt5/TelepathyQt/AccountInterfaceAddressingInterface +include/telepathy-qt5/TelepathyQt/AccountInterfaceAvatarInterface +include/telepathy-qt5/TelepathyQt/AccountInterfaceStorageInterface +include/telepathy-qt5/TelepathyQt/AccountManager +include/telepathy-qt5/TelepathyQt/AccountManagerInterface +include/telepathy-qt5/TelepathyQt/AccountPropertyFilter +include/telepathy-qt5/TelepathyQt/AccountSet +include/telepathy-qt5/TelepathyQt/AndFilter +include/telepathy-qt5/TelepathyQt/AuthenticationTLSCertificateInterface +include/telepathy-qt5/TelepathyQt/AvatarData +include/telepathy-qt5/TelepathyQt/AvatarSpec +include/telepathy-qt5/TelepathyQt/BaseCall +include/telepathy-qt5/TelepathyQt/BaseChannel +include/telepathy-qt5/TelepathyQt/BaseConnection +include/telepathy-qt5/TelepathyQt/BaseConnectionManager +include/telepathy-qt5/TelepathyQt/BaseDebug +include/telepathy-qt5/TelepathyQt/BaseProtocol +include/telepathy-qt5/TelepathyQt/BaseProtocolAddressingInterface +include/telepathy-qt5/TelepathyQt/BaseProtocolAvatarsInterface +include/telepathy-qt5/TelepathyQt/BaseProtocolPresenceInterface +include/telepathy-qt5/TelepathyQt/CallChannel +include/telepathy-qt5/TelepathyQt/CallContent +include/telepathy-qt5/TelepathyQt/CallContentInterface +include/telepathy-qt5/TelepathyQt/CallContentInterfaceAudioControlInterface +include/telepathy-qt5/TelepathyQt/CallContentInterfaceDTMFInterface +include/telepathy-qt5/TelepathyQt/CallContentInterfaceMediaInterface +include/telepathy-qt5/TelepathyQt/CallContentInterfaceVideoControlInterface +include/telepathy-qt5/TelepathyQt/CallContentMediaDescription +include/telepathy-qt5/TelepathyQt/CallContentMediaDescriptionInterface +include/telepathy-qt5/TelepathyQt/CallContentMediaDescriptionInterfaceRTCPExtendedReportsInterface +include/telepathy-qt5/TelepathyQt/CallContentMediaDescriptionInterfaceRTCPFeedbackInterface +include/telepathy-qt5/TelepathyQt/CallContentMediaDescriptionInterfaceRTPHeaderExtensionsInterface +include/telepathy-qt5/TelepathyQt/CallStream +include/telepathy-qt5/TelepathyQt/CallStreamEndpoint +include/telepathy-qt5/TelepathyQt/CallStreamEndpointInterface +include/telepathy-qt5/TelepathyQt/CallStreamInterface +include/telepathy-qt5/TelepathyQt/CallStreamInterfaceMediaInterface +include/telepathy-qt5/TelepathyQt/Callbacks +include/telepathy-qt5/TelepathyQt/CapabilitiesBase +include/telepathy-qt5/TelepathyQt/Captcha +include/telepathy-qt5/TelepathyQt/CaptchaAuthentication +include/telepathy-qt5/TelepathyQt/Channel +include/telepathy-qt5/TelepathyQt/ChannelClassFeatures +include/telepathy-qt5/TelepathyQt/ChannelClassSpec +include/telepathy-qt5/TelepathyQt/ChannelClassSpecList +include/telepathy-qt5/TelepathyQt/ChannelDispatchOperation +include/telepathy-qt5/TelepathyQt/ChannelDispatchOperationInterface +include/telepathy-qt5/TelepathyQt/ChannelDispatcher +include/telepathy-qt5/TelepathyQt/ChannelDispatcherInterface +include/telepathy-qt5/TelepathyQt/ChannelFactory +include/telepathy-qt5/TelepathyQt/ChannelInterface +include/telepathy-qt5/TelepathyQt/ChannelInterfaceAnonymityInterface +include/telepathy-qt5/TelepathyQt/ChannelInterfaceCallStateInterface +include/telepathy-qt5/TelepathyQt/ChannelInterfaceCaptchaAuthenticationInterface +include/telepathy-qt5/TelepathyQt/ChannelInterfaceChatStateInterface +include/telepathy-qt5/TelepathyQt/ChannelInterfaceConferenceInterface +include/telepathy-qt5/TelepathyQt/ChannelInterfaceDTMFInterface +include/telepathy-qt5/TelepathyQt/ChannelInterfaceDestroyableInterface +include/telepathy-qt5/TelepathyQt/ChannelInterfaceFileTransferMetadataInterface +include/telepathy-qt5/TelepathyQt/ChannelInterfaceGroupInterface +include/telepathy-qt5/TelepathyQt/ChannelInterfaceHoldInterface +include/telepathy-qt5/TelepathyQt/ChannelInterfaceMediaSignallingInterface +include/telepathy-qt5/TelepathyQt/ChannelInterfaceMessagesInterface +include/telepathy-qt5/TelepathyQt/ChannelInterfacePasswordInterface +include/telepathy-qt5/TelepathyQt/ChannelInterfaceRoomConfigInterface +include/telepathy-qt5/TelepathyQt/ChannelInterfaceRoomInterface +include/telepathy-qt5/TelepathyQt/ChannelInterfaceSASLAuthenticationInterface +include/telepathy-qt5/TelepathyQt/ChannelInterfaceSMSInterface +include/telepathy-qt5/TelepathyQt/ChannelInterfaceSecurableInterface +include/telepathy-qt5/TelepathyQt/ChannelInterfaceServicePointInterface +include/telepathy-qt5/TelepathyQt/ChannelInterfaceSubjectInterface +include/telepathy-qt5/TelepathyQt/ChannelInterfaceTubeInterface +include/telepathy-qt5/TelepathyQt/ChannelRequest +include/telepathy-qt5/TelepathyQt/ChannelRequestHints +include/telepathy-qt5/TelepathyQt/ChannelRequestInterface +include/telepathy-qt5/TelepathyQt/ChannelTypeCallInterface +include/telepathy-qt5/TelepathyQt/ChannelTypeContactListInterface +include/telepathy-qt5/TelepathyQt/ChannelTypeContactSearchInterface +include/telepathy-qt5/TelepathyQt/ChannelTypeDBusTubeInterface +include/telepathy-qt5/TelepathyQt/ChannelTypeFileTransferInterface +include/telepathy-qt5/TelepathyQt/ChannelTypeRoomListInterface +include/telepathy-qt5/TelepathyQt/ChannelTypeServerAuthenticationInterface +include/telepathy-qt5/TelepathyQt/ChannelTypeServerTLSConnectionInterface +include/telepathy-qt5/TelepathyQt/ChannelTypeStreamTubeInterface +include/telepathy-qt5/TelepathyQt/ChannelTypeStreamedMediaInterface +include/telepathy-qt5/TelepathyQt/ChannelTypeTextInterface +include/telepathy-qt5/TelepathyQt/ChannelTypeTubeInterface +include/telepathy-qt5/TelepathyQt/ChannelTypeTubesInterface +include/telepathy-qt5/TelepathyQt/Client +include/telepathy-qt5/TelepathyQt/ClientApproverInterface +include/telepathy-qt5/TelepathyQt/ClientHandlerInterface +include/telepathy-qt5/TelepathyQt/ClientInterface +include/telepathy-qt5/TelepathyQt/ClientInterfaceRequestsInterface +include/telepathy-qt5/TelepathyQt/ClientObserverInterface +include/telepathy-qt5/TelepathyQt/ClientRegistrar +include/telepathy-qt5/TelepathyQt/Connection +include/telepathy-qt5/TelepathyQt/ConnectionCapabilities +include/telepathy-qt5/TelepathyQt/ConnectionFactory +include/telepathy-qt5/TelepathyQt/ConnectionInterface +include/telepathy-qt5/TelepathyQt/ConnectionInterfaceAddressingInterface +include/telepathy-qt5/TelepathyQt/ConnectionInterfaceAliasingInterface +include/telepathy-qt5/TelepathyQt/ConnectionInterfaceAnonymityInterface +include/telepathy-qt5/TelepathyQt/ConnectionInterfaceAvatarsInterface +include/telepathy-qt5/TelepathyQt/ConnectionInterfaceBalanceInterface +include/telepathy-qt5/TelepathyQt/ConnectionInterfaceCapabilitiesInterface +include/telepathy-qt5/TelepathyQt/ConnectionInterfaceCellularInterface +include/telepathy-qt5/TelepathyQt/ConnectionInterfaceClientTypesInterface +include/telepathy-qt5/TelepathyQt/ConnectionInterfaceContactBlockingInterface +include/telepathy-qt5/TelepathyQt/ConnectionInterfaceContactCapabilitiesInterface +include/telepathy-qt5/TelepathyQt/ConnectionInterfaceContactGroupsInterface +include/telepathy-qt5/TelepathyQt/ConnectionInterfaceContactInfoInterface +include/telepathy-qt5/TelepathyQt/ConnectionInterfaceContactListInterface +include/telepathy-qt5/TelepathyQt/ConnectionInterfaceContactsInterface +include/telepathy-qt5/TelepathyQt/ConnectionInterfaceLocationInterface +include/telepathy-qt5/TelepathyQt/ConnectionInterfaceMailNotificationInterface +include/telepathy-qt5/TelepathyQt/ConnectionInterfacePowerSavingInterface +include/telepathy-qt5/TelepathyQt/ConnectionInterfacePresenceInterface +include/telepathy-qt5/TelepathyQt/ConnectionInterfaceRequestsInterface +include/telepathy-qt5/TelepathyQt/ConnectionInterfaceServicePointInterface +include/telepathy-qt5/TelepathyQt/ConnectionInterfaceSimplePresenceInterface +include/telepathy-qt5/TelepathyQt/ConnectionLowlevel +include/telepathy-qt5/TelepathyQt/ConnectionManager +include/telepathy-qt5/TelepathyQt/ConnectionManagerInterface +include/telepathy-qt5/TelepathyQt/ConnectionManagerLowlevel +include/telepathy-qt5/TelepathyQt/Constants +include/telepathy-qt5/TelepathyQt/Contact +include/telepathy-qt5/TelepathyQt/ContactCapabilities +include/telepathy-qt5/TelepathyQt/ContactFactory +include/telepathy-qt5/TelepathyQt/ContactManager +include/telepathy-qt5/TelepathyQt/ContactMessenger +include/telepathy-qt5/TelepathyQt/ContactSearchChannel +include/telepathy-qt5/TelepathyQt/DBus +include/telepathy-qt5/TelepathyQt/DBusDaemonInterface +include/telepathy-qt5/TelepathyQt/DBusError +include/telepathy-qt5/TelepathyQt/DBusObject +include/telepathy-qt5/TelepathyQt/DBusProxy +include/telepathy-qt5/TelepathyQt/DBusProxyFactory +include/telepathy-qt5/TelepathyQt/DBusService +include/telepathy-qt5/TelepathyQt/DBusTubeChannel +include/telepathy-qt5/TelepathyQt/Debug +include/telepathy-qt5/TelepathyQt/DebugReceiver +include/telepathy-qt5/TelepathyQt/Farstream/Channel +include/telepathy-qt5/TelepathyQt/Farstream/Global +include/telepathy-qt5/TelepathyQt/Farstream/PendingChannel +include/telepathy-qt5/TelepathyQt/Farstream/channel.h +include/telepathy-qt5/TelepathyQt/Farstream/global.h +include/telepathy-qt5/TelepathyQt/Feature +include/telepathy-qt5/TelepathyQt/Features +include/telepathy-qt5/TelepathyQt/FileTransferChannel +include/telepathy-qt5/TelepathyQt/FileTransferChannelCreationProperties +include/telepathy-qt5/TelepathyQt/Filter +include/telepathy-qt5/TelepathyQt/FixedFeatureFactory +include/telepathy-qt5/TelepathyQt/Functors +include/telepathy-qt5/TelepathyQt/GenericCapabilityFilter +include/telepathy-qt5/TelepathyQt/GenericPropertyFilter +include/telepathy-qt5/TelepathyQt/Global +include/telepathy-qt5/TelepathyQt/HandledChannelNotifier +include/telepathy-qt5/TelepathyQt/IODevice +include/telepathy-qt5/TelepathyQt/IncomingDBusTubeChannel +include/telepathy-qt5/TelepathyQt/IncomingFileTransferChannel +include/telepathy-qt5/TelepathyQt/IncomingStreamTubeChannel +include/telepathy-qt5/TelepathyQt/IntrospectableInterface +include/telepathy-qt5/TelepathyQt/LocationInfo +include/telepathy-qt5/TelepathyQt/MediaSessionHandler +include/telepathy-qt5/TelepathyQt/MediaSessionHandlerInterface +include/telepathy-qt5/TelepathyQt/MediaStreamHandler +include/telepathy-qt5/TelepathyQt/MediaStreamHandlerInterface +include/telepathy-qt5/TelepathyQt/Message +include/telepathy-qt5/TelepathyQt/MessageContentPart +include/telepathy-qt5/TelepathyQt/MessageContentPartList +include/telepathy-qt5/TelepathyQt/MethodInvocationContext +include/telepathy-qt5/TelepathyQt/NotFilter +include/telepathy-qt5/TelepathyQt/Object +include/telepathy-qt5/TelepathyQt/OptionalInterfaceFactory +include/telepathy-qt5/TelepathyQt/OrFilter +include/telepathy-qt5/TelepathyQt/OutgoingDBusTubeChannel +include/telepathy-qt5/TelepathyQt/OutgoingFileTransferChannel +include/telepathy-qt5/TelepathyQt/OutgoingStreamTubeChannel +include/telepathy-qt5/TelepathyQt/PeerInterface +include/telepathy-qt5/TelepathyQt/PendingAccount +include/telepathy-qt5/TelepathyQt/PendingCallContent +include/telepathy-qt5/TelepathyQt/PendingCaptchas +include/telepathy-qt5/TelepathyQt/PendingChannel +include/telepathy-qt5/TelepathyQt/PendingChannelRequest +include/telepathy-qt5/TelepathyQt/PendingComposite +include/telepathy-qt5/TelepathyQt/PendingConnection +include/telepathy-qt5/TelepathyQt/PendingContactAttributes +include/telepathy-qt5/TelepathyQt/PendingContactInfo +include/telepathy-qt5/TelepathyQt/PendingContacts +include/telepathy-qt5/TelepathyQt/PendingDBusTubeConnection +include/telepathy-qt5/TelepathyQt/PendingDebugMessageList +include/telepathy-qt5/TelepathyQt/PendingFailure +include/telepathy-qt5/TelepathyQt/PendingHandles +include/telepathy-qt5/TelepathyQt/PendingOperation +include/telepathy-qt5/TelepathyQt/PendingReady +include/telepathy-qt5/TelepathyQt/PendingSendMessage +include/telepathy-qt5/TelepathyQt/PendingStreamTubeConnection +include/telepathy-qt5/TelepathyQt/PendingStreamedMediaStreams +include/telepathy-qt5/TelepathyQt/PendingString +include/telepathy-qt5/TelepathyQt/PendingStringList +include/telepathy-qt5/TelepathyQt/PendingSuccess +include/telepathy-qt5/TelepathyQt/PendingVariant +include/telepathy-qt5/TelepathyQt/PendingVariantMap +include/telepathy-qt5/TelepathyQt/PendingVoid +include/telepathy-qt5/TelepathyQt/Presence +include/telepathy-qt5/TelepathyQt/PresenceSpec +include/telepathy-qt5/TelepathyQt/PresenceSpecList +include/telepathy-qt5/TelepathyQt/Profile +include/telepathy-qt5/TelepathyQt/ProfileManager +include/telepathy-qt5/TelepathyQt/Properties +include/telepathy-qt5/TelepathyQt/PropertiesInterface +include/telepathy-qt5/TelepathyQt/PropertiesInterfaceInterface +include/telepathy-qt5/TelepathyQt/ProtocolInfo +include/telepathy-qt5/TelepathyQt/ProtocolInfoList +include/telepathy-qt5/TelepathyQt/ProtocolInterface +include/telepathy-qt5/TelepathyQt/ProtocolInterfaceAddressingInterface +include/telepathy-qt5/TelepathyQt/ProtocolInterfaceAvatarsInterface +include/telepathy-qt5/TelepathyQt/ProtocolInterfacePresenceInterface +include/telepathy-qt5/TelepathyQt/ProtocolParameter +include/telepathy-qt5/TelepathyQt/ProtocolParameterList +include/telepathy-qt5/TelepathyQt/ReadinessHelper +include/telepathy-qt5/TelepathyQt/ReadyObject +include/telepathy-qt5/TelepathyQt/ReceivedMessage +include/telepathy-qt5/TelepathyQt/RefCounted +include/telepathy-qt5/TelepathyQt/ReferencedHandles +include/telepathy-qt5/TelepathyQt/ReferencedHandlesIterator +include/telepathy-qt5/TelepathyQt/RequestableChannelClassSpec +include/telepathy-qt5/TelepathyQt/RequestableChannelClassSpecList +include/telepathy-qt5/TelepathyQt/RoomListChannel +include/telepathy-qt5/TelepathyQt/ServerAuthenticationChannel +include/telepathy-qt5/TelepathyQt/ServiceTypes +include/telepathy-qt5/TelepathyQt/SharedPtr +include/telepathy-qt5/TelepathyQt/SimpleCallObserver +include/telepathy-qt5/TelepathyQt/SimpleObserver +include/telepathy-qt5/TelepathyQt/SimpleTextObserver +include/telepathy-qt5/TelepathyQt/StatefulDBusProxy +include/telepathy-qt5/TelepathyQt/StatelessDBusProxy +include/telepathy-qt5/TelepathyQt/StreamTubeChannel +include/telepathy-qt5/TelepathyQt/StreamTubeClient +include/telepathy-qt5/TelepathyQt/StreamTubeServer +include/telepathy-qt5/TelepathyQt/StreamedMediaChannel +include/telepathy-qt5/TelepathyQt/StreamedMediaStream +include/telepathy-qt5/TelepathyQt/TextChannel +include/telepathy-qt5/TelepathyQt/TubeChannel +include/telepathy-qt5/TelepathyQt/Types +include/telepathy-qt5/TelepathyQt/Utils +include/telepathy-qt5/TelepathyQt/_gen/cli-account-manager.h +include/telepathy-qt5/TelepathyQt/_gen/cli-account.h +include/telepathy-qt5/TelepathyQt/_gen/cli-call-content-media-description.h +include/telepathy-qt5/TelepathyQt/_gen/cli-call-content.h +include/telepathy-qt5/TelepathyQt/_gen/cli-call-stream-endpoint.h +include/telepathy-qt5/TelepathyQt/_gen/cli-call-stream.h +include/telepathy-qt5/TelepathyQt/_gen/cli-channel-dispatch-operation.h +include/telepathy-qt5/TelepathyQt/_gen/cli-channel-dispatcher.h +include/telepathy-qt5/TelepathyQt/_gen/cli-channel-request.h +include/telepathy-qt5/TelepathyQt/_gen/cli-channel.h +include/telepathy-qt5/TelepathyQt/_gen/cli-client.h +include/telepathy-qt5/TelepathyQt/_gen/cli-connection-manager.h +include/telepathy-qt5/TelepathyQt/_gen/cli-connection.h +include/telepathy-qt5/TelepathyQt/_gen/cli-dbus.h +include/telepathy-qt5/TelepathyQt/_gen/cli-debug-receiver.h +include/telepathy-qt5/TelepathyQt/_gen/cli-media-session-handler.h +include/telepathy-qt5/TelepathyQt/_gen/cli-media-stream-handler.h +include/telepathy-qt5/TelepathyQt/_gen/cli-properties.h +include/telepathy-qt5/TelepathyQt/_gen/cli-tls-certificate.h +include/telepathy-qt5/TelepathyQt/_gen/constants.h +include/telepathy-qt5/TelepathyQt/_gen/svc-call.h +include/telepathy-qt5/TelepathyQt/_gen/svc-channel.h +include/telepathy-qt5/TelepathyQt/_gen/svc-connection-manager.h +include/telepathy-qt5/TelepathyQt/_gen/svc-connection.h +include/telepathy-qt5/TelepathyQt/_gen/types.h +include/telepathy-qt5/TelepathyQt/abstract-adaptor.h +include/telepathy-qt5/TelepathyQt/abstract-client.h +include/telepathy-qt5/TelepathyQt/abstract-interface.h +include/telepathy-qt5/TelepathyQt/account-capability-filter.h +include/telepathy-qt5/TelepathyQt/account-factory.h +include/telepathy-qt5/TelepathyQt/account-filter.h +include/telepathy-qt5/TelepathyQt/account-manager.h +include/telepathy-qt5/TelepathyQt/account-property-filter.h +include/telepathy-qt5/TelepathyQt/account-set.h +include/telepathy-qt5/TelepathyQt/account.h +include/telepathy-qt5/TelepathyQt/and-filter.h +include/telepathy-qt5/TelepathyQt/avatar.h +include/telepathy-qt5/TelepathyQt/base-call.h +include/telepathy-qt5/TelepathyQt/base-channel.h +include/telepathy-qt5/TelepathyQt/base-connection-manager.h +include/telepathy-qt5/TelepathyQt/base-connection.h +include/telepathy-qt5/TelepathyQt/base-debug.h +include/telepathy-qt5/TelepathyQt/base-protocol.h +include/telepathy-qt5/TelepathyQt/call-channel.h +include/telepathy-qt5/TelepathyQt/call-content-media-description.h +include/telepathy-qt5/TelepathyQt/call-content.h +include/telepathy-qt5/TelepathyQt/call-stream-endpoint.h +include/telepathy-qt5/TelepathyQt/call-stream.h +include/telepathy-qt5/TelepathyQt/callbacks.h +include/telepathy-qt5/TelepathyQt/capabilities-base.h +include/telepathy-qt5/TelepathyQt/captcha-authentication.h +include/telepathy-qt5/TelepathyQt/captcha.h +include/telepathy-qt5/TelepathyQt/channel-class-features.h +include/telepathy-qt5/TelepathyQt/channel-class-spec.h +include/telepathy-qt5/TelepathyQt/channel-dispatch-operation.h +include/telepathy-qt5/TelepathyQt/channel-dispatcher.h +include/telepathy-qt5/TelepathyQt/channel-factory.h +include/telepathy-qt5/TelepathyQt/channel-request.h +include/telepathy-qt5/TelepathyQt/channel.h +include/telepathy-qt5/TelepathyQt/client-registrar.h +include/telepathy-qt5/TelepathyQt/client.h +include/telepathy-qt5/TelepathyQt/connection-capabilities.h +include/telepathy-qt5/TelepathyQt/connection-factory.h +include/telepathy-qt5/TelepathyQt/connection-lowlevel.h +include/telepathy-qt5/TelepathyQt/connection-manager-lowlevel.h +include/telepathy-qt5/TelepathyQt/connection-manager.h +include/telepathy-qt5/TelepathyQt/connection.h +include/telepathy-qt5/TelepathyQt/constants.h +include/telepathy-qt5/TelepathyQt/contact-capabilities.h +include/telepathy-qt5/TelepathyQt/contact-factory.h +include/telepathy-qt5/TelepathyQt/contact-manager.h +include/telepathy-qt5/TelepathyQt/contact-messenger.h +include/telepathy-qt5/TelepathyQt/contact-search-channel.h +include/telepathy-qt5/TelepathyQt/contact.h +include/telepathy-qt5/TelepathyQt/dbus-error.h +include/telepathy-qt5/TelepathyQt/dbus-object.h +include/telepathy-qt5/TelepathyQt/dbus-proxy-factory.h +include/telepathy-qt5/TelepathyQt/dbus-proxy.h +include/telepathy-qt5/TelepathyQt/dbus-service.h +include/telepathy-qt5/TelepathyQt/dbus-tube-channel.h +include/telepathy-qt5/TelepathyQt/dbus.h +include/telepathy-qt5/TelepathyQt/debug-receiver.h +include/telepathy-qt5/TelepathyQt/debug.h +include/telepathy-qt5/TelepathyQt/feature.h +include/telepathy-qt5/TelepathyQt/file-transfer-channel-creation-properties.h +include/telepathy-qt5/TelepathyQt/file-transfer-channel.h +include/telepathy-qt5/TelepathyQt/filter.h +include/telepathy-qt5/TelepathyQt/fixed-feature-factory.h +include/telepathy-qt5/TelepathyQt/functors.h +include/telepathy-qt5/TelepathyQt/generic-capability-filter.h +include/telepathy-qt5/TelepathyQt/generic-property-filter.h +include/telepathy-qt5/TelepathyQt/global.h +include/telepathy-qt5/TelepathyQt/handled-channel-notifier.h +include/telepathy-qt5/TelepathyQt/incoming-dbus-tube-channel.h +include/telepathy-qt5/TelepathyQt/incoming-file-transfer-channel.h +include/telepathy-qt5/TelepathyQt/incoming-stream-tube-channel.h +include/telepathy-qt5/TelepathyQt/io-device.h +include/telepathy-qt5/TelepathyQt/location-info.h +include/telepathy-qt5/TelepathyQt/media-session-handler.h +include/telepathy-qt5/TelepathyQt/media-stream-handler.h +include/telepathy-qt5/TelepathyQt/message-content-part.h +include/telepathy-qt5/TelepathyQt/message.h +include/telepathy-qt5/TelepathyQt/method-invocation-context.h +include/telepathy-qt5/TelepathyQt/not-filter.h +include/telepathy-qt5/TelepathyQt/object.h +include/telepathy-qt5/TelepathyQt/optional-interface-factory.h +include/telepathy-qt5/TelepathyQt/or-filter.h +include/telepathy-qt5/TelepathyQt/outgoing-dbus-tube-channel.h +include/telepathy-qt5/TelepathyQt/outgoing-file-transfer-channel.h +include/telepathy-qt5/TelepathyQt/outgoing-stream-tube-channel.h +include/telepathy-qt5/TelepathyQt/pending-account.h +include/telepathy-qt5/TelepathyQt/pending-captchas.h +include/telepathy-qt5/TelepathyQt/pending-channel-request.h +include/telepathy-qt5/TelepathyQt/pending-channel.h +include/telepathy-qt5/TelepathyQt/pending-connection.h +include/telepathy-qt5/TelepathyQt/pending-contact-attributes.h +include/telepathy-qt5/TelepathyQt/pending-contact-info.h +include/telepathy-qt5/TelepathyQt/pending-contacts.h +include/telepathy-qt5/TelepathyQt/pending-dbus-tube-connection.h +include/telepathy-qt5/TelepathyQt/pending-debug-message-list.h +include/telepathy-qt5/TelepathyQt/pending-handles.h +include/telepathy-qt5/TelepathyQt/pending-operation.h +include/telepathy-qt5/TelepathyQt/pending-ready.h +include/telepathy-qt5/TelepathyQt/pending-send-message.h +include/telepathy-qt5/TelepathyQt/pending-stream-tube-connection.h +include/telepathy-qt5/TelepathyQt/pending-string-list.h +include/telepathy-qt5/TelepathyQt/pending-string.h +include/telepathy-qt5/TelepathyQt/pending-variant-map.h +include/telepathy-qt5/TelepathyQt/pending-variant.h +include/telepathy-qt5/TelepathyQt/presence.h +include/telepathy-qt5/TelepathyQt/profile-manager.h +include/telepathy-qt5/TelepathyQt/profile.h +include/telepathy-qt5/TelepathyQt/properties.h +include/telepathy-qt5/TelepathyQt/protocol-info.h +include/telepathy-qt5/TelepathyQt/protocol-parameter.h +include/telepathy-qt5/TelepathyQt/readiness-helper.h +include/telepathy-qt5/TelepathyQt/ready-object.h +include/telepathy-qt5/TelepathyQt/referenced-handles.h +include/telepathy-qt5/TelepathyQt/requestable-channel-class-spec.h +include/telepathy-qt5/TelepathyQt/room-list-channel.h +include/telepathy-qt5/TelepathyQt/server-authentication-channel.h +include/telepathy-qt5/TelepathyQt/service-types.h +include/telepathy-qt5/TelepathyQt/shared-ptr.h +include/telepathy-qt5/TelepathyQt/simple-call-observer.h +include/telepathy-qt5/TelepathyQt/simple-observer.h +include/telepathy-qt5/TelepathyQt/simple-pending-operations.h +include/telepathy-qt5/TelepathyQt/simple-text-observer.h +include/telepathy-qt5/TelepathyQt/stream-tube-channel.h +include/telepathy-qt5/TelepathyQt/stream-tube-client.h +include/telepathy-qt5/TelepathyQt/stream-tube-server.h +include/telepathy-qt5/TelepathyQt/streamed-media-channel.h +include/telepathy-qt5/TelepathyQt/text-channel.h +include/telepathy-qt5/TelepathyQt/tls-certificate.h +include/telepathy-qt5/TelepathyQt/tube-channel.h +include/telepathy-qt5/TelepathyQt/types.h +include/telepathy-qt5/TelepathyQt/utils.h +lib/cmake/TelepathyQt5/TelepathyQt5Config.cmake +lib/cmake/TelepathyQt5/TelepathyQt5ConfigVersion.cmake +lib/cmake/TelepathyQt5/TelepathyQt5Targets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/TelepathyQt5/TelepathyQt5Targets.cmake +lib/cmake/TelepathyQt5Farstream/TelepathyQt5FarstreamConfig.cmake +lib/cmake/TelepathyQt5Farstream/TelepathyQt5FarstreamConfigVersion.cmake +lib/cmake/TelepathyQt5Service/TelepathyQt5ServiceConfig.cmake +lib/cmake/TelepathyQt5Service/TelepathyQt5ServiceConfigVersion.cmake +lib/libtelepathy-qt5-farstream.so +lib/libtelepathy-qt5-farstream.so.0 +lib/libtelepathy-qt5-farstream.so.0.%%PORTVERSION%% +lib/libtelepathy-qt5-service.so +lib/libtelepathy-qt5-service.so.0 +lib/libtelepathy-qt5-service.so.0.%%PORTVERSION%% +lib/libtelepathy-qt5.so +lib/libtelepathy-qt5.so.0 +lib/libtelepathy-qt5.so.0.%%PORTVERSION%% +libdata/pkgconfig/TelepathyQt5.pc +libdata/pkgconfig/TelepathyQt5Farstream.pc +libdata/pkgconfig/TelepathyQt5Service.pc