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
(-)graphics/sdl2_image/Makefile (-5 / +4 lines)
Lines 1-8 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	sdl2_image
3
PORTNAME=	sdl2_image
4
PORTVERSION=	2.0.0
4
PORTVERSION=	2.0.1
5
PORTREVISION=	8
6
CATEGORIES=	graphics
5
CATEGORIES=	graphics
7
MASTER_SITES=	http://www.libsdl.org/projects/SDL_image/release/
6
MASTER_SITES=	http://www.libsdl.org/projects/SDL_image/release/
8
DISTNAME=	SDL2_image-${PORTVERSION}
7
DISTNAME=	SDL2_image-${PORTVERSION}
Lines 11-22 Link Here
11
COMMENT=	Simple library to load images of various formats as SDL surfaces
10
COMMENT=	Simple library to load images of various formats as SDL surfaces
12
11
13
LICENSE=	ZLIB
12
LICENSE=	ZLIB
13
LICENSE_FILE=	${WRKSRC}/COPYING.txt
14
14
15
USES=		pkgconfig:build pathfix gmake libtool
15
USES=		pkgconfig:build pathfix gmake libtool localbase
16
USE_SDL=	sdl2
16
USE_SDL=	sdl2
17
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
18
CPPFLAGS+=	-I${LOCALBASE}/include
18
INSTALL_TARGET=	install-strip
19
LDFLAGS+=	-L${LOCALBASE}/lib -lm
20
USE_LDCONFIG=	yes
19
USE_LDCONFIG=	yes
21
20
22
OPTIONS_DEFINE=	JPEG PNG TIFF WEBP
21
OPTIONS_DEFINE=	JPEG PNG TIFF WEBP
(-)graphics/sdl2_image/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (SDL2_image-2.0.0.tar.gz) = b29815c73b17633baca9f07113e8ac476ae66412dec0d29a5045825c27a47234
1
SHA256 (SDL2_image-2.0.1.tar.gz) = 3a3eafbceea5125c04be585373bfd8b3a18f259bd7eae3efc4e6d8e60e0d7f64
2
SIZE (SDL2_image-2.0.0.tar.gz) = 8398016
2
SIZE (SDL2_image-2.0.1.tar.gz) = 7797848
(-)graphics/sdl2_image/pkg-plist (-1 / +1 lines)
Lines 1-6 Link Here
1
include/SDL2/SDL_image.h
1
include/SDL2/SDL_image.h
2
lib/libSDL2_image-2.0.so.0
2
lib/libSDL2_image-2.0.so.0
3
lib/libSDL2_image-2.0.so.0.0.0
3
lib/libSDL2_image-2.0.so.0.0.1
4
lib/libSDL2_image.a
4
lib/libSDL2_image.a
5
lib/libSDL2_image.so
5
lib/libSDL2_image.so
6
libdata/pkgconfig/SDL2_image.pc
6
libdata/pkgconfig/SDL2_image.pc
(-)graphics/sdl2_ttf/Makefile (-10 / +5 lines)
Lines 1-8 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	sdl2_ttf
3
PORTNAME=	sdl2_ttf
4
PORTVERSION=	2.0.12
4
PORTVERSION=	2.0.14
5
PORTREVISION=	5
6
CATEGORIES=	graphics
5
CATEGORIES=	graphics
7
MASTER_SITES=	http://www.libsdl.org/projects/SDL_ttf/release/
6
MASTER_SITES=	http://www.libsdl.org/projects/SDL_ttf/release/
8
DISTNAME=	SDL2_ttf-${PORTVERSION}
7
DISTNAME=	SDL2_ttf-${PORTVERSION}
Lines 11-34 Link Here
11
COMMENT=	Library to use TrueType fonts to render text in SDL applications
10
COMMENT=	Library to use TrueType fonts to render text in SDL applications
12
11
13
LICENSE=	ZLIB
12
LICENSE=	ZLIB
13
LICENSE_FILE=	${WRKSRC}/COPYING.txt
14
14
15
LIB_DEPENDS=	libfreetype.so:print/freetype2
15
LIB_DEPENDS=	libfreetype.so:print/freetype2
16
16
17
USES=		pkgconfig:build pathfix gmake libtool
17
USES=		pkgconfig:build pathfix gmake libtool localbase
18
USE_SDL=	sdl2
18
USE_SDL=	sdl2
19
GNU_CONFIGURE=	yes
19
GNU_CONFIGURE=	yes
20
CPPFLAGS+=	-I${LOCALBASE}/include
20
INSTALL_TARGET=	install-strip
21
LDFLAGS+=	-L${LOCALBASE}/lib
22
USE_LDCONFIG=	yes
21
USE_LDCONFIG=	yes
23
22
24
OPTIONS_DEFINE=	OPENGL
23
OPTIONS_DEFINE=	OPENGL
25
24
26
.include <bsd.port.options.mk>
25
OPENGL_USE=	GL=yes
27
26
28
.if ${PORT_OPTIONS:MOPENGL}
29
USE_GL=	yes
30
.endif
31
32
post-install:
27
post-install:
33
	${INSTALL_PROGRAM} ${WRKSRC}/.libs/glfont ${STAGEDIR}${PREFIX}/bin/sdl2-glfont
