diff options
author | Joseph Jezak <josejx@gentoo.org> | 2006-05-04 06:45:42 +0000 |
---|---|---|
committer | Joseph Jezak <josejx@gentoo.org> | 2006-05-04 06:45:42 +0000 |
commit | e9feb8bc009df233159f5594ae2cfbd75855b5b3 (patch) | |
tree | c5eef8ff7c24c791e7d60c711e9f09ee0b40949e /games-engines | |
parent | post commit fix (diff) | |
download | gentoo-2-e9feb8bc009df233159f5594ae2cfbd75855b5b3.tar.gz gentoo-2-e9feb8bc009df233159f5594ae2cfbd75855b5b3.tar.bz2 gentoo-2-e9feb8bc009df233159f5594ae2cfbd75855b5b3.zip |
Added ppc big endian fix for bug #132207.
(Portage version: 2.1_pre10-r2)
Diffstat (limited to 'games-engines')
-rw-r--r-- | games-engines/scummvm-tools/ChangeLog | 7 | ||||
-rw-r--r-- | games-engines/scummvm-tools/files/digest-scummvm-tools-0.8.0 | 2 | ||||
-rw-r--r-- | games-engines/scummvm-tools/scummvm-tools-0.8.0.ebuild | 9 |
3 files changed, 13 insertions, 5 deletions
diff --git a/games-engines/scummvm-tools/ChangeLog b/games-engines/scummvm-tools/ChangeLog index bffec250e3cb..22a0101154ea 100644 --- a/games-engines/scummvm-tools/ChangeLog +++ b/games-engines/scummvm-tools/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-engines/scummvm-tools -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.7 2005/10/31 01:31:16 vapier Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.8 2006/05/04 06:45:41 josejx Exp $ + + 04 May 2006; Joseph Jezak <josejx@gentoo.org> scummvm-tools-0.8.0.ebuild: + Added ppc big endian fix for bug #132207. *scummvm-tools-0.8.0 (31 Oct 2005) diff --git a/games-engines/scummvm-tools/files/digest-scummvm-tools-0.8.0 b/games-engines/scummvm-tools/files/digest-scummvm-tools-0.8.0 index 431bd026ba9c..1b7b3ffd9507 100644 --- a/games-engines/scummvm-tools/files/digest-scummvm-tools-0.8.0 +++ b/games-engines/scummvm-tools/files/digest-scummvm-tools-0.8.0 @@ -1 +1,3 @@ MD5 cc7e13ea10acf692c10e90b9507074ed scummvm-tools-0.8.0.tar.bz2 92983 +RMD160 f53c9912c06e19a6a0202aa27bdd58d2ed5c33cd scummvm-tools-0.8.0.tar.bz2 92983 +SHA256 b60936416e201eda18c627c85bc29ba742e1b6c98d79bc9935ed4827a2e47fa0 scummvm-tools-0.8.0.tar.bz2 92983 diff --git a/games-engines/scummvm-tools/scummvm-tools-0.8.0.ebuild b/games-engines/scummvm-tools/scummvm-tools-0.8.0.ebuild index c9ac35bc68be..9940684df195 100644 --- a/games-engines/scummvm-tools/scummvm-tools-0.8.0.ebuild +++ b/games-engines/scummvm-tools/scummvm-tools-0.8.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-0.8.0.ebuild,v 1.1 2005/10/31 01:31:16 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-0.8.0.ebuild,v 1.2 2006/05/04 06:45:39 josejx Exp $ inherit games @@ -20,7 +20,10 @@ S=${WORKDIR}/tools-${PV} src_unpack() { unpack ${A} cd "${S}" - sed -i -e '/CFLAGS/s: -g -O : :' Makefile + sed -i -e '/CFLAGS/s: -g -O : :' Makefile || die "sed failed" + if use ppc; then + sed -i -e '/DSCUMM_BIG/s:# CFLAGS:CFLAGS:' Makefile || die "sed failed" + fi } src_install() { |