Bug 139785 - games-rougelike/crossfire-client build fails without sound
Bug#: 139785 Product:  Gentoo Linux Version: unspecified Platform: All
OS/Version: Linux Status: RESOLVED Severity: normal Priority: P2
Resolution: FIXED Assigned To: games@gentoo.org Reported By: pc-gentoo-bugs08a@crowcastle.net
Component: Games
URL: 
Summary: games-rougelike/crossfire-client build fails without sound
Keywords:  
Status Whiteboard: 
Opened: 2006-07-09 09:19 0000
Description:   Opened: 2006-07-09 09:19 0000
USE="-oss -alsa" emerge crossfire-client

It fails trying to compile the sound server, which shouldn't be built.

The solution is to make the building of "sound-src" conditional on having
either alsa or oss support:

        if use alsa || use oss ; then
                emake -j1 -C sound-src || die "sound building failed"
        fi

With that change in the ebuild, it works perfectly.

------- Comment #1 From Mr. Bones. 2006-07-09 18:08:09 0000 -------
fixed in CVS.  Thanks for the bug report and patch.