USE_SDL
is used to
autoconfigure the dependencies for ports which use an SDL
based library like devel/sdl12
and graphics/sdl_image.
These SDL libraries for version 1.2 are recognized:
sdl: devel/sdl12
console: devel/sdl_console
gfx: graphics/sdl_gfx
image: graphics/sdl_image
mixer: audio/sdl_mixer
mm: devel/sdlmm
net: net/sdl_net
pango: x11-toolkits/sdl_pango
sound: audio/sdl_sound
ttf: graphics/sdl_ttf
These SDL libraries for version 2.0 are recognized:
sdl: devel/sdl20
gfx: graphics/sdl2_gfx
image: graphics/sdl2_image
mixer: audio/sdl2_mixer
net: net/sdl2_net
ttf: graphics/sdl2_ttf
Therefore, if a port has a dependency on net/sdl_net and audio/sdl_mixer, the syntax will be:
USE_SDL= net mixer
The dependency devel/sdl12, which is required by net/sdl_net and audio/sdl_mixer, is automatically added as well.
Using USE_SDL
with entries for
SDL 1.2, it will automatically:
Add a dependency on
sdl12-config to
BUILD_DEPENDS
Add the variable SDL_CONFIG
to
CONFIGURE_ENV
Add the dependencies of the selected libraries to
LIB_DEPENDS
Using USE_SDL
with entries for
SDL 2.0, it will automatically:
Add a dependency on
sdl2-config to
BUILD_DEPENDS
Add the variable SDL2_CONFIG
to
CONFIGURE_ENV
Add the dependencies of the selected libraries to
LIB_DEPENDS
To check whether an SDL library is available, use
WANT_SDL
:
WANT_SDL= yes .include <bsd.port.pre.mk> .if ${HAVE_SDL:Mmixer}!="" USE_SDL+= mixer .endif .include <bsd.port.post.mk>
All FreeBSD documents are available for download at http://ftp.FreeBSD.org/pub/FreeBSD/doc/
Questions that are not answered by the
documentation may be
sent to <[email protected]>.
Send questions about this document to <[email protected]>.