aboutsummaryrefslogtreecommitdiff
path: root/audio/fmit/Makefile
blob: a8a6f1283bf98fdb53648a6e48c06483c07cf996 (plain) (blame)
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
# New ports collection makefile for:	fmit
# Date created:		2007-09-08
# Whom:			Edward Tomasz Napierala <trasz@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=	fmit
PORTVERSION=	0.99.2
PORTREVISION=	3
CATEGORIES=	audio
MASTER_SITES=	http://download.gna.org/fmit/
DISTNAME=	${PORTNAME}-${PORTVERSION}-Source

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Free Music Instrument Tuner

LICENSE=	GPLv2

LIB_DEPENDS=	fftw3:${PORTSDIR}/math/fftw3

OPTIONS_DEFINE=	OSS ALSA PORTAUDIO JACK
OPTIONS_DEFAULT=	OSS JACK

USE_BZIP2=	yes
USE_XORG=	xmu
USE_QT4=	corelib gui opengl \
		linguist_build moc_build qmake_build rcc_build uic_build
USE_GL=		glut
USES=		cmake
INSTALLS_ICONS=	yes

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MOSS}
CMAKE_ARGS+=	-DSOUNDSYSTEM_USE_OSS:BOOL=true
.else
CMAKE_ARGS+=	-DSOUNDSYSTEM_USE_OSS:BOOL=false
.endif

.if ${PORT_OPTIONS:MALSA}
LIB_DEPENDS+=	asound.2:${PORTSDIR}/audio/alsa-lib
CMAKE_ARGS+=	-DSOUNDSYSTEM_USE_ALSA:BOOL=true
.else
CMAKE_ARGS+=	-DSOUNDSYSTEM_USE_ALSA:BOOL=false
.endif

.if ${PORT_OPTIONS:MPORTAUDIO}
BUILD_DEPENDS+=	portaudio>=19:${PORTSDIR}/audio/portaudio2
RUN_DEPENDS+=	portaudio>=19:${PORTSDIR}/audio/portaudio2
CMAKE_ARGS+=	-DSOUNDSYSTEM_USE_PORTAUDIO:BOOL=true
.else
CMAKE_ARGS+=	-DSOUNDSYSTEM_USE_PORTAUDIO:BOOL=false
.endif

.if ${PORT_OPTIONS:MJACK}
LIB_DEPENDS+=	jack.0:${PORTSDIR}/audio/jack
CMAKE_ARGS+=	-DSOUNDSYSTEM_USE_JACK:BOOL=true
.else
CMAKE_ARGS+=	-DSOUNDSYSTEM_USE_JACK:BOOL=false
.endif

.include <bsd.port.mk>