First Last Prev Next    No search results available      Search page      Enter new bug
Bug#: 132207
Alias:
Product:
Component:
Status: RESOLVED
Resolution: FIXED
Assigned To: Gentoo Games <games@gentoo.org>
Hardware:
OS:
Version:
Priority:
Severity:
Reporter: Joe Jezak <josejx@gentoo.org>
Add CC:
CC:
Remove selected CCs
URL:
Summary:
Status Whiteboard:
Keywords:

Filename Description Type Creator Created Size Actions
Create a New Attachment (proposed patch, testcase, etc.) View All

Bug 132207 depends on: Show dependency tree
Show dependency graph
Bug 132207 blocks:
Votes: 0    Show votes for this bug    Vote for this bug

Additional Comments: (this is where you put emerge --info)







View Bug Activity   |   Format For Printing   |   XML   |   Clone This Bug


Description:   Opened: 2006-05-03 23:37 0000
scummvm-tools has an option for big endian systems that needs to be enabled in
the Makefile before compilation.  Since the ebuild currently doesn't do this,
we get segfaults when using the tools on big endian machines.  The fix is to
add this to the ebuild:

--- scummvm-tools-0.8.0.ebuild.bak      2006-05-04 02:31:42.000000000 -0400
+++ scummvm-tools-0.8.0.ebuild  2006-05-04 02:32:17.000000000 -0400
@@ -21,6 +21,9 @@
        unpack ${A}
        cd "${S}"
        sed -i -e '/CFLAGS/s: -g -O : :' Makefile
+       if use ppc; then
+               sed -i -e '/DSCUMM_BIG/s:# CFLAGS:CFLAGS:' Makefile
+       fi
 }

 src_install() {


I can do it if the games team is fine with it.

------- Comment #1 From Joe Jezak 2006-05-03 23:45:40 0000 -------
Applied with || die "sed failed".  Thanks.

First Last Prev Next    No search results available      Search page      Enter new bug