diff options
author | Peter Alfredsen <loki_val@gentoo.org> | 2008-06-29 12:05:39 +0000 |
---|---|---|
committer | Peter Alfredsen <loki_val@gentoo.org> | 2008-06-29 12:05:39 +0000 |
commit | 5e9f1302c42ad37c824ed2326f348bdc96efbe97 (patch) | |
tree | 3e55240665f5f27d9e088b9b525a0c6369b2a9c7 /media-video | |
parent | remove old (diff) | |
download | gentoo-2-5e9f1302c42ad37c824ed2326f348bdc96efbe97.tar.gz gentoo-2-5e9f1302c42ad37c824ed2326f348bdc96efbe97.tar.bz2 gentoo-2-5e9f1302c42ad37c824ed2326f348bdc96efbe97.zip |
Fix for gcc-4.3 wrt bug #225745.
(Portage version: 2.2_rc1/cvs/Linux 2.6.25.8 i686)
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/mplayerthumbs/ChangeLog | 6 | ||||
-rw-r--r-- | media-video/mplayerthumbs/files/mplayerthumbs-0.5b-gcc43.patch | 12 | ||||
-rw-r--r-- | media-video/mplayerthumbs/mplayerthumbs-0.5b.ebuild | 4 |
3 files changed, 20 insertions, 2 deletions
diff --git a/media-video/mplayerthumbs/ChangeLog b/media-video/mplayerthumbs/ChangeLog index 77824564edd0..a0098eb5f3fc 100644 --- a/media-video/mplayerthumbs/ChangeLog +++ b/media-video/mplayerthumbs/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-video/mplayerthumbs # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/mplayerthumbs/ChangeLog,v 1.3 2008/02/18 23:17:03 ingmar Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/mplayerthumbs/ChangeLog,v 1.4 2008/06/29 12:05:39 loki_val Exp $ + + 29 Jun 2008; Peter Alfredsen <loki_val@gentoo.org> + +files/mplayerthumbs-0.5b-gcc43.patch, mplayerthumbs-0.5b.ebuild: + Fix for gcc-4.3 wrt bug #225745. 18 Feb 2008; Ingmar Vanhassel <ingmar@gentoo.org> mplayerthumbs-0.5b.ebuild: diff --git a/media-video/mplayerthumbs/files/mplayerthumbs-0.5b-gcc43.patch b/media-video/mplayerthumbs/files/mplayerthumbs-0.5b-gcc43.patch new file mode 100644 index 000000000000..48417974dcd5 --- /dev/null +++ b/media-video/mplayerthumbs/files/mplayerthumbs-0.5b-gcc43.patch @@ -0,0 +1,12 @@ +*** src/videopreview.cpp.orig 2006-07-10 17:17:11.000000000 +0200 +--- src/videopreview.cpp 2008-06-11 02:45:40.379823160 +0200 +*************** +*** 20,25 **** +--- 20,26 ---- + + #include "videopreview.h" + ++ #include <stdlib.h> + #include <qfile.h> + #include <qpixmap.h> + #include <qimage.h> diff --git a/media-video/mplayerthumbs/mplayerthumbs-0.5b.ebuild b/media-video/mplayerthumbs/mplayerthumbs-0.5b.ebuild index b13fe7a357e8..a6d5faa16093 100644 --- a/media-video/mplayerthumbs/mplayerthumbs-0.5b.ebuild +++ b/media-video/mplayerthumbs/mplayerthumbs-0.5b.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/mplayerthumbs/mplayerthumbs-0.5b.ebuild,v 1.2 2008/02/18 23:17:03 ingmar Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/mplayerthumbs/mplayerthumbs-0.5b.ebuild,v 1.3 2008/06/29 12:05:39 loki_val Exp $ inherit kde @@ -18,3 +18,5 @@ DEPEND="( || ( =kde-base/konqueror-3.5* =kde-base/kdebase-3.5* ) ) ( || ( media-video/mplayer media-video/mplayer-bin ) )" need-kde 3.3 + +PATCHES=( "${FILESDIR}/${P}-gcc43.patch" ) |