Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 92080 - media-sound/alsa-utils won't build with -nls USE flag
Summary: media-sound/alsa-utils won't build with -nls USE flag
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Gentoo Sound Team
URL:
Whiteboard:
Keywords: InVCS
Depends on:
Blocks:
 
Reported: 2005-05-09 23:48 UTC by David Clayton
Modified: 2005-05-27 13:48 UTC (History)
1 user (show)

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 David Clayton 2005-05-09 23:48:29 UTC
The ebuild for alsa-utils 1.0.8 doesn't take into account the -nls USE flag causing the build to fail on systems with nls disabled.

I'm not a portage expert, but adding the following to the media-sound/alsa-utils-1.0.8.ebuild corrects the problem:

IUSE="nls"

src_compile() {
        econf \
                $(use_enable nls) \
                || die "configure failed"
}

Apologies in advance for any faults with my report, this is my first :)
Thanks
Comment 1 Brant Gurganus 2005-05-13 00:07:55 UTC
I tried this also and it worked for me.  It looks sound from what I know of writing ebuilds.
Comment 2 Jan Brinkmann (RETIRED) gentoo-dev 2005-05-27 13:48:42 UTC
fixed in latest version now, thanks for reporting.