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 3F57E1382C5 for ; Sun, 21 Mar 2021 16:54:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53199E0863; Sun, 21 Mar 2021 16:54:10 +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 3AC3BE0863 for ; Sun, 21 Mar 2021 16:54:10 +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 CFA6533BE5A for ; Sun, 21 Mar 2021 16:54:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3A9BA5CF for ; Sun, 21 Mar 2021 16:54:07 +0000 (UTC) From: "Jörg Bornkessel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jörg Bornkessel" Message-ID: <1616345637.8639f1eb81e069ae5a11fb136427a42848fcd083.hd_brummy@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-fritzbox/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-plugins/vdr-fritzbox/vdr-fritzbox-1.5.3-r2.ebuild X-VCS-Directories: media-plugins/vdr-fritzbox/ X-VCS-Committer: hd_brummy X-VCS-Committer-Name: Jörg Bornkessel X-VCS-Revision: 8639f1eb81e069ae5a11fb136427a42848fcd083 X-VCS-Branch: master Date: Sun, 21 Mar 2021 16:54:07 +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: 9c915092-e18c-4c2e-900a-f539a6ed91da X-Archives-Hash: e1593b52d948da8c6f20f2df9a8b8c8d commit: 8639f1eb81e069ae5a11fb136427a42848fcd083 Author: Joerg Bornkessel gentoo org> AuthorDate: Sun Mar 21 16:53:17 2021 +0000 Commit: Jörg Bornkessel gentoo org> CommitDate: Sun Mar 21 16:53:57 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8639f1eb media-plugins/vdr-fritzbox: calls ar directly fixed Closes: https://bugs.gentoo.org/740290 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Joerg Bornkessel gentoo.org> .../vdr-fritzbox/vdr-fritzbox-1.5.3-r2.ebuild | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/media-plugins/vdr-fritzbox/vdr-fritzbox-1.5.3-r2.ebuild b/media-plugins/vdr-fritzbox/vdr-fritzbox-1.5.3-r2.ebuild new file mode 100644 index 00000000000..860f542aaea --- /dev/null +++ b/media-plugins/vdr-fritzbox/vdr-fritzbox-1.5.3-r2.ebuild @@ -0,0 +1,44 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit vdr-plugin-2 + +DESCRIPTION="VDR Plugin: Inform about incoming phone-calls and use the fritz!box phonebook" +HOMEPAGE="https://github.com/jowi24/vdr-fritz" +SRC_URI="https://github.com/jowi24/vdr-fritz/releases/download/${PV}/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-libs/libgcrypt:0 + dev-libs/boost[threads] + media-video/vdr" +RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}/${P}-boost-1.67.patch" ) + +src_prepare() { + vdr-plugin-2_src_prepare + + # do not call ar directly + export _VDRAR="$(tc-getAR)" + sed -e "s:\@ar :\@\$(_VDRAR) :" \ + -i libconv++/Makefile \ + -i libfritz++/Makefile \ + -i liblog++/Makefile \ + -i libnet++/Makefile || die +} + +pkg_postinst() { + elog "It is recommend to update your firmware release to the latest." + elog + elog "The integrated call monitor (available in Fritz!Box official" + elog "firmware releases >= *.04.29) has to be enabled in order to" + elog "have the vdr-fritzbox plugin display anything on your tv. To" + elog "enable it call #96*5* from your telephone. If that doesn't" + elog "work for you, read the documentation for further instructions." +}