summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2024-01-18 20:29:13 +0100
committerConrad Kostecki <conikost@gentoo.org>2024-01-20 22:21:44 +0100
commit623496fadf0d56b492e2e989f7125771cbaee2d8 (patch)
treecee91fe62188533d87cabd6332e93c15d8ac6f21
parentmedia-video/dvbsnoop: fix bugs #724842, #899866, use https (diff)
downloadgentoo-623496fadf0d56b492e2e989f7125771cbaee2d8.tar.gz
gentoo-623496fadf0d56b492e2e989f7125771cbaee2d8.tar.bz2
gentoo-623496fadf0d56b492e2e989f7125771cbaee2d8.zip
media-video/tivodecode: EAPI8 bump, fix bug #724846
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://bugs.gentoo.org/724846 Closes: https://github.com/gentoo/gentoo/pull/34886 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
-rw-r--r--media-video/tivodecode/tivodecode-0.2_pre4.ebuild14
1 files 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 511c7c80d240..7596e101e899 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)"
+}