From 5d87bf6f020ae3177a26e679d65b5e50f035bbe1 Mon Sep 17 00:00:00 2001 From: edwin Date: Mon, 8 Mar 2004 01:01:31 +0000 Subject: 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 --- multimedia/mplayerxp/Makefile | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'multimedia/mplayerxp') diff --git a/multimedia/mplayerxp/Makefile b/multimedia/mplayerxp/Makefile index 84a83d707acb..82ecb31f51b4 100644 --- a/multimedia/mplayerxp/Makefile +++ b/multimedia/mplayerxp/Makefile @@ -29,10 +29,10 @@ USE_GMAKE= yes USE_REINPLACE= yes USE_SIZE= yes HAS_CONFIGURE= yes +WANT_SDL= yes MAN1= mplayerxp.1 -SDL_CONFIG?= "${LOCALBASE}/bin/sdl11-config" WIN32_CODEC_PREFIX= ${LOCALBASE}/lib/win32 # dirs to create before installation @@ -80,11 +80,11 @@ WITH_CDPARANOIA=yes WITH_DVD=yes .endif # sdl -.if exists(${LOCALBASE}/lib/libSDL-1.1.a) +.if ${HAVE_SDL:Msdl}!="" WITH_SDL=yes .endif # sdl_image -.if exists(${LOCALBASE}/lib/libSDL_image.a) +.if ${HAVE_SDL:Mimage}!="" WITH_SDL_IMAGE=yes .endif # xvid @@ -139,17 +139,14 @@ CONFIGURE_ARGS+= --with-libdvdnav=${LOCALBASE} .endif # sdl .ifdef(WITH_SDL) -LIB_DEPENDS+= SDL-1.1.5:${PORTSDIR}/devel/sdl12 - +USE_SDL= sdl CONFIGURE_ARGS+= --enable-sdl -CONFIGURE_ENV+= SDL_CONFIG=${SDL_CONFIG} .else CONFIGURE_ARGS+= --disable-sdl .endif # sdl_image .ifdef(WITH_SDL_IMAGE) -LIB_DEPENDS+= SDL_image.10:${PORTSDIR}/graphics/sdl_image - +USE_SDL+= image CONFIGURE_ARGS+= --enable-sdl-image .else CONFIGURE_ARGS+= --disable-sdl-image -- cgit