summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Whyman <thev00d00@gentoo.org>2015-01-18 19:53:42 +0000
committerIan Whyman <thev00d00@gentoo.org>2015-01-18 19:53:42 +0000
commit352990dd27d7e9a9ef35ccaad9f7c4ee36b3c07b (patch)
tree26b6598ee5917d2470c3dce572d3a6c5ed091a54 /media-libs
parentInitial import, ebuild written by me (diff)
downloadgentoo-2-352990dd27d7e9a9ef35ccaad9f7c4ee36b3c07b.tar.gz
gentoo-2-352990dd27d7e9a9ef35ccaad9f7c4ee36b3c07b.tar.bz2
gentoo-2-352990dd27d7e9a9ef35ccaad9f7c4ee36b3c07b.zip
Extend ffmpeg sed to a couple more files, fixes #509300
(Portage version: 2.2.15/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'media-libs')
-rw-r--r--media-libs/libquicktime/ChangeLog7
-rw-r--r--media-libs/libquicktime/libquicktime-1.2.4-r1.ebuild8
2 files changed, 10 insertions, 5 deletions
diff --git a/media-libs/libquicktime/ChangeLog b/media-libs/libquicktime/ChangeLog
index 67581cf1b553..849333351646 100644
--- a/media-libs/libquicktime/ChangeLog
+++ b/media-libs/libquicktime/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-libs/libquicktime
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/ChangeLog,v 1.198 2014/12/09 10:06:49 jer Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/ChangeLog,v 1.199 2015/01/18 19:53:42 thev00d00 Exp $
+
+ 18 Jan 2015; Ian Whyman <thev00d00@gentoo.org> libquicktime-1.2.4-r1.ebuild:
+ Extend ffmpeg sed to a couple more files, fixes #509300
09 Dec 2014; Jeroen Roovers <jer@gentoo.org> libquicktime-1.2.4-r1.ebuild:
Stable for HPPA (bug #526014).
diff --git a/media-libs/libquicktime/libquicktime-1.2.4-r1.ebuild b/media-libs/libquicktime/libquicktime-1.2.4-r1.ebuild
index 8df190d5cd28..239537a3dd37 100644
--- a/media-libs/libquicktime/libquicktime-1.2.4-r1.ebuild
+++ b/media-libs/libquicktime/libquicktime-1.2.4-r1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/libquicktime-1.2.4-r1.ebuild,v 1.5 2014/12/09 10:06:49 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/libquicktime-1.2.4-r1.ebuild,v 1.6 2015/01/18 19:53:42 thev00d00 Exp $
EAPI=5
inherit libtool eutils multilib-minimal
@@ -54,7 +54,9 @@ src_prepare() {
epatch "${FILESDIR}"/${P}+libav-9.patch \
"${FILESDIR}"/${P}-ffmpeg2.patch
- sed -i -e "s:CODEC_ID_:AV_&:g" "${S}/plugins/ffmpeg/lqt_ffmpeg.c" || die
+ for FILE in lqt_ffmpeg.c video.c audio.c ; do
+ sed -i -e "s:CODEC_ID_:AV_&:g" "${S}/plugins/ffmpeg/${FILE}" || die
+ done
elibtoolize # Required for .so versioning on g/fbsd
}