View | Details | Raw Unified | Return to bug 207671 | Differences between
and this patch

Collapse All | Expand All

(-)audio/sdl2_mixer/Makefile (-5 / +6 lines)
Lines 1-8 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	sdl2_mixer
3
PORTNAME=	sdl2_mixer
4
PORTVERSION=	2.0.0
4
PORTVERSION=	2.0.1
5
PORTREVISION=	11
6
CATEGORIES=	audio
5
CATEGORIES=	audio
7
MASTER_SITES=	http://www.libsdl.org/projects/SDL_mixer/release/
6
MASTER_SITES=	http://www.libsdl.org/projects/SDL_mixer/release/
8
DISTNAME=	SDL2_mixer-${PORTVERSION}
7
DISTNAME=	SDL2_mixer-${PORTVERSION}
Lines 11-22 Link Here
11
COMMENT=	Sample multi-channel audio mixer library
10
COMMENT=	Sample multi-channel audio mixer library
12
11
13
LICENSE=	ZLIB
12
LICENSE=	ZLIB
13
LICENSE_FILE=	${WRKSRC}/COPYING.txt
14
14
15
USES=		gmake pathfix pkgconfig libtool
15
USES=		gmake pathfix pkgconfig libtool localbase
16
USE_SDL=	sdl2
16
USE_SDL=	sdl2
17
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
18
LDFLAGS+=	-L${LOCALBASE}/lib
19
CPPFLAGS+=	-I${LOCALBASE}/include
20
USE_LDCONFIG=	yes
18
USE_LDCONFIG=	yes
21
19
22
OPTIONS_DEFINE=		FLUIDSYNTH FLAC SMPEG
20
OPTIONS_DEFINE=		FLUIDSYNTH FLAC SMPEG
Lines 65-68 Link Here
65
	@${REINPLACE_CMD} -e 's|"modplug.h"|"libmodplug/modplug.h"|' \
63
	@${REINPLACE_CMD} -e 's|"modplug.h"|"libmodplug/modplug.h"|' \
66
		${WRKSRC}/dynamic_modplug.h ${WRKSRC}/music_modplug.h
64
		${WRKSRC}/dynamic_modplug.h ${WRKSRC}/music_modplug.h
67
65
66
post-install:
67
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libSDL2_mixer.so
68
68
.include <bsd.port.mk>
69
.include <bsd.port.mk>
(-)audio/sdl2_mixer/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (SDL2_mixer-2.0.0.tar.gz) = a8ce0e161793791adeff258ca6214267fdd41b3c073d2581cd5265c8646f725b
1
SHA256 (SDL2_mixer-2.0.1.tar.gz) = 5a24f62a610249d744cbd8d28ee399d8905db7222bf3bdbc8a8b4a76e597695f
2
SIZE (SDL2_mixer-2.0.0.tar.gz) = 10119589
2
SIZE (SDL2_mixer-2.0.1.tar.gz) = 10213891
(-)audio/sdl2_mixer/files/patch-dynamic__ogg.h (-11 lines)
Lines 1-11 Link Here
1
--- dynamic_ogg.h.orig	2013-08-10 17:39:55 UTC
2
+++ dynamic_ogg.h
3
@@ -21,7 +21,7 @@
4
 
5
 #ifdef OGG_MUSIC
6
 #ifdef OGG_USE_TREMOR
7
-#include <ivorbisfile.h>
8
+#include <tremor/ivorbisfile.h>
9
 #else
10
 #include <vorbis/vorbisfile.h>
11
 #endif
(-)audio/sdl2_mixer/files/patch-music__ogg.h (-11 lines)
Lines 1-11 Link Here
1
--- music_ogg.h.orig	2013-08-10 17:39:58 UTC
2
+++ music_ogg.h
3
@@ -26,7 +26,7 @@
4
 /* This file supports Ogg Vorbis music streams */
5
 
6
 #ifdef OGG_USE_TREMOR
7
-#include <ivorbisfile.h>
8
+#include <tremor/ivorbisfile.h>
9
 #else
10
 #include <vorbis/vorbisfile.h>
11
 #endif
(-)audio/sdl2_mixer/pkg-plist (-1 / +1 lines)
Lines 1-6 Link Here
1
include/SDL2/SDL_mixer.h
1
include/SDL2/SDL_mixer.h
2
lib/libSDL2_mixer-2.0.so.0
2
lib/libSDL2_mixer-2.0.so.0
3
lib/libSDL2_mixer-2.0.so.0.0.0
3
lib/libSDL2_mixer-2.0.so.0.0.1
4
lib/libSDL2_mixer.a
4
lib/libSDL2_mixer.a
5
lib/libSDL2_mixer.so
5
lib/libSDL2_mixer.so
6
libdata/pkgconfig/SDL2_mixer.pc
6
libdata/pkgconfig/SDL2_mixer.pc
(-)devel/sdl20/Makefile (-8 / +7 lines)
Lines 1-8 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	sdl2
3
PORTNAME=	sdl2
4
PORTVERSION=	2.0.3
4
PORTVERSION=	2.0.4
5
PORTREVISION=	6
6
CATEGORIES=	devel
5
CATEGORIES=	devel
7
MASTER_SITES=	http://www.libsdl.org/release/
6
MASTER_SITES=	http://www.libsdl.org/release/
8
DISTNAME=	SDL2-${PORTVERSION}
7
DISTNAME=	SDL2-${PORTVERSION}
Lines 11-19 Link Here
11
COMMENT=	Cross-platform multimedia development API
10
COMMENT=	Cross-platform multimedia development API
12
11
13
LICENSE=	ZLIB
12
LICENSE=	ZLIB
13
LICENSE_FILE=	${WRKSRC}/COPYING.txt
14
14
15
GNU_CONFIGURE=	yes
15
GNU_CONFIGURE=	yes
16
USES=		gmake iconv libtool pathfix pkgconfig
16
USES=		gmake iconv libtool localbase pathfix pkgconfig
17
USE_LDCONFIG=	yes
17
USE_LDCONFIG=	yes
18
18
19
CONFIGURE_ARGS+=	--disable-video-opengles \
19
CONFIGURE_ARGS+=	--disable-video-opengles \
Lines 46-55 Link Here
46
CONFIGURE_ARGS+=	--disable-sse2
46
CONFIGURE_ARGS+=	--disable-sse2
47
.endif
47
.endif
48
48
49
CPPFLAGS+=	-I${LOCALBASE}/include
50
LDFLAGS+=	-L${LOCALBASE}/lib
51
52
53
OPTIONS_DEFINE=		ALSA ASM DLOPEN ESOUND NAS OSS \
49
OPTIONS_DEFINE=		ALSA ASM DLOPEN ESOUND NAS OSS \
54
			PULSEAUDIO PTHREADS SDL_ATOMIC SDL_AUDIO \
50
			PULSEAUDIO PTHREADS SDL_ATOMIC SDL_AUDIO \
55
			SDL_CPUINFO SDL_EVENTS SDL_FILE SDL_HAPTIC \
51
			SDL_CPUINFO SDL_EVENTS SDL_FILE SDL_HAPTIC \
Lines 193-202 Link Here
193
.endif
189
.endif
194
190
195
post-patch:
191
post-patch:
196
	 @${REINPLACE_CMD} -e '/ CheckInputEvents$$/d' \
192
	@${REINPLACE_CMD} -e '/ CheckInputEvents$$/d' \
197
		-e 's/-liconv/${ICONV_LIB}/g' ${WRKSRC}/configure
193
		-e 's/-liconv/${ICONV_LIB}/g' ${WRKSRC}/configure
198
# Clang does not provide _m_prefetch
194
# Clang does not provide _m_prefetch
199
	@${REINPLACE_CMD} 's/_m_prefetch/__builtin_prefetch/' \
195
	@${REINPLACE_CMD} 's/_m_prefetch/__builtin_prefetch/' \
200
		${WRKSRC}/configure ${WRKSRC}/src/video/SDL_blit_A.c
196
		${WRKSRC}/configure ${WRKSRC}/src/video/SDL_blit_A.c
201
197
198
post-install:
199
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libSDL2.so
200
202
.include <bsd.port.post.mk>
201
.include <bsd.port.post.mk>
(-)devel/sdl20/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (SDL2-2.0.3.tar.gz) = a5a69a6abf80bcce713fa873607735fe712f44276a7f048d60a61bb2f6b3c90c
1
SHA256 (SDL2-2.0.4.tar.gz) = da55e540bf6331824153805d58b590a29c39d2d506c6d02fa409aedeab21174b
2
SIZE (SDL2-2.0.3.tar.gz) = 3871267
2
SIZE (SDL2-2.0.4.tar.gz) = 4136230
(-)devel/sdl20/pkg-plist (-1 / +8 lines)
Lines 8-13 Link Here
8
include/SDL2/SDL_clipboard.h
8
include/SDL2/SDL_clipboard.h
9
include/SDL2/SDL_config.h
9
include/SDL2/SDL_config.h
10
include/SDL2/SDL_cpuinfo.h
10
include/SDL2/SDL_cpuinfo.h
11
include/SDL2/SDL_egl.h
11
include/SDL2/SDL_endian.h
12
include/SDL2/SDL_endian.h
12
include/SDL2/SDL_error.h
13
include/SDL2/SDL_error.h
13
include/SDL2/SDL_events.h
14
include/SDL2/SDL_events.h
Lines 27-34 Link Here
27
include/SDL2/SDL_mutex.h
28
include/SDL2/SDL_mutex.h
28
include/SDL2/SDL_name.h
29
include/SDL2/SDL_name.h
29
include/SDL2/SDL_opengl.h
30
include/SDL2/SDL_opengl.h
31
include/SDL2/SDL_opengl_glext.h
30
include/SDL2/SDL_opengles.h
32
include/SDL2/SDL_opengles.h
31
include/SDL2/SDL_opengles2.h
33
include/SDL2/SDL_opengles2.h
34
include/SDL2/SDL_opengles2_gl2.h
35
include/SDL2/SDL_opengles2_gl2ext.h
36
include/SDL2/SDL_opengles2_gl2platform.h
37
include/SDL2/SDL_opengles2_khrplatform.h
32
include/SDL2/SDL_pixels.h
38
include/SDL2/SDL_pixels.h
33
include/SDL2/SDL_platform.h
39
include/SDL2/SDL_platform.h
34
include/SDL2/SDL_power.h
40
include/SDL2/SDL_power.h
Lines 63-70 Link Here
63
include/SDL2/SDL_video.h
69
include/SDL2/SDL_video.h
64
include/SDL2/begin_code.h
70
include/SDL2/begin_code.h
65
include/SDL2/close_code.h
71
include/SDL2/close_code.h
72
lib/cmake/SDL2/sdl2-config.cmake
66
lib/libSDL2-2.0.so.0
73
lib/libSDL2-2.0.so.0
67
lib/libSDL2-2.0.so.0.2.1
74
lib/libSDL2-2.0.so.0.4.0
68
lib/libSDL2.a
75
lib/libSDL2.a
69
lib/libSDL2.so
76
lib/libSDL2.so
70
lib/libSDL2_test.a
77
lib/libSDL2_test.a

Return to bug 207671