mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
3c9b377277
Approved by: portmgr blanket
177 lines
5.2 KiB
Makefile
177 lines
5.2 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= sdl2
|
|
PORTVERSION= 2.0.3
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.libsdl.org/release/
|
|
DISTNAME= SDL2-${PORTVERSION}
|
|
|
|
MAINTAINER= mva@FreeBSD.org
|
|
COMMENT= Cross-platform multimedia development API
|
|
|
|
LICENSE= ZLIB
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= gmake iconv libtool pathfix pkgconfig
|
|
USE_LDCONFIG= yes
|
|
|
|
CONFIGURE_ARGS+= --disable-video-opengles \
|
|
--disable-altivec \
|
|
--disable-arts \
|
|
--enable-diskaudio \
|
|
--enable-dummyaudio \
|
|
--enable-video-dummy \
|
|
--disable-dbus \
|
|
--disable-input-tslib \
|
|
--disable-rpath
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
|
|
OPTIONS_DEFINE= ALSA ASM DLOPEN ESOUND MMX NAS OSS \
|
|
PULSEAUDIO PTHREADS SSE SDL_ATOMIC SDL_AUDIO \
|
|
SDL_CPUINFO SDL_EVENTS SDL_FILE SDL_HAPTIC \
|
|
SDL_JOYSTICK SDL_LOADSO SDL_POWER SDL_RENDER \
|
|
SDL_THREADS SDL_TIMERS SDL_VIDEO VIDEO_OPENGL VIDEO_X11
|
|
OPTIONS_DEFAULT= ASM DLOPEN OSS PTHREADS SDL_ATOMIC SDL_AUDIO \
|
|
SDL_CPUINFO SDL_EVENTS SDL_FILE SDL_HAPTIC \
|
|
SDL_JOYSTICK SDL_LOADSO SDL_POWER SDL_RENDER \
|
|
SDL_THREADS SDL_TIMERS SDL_VIDEO VIDEO_OPENGL VIDEO_X11
|
|
OPTIONS_DEFAULT_i386= MMX SSE
|
|
OPTIONS_DEFAULT_amd64= MMX SSE
|
|
|
|
ALSA_DESC= Audio output via the ALSA audio architecture
|
|
DLOPEN_DESC= Use dlopen for loading 3rd party libraries
|
|
ESOUND_DESC= Audio output via the EsounD sound server
|
|
NAS_DESC= Audio output via the Network Audio System
|
|
OSS_DESC= Audio output via the Open Sound System
|
|
PULSEAUDIO_DESC= Audio output via the PulseAudio sound server
|
|
PTHREADS_DESC= Use POSIX threads for multi-threading
|
|
SDL_ATOMIC_DESC= Enable the SDL Atomic subsystem
|
|
SDL_AUDIO_DESC= Enable the SDL Audio subsystem
|
|
SDL_CPUINFO_DESC= Enable the SDL CPUinfo subsystem
|
|
SDL_EVENTS_DESC= Enable the SDL Events subsystem
|
|
SDL_FILE_DESC= Enable the SDL File subsystem
|
|
SDL_HAPTIC_DESC= Enable the SDL Haptic subsystem
|
|
SDL_JOYSTICK_DESC= Enable the SDL Joystick subsystem
|
|
SDL_LOADSO_DESC= Enable the SDL Loadso subsystem
|
|
SDL_POWER_DESC= Enable the SDL Power subsystem
|
|
SDL_RENDER_DESC= Enable the SDL Render subsystem
|
|
SDL_THREADS_DESC= Enable the SDL Threads subsystem
|
|
SDL_TIMERS_DESC= Enable the SDL Timers subsystem
|
|
SDL_VIDEO_DESC= Eanble the SDL Video subsystem
|
|
VIDEO_OPENGL_DESC= OpenGL rendering support
|
|
VIDEO_X11_DESC= X11 rendering support
|
|
|
|
ASM_CONFIGURE_ENABLE= assembly
|
|
DLOPEN_CONFIGURE_ENABLE= sdl-dlopen
|
|
MMX_CONFIGURE_ENABLE= mmx 3dnow
|
|
PTHREADS_CONFIGURE_ENABLE= pthreads pthreads-sem
|
|
SDL_ATOMIC_CONFIGURE_ENABLE= atomic gcc-atomics
|
|
SDL_AUDIO_CONFIGURE_ENABLE= audio
|
|
SDL_CPUINFO_CONFIGURE_ENABLE= cpuinfo
|
|
SDL_EVENTS_CONFIGURE_ENABLE= events
|
|
SDL_FILE_CONFIGURE_ENABLE= filesystem
|
|
SDL_HAPTIC_CONFIGURE_ENABLE= haptic
|
|
SDL_JOYSTICK_CONFIGURE_ENABLE= joystick
|
|
SDL_LOADSO_CONFIGURE_ENABLE= loadso
|
|
SDL_POWER_CONFIGURE_ENABLE= power
|
|
SDL_RENDER_CONFIGURE_ENABLE= render
|
|
SDL_THREADS_CONFIGURE_ENABLE= threads
|
|
SDL_TIMERS_CONFIGURE_ENABLE= timers
|
|
SDL_VIDEO_CONFIGURE_EANBLE= video
|
|
SSE_CONFIGURE_ENABLE= sse sse2 ssemath
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MALSA}
|
|
.if !${PORT_OPTIONS:MSDL_AUDIO}
|
|
IGNORE= option ALSA requires SDL_AUDIO
|
|
.endif
|
|
CONFIGURE_ARGS+= --enable-alsa --enable-alsa-shared
|
|
LIB_DEPENDS+= libasound.so:${PORTSDIR}/audio/alsa-lib
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-alsa --disable-alsa-shared
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MESOUND}
|
|
.if !${PORT_OPTIONS:MSDL_AUDIO}
|
|
IGNORE= option ESOUND requires SDL_AUDIO
|
|
.endif
|
|
CONFIGURE_ARGS+= --enable-esd --enable-esd-shared
|
|
USE_GNOME+= esound
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-esd --disable-esd-shared
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MNAS}
|
|
.if !${PORT_OPTIONS:MSDL_AUDIO}
|
|
IGNORE= option NAS requires SDL_AUDIO
|
|
.endif
|
|
CONFIGURE_ARGS+= --enable-nas --enable-nas-shared
|
|
LIB_DEPENDS+= libaudio.so:${PORTSDIR}/audio/nas
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-nas --disable-nas-shared
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MOSS}
|
|
.if !${PORT_OPTIONS:MSDL_AUDIO}
|
|
IGNORE= option OSS requires SDL_AUDIO
|
|
.endif
|
|
CONFIGURE_ARGS+= --enable-oss
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-oss
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPULSEAUDIO}
|
|
.if !${PORT_OPTIONS:MSDL_AUDIO}
|
|
IGNORE= option PULSEAUDIO requires SDL_AUDIO
|
|
.endif
|
|
CONFIGURE_ARGS+= --enable-pulseaudio --enable-pulseaudio-shared
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-pulseaudio --disable-pulseaudio-shared
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MVIDEO_OPENGL}
|
|
.if !${PORT_OPTIONS:MSDL_VIDEO}
|
|
IGNORE= option VIDEO_OPENGL requires SDL_VIDEO
|
|
.endif
|
|
CONFIGURE_ARGS+= --enable-video-opengl
|
|
USE_GL= gl
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-video-opengl
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MVIDEO_X11}
|
|
.if !${PORT_OPTIONS:MSDL_VIDEO}
|
|
IGNORE= option VIDEO_X11 requires SDL_VIDEO
|
|
.endif
|
|
CONFIGURE_ARGS+= --enable-video-x11 \
|
|
--enable-x11-shared \
|
|
--enable-video-x11-xcursor \
|
|
--enable-video-x11-xinerama \
|
|
--enable-video-x11-xinput \
|
|
--enable-video-x11-xrandr \
|
|
--enable-video-x11-scrnsaver \
|
|
--enable-video-x11-xshape \
|
|
--enable-video-x11-vm
|
|
USE_XORG+= xinerama xcursor xi xrandr xscrnsaver xxf86vm xext
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-video-x11 \
|
|
--disable-x11-shared \
|
|
--disable-video-x11-xcursor \
|
|
--disable-video-x11-xinerama \
|
|
--disable-video-x11-xinput \
|
|
--disable-video-x11-xrandr \
|
|
--disable-video-x11-scrnsaver \
|
|
--disable-video-x11-xshape \
|
|
--disable-video-x11-vm
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/ CheckInputEvents$$/d' ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|