diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-03-29 11:25:32 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-03-29 11:25:32 +0000 |
commit | ea936dc1b05b74f260a97d96b69c26999160911c (patch) | |
tree | bca4887213f9360705814d839dbd60ea93d8bdc6 /media-libs/smpeg | |
parent | New version (diff) | |
download | gentoo-2-ea936dc1b05b74f260a97d96b69c26999160911c.tar.gz gentoo-2-ea936dc1b05b74f260a97d96b69c26999160911c.tar.bz2 gentoo-2-ea936dc1b05b74f260a97d96b69c26999160911c.zip |
Add patch to fix bug #127929. Special thanks to David Morgan who helped me with testing it.
(Portage version: 2.1_pre7-r2)
Diffstat (limited to 'media-libs/smpeg')
-rw-r--r-- | media-libs/smpeg/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/smpeg/files/smpeg-0.4.4-mmx.patch | 12 | ||||
-rw-r--r-- | media-libs/smpeg/smpeg-0.4.4-r8.ebuild | 3 |
3 files changed, 20 insertions, 2 deletions
diff --git a/media-libs/smpeg/ChangeLog b/media-libs/smpeg/ChangeLog index 24c3080a755e..bcfad2deee96 100644 --- a/media-libs/smpeg/ChangeLog +++ b/media-libs/smpeg/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/smpeg # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/ChangeLog,v 1.34 2006/03/28 18:11:01 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/ChangeLog,v 1.35 2006/03/29 11:25:32 flameeyes Exp $ + + 29 Mar 2006; Diego Pettenò <flameeyes@gentoo.org> + +files/smpeg-0.4.4-mmx.patch, smpeg-0.4.4-r8.ebuild: + Add patch to fix bug #127929. Special thanks to David Morgan who helped me + with testing it. *smpeg-0.4.4-r8 (28 Mar 2006) diff --git a/media-libs/smpeg/files/smpeg-0.4.4-mmx.patch b/media-libs/smpeg/files/smpeg-0.4.4-mmx.patch new file mode 100644 index 000000000000..71db62d055b4 --- /dev/null +++ b/media-libs/smpeg/files/smpeg-0.4.4-mmx.patch @@ -0,0 +1,12 @@ +Index: smpeg-0.4.4/configure.in +=================================================================== +--- smpeg-0.4.4.orig/configure.in ++++ smpeg-0.4.4/configure.in +@@ -148,6 +148,7 @@ if test x$enable_mmx = xyes; then + + if test x$use_mmx = xyes; then + EXTRA_CFLAGS="$EXTRA_CFLAGS -DUSE_MMX" ++ CCASFLAGS="$CCASFLAGS -DUSE_MMX" + fi + fi + diff --git a/media-libs/smpeg/smpeg-0.4.4-r8.ebuild b/media-libs/smpeg/smpeg-0.4.4-r8.ebuild index 4094d7b254bf..a4f13e64b93d 100644 --- a/media-libs/smpeg/smpeg-0.4.4-r8.ebuild +++ b/media-libs/smpeg/smpeg-0.4.4-r8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/smpeg-0.4.4-r8.ebuild,v 1.1 2006/03/28 18:11:01 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/smpeg-0.4.4-r8.ebuild,v 1.2 2006/03/29 11:25:32 flameeyes Exp $ inherit eutils toolchain-funcs autotools @@ -36,6 +36,7 @@ src_unpack() { epatch "${FILESDIR}"/${P}-gcc41.patch epatch "${FILESDIR}"/${P}-flags.patch epatch "${FILESDIR}"/${P}-automake.patch + epatch "${FILESDIR}"/${P}-mmx.patch cd "${WORKDIR}" epatch "${DISTDIR}"/${P}-gtkm4.patch.bz2 |