summaryrefslogtreecommitdiffstats
path: root/net-im/telepathy-qt4
diff options
context:
space:
mode:
authorgusi <gusi@df743ca5-7f9a-e211-a948-0013205c9059>2013-11-06 00:23:26 +0800
committergusi <gusi@df743ca5-7f9a-e211-a948-0013205c9059>2013-11-06 00:23:26 +0800
commitf5c2cebda4c71c9800665ac5f17653caca90b215 (patch)
treeb333c1593a50871e13c1ca0cef4ae66ff32609f3 /net-im/telepathy-qt4
parent32a3ad445bda6de26b873e4e4cf8878c8187d159 (diff)
downloadmarcuscom-ports-f5c2cebda4c71c9800665ac5f17653caca90b215.tar
marcuscom-ports-f5c2cebda4c71c9800665ac5f17653caca90b215.tar.gz
marcuscom-ports-f5c2cebda4c71c9800665ac5f17653caca90b215.tar.bz2
marcuscom-ports-f5c2cebda4c71c9800665ac5f17653caca90b215.tar.lz
marcuscom-ports-f5c2cebda4c71c9800665ac5f17653caca90b215.tar.xz
marcuscom-ports-f5c2cebda4c71c9800665ac5f17653caca90b215.tar.zst
marcuscom-ports-f5c2cebda4c71c9800665ac5f17653caca90b215.zip
Add net-im/telepathy-qt4. Fix the port to use net-im/telepathy-farstream instead of net-im/telepathy-farsight (this former is in fact a replacement of the later).
While here stagify the port, change the lib_depends to the new style and fix the header. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@18854 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'net-im/telepathy-qt4')
-rw-r--r--net-im/telepathy-qt4/Makefile77
-rw-r--r--net-im/telepathy-qt4/distinfo2
-rw-r--r--net-im/telepathy-qt4/pkg-descr8
-rw-r--r--net-im/telepathy-qt4/pkg-plist403
4 files changed, 490 insertions, 0 deletions
diff --git a/net-im/telepathy-qt4/Makefile b/net-im/telepathy-qt4/Makefile
new file mode 100644
index 000000000..114cbb397
--- /dev/null
+++ b/net-im/telepathy-qt4/Makefile
@@ -0,0 +1,77 @@
+# Created by: Alberto Villa <avilla@FreeBSD.org>
+# $FreeBSD: net-im/telepathy-qt4/Makefile 327756 2013-09-20 22:13:34Z bapt $
+# $MCom$
+
+PORTNAME= telepathy-qt4
+PORTVERSION= 0.9.3
+CATEGORIES= net-im
+MASTER_SITES= http://telepathy.freedesktop.org/releases/${PORTNAME:C/4//}/
+DISTNAME= ${PORTNAME:C/4//}-${PORTVERSION}
+
+MAINTAINER= avilla@FreeBSD.org
+COMMENT= High-level Qt binding for Telepathy
+
+LICENSE= LGPL21
+
+LIB_DEPENDS= libtelepathy-farstream.so:${PORTSDIR}/net-im/telepathy-farstream \
+ libtelepathy-glib.so:${PORTSDIR}/net-im/telepathy-glib
+
+USE_GNOME= libxslt:build
+USE_GSTREAMER= yes
+USE_PYTHON_BUILD= 2.5+
+USE_QT4= dbus gui network qtestlib_build xml \
+ moc_build qmake_build rcc_build uic_build
+USES= cmake pkgconfig
+CMAKE_ARGS= -DENABLE_FARSIGHT:BOOL=False \
+ -DENABLE_FARSTREAM:BOOL=True \
+ -DENABLE_TESTS:BOOL=False
+USE_LDCONFIG= yes
+
+PLIST_SUB= PORTVERSION="${PORTVERSION}"
+
+PORTDOCS= AUTHORS ChangeLog HACKING NEWS README html
+
+PORTEXAMPLES= Makefile accounts cm contact-messenger extensions \
+ file-transfer protocols roster stream-tubes
+
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MEXAMPLES}
+CMAKE_ARGS+= -DENABLE_EXAMPLES:BOOL=True
+.else
+CMAKE_ARGS+= -DENABLE_EXAMPLES:BOOL=False
+.endif
+
+pre-configure:
+ ${REINPLACE_CMD} -e '/FIND_PROGRAM/ s/qmake //' \
+ ${WRKSRC}/cmake/modules/FindQt.cmake
+ ${REINPLACE_CMD} -e '/^add_dependencies(doxygen-doc / d' \
+ ${WRKSRC}/TelepathyQt/CMakeLists.txt
+ ${REINPLACE_CMD} -e '/TelepathyQt.*\.pc/ s|pkgconfig|../libdata/pkgconfig|' \
+ ${WRKSRC}/TelepathyQt/CMakeLists.txt
+ ${REINPLACE_CMD} -e 's|LIB_INSTALL_DIR}/pkgconfig|LIB_INSTALL_DIR}/../libdata/pkgconfig|' \
+ ${WRKSRC}/TelepathyQt/Farstream/CMakeLists.txt
+ ${REINPLACE_CMD} -e '/$${LIBXML2_INCLUDE_DIR}/ s|$$| ${LOCALBASE}/include|' \
+ ${WRKSRC}/TelepathyQt/Farsight/CMakeLists.txt
+
+post-patch:
+ @${REINPLACE_CMD} -e 's|farstream-0.1|farstream-0.2|g' \
+ ${WRKSRC}/cmake/modules/FindFarstream.cmake
+
+post-install:
+.if ${PORT_OPTIONS:MDOCS}
+ ${MKDIR} ${STAGEDIR}${DOCSDIR}
+ cd ${WRKSRC} && ${CP} -R doc/html .
+. for f in ${PORTDOCS}
+ cd ${WRKSRC} && ${COPYTREE_SHARE} ${f} ${STAGEDIR}${DOCSDIR}
+. endfor
+.endif
+.if ${PORT_OPTIONS:MEXAMPLES}
+ cd ${WRKSRC}/examples && ${RM} -rf */CMakeFiles */*.cmake */Makefile
+ ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
+. for f in ${PORTEXAMPLES}
+ cd ${WRKSRC}/examples && ${COPYTREE_SHARE} ${f} ${STAGEDIR}${EXAMPLESDIR}
+. endfor
+.endif
+
+.include <bsd.port.mk>
diff --git a/net-im/telepathy-qt4/distinfo b/net-im/telepathy-qt4/distinfo
new file mode 100644
index 000000000..320ef4d0d
--- /dev/null
+++ b/net-im/telepathy-qt4/distinfo
@@ -0,0 +1,2 @@
+SHA256 (telepathy-qt-0.9.3.tar.gz) = c0ff57bea79b86ad343e184c16941d05f6d6d7dfd03876b44502f11935f44bf9
+SIZE (telepathy-qt-0.9.3.tar.gz) = 4414599
diff --git a/net-im/telepathy-qt4/pkg-descr b/net-im/telepathy-qt4/pkg-descr
new file mode 100644
index 000000000..bfeedb6a5
--- /dev/null
+++ b/net-im/telepathy-qt4/pkg-descr
@@ -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
diff --git a/net-im/telepathy-qt4/pkg-plist b/net-im/telepathy-qt4/pkg-plist
new file mode 100644
index 000000000..4870a3e94
--- /dev/null
+++ b/net-im/telepathy-qt4/pkg-plist
@@ -0,0 +1,403 @@
+
+
+
+include/telepathy-qt4/TelepathyQt/AbstractClient
+include/telepathy-qt4/TelepathyQt/AbstractClientApprover
+include/telepathy-qt4/TelepathyQt/AbstractClientHandler
+include/telepathy-qt4/TelepathyQt/AbstractClientObserver
+include/telepathy-qt4/TelepathyQt/AbstractInterface
+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/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/ChannelInterfaceSASLAuthenticationInterface
+include/telepathy-qt4/TelepathyQt/ChannelInterfaceSMSInterface
+include/telepathy-qt4/TelepathyQt/ChannelInterfaceSecurableInterface
+include/telepathy-qt4/TelepathyQt/ChannelInterfaceServicePointInterface
+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/DBusProxy
+include/telepathy-qt4/TelepathyQt/DBusProxyFactory
+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/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/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/types.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/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-proxy-factory.h
+include/telepathy-qt4/TelepathyQt/dbus-proxy.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/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/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/libtelepathy-qt4.so
+lib/libtelepathy-qt4.so.2
+lib/libtelepathy-qt4.so.2.%%PORTVERSION%%
+lib/libtelepathy-qt4-farstream.so
+lib/libtelepathy-qt4-farstream.so.2
+lib/libtelepathy-qt4-farstream.so.2.%%PORTVERSION%%
+libdata/pkgconfig/TelepathyQt4Farstream.pc
+libdata/pkgconfig/TelepathyQt4.pc
+@dirrm lib/cmake/TelepathyQt4Farstream
+@dirrm lib/cmake/TelepathyQt4
+@dirrmtry lib/cmake
+@dirrm include/telepathy-qt4/TelepathyQt/_gen
+@dirrm include/telepathy-qt4/TelepathyQt/Farstream
+@dirrm include/telepathy-qt4/TelepathyQt
+@dirrm include/telepathy-qt4