Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 139785 - games-rougelike/crossfire-client build fails without sound
Summary: games-rougelike/crossfire-client build fails without sound
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Games (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo Games
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-07-09 09:19 UTC by Preston Crow
Modified: 2006-07-09 18:08 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Preston Crow 2006-07-09 09:19:23 UTC
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 Mr. Bones. (RETIRED) gentoo-dev 2006-07-09 18:08:09 UTC
fixed in CVS.  Thanks for the bug report and patch.