public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-video/mpeg-tools/
@ 2020-12-02  0:32 Aaron Bauman
  0 siblings, 0 replies; 2+ messages in thread
From: Aaron Bauman @ 2020-12-02  0:32 UTC (permalink / raw
  To: gentoo-commits

commit:     d565adb168709a773674725ec382f272d65f6a43
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Tue Dec  1 23:55:03 2020 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed Dec  2 00:31:51 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d565adb1

media-video/mpeg-tools: drop old

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 media-video/mpeg-tools/mpeg-tools-1.5b-r4.ebuild | 66 ------------------------
 1 file changed, 66 deletions(-)

diff --git a/media-video/mpeg-tools/mpeg-tools-1.5b-r4.ebuild b/media-video/mpeg-tools/mpeg-tools-1.5b-r4.ebuild
deleted file mode 100644
index 70ceb15423d..00000000000
--- a/media-video/mpeg-tools/mpeg-tools-1.5b-r4.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils toolchain-funcs
-
-MY_PN=mpeg_encode
-DESCRIPTION="Tools for MPEG video"
-HOMEPAGE="http://bmrc.berkeley.edu/research/mpeg/mpeg_encode.html"
-SRC_URI="ftp://mm-ftp.cs.berkeley.edu/pub/multimedia/mpeg/encode/${MY_PN}-${PV}-src.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
-IUSE=""
-
-RDEPEND="x11-libs/libX11
-	virtual/jpeg:0"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}/${MY_PN}
-
-src_prepare() {
-	cd "${WORKDIR}"
-	epatch "${FILESDIR}"/${P}-build.patch
-	epatch "${FILESDIR}"/${P}-64bit_fixes.patch
-	epatch "${FILESDIR}"/${P}-tempfile-convert.patch
-	epatch "${FILESDIR}"/${P}-as-needed.patch
-	epatch "${FILESDIR}"/${P}-powerpc.patch
-	cd "${S}"
-	rm -r jpeg
-	epatch "${FILESDIR}"/${P}-system-jpeg.patch
-	epatch "${FILESDIR}"/${P}-system-jpeg-7.patch
-	epatch "${FILESDIR}"/${P}-tempfile-mpeg-encode.patch
-	epatch "${FILESDIR}"/${P}-tempfile-tests.patch
-	# don't include malloc.h, but use stdlib.h instead
-	sed -i -e 's:#include <malloc.h>:#include <stdlib.h>:' \
-		convert/*.c convert/mtv/*.c *.c headers/*.h || die
-}
-
-src_compile() {
-	emake CC="$(tc-getCC)"
-	emake -C convert CC="$(tc-getCC)"
-	emake -C convert/mtv CC="$(tc-getCC)"
-}
-
-src_install() {
-	dobin mpeg_encode
-	doman docs/*.1
-	dodoc BUGS CHANGES README TODO VERSION
-	dodoc docs/EXTENSIONS docs/INPUT.FORMAT docs/*.param docs/param-summary
-	docinto examples
-	dodoc examples/*
-
-	cd ../convert
-	dobin eyuvtojpeg jmovie2jpeg mpeg_demux mtv/movieToVid
-	newdoc README README.convert
-	newdoc mtv/README README.mtv
-}
-
-pkg_postinst() {
-	if [[ -z $(best_version media-libs/netpbm) ]]; then
-		elog "If you are looking for eyuvtoppm or ppmtoeyuv, please"
-		elog "emerge the netpbm package.  It has updated versions."
-	fi
-}


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-video/mpeg-tools/
@ 2024-03-15  3:39 Sam James
  0 siblings, 0 replies; 2+ messages in thread
From: Sam James @ 2024-03-15  3:39 UTC (permalink / raw
  To: gentoo-commits

commit:     aa99c2f429f532171de0a148ccad9cc6f17f2380
Author:     Eli Schwartz <eschwartz93 <AT> gmail <DOT> com>
AuthorDate: Fri Mar 15 03:00:32 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 15 03:18:08 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa99c2f4

media-video/mpeg-tools: mark as LTO-unsafe

Closes: https://bugs.gentoo.org/861137
Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-video/mpeg-tools/mpeg-tools-1.5b-r5.ebuild | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/media-video/mpeg-tools/mpeg-tools-1.5b-r5.ebuild b/media-video/mpeg-tools/mpeg-tools-1.5b-r5.ebuild
index c53ba754e99f..27d3b60126f0 100644
--- a/media-video/mpeg-tools/mpeg-tools-1.5b-r5.ebuild
+++ b/media-video/mpeg-tools/mpeg-tools-1.5b-r5.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit toolchain-funcs
+inherit flag-o-matic toolchain-funcs
 
 MY_PN=mpeg_encode
 DESCRIPTION="Tools for MPEG video"
@@ -45,6 +45,11 @@ src_prepare() {
 }
 
 src_compile() {
+	# -Werror=lto-type-mismatch
+	# https://bugs.gentoo.org/861137
+	# Upstream is thoroughly dead, homepage doesn't even exist anymore.
+	filter-lto
+
 	emake CC="$(tc-getCC)"
 	emake -C convert CC="$(tc-getCC)"
 	emake -C convert/mtv CC="$(tc-getCC)"


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-03-15  3:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-15  3:39 [gentoo-commits] repo/gentoo:master commit in: media-video/mpeg-tools/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2020-12-02  0:32 Aaron Bauman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox