aboutsummaryrefslogtreecommitdiff
path: root/audio/sdl2_mixer
diff options
context:
space:
mode:
authorMarcus von Appen <mva@FreeBSD.org>2013-10-25 16:15:36 +0000
committerMarcus von Appen <mva@FreeBSD.org>2013-10-25 16:15:36 +0000
commitce01f38cc12172b564306ef9b2251fe05a30a7bf (patch)
tree83b4013587b07ed88d138efdf4521d6c416b85c2 /audio/sdl2_mixer
parenta54dcd491567251f0b06e6599b4b88b77ace1e49 (diff)
downloadports-ce01f38cc12172b564306ef9b2251fe05a30a7bf.tar.gz
ports-ce01f38cc12172b564306ef9b2251fe05a30a7bf.zip
- Update devel/sdl20 to version 2.0.1
- Bump PORTREVISIONs for SDL2-related ports to chase the changed SDL2 shlib version - Enable staging support for the SDL2 ports - Switch to new LIB_DEPENDS format for the SDL2 ports - Add LICENSE to the SDL2 ports - Use gmake USES for the SDL2 ports
Notes
Notes: svn path=/head/; revision=331607
Diffstat (limited to 'audio/sdl2_mixer')
-rw-r--r--audio/sdl2_mixer/Makefile13
1 files changed, 8 insertions, 5 deletions
diff --git a/audio/sdl2_mixer/Makefile b/audio/sdl2_mixer/Makefile
index cf32948206a9..a8b83c73352e 100644
--- a/audio/sdl2_mixer/Makefile
+++ b/audio/sdl2_mixer/Makefile
@@ -2,7 +2,7 @@
PORTNAME= sdl2_mixer
PORTVERSION= 2.0.0
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= audio
MASTER_SITES= http://www.libsdl.org/projects/SDL_mixer/release/
DISTNAME= SDL2_mixer-${PORTVERSION}
@@ -13,7 +13,6 @@ COMMENT= A sample multi-channel audio mixer library
LICENSE= ZLIB
USES= gmake pathfix pkgconfig
-NO_STAGE= yes
USE_SDL= sdl2
GNU_CONFIGURE= yes
LDFLAGS+= -L${LOCALBASE}/lib
@@ -37,14 +36,18 @@ MIKMOD_CONFIGURE_ENABLE= music-mod-mikmod
MODPLUG_LIB_DEPENDS= libmodplug.so:${PORTSDIR}/audio/libmodplug
MODPLUG_CONFIGURE_ENABLE= music-mod-modplug
-FLAC_LIB_DEPENDS= FLAC:${PORTSDIR}/audio/flac
+FLAC_LIB_DEPENDS= libFLAC.so:${PORTSDIR}/audio/flac
FLAC_CONFIGURE_ENABLE= music-flac
-FLUIDSYNTH_LIB_DEPENDS= fluidsynth:${PORTSDIR}/audio/fluidsynth
+FLUIDSYNTH_LIB_DEPENDS= libfluidsynth.so:${PORTSDIR}/audio/fluidsynth
FLUIDSYNTH_CONFIGURE_ON= --enable-music-midi --enable-music-midi-fluidsynth
FLUIDSYNTH_CONFIGURE_OFF= --disable-music-midi --disable-music-midi-fluidsynth
-VORBIS_LIB_DEPENDS= vorbis:${PORTSDIR}/audio/libvorbis
+VORBIS_LIB_DEPENDS= libvorbis.so:${PORTSDIR}/audio/libvorbis
VORBIS_CONFIGURE_ENABLE= music-ogg
+post-patch:
+ @${REINPLACE_CMD} -e 's|$(prefix)/libdata/pkgconfig|$(DESTDIR)$(prefix)/libdata/pkgconfig|' \
+ ${WRKSRC}/Makefile.in
+
.include <bsd.port.mk>