From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 15F64158092 for ; Thu, 16 Sep 2021 12:07:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5EAA0E0874; Thu, 16 Sep 2021 12:07:49 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C1574E0875 for ; Thu, 16 Sep 2021 12:07:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5B4373430C1 for ; Thu, 16 Sep 2021 12:07:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6437D83 for ; Thu, 16 Sep 2021 12:07:45 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1631794021.4e5846f2c91be868a2962271ddd7f6c753e83c45.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/telegram-desktop/, net-im/telegram-desktop/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/telegram-desktop/files/tdesktop-2.9.3-add-libdl-dependency.patch net-im/telegram-desktop/telegram-desktop-2.9.3.ebuild X-VCS-Directories: net-im/telegram-desktop/files/ net-im/telegram-desktop/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 4e5846f2c91be868a2962271ddd7f6c753e83c45 X-VCS-Branch: master Date: Thu, 16 Sep 2021 12:07:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5ca1cbd0-5f25-4692-a70e-1dd1f17be1a4 X-Archives-Hash: 0cfb5d927c542174b399c9d35baaa09a commit: 4e5846f2c91be868a2962271ddd7f6c753e83c45 Author: Esteve Varela Colominas gmail com> AuthorDate: Tue Sep 14 20:52:28 2021 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Thu Sep 16 12:07:01 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e5846f2 net-im/telegram-desktop: Add libdl dependency Fixes build error with USE=webkit Closes: https://bugs.gentoo.org/812926 Thanks-to: Azamat H. Hackimov gmail.com> Signed-off-by: Esteve Varela Colominas gmail.com> Signed-off-by: Georgy Yakovlev gentoo.org> .../files/tdesktop-2.9.3-add-libdl-dependency.patch | 15 +++++++++++++++ net-im/telegram-desktop/telegram-desktop-2.9.3.ebuild | 1 + 2 files changed, 16 insertions(+) diff --git a/net-im/telegram-desktop/files/tdesktop-2.9.3-add-libdl-dependency.patch b/net-im/telegram-desktop/files/tdesktop-2.9.3-add-libdl-dependency.patch new file mode 100644 index 00000000000..3df0601b454 --- /dev/null +++ b/net-im/telegram-desktop/files/tdesktop-2.9.3-add-libdl-dependency.patch @@ -0,0 +1,15 @@ +Add missed dependency on libdl + +https://github.com/desktop-app/lib_webview/commit/3cb51ac668d4e1b4f7f2b95fed1192350ba403af + +--- tdesktop-2.9.3-full.orig/Telegram/lib_webview/CMakeLists.txt ++++ tdesktop-2.9.3-full/Telegram/lib_webview/CMakeLists.txt +@@ -56,6 +56,8 @@ + + pkg_check_modules(WEBKIT REQUIRED webkit2gtk-4.0) + target_include_directories(lib_webview SYSTEM PUBLIC ${WEBKIT_INCLUDE_DIRS}) ++ ++ target_link_libraries(lib_webview PUBLIC ${CMAKE_DL_LIBS}) + else() + remove_target_sources(lib_webview ${src_loc} + webview/platform/linux/webview_linux_webkit_gtk.cpp diff --git a/net-im/telegram-desktop/telegram-desktop-2.9.3.ebuild b/net-im/telegram-desktop/telegram-desktop-2.9.3.ebuild index 7ea3e2c0499..9e09efaee54 100644 --- a/net-im/telegram-desktop/telegram-desktop-2.9.3.ebuild +++ b/net-im/telegram-desktop/telegram-desktop-2.9.3.ebuild @@ -73,6 +73,7 @@ S="${WORKDIR}/${MY_P}" PATCHES=( "${FILESDIR}/tdesktop-2.9.3-jemalloc-only-telegram.patch" + "${FILESDIR}/tdesktop-2.9.3-add-libdl-dependency.patch" ) pkg_pretend() {