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 9DBB11382C5 for ; Thu, 17 Dec 2020 19:25:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B9825E08E8; Thu, 17 Dec 2020 19:25:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A195CE08E8 for ; Thu, 17 Dec 2020 19:25:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8B4BE34132B for ; Thu, 17 Dec 2020 19:25:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F1E5156 for ; Thu, 17 Dec 2020 19:25:00 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1608233090.c0b367cd167e0a2504299c00a24350c05ff7eead.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/anydesk/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/anydesk/anydesk-6.0.1.ebuild X-VCS-Directories: net-misc/anydesk/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c0b367cd167e0a2504299c00a24350c05ff7eead X-VCS-Branch: master Date: Thu, 17 Dec 2020 19:25:00 +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: e5a5a9a0-0347-401a-8df1-08640e905322 X-Archives-Hash: 59c83981a96b7354618c09a225c1aac6 commit: c0b367cd167e0a2504299c00a24350c05ff7eead Author: PPed72 iol it> AuthorDate: Wed Nov 25 09:38:51 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Dec 17 19:24:50 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0b367cd net-misc/anydesk: Remove x11-libs/pangox-compat dependency Closes: https://bugs.gentoo.org/756613 Signed-off-by: Paolo Pedroni iol.it> Package-Manager: Portage-3.0.9, Repoman-3.0.2 Closes: https://github.com/gentoo/gentoo/pull/18395 Closes: https://github.com/gentoo/gentoo/pull/18060 Signed-off-by: Andreas Sturmlechner gentoo.org> net-misc/anydesk/anydesk-6.0.1.ebuild | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/net-misc/anydesk/anydesk-6.0.1.ebuild b/net-misc/anydesk/anydesk-6.0.1.ebuild index 6b1d45ed053..3d912fed07f 100644 --- a/net-misc/anydesk/anydesk-6.0.1.ebuild +++ b/net-misc/anydesk/anydesk-6.0.1.ebuild @@ -3,7 +3,7 @@ EAPI="7" -inherit desktop eutils systemd xdg-utils +inherit desktop optfeature systemd xdg-utils DESCRIPTION="Feature rich multi-platform remote desktop application" HOMEPAGE="https://anydesk.com" @@ -48,8 +48,8 @@ RDEPEND=" x11-libs/libXt x11-libs/libXtst x11-libs/pango - x11-libs/pangox-compat " +BDEPEND="dev-util/patchelf" RESTRICT="bindist mirror" @@ -58,15 +58,17 @@ QA_PREBUILT="opt/${PN}/*" src_install() { local dst="/opt/${PN}" - dodir ${dst} exeinto ${dst} doexe ${PN} + # bug 706344 + patchelf --remove-needed libpangox-1.0.so.0 "${ED}${dst}/${PN}" || die + dodir /opt/bin - dosym ${dst}/${PN} /opt/bin/${PN} + dosym "${dst}/${PN}" "/opt/bin/${PN}" - newinitd "${FILESDIR}"/anydesk.init anydesk - systemd_newunit "${FILESDIR}"/anydesk-4.0.1.service anydesk.service + newinitd "${FILESDIR}/anydesk.init" anydesk + systemd_newunit "${FILESDIR}/anydesk-4.0.1.service" anydesk.service insinto /usr/share/polkit-1/actions doins polkit-1/com.philandro.anydesk.policy @@ -74,9 +76,9 @@ src_install() { insinto /usr/share doins -r icons - domenu "${FILESDIR}"/anydesk.desktop + domenu "${FILESDIR}/anydesk.desktop" - keepdir /etc/${PN} + keepdir "/etc/${PN}" dodoc copyright README }