View | Details | Raw Unified | Return to bug 211092
Collapse All | Expand All

(-)net-im/telepathy-qt4/Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	telepathy-qt4
4
PORTNAME=	telepathy-qt4
5
PORTVERSION=	0.9.6.1
5
PORTVERSION=	0.9.7
6
CATEGORIES=	net-im
6
CATEGORIES=	net-im
7
MASTER_SITES=	https://telepathy.freedesktop.org/releases/${PORTNAME:C/4//}/
7
MASTER_SITES=	https://telepathy.freedesktop.org/releases/${PORTNAME:C/4//}/
8
DISTNAME=	${PORTNAME:C/4//}-${PORTVERSION}
8
DISTNAME=	${PORTNAME:C/4//}-${PORTVERSION}
(-)net-im/telepathy-qt4/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (telepathy-qt-0.9.6.1.tar.gz) = 496eb4951ea9b181d7d68a2122a885474c4f73b519319496aa1b97d9b361a1f8
1
TIMESTAMP = 1466432953
2
SIZE (telepathy-qt-0.9.6.1.tar.gz) = 6067468
2
SHA256 (telepathy-qt-0.9.7.tar.gz) = 21bad30be7ebc4ba667d53d92cd1cec1be23114103f2149404d9740721693d4f
3
SIZE (telepathy-qt-0.9.7.tar.gz) = 6213405
(-)net-im/telepathy-qt4/files/patch-git_1e1f53e9 (-21 lines)
Lines 1-21 Link Here
1
This commit is required to avoid occasional build failures in parallel builds
2
especially after CMake 3.5.0.
3
4
commit 1e1f53e9d91684918c34ec50392f86287e001a1e
5
Author: Alexandr Akulich <akulichalexander@gmail.com>
6
Date:   Fri Jan 15 18:52:59 2016 +0500
7
8
    BaseChannel: Reduced includes (doesn't depend on client stuff anymore).
9
10
--- TelepathyQt/base-channel.cpp
11
+++ TelepathyQt/base-channel.cpp
12
@@ -26,7 +26,8 @@
13
 
14
 #include "TelepathyQt/_gen/base-channel.moc.hpp"
15
 #include "TelepathyQt/_gen/base-channel-internal.moc.hpp"
16
-#include "TelepathyQt/future-internal.h"
17
+#include "TelepathyQt/_gen/future-constants.h"
18
+#include "TelepathyQt/_gen/future-types.h"
19
 
20
 #include "TelepathyQt/debug-internal.h"
21
 
(-)net-im/telepathy-qt4/files/patch-git_7389dc9 (-20 lines)
Lines 1-20 Link Here
1
This commit is required to avoid occasional build failures in parallel builds.
2
3
commit 7389dc990c67d4269f3a79c924c054e87f2e4ac5
4
Author: Alexandr Akulich <akulichalexander@gmail.com>
5
Date:   Fri, 15 Jan 2016 18:54:09 +0500
6
7
    CMakeLists: Added missing service dependence.
8
9
    telepathy-qt-service depends on generated stable and future types and consts.
10
11
--- TelepathyQt/CMakeLists.txt
12
+++ TelepathyQt/CMakeLists.txt
13
@@ -953,6 +953,7 @@ if(ENABLE_SERVICE_SUPPORT)
14
     #endif (ENABLE_COMPILER_COVERAGE)
15
     # lets build a static only library until we have a stable API/ABI
16
     add_library(telepathy-qt${QT_VERSION_MAJOR}-service STATIC ${telepathy_qt_service_SRCS})
17
+    add_dependencies(telepathy-qt${QT_VERSION_MAJOR}-service stable-typesgen future-typesgen)
18
 
19
     # generate service moc files
20
     foreach(moc_src ${telepathy_qt_service_MOC_SRCS})
(-)net-im/telepathy-qt4/files/patch-git_ec4a3d6 (-79 lines)
Lines 1-79 Link Here
1
Required for the port to build with GStreamer 1.6+.
2
3
commit ec4a3d62b68a57254515f01fc5ea3325ffb1dbfb
4
Author: Niels Ole Salscheider <niels_ole@salscheider-online.de>
5
Date:   Tue Sep 29 20:52:15 2015 +0200
6
7
    Farstream: gst/gstconfig.h can be in LIBDIR, search for it explicitly
8
9
    Since GStreamer-1.5.1 config header file moved to LIBDIR.
10
11
    Reviewed-by: Alexandr Akulich <akulichalexander@gmail.com>
12
13
--- TelepathyQt/Farstream/CMakeLists.txt
14
+++ TelepathyQt/Farstream/CMakeLists.txt
15
@@ -2,7 +2,7 @@ if(FARSTREAM_COMPONENTS_FOUND)
16
     include_directories(${TELEPATHY_FARSTREAM_INCLUDE_DIR}
17
                         ${TELEPATHY_GLIB_INCLUDE_DIR}
18
                         ${FARSTREAM_INCLUDE_DIR}
19
-                        ${GSTREAMER_INCLUDE_DIR}
20
+                        ${GSTREAMER_INCLUDE_DIRS}
21
                         ${GLIB2_INCLUDE_DIR}
22
                         ${LIBXML2_INCLUDE_DIR}
23
                         ${DBUS_INCLUDE_DIR})
24
--- cmake/modules/FindGStreamer.cmake
25
+++ cmake/modules/FindGStreamer.cmake
26
@@ -13,12 +13,12 @@
27
 
28
 # TODO: Other versions --> GSTREAMER_X_Y_FOUND (Example: GSTREAMER_0_8_FOUND and GSTREAMER_0_10_FOUND etc)
29
 
30
-IF (GSTREAMER_INCLUDE_DIR AND GSTREAMER_LIBRARIES AND GSTREAMER_BASE_LIBRARY AND GSTREAMER_INTERFACE_LIBRARY)
31
+IF (GSTREAMER_INCLUDE_DIRS AND GSTREAMER_LIBRARIES AND GSTREAMER_BASE_LIBRARY AND GSTREAMER_INTERFACE_LIBRARY)
32
    # in cache already
33
    SET(GSTREAMER_FIND_QUIETLY TRUE)
34
-ELSE (GSTREAMER_INCLUDE_DIR AND GSTREAMER_LIBRARIES AND GSTREAMER_BASE_LIBRARY AND GSTREAMER_INTERFACE_LIBRARY)
35
+ELSE (GSTREAMER_INCLUDE_DIRS AND GSTREAMER_LIBRARIES AND GSTREAMER_BASE_LIBRARY AND GSTREAMER_INTERFACE_LIBRARY)
36
    SET(GSTREAMER_FIND_QUIETLY FALSE)
37
-ENDIF (GSTREAMER_INCLUDE_DIR AND GSTREAMER_LIBRARIES AND GSTREAMER_BASE_LIBRARY AND GSTREAMER_INTERFACE_LIBRARY)
38
+ENDIF (GSTREAMER_INCLUDE_DIRS AND GSTREAMER_LIBRARIES AND GSTREAMER_BASE_LIBRARY AND GSTREAMER_INTERFACE_LIBRARY)
39
 
40
 IF (NOT WIN32)
41
    # use pkg-config to get the directories and then use these values
42
@@ -38,6 +38,15 @@ FIND_PATH(GSTREAMER_INCLUDE_DIR gst/gst.h
43
    PATH_SUFFIXES gstreamer-1.0
44
    )
45
 
46
+FIND_PATH(GSTREAMER_CONF_INCLUDE_DIR gst/gstconfig.h
47
+   PATHS
48
+   ${PC_GSTREAMER_INCLUDEDIR}
49
+   ${PC_GSTREAMER_INCLUDE_DIRS}
50
+   PATH_SUFFIXES gstreamer-1.0
51
+   )
52
+
53
+SET(GSTREAMER_INCLUDE_DIRS ${GSTREAMER_INCLUDE_DIR} ${GSTREAMER_CONF_INCLUDE_DIR})
54
+
55
 FIND_LIBRARY(GSTREAMER_LIBRARIES NAMES gstreamer-1.0
56
    PATHS
57
    ${PC_GSTREAMER_LIBDIR}
58
@@ -57,6 +66,12 @@ ELSE (GSTREAMER_INCLUDE_DIR)
59
    MESSAGE(STATUS "GStreamer: WARNING: include dir not found")
60
 ENDIF (GSTREAMER_INCLUDE_DIR)
61
 
62
+IF (GSTREAMER_CONF_INCLUDE_DIR)
63
+	#MESSAGE(STATUS "DEBUG: Found GStreamer config include dir: ${GSTREAMER_CONF_INCLUDE_DIR}")
64
+ELSE (GSTREAMER_CONF_INCLUDE_DIR)
65
+   MESSAGE(STATUS "GStreamer: WARNING: config include dir not found")
66
+ENDIF (GSTREAMER_CONF_INCLUDE_DIR)
67
+
68
 IF (GSTREAMER_LIBRARIES)
69
    #MESSAGE(STATUS "DEBUG: Found GStreamer library: ${GSTREAMER_LIBRARIES}")
70
 ELSE (GSTREAMER_LIBRARIES)
71
@@ -65,6 +80,6 @@ ENDIF (GSTREAMER_LIBRARIES)
72
 
73
 
74
 INCLUDE(FindPackageHandleStandardArgs)
75
-FIND_PACKAGE_HANDLE_STANDARD_ARGS(GStreamer  DEFAULT_MSG  GSTREAMER_LIBRARIES GSTREAMER_INCLUDE_DIR GSTREAMER_BASE_LIBRARY)
76
+FIND_PACKAGE_HANDLE_STANDARD_ARGS(GStreamer  DEFAULT_MSG  GSTREAMER_LIBRARIES GSTREAMER_INCLUDE_DIRS GSTREAMER_BASE_LIBRARY)
77
 
78
-MARK_AS_ADVANCED(GSTREAMER_INCLUDE_DIR GSTREAMER_LIBRARIES GSTREAMER_BASE_LIBRARY)
79
+MARK_AS_ADVANCED(GSTREAMER_INCLUDE_DIRS GSTREAMER_LIBRARIES GSTREAMER_BASE_LIBRARY)
(-)net-im/telepathy-qt4/pkg-plist (-1 / +7 lines)
Lines 26-31 Link Here
26
include/telepathy-qt4/TelepathyQt/BaseChannel
26
include/telepathy-qt4/TelepathyQt/BaseChannel
27
include/telepathy-qt4/TelepathyQt/BaseConnection
27
include/telepathy-qt4/TelepathyQt/BaseConnection
28
include/telepathy-qt4/TelepathyQt/BaseConnectionManager
28
include/telepathy-qt4/TelepathyQt/BaseConnectionManager
29
include/telepathy-qt4/TelepathyQt/BaseDebug
29
include/telepathy-qt4/TelepathyQt/BaseProtocol
30
include/telepathy-qt4/TelepathyQt/BaseProtocol
30
include/telepathy-qt4/TelepathyQt/BaseProtocolAddressingInterface
31
include/telepathy-qt4/TelepathyQt/BaseProtocolAddressingInterface
31
include/telepathy-qt4/TelepathyQt/BaseProtocolAvatarsInterface
32
include/telepathy-qt4/TelepathyQt/BaseProtocolAvatarsInterface
Lines 167-172 Link Here
167
include/telepathy-qt4/TelepathyQt/GenericPropertyFilter
168
include/telepathy-qt4/TelepathyQt/GenericPropertyFilter
168
include/telepathy-qt4/TelepathyQt/Global
169
include/telepathy-qt4/TelepathyQt/Global
169
include/telepathy-qt4/TelepathyQt/HandledChannelNotifier
170
include/telepathy-qt4/TelepathyQt/HandledChannelNotifier
171
include/telepathy-qt4/TelepathyQt/IODevice
170
include/telepathy-qt4/TelepathyQt/IncomingDBusTubeChannel
172
include/telepathy-qt4/TelepathyQt/IncomingDBusTubeChannel
171
include/telepathy-qt4/TelepathyQt/IncomingFileTransferChannel
173
include/telepathy-qt4/TelepathyQt/IncomingFileTransferChannel
172
include/telepathy-qt4/TelepathyQt/IncomingStreamTubeChannel
174
include/telepathy-qt4/TelepathyQt/IncomingStreamTubeChannel
Lines 296-301 Link Here
296
include/telepathy-qt4/TelepathyQt/base-channel.h
298
include/telepathy-qt4/TelepathyQt/base-channel.h
297
include/telepathy-qt4/TelepathyQt/base-connection-manager.h
299
include/telepathy-qt4/TelepathyQt/base-connection-manager.h
298
include/telepathy-qt4/TelepathyQt/base-connection.h
300
include/telepathy-qt4/TelepathyQt/base-connection.h
301
include/telepathy-qt4/TelepathyQt/base-debug.h
299
include/telepathy-qt4/TelepathyQt/base-protocol.h
302
include/telepathy-qt4/TelepathyQt/base-protocol.h
300
include/telepathy-qt4/TelepathyQt/call-channel.h
303
include/telepathy-qt4/TelepathyQt/call-channel.h
301
include/telepathy-qt4/TelepathyQt/call-content-media-description.h
304
include/telepathy-qt4/TelepathyQt/call-content-media-description.h
Lines 347-352 Link Here
347
include/telepathy-qt4/TelepathyQt/generic-property-filter.h
350
include/telepathy-qt4/TelepathyQt/generic-property-filter.h
348
include/telepathy-qt4/TelepathyQt/global.h
351
include/telepathy-qt4/TelepathyQt/global.h
349
include/telepathy-qt4/TelepathyQt/handled-channel-notifier.h
352
include/telepathy-qt4/TelepathyQt/handled-channel-notifier.h
353
include/telepathy-qt4/TelepathyQt/io-device.h
350
include/telepathy-qt4/TelepathyQt/incoming-dbus-tube-channel.h
354
include/telepathy-qt4/TelepathyQt/incoming-dbus-tube-channel.h
351
include/telepathy-qt4/TelepathyQt/incoming-file-transfer-channel.h
355
include/telepathy-qt4/TelepathyQt/incoming-file-transfer-channel.h
352
include/telepathy-qt4/TelepathyQt/incoming-stream-tube-channel.h
356
include/telepathy-qt4/TelepathyQt/incoming-stream-tube-channel.h
Lines 420-426 Link Here
420
lib/libtelepathy-qt4-farstream.so
424
lib/libtelepathy-qt4-farstream.so
421
lib/libtelepathy-qt4-farstream.so.2
425
lib/libtelepathy-qt4-farstream.so.2
422
lib/libtelepathy-qt4-farstream.so.2.%%PORTVERSION%%
426
lib/libtelepathy-qt4-farstream.so.2.%%PORTVERSION%%
423
lib/libtelepathy-qt4-service.a
427
lib/libtelepathy-qt4-service.so
428
lib/libtelepathy-qt4-service.so.0
429
lib/libtelepathy-qt4-service.so.2.%%PORTVERSION%%
424
lib/libtelepathy-qt4.so
430
lib/libtelepathy-qt4.so
425
lib/libtelepathy-qt4.so.2
431
lib/libtelepathy-qt4.so.2
426
lib/libtelepathy-qt4.so.2.%%PORTVERSION%%
432
lib/libtelepathy-qt4.so.2.%%PORTVERSION%%

Return to bug 211092