Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 19927 - `USE="sdl" emerge foobillard` disables sdl
Summary: `USE="sdl" emerge foobillard` disables sdl
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo Games
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-04-25 07:39 UTC by Herbie Hopkins (RETIRED)
Modified: 2003-06-20 22:43 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 Herbie Hopkins (RETIRED) gentoo-dev 2003-04-25 07:39:42 UTC
emerge foobillard (version 2.5) disables sdl support even with sdl is USE. I
think this is due to the --disable-glut configure option which actually has the
effect of enabling glut and disabling sdl (bug in configure script). However
simply removing the term --disable-glut from line 36 of the ebuild seems to
solve the problem. Note that there is no sound support when using glut over sdl.

Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Comment 1 SpanKY gentoo-dev 2003-06-20 22:43:07 UTC
2.7 is now in portage and it's configure.in is this: 
 
AC_ARG_ENABLE(SDL, 
              [  --enable-SDL            use SDL-lib instead of glut (default)], 
              [export USE_SDL=yes], [export USE_SDL=no]) 
 
AC_ARG_ENABLE(glut, 
              [  --enable-glut           use glut instead of SDL-lib], 
              [export USE_SDL=no], [export USE_SDL=yes]) 
 
so it should be all set now