diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2004-03-08 01:01:31 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2004-03-08 01:01:31 +0000 |
commit | 672c044e2eee3598f19a0f5e618e0c2fe8aea68d (patch) | |
tree | 771bbdda8fc0a17d5351cfa925732955ccc44706 /audio | |
parent | - Update to 4.4.0 (diff) |
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>
Notes
Notes:
svn path=/head/; revision=103247
Diffstat (limited to 'audio')
-rw-r--r-- | audio/drumpiler/Makefile | 2 | ||||
-rw-r--r-- | audio/ksmp3play/Makefile | 2 | ||||
-rw-r--r-- | audio/sdl_mixer/Makefile | 2 | ||||
-rw-r--r-- | audio/sdl_sound/Makefile | 2 | ||||
-rw-r--r-- | audio/tempest_for_eliza/Makefile | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/audio/drumpiler/Makefile b/audio/drumpiler/Makefile index 9bc2e13e3e13..af59333b6ed0 100644 --- a/audio/drumpiler/Makefile +++ b/audio/drumpiler/Makefile @@ -16,7 +16,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Drum machine compiler USE_REINPLACE= yes -USE_SDL= yes +USE_SDL= sdl CFLAGS+= `${SDL_CONFIG} --cflags` LIBS+= `${SDL_CONFIG} --libs` PLIST_FILES= bin/drumpiler diff --git a/audio/ksmp3play/Makefile b/audio/ksmp3play/Makefile index 37e10aa5e6c2..4869d6230754 100644 --- a/audio/ksmp3play/Makefile +++ b/audio/ksmp3play/Makefile @@ -17,7 +17,7 @@ COMMENT= An curses-based MP3 player LIB_DEPENDS= smpeg.1:${PORTSDIR}/multimedia/smpeg -USE_SDL= yes +USE_SDL= sdl USE_GETOPT_LONG= yes USE_REINPLACE= yes GNU_CONFIGURE= yes diff --git a/audio/sdl_mixer/Makefile b/audio/sdl_mixer/Makefile index 0226cad075e4..873dcecab380 100644 --- a/audio/sdl_mixer/Makefile +++ b/audio/sdl_mixer/Makefile @@ -18,7 +18,7 @@ COMMENT= A sample multi-channel audio mixer library LIB_DEPENDS= vorbis.3:${PORTSDIR}/audio/libvorbis \ smpeg.1:${PORTSDIR}/multimedia/smpeg -USE_SDL= yes +USE_SDL= sdl USE_REINPLACE= yes USE_GMAKE= yes USE_LIBTOOL= yes diff --git a/audio/sdl_sound/Makefile b/audio/sdl_sound/Makefile index e332c0128475..8cb035e52d07 100644 --- a/audio/sdl_sound/Makefile +++ b/audio/sdl_sound/Makefile @@ -15,7 +15,7 @@ DISTNAME= SDL_sound-${PORTVERSION} MAINTAINER= dyeske@yahoo.com COMMENT= A SDL audio library and player for some popular sound file formats -USE_SDL= yes +USE_SDL= sdl USE_REINPLACE= yes USE_LIBTOOL= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} diff --git a/audio/tempest_for_eliza/Makefile b/audio/tempest_for_eliza/Makefile index 9b6136ed6d3a..f47b737708c0 100644 --- a/audio/tempest_for_eliza/Makefile +++ b/audio/tempest_for_eliza/Makefile @@ -16,7 +16,7 @@ COMMENT= A program to send AM radio signals using a PC monitor USE_GMAKE= yes GNU_CONFIGURE= yes -USE_SDL= yes +USE_SDL= sdl post-install: ${MKDIR} ${PREFIX}/share/tempest |