From 623496fadf0d56b492e2e989f7125771cbaee2d8 Mon Sep 17 00:00:00 2001 From: Michael Mair-Keimberger Date: Thu, 18 Jan 2024 20:29:13 +0100 Subject: [PATCH] media-video/tivodecode: EAPI8 bump, fix bug #724846 Signed-off-by: Michael Mair-Keimberger Closes: https://bugs.gentoo.org/724846 Closes: https://github.com/gentoo/gentoo/pull/34886 Signed-off-by: Conrad Kostecki --- media-video/tivodecode/tivodecode-0.2_pre4.ebuild | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/media-video/tivodecode/tivodecode-0.2_pre4.ebuild b/media-video/tivodecode/tivodecode-0.2_pre4.ebuild index 511c7c80d240d..7596e101e899b 100644 --- a/media-video/tivodecode/tivodecode-0.2_pre4.ebuild +++ b/media-video/tivodecode/tivodecode-0.2_pre4.ebuild @@ -1,16 +1,20 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 + +inherit toolchain-funcs MY_P=${P/_/} DESCRIPTION="TiVo File Decoder" -HOMEPAGE="http://tivodecode.sourceforge.net/" +HOMEPAGE="https://tivodecode.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" -S="${WORKDIR}/${MY_P}" +src_compile(){ + emake AR="$(tc-getAR)" +}