commit: 01e73fbe1fbe57ad47369843dfb02f310201911d Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at> AuthorDate: Thu Jan 18 19:24:18 2024 +0000 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org> CommitDate: Sat Jan 20 21:21:44 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01e73fbe
media-video/dvbsnoop: fix bugs #724842, #899866, use https Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at> Closes: https://bugs.gentoo.org/724842 Closes: https://bugs.gentoo.org/899866 Closes: https://github.com/gentoo/gentoo/pull/34885 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org> media-video/dvbsnoop/dvbsnoop-1.4.50-r3.ebuild | 29 ++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/media-video/dvbsnoop/dvbsnoop-1.4.50-r3.ebuild b/media-video/dvbsnoop/dvbsnoop-1.4.50-r3.ebuild new file mode 100644 index 000000000000..3ba1ff4b8ca8 --- /dev/null +++ b/media-video/dvbsnoop/dvbsnoop-1.4.50-r3.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools toolchain-funcs + +DESCRIPTION="DVB/MPEG stream analyzer program" +HOMEPAGE="https://sourceforge.net/projects/dvbsnoop/" +SRC_URI="mirror://sourceforge/dvbsnoop/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +DEPEND="virtual/linuxtv-dvb-headers" + +PATCHES=( + "${FILESDIR}"/${P}-crc32.patch +) + +src_configure(){ + default + eautoreconf +} + +src_compile(){ + emake AR="$(tc-getAR)" +}
