diff options
Diffstat (limited to 'kde-apps/ktp-call-ui')
-rw-r--r-- | kde-apps/ktp-call-ui/Manifest | 1 | ||||
-rw-r--r-- | kde-apps/ktp-call-ui/files/ktp-call-ui-19.08.3-telepathy-qt-0.9.8.patch | 30 | ||||
-rw-r--r-- | kde-apps/ktp-call-ui/ktp-call-ui-19.08.3.ebuild | 47 |
3 files changed, 78 insertions, 0 deletions
diff --git a/kde-apps/ktp-call-ui/Manifest b/kde-apps/ktp-call-ui/Manifest index 3d6239e5807e..ad52bf691a33 100644 --- a/kde-apps/ktp-call-ui/Manifest +++ b/kde-apps/ktp-call-ui/Manifest @@ -1 +1,2 @@ +DIST ktp-call-ui-19.08.3.tar.xz 97260 BLAKE2B 9b1f6d5c81fe29c702c63841a7566c0dd670b6347b82ecc015f16ca327ef83304a1606440abf43f499a33cb004d43e7ff1f10867b8238795bbf9756c3e6fe433 SHA512 ea3b4050b163ac1c782fd69797889275a195e277b413de3681ba584afe20bff32e0c882c3370c7efd8989daf180c1444e9233b1b14914e3bc9d054e0c1140717 DIST ktp-call-ui-19.12.3.tar.xz 97088 BLAKE2B a7ac8c4c74cd45ee0e6de91cb92d3a73a0344bf038fbd541ec63b6562f69bec5b7ffb2c8ff1a557978287dcd8d18adf9b7bb1a000fa646716abea02853670412 SHA512 7223aa2d2f63461c6fb6e61460f7711fa86b72405110cc95ac180fe80ae92aed5d15205d0c133fc6e337427671789267cf9556f9f886f0f06cc9ccdf47c91c1d diff --git a/kde-apps/ktp-call-ui/files/ktp-call-ui-19.08.3-telepathy-qt-0.9.8.patch b/kde-apps/ktp-call-ui/files/ktp-call-ui-19.08.3-telepathy-qt-0.9.8.patch new file mode 100644 index 000000000000..d2be3f480eed --- /dev/null +++ b/kde-apps/ktp-call-ui/files/ktp-call-ui-19.08.3-telepathy-qt-0.9.8.patch @@ -0,0 +1,30 @@ +From 70564e30def5a877bd66e4758a72facf7ff1b09f Mon Sep 17 00:00:00 2001 +From: Antonio Rojas <arojas@archlinux.org> +Date: Mon, 18 Nov 2019 22:09:24 +0100 +Subject: Fix build with telepathy-qt 0.9.8 + +Use the new TelepathyQt5::Farstream link target with 0.9.8, otherwise compilation fails with +/usr/include/telepathy-qt5/TelepathyQt/_gen/types.h:15:10: fatal error: QDBusArgument: No such file or directory + +Differential Revision: https://phabricator.kde.org/D25372 +--- + libqtf/CMakeLists.txt | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/libqtf/CMakeLists.txt b/libqtf/CMakeLists.txt +index 3025576..3b7b0fe 100644 +--- a/libqtf/CMakeLists.txt ++++ b/libqtf/CMakeLists.txt +@@ -20,6 +20,10 @@ add_definitions( + + add_library(qtf STATIC qtf.cpp) + ++if (TARGET TelepathyQt5::Farstream) # telepathy-qt 0.9.8 ++ set (TELEPATHY_QT5_FARSTREAM_LIBRARIES TelepathyQt5::Farstream) ++endif() ++ + target_link_libraries(qtf + ${QTGSTREAMER_LIBRARIES} + ${TP_FARSTREAM_LDFLAGS} +-- +cgit v1.1 diff --git a/kde-apps/ktp-call-ui/ktp-call-ui-19.08.3.ebuild b/kde-apps/ktp-call-ui/ktp-call-ui-19.08.3.ebuild new file mode 100644 index 000000000000..355b38b0b93d --- /dev/null +++ b/kde-apps/ktp-call-ui/ktp-call-ui-19.08.3.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PVCUT=$(ver_cut 1-3) +KFMIN=5.60.0 +QTMIN=5.12.3 +inherit ecm kde.org + +DESCRIPTION="KDE Telepathy audio/video conferencing ui" +HOMEPAGE="https://community.kde.org/Real-Time_Communication_and_Collaboration" + +LICENSE="GPL-2" +SLOT="5" +KEYWORDS="arm64" +IUSE="" + +RDEPEND=" + dev-libs/glib:2 + >=dev-qt/qtdbus-${QTMIN}:5 + >=dev-qt/qtdeclarative-${QTMIN}:5 + >=dev-qt/qtgui-${QTMIN}:5 + >=dev-qt/qtwidgets-${QTMIN}:5 + >=kde-frameworks/kcompletion-${KFMIN}:5 + >=kde-frameworks/kconfig-${KFMIN}:5 + >=kde-frameworks/kconfigwidgets-${KFMIN}:5 + >=kde-frameworks/kcoreaddons-${KFMIN}:5 + >=kde-frameworks/kdeclarative-${KFMIN}:5 + >=kde-frameworks/ki18n-${KFMIN}:5 + >=kde-frameworks/kiconthemes-${KFMIN}:5 + >=kde-frameworks/knotifications-${KFMIN}:5 + >=kde-frameworks/kwidgetsaddons-${KFMIN}:5 + >=kde-frameworks/kxmlgui-${KFMIN}:5 + >=kde-apps/ktp-common-internals-${PVCUT}:5 + media-libs/phonon[qt5(+)] + media-libs/qt-gstreamer[qt5(+)] + net-libs/farstream:0.2 + net-libs/telepathy-farstream + net-libs/telepathy-qt[farstream,qt5(+)] +" +# TODO: dep leak suspect +DEPEND="${RDEPEND} + >=kde-frameworks/kcmutils-${KFMIN}:5 +" + +PATCHES=( "${FILESDIR}/${P}-telepathy-qt-0.9.8.patch" ) # bug 701096 |