diff options
author | Daichi GOTO <daichi@FreeBSD.org> | 2003-07-31 06:55:52 +0000 |
---|---|---|
committer | Daichi GOTO <daichi@FreeBSD.org> | 2003-07-31 06:55:52 +0000 |
commit | 3857dbc24f5d9caab3fc59e4a5c86d33ba54d40d (patch) | |
tree | 8ee672d82f2fbf8c9859b05c40c56f4b6e902f22 /audio/sdl_mixer | |
parent | 923aca5c0a1237c4bbccdde38d1dbee558b8b6ad (diff) | |
download | ports-3857dbc24f5d9caab3fc59e4a5c86d33ba54d40d.tar.gz ports-3857dbc24f5d9caab3fc59e4a5c86d33ba54d40d.zip |
Notes
Diffstat (limited to 'audio/sdl_mixer')
-rw-r--r-- | audio/sdl_mixer/Makefile | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/audio/sdl_mixer/Makefile b/audio/sdl_mixer/Makefile index 607a428e9b70..e4a14a266a8a 100644 --- a/audio/sdl_mixer/Makefile +++ b/audio/sdl_mixer/Makefile @@ -14,20 +14,20 @@ DISTNAME= SDL_mixer-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= A sample multi-channel audio mixer library -LIB_DEPENDS= SDL-1.1.5:${PORTSDIR}/devel/sdl12 \ - smpeg.1:${PORTSDIR}/multimedia/smpeg \ - vorbis.2:${PORTSDIR}/audio/libvorbis +LIB_DEPENDS= vorbis.2:${PORTSDIR}/audio/libvorbis \ + smpeg.1:${PORTSDIR}/multimedia/smpeg -SDL_CONFIG= ${LOCALBASE}/bin/sdl11-config - -USE_LIBTOOL= yes +USE_SDL= yes +USE_REINPLACE= yes USE_GMAKE= yes +USE_LIBTOOL= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" INSTALLS_SHLIB= yes -CONFIGURE_ENV= SDL_CONFIG="${SDL_CONFIG}" \ - CPPFLAGS="-I${X11BASE}/include" post-configure: - @${PERL} -pi -e 's|^deplibs_check_method=.*|deplibs_check_method=pass_all|' \ - ${WRKSRC}/libtool + @${REINPLACE_CMD} -e \ + 's|^deplibs_check_method=.*|deplibs_check_method=pass_all|' \ + ${WRKSRC}/libtool .include <bsd.port.mk> |