summaryrefslogtreecommitdiffstats
path: root/audio/sdl_sound/Makefile
blob: 6388160c38134c6522ff931dfc3313720e0da305 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# New ports collection makefile for:	sdl_sound
# Date created:				6 Feb 2003
# Whom:					David Yeske <dyeske@yahoo.com>
#
# $FreeBSD$
#

PORTNAME=	sdl_sound
PORTVERSION=	1.0.0
CATEGORIES=	audio
MASTER_SITES=	http://www.icculus.org/SDL_sound/downloads/
DISTNAME=	SDL_sound-1.0.0

MAINTAINER=	dyeske@yahoo.com
COMMENT=	A SDL audio library and player for some popular sound file formats

LIB_DEPENDS=	SDL-1.1.5:${PORTSDIR}/devel/sdl12

GNU_CONFIGURE=	yes
USE_LIBTOOL=	yes
USE_REINPLACE=	yes
INSTALLS_SHLIB=	yes

CONFIGURE_ENV=	SDL_CONFIG="${SDL_CONFIG}" CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include"
SDL_CONFIG=	${LOCALBASE}/bin/sdl11-config

post-patch:
	@${REINPLACE_CMD} -E -e \
		's|^program_transform_name.+$$||' \
		${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
	@${REINPLACE_CMD} -E -e \
		's|\$$\(includedir\)/SDL|\$$(includedir)/SDL11|' \
		${CONFIGURE_WRKSRC}/Makefile.in

.include <bsd.port.pre.mk>

.if !defined(WITHOUT_FLAC)
LIB_DEPENDS+=	FLAC.5:${PORTSDIR}/audio/flac
.else
CONFIGURE_ARGS+=	--disable-flac
.endif

.if !defined(WITHOUT_MIKMOD)
LIB_DEPENDS+=	mikmod.2:${PORTSDIR}/audio/libmikmod
.else
CONFIGURE_ARGS+=	--disable-mikmod
.endif

.if !defined(WITHOUT_SMPEG)
LIB_DEPENDS+=	smpeg.1:${PORTSDIR}/graphics/smpeg
.else
CONFIGURE_ARGS+=	--disable-smpeg
.endif

.if !defined(WITHOUT_MIDI)
RUN_DEPENDS+=	${LOCALBASE}/lib/timidity/goemon.cfg:${PORTSDIR}/audio/timidity
BUILD_DEPENDS+=	${LOCALBASE}/lib/timidity/goemon.cfg:${PORTSDIR}/audio/timidity
.else
CONFIGURE_ARGS+=	--disable-midi
.endif

.if !defined(WITHOUT_VORBIS)
LIB_DEPENDS+=	vorbis.2:${PORTSDIR}/audio/libvorbis
.else
CONFIGURE_ARGS+=	--disable-ogg
.endif

pre-extract:
.if !defined(WITHOUT_FLAC)
	@${ECHO_MSG} "You can disable support for flac by defining WITHOUT_FLAC."
.endif
.if !defined(WITHOUT_MIKMOD)
	@${ECHO_MSG} "You can disable support for mikmod by defining WITHOUT_MIKMOD."
.endif
.if !defined(WITHOUT_SMPEG)
	@${ECHO_MSG} "You can disable support for smpeg by defining WITHOUT_SMPEG."
.endif
.if !defined(WITHOUT_MIDI)
	@${ECHO_MSG} "You can disable support for midi by defining WITHOUT_MIDI."
.endif
.if !defined(WITHOUT_VORBIS)
	@${ECHO_MSG} "You can disable support for vorbis by defining WITHOUT_VORBIS."
.endif

.include <bsd.port.post.mk>
OpenPOWER on IntegriCloud