diff options
author | 2009-06-23 15:43:16 +0000 | |
---|---|---|
committer | 2009-06-23 15:43:16 +0000 | |
commit | d9e71e7fdc4eb7b10fbcba1fa49d03b6b61f5343 (patch) | |
tree | d7df0128f480decea5dcbbcd98fcd75ae9efd049 /media-video | |
parent | version bump (diff) | |
download | gentoo-2-d9e71e7fdc4eb7b10fbcba1fa49d03b6b61f5343.tar.gz gentoo-2-d9e71e7fdc4eb7b10fbcba1fa49d03b6b61f5343.tar.bz2 gentoo-2-d9e71e7fdc4eb7b10fbcba1fa49d03b6b61f5343.zip |
Make it compile with gcc-4.4
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/dvbcut/ChangeLog | 6 | ||||
-rw-r--r-- | media-video/dvbcut/dvbcut-0.6.0.ebuild | 3 | ||||
-rw-r--r-- | media-video/dvbcut/files/dvbcut-0.6.0-gcc-4.4.patch | 10 |
3 files changed, 17 insertions, 2 deletions
diff --git a/media-video/dvbcut/ChangeLog b/media-video/dvbcut/ChangeLog index e52833e1ff68..119a357c35fa 100644 --- a/media-video/dvbcut/ChangeLog +++ b/media-video/dvbcut/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-video/dvbcut # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/dvbcut/ChangeLog,v 1.21 2009/06/21 15:14:21 billie Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/dvbcut/ChangeLog,v 1.22 2009/06/23 15:43:16 zzam Exp $ + + 23 Jun 2009; Matthias Schwarzott <zzam@gentoo.org> dvbcut-0.6.0.ebuild, + +files/dvbcut-0.6.0-gcc-4.4.patch: + Make it compile with gcc-4.4 21 Jun 2009; Pielmeier Daniel <billie@gentoo.org> dvbcut-0.6.0.ebuild: Use ${P} when calling epatch. diff --git a/media-video/dvbcut/dvbcut-0.6.0.ebuild b/media-video/dvbcut/dvbcut-0.6.0.ebuild index 5b11c115644b..6f0f3051878d 100644 --- a/media-video/dvbcut/dvbcut-0.6.0.ebuild +++ b/media-video/dvbcut/dvbcut-0.6.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/dvbcut/dvbcut-0.6.0.ebuild,v 1.3 2009/06/21 15:14:21 billie Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/dvbcut/dvbcut-0.6.0.ebuild,v 1.4 2009/06/23 15:43:16 zzam Exp $ EAPI=2 @@ -26,6 +26,7 @@ DEPEND="${RDEPEND}" src_prepare() { epatch "${FILESDIR}"/${P}-parallel-install.patch + epatch "${FILESDIR}"/${P}-gcc-4.4.patch } src_configure() { diff --git a/media-video/dvbcut/files/dvbcut-0.6.0-gcc-4.4.patch b/media-video/dvbcut/files/dvbcut-0.6.0-gcc-4.4.patch new file mode 100644 index 000000000000..f36f448e5e79 --- /dev/null +++ b/media-video/dvbcut/files/dvbcut-0.6.0-gcc-4.4.patch @@ -0,0 +1,10 @@ +--- dvbcut-0.6.0.orig/src/buffer.cpp ++++ dvbcut-0.6.0/src/buffer.cpp +@@ -27,6 +27,7 @@ + #include <cstring> + #include <cstdlib> + // #include <cstdio> ++#include <stdio.h> + #include <stdint.h> + #include <cassert> + |