28
	${INSTALL_PROGRAM} ${WRKSRC}/.libs/glfont ${STAGEDIR}${PREFIX}/bin/sdl2-glfont
34
	${INSTALL_PROGRAM} ${WRKSRC}/.libs/showfont ${STAGEDIR}${PREFIX}/bin/sdl2-showfont
29
	${INSTALL_PROGRAM} ${WRKSRC}/.libs/showfont ${STAGEDIR}${PREFIX}/bin/sdl2-showfont
(-)graphics/sdl2_ttf/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (SDL2_ttf-2.0.12.tar.gz) = 8728605443ea1cca5cad501dc34dc0cb15135d1e575551da6d151d213d356f6e
1
SHA256 (SDL2_ttf-2.0.14.tar.gz) = 34db5e20bcf64e7071fe9ae25acaa7d72bdc4f11ab3ce59acc768ab62fe39276
2
SIZE (SDL2_ttf-2.0.12.tar.gz) = 5517665
2
SIZE (SDL2_ttf-2.0.14.tar.gz) = 4147462
(-)graphics/sdl2_ttf/pkg-plist (-1 / +1 lines)
Lines 2-8 Link Here
2
bin/sdl2-showfont
2
bin/sdl2-showfont
3
include/SDL2/SDL_ttf.h
3
include/SDL2/SDL_ttf.h
4
lib/libSDL2_ttf-2.0.so.0
4
lib/libSDL2_ttf-2.0.so.0
5
lib/libSDL2_ttf-2.0.so.0.10.2
5
lib/libSDL2_ttf-2.0.so.0.14.0
6
lib/libSDL2_ttf.a
6
lib/libSDL2_ttf.a
7
lib/libSDL2_ttf.so
7
lib/libSDL2_ttf.so
8
libdata/pkgconfig/SDL2_ttf.pc
8
libdata/pkgconfig/SDL2_ttf.pc
(-)net/sdl2_net/Makefile (-3 / +4 lines)
Lines 1-8 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	sdl2_net
3
PORTNAME=	sdl2_net
4
PORTVERSION=	2.0.0
4
PORTVERSION=	2.0.1
5
PORTREVISION=	4
6
CATEGORIES=	net
5
CATEGORIES=	net
7
MASTER_SITES=	http://www.libsdl.org/projects/SDL_net/release/
6
MASTER_SITES=	http://www.libsdl.org/projects/SDL_net/release/
8
DISTNAME=	SDL2_net-${PORTVERSION}
7
DISTNAME=	SDL2_net-${PORTVERSION}
Lines 11-22 Link Here
11
COMMENT=	Small sample cross-platform networking library
10
COMMENT=	Small sample cross-platform networking library
12
11
13
LICENSE=	ZLIB
12
LICENSE=	ZLIB
13
LICENSE_FILE=	${WRKSRC}/COPYING.txt
14
14
15
USE_SDL=	sdl2
15
USE_SDL=	sdl2
16
USES=		gmake libtool pathfix pkgconfig:build
16
USES=		gmake libtool pathfix pkgconfig:build
17
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
18
INSTALL_TARGET=	install-strip
18
USE_LDCONFIG=	yes
19
USE_LDCONFIG=	yes
19
20
20
CONFIGURE_ARGS+=--disable-gui
21
CONFIGURE_ARGS=	--disable-gui
21
22
22
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)net/sdl2_net/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (SDL2_net-2.0.0.tar.gz) = d715be30783cc99e541626da52079e308060b21d4f7b95f0224b1d06c1faacab
1
SHA256 (SDL2_net-2.0.1.tar.gz) = 15ce8a7e5a23dafe8177c8df6e6c79b6749a03fff1e8196742d3571657609d21
2
SIZE (SDL2_net-2.0.0.tar.gz) = 345724
2
SIZE (SDL2_net-2.0.1.tar.gz) = 347436
(-)net/sdl2_net/pkg-plist (-1 / +1 lines)
Lines 1-6 Link Here
1
include/SDL2/SDL_net.h
1
include/SDL2/SDL_net.h
2
lib/libSDL2_net-2.0.so.0
2
lib/libSDL2_net-2.0.so.0
3
lib/libSDL2_net-2.0.so.0.0.0
3
lib/libSDL2_net-2.0.so.0.0.1
4
lib/libSDL2_net.a
4
lib/libSDL2_net.a
5
lib/libSDL2_net.so
5
lib/libSDL2_net.so
6
libdata/pkgconfig/SDL2_net.pc
6
libdata/pkgconfig/SDL2_net.pc

Return to bug 207671