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.
Applied with || die "sed failed". Thanks.