diff options
author | edwin <edwin@FreeBSD.org> | 2004-03-08 09:01:31 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2004-03-08 09:01:31 +0800 |
commit | 5d87bf6f020ae3177a26e679d65b5e50f035bbe1 (patch) | |
tree | ca9d8a7830bc4c19ec29804b066fc99d81d7488b /graphics | |
parent | 476102ca837a76b18c930b013cb486ec3f0ce79e (diff) | |
download | freebsd-ports-graphics-5d87bf6f020ae3177a26e679d65b5e50f035bbe1.tar.gz freebsd-ports-graphics-5d87bf6f020ae3177a26e679d65b5e50f035bbe1.tar.zst freebsd-ports-graphics-5d87bf6f020ae3177a26e679d65b5e50f035bbe1.zip |
Properly use SDL everywhere:
USE_SDL=yes -> USE_SDL=sdl (good examles everywhere)
WANT_SDL/HAVE_SDL instead of exists(localbase/lib/lib...)
See
http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/using-sdl.html
for more information on how to use USE_SDL, WANT_SDL and HAVE_SDL.
PR: follow-ups of ports/55494, ports/61877
Submitted by: Edwin Groothuis <edwin@mavetju.org>
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/blender-devel/Makefile | 2 | ||||
-rw-r--r-- | graphics/guilib/Makefile | 2 | ||||
-rw-r--r-- | graphics/sdl_gfx/Makefile | 2 | ||||
-rw-r--r-- | graphics/sdl_image/Makefile | 2 | ||||
-rw-r--r-- | graphics/sdl_ttf/Makefile | 2 | ||||
-rw-r--r-- | graphics/swfdec/Makefile | 2 | ||||
-rw-r--r-- | graphics/white_dune/Makefile | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/graphics/blender-devel/Makefile b/graphics/blender-devel/Makefile index d7b57583896..f5b393e6064 100644 --- a/graphics/blender-devel/Makefile +++ b/graphics/blender-devel/Makefile @@ -23,7 +23,7 @@ USE_REINPLACE= yes USE_LIBTOOL= yes USE_GMAKE= yes USE_PYTHON= yes -USE_SDL= yes +USE_SDL= sdl USE_GL= yes CONFIGURE_ARGS= --with-sdl=${LOCALBASE} --disable-oggtest --disable-vorbistest --disable-sdltest diff --git a/graphics/guilib/Makefile b/graphics/guilib/Makefile index 3e1cb7449fe..26b5082703f 100644 --- a/graphics/guilib/Makefile +++ b/graphics/guilib/Makefile @@ -15,7 +15,7 @@ DISTNAME= GUIlib-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= A very simple GUI framework for use with SDL -USE_SDL= yes +USE_SDL= sdl USE_GMAKE= yes USE_LIBTOOL= yes LIBTOOLFLAGS= --disable-ltlibs --release-ignore diff --git a/graphics/sdl_gfx/Makefile b/graphics/sdl_gfx/Makefile index 8acb25de89d..3367f29e18d 100644 --- a/graphics/sdl_gfx/Makefile +++ b/graphics/sdl_gfx/Makefile @@ -17,7 +17,7 @@ DISTNAME= SDL_gfx-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= SDL graphics drawing primitives and other support functions -USE_SDL= yes +USE_SDL= sdl USE_REINPLACE= yes USE_GMAKE= yes USE_LIBTOOL= yes diff --git a/graphics/sdl_image/Makefile b/graphics/sdl_image/Makefile index 032da3e7961..fe477c4349f 100644 --- a/graphics/sdl_image/Makefile +++ b/graphics/sdl_image/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ png.5:${PORTSDIR}/graphics/png \ tiff.4:${PORTSDIR}/graphics/tiff -USE_SDL= yes +USE_SDL= sdl USE_GMAKE= yes USE_LIBTOOL= yes LIBTOOLFLAGS= --disable-ltlibs --release-ignore diff --git a/graphics/sdl_ttf/Makefile b/graphics/sdl_ttf/Makefile index 8cc13958b45..16ab7d6f3ea 100644 --- a/graphics/sdl_ttf/Makefile +++ b/graphics/sdl_ttf/Makefile @@ -17,7 +17,7 @@ COMMENT= A library to use TrueType fonts to render text in SDL applications LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 -USE_SDL= yes +USE_SDL= sdl USE_GL= yes USE_REINPLACE= yes USE_GMAKE= yes diff --git a/graphics/swfdec/Makefile b/graphics/swfdec/Makefile index 0f9690f1387..e0c412307d0 100644 --- a/graphics/swfdec/Makefile +++ b/graphics/swfdec/Makefile @@ -19,7 +19,7 @@ COMMENT= Flash Rendering Library LIB_DEPENDS= mad.2:${PORTSDIR}/audio/libmad USE_X_PREFIX= yes -USE_SDL= yes +USE_SDL= sdl USE_GNOME= gnomehack gtk20 libartlgpl2 USE_GETOPT_LONG= yes USE_REINPLACE= yes diff --git a/graphics/white_dune/Makefile b/graphics/white_dune/Makefile index 5b52df17794..f1c0903ec77 100644 --- a/graphics/white_dune/Makefile +++ b/graphics/white_dune/Makefile @@ -22,7 +22,7 @@ LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ USE_MOTIF= yes USE_GL= yes -USE_SDL= yes +USE_SDL= sdl GNU_CONFIGURE= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" \ |