diff options
author | Michael Johnson <ahze@FreeBSD.org> | 2007-06-24 23:12:45 +0000 |
---|---|---|
committer | Michael Johnson <ahze@FreeBSD.org> | 2007-06-24 23:12:45 +0000 |
commit | 34d361776df6955c940d7a62300594b12aef40bf (patch) | |
tree | 8ffeb300cd89868ac25f613bfcfdf0ff4ccbee92 /audio/fluidsynth | |
parent | 32faf95f37b1192545fcdb90942f6ac65bd98af4 (diff) | |
download | ports-34d361776df6955c940d7a62300594b12aef40bf.tar.gz ports-34d361776df6955c940d7a62300594b12aef40bf.zip |
Notes
Diffstat (limited to 'audio/fluidsynth')
-rw-r--r-- | audio/fluidsynth/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/audio/fluidsynth/Makefile b/audio/fluidsynth/Makefile index 003f783949c8..18e38147058b 100644 --- a/audio/fluidsynth/Makefile +++ b/audio/fluidsynth/Makefile @@ -7,12 +7,12 @@ PORTNAME= fluidsynth PORTVERSION= 1.0.7a -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR= fluid -MAINTAINER= ports@FreeBSD.org +MAINTAINER= multimedia@FreeBSD.org COMMENT= Real-time software synthesizer based on the SoundFont 2 specifications WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:S/a//} @@ -30,6 +30,11 @@ MAN1= fluidsynth.1 CPPFLAGS= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} LDFLAGS= -L${LOCALBASE}/lib ${PTHREAD_LIBS} +OPTIONS= JACK "Enable Jack audio support" On \ + LADSPA "Enable LADSPA audio support" Off + +.include <bsd.port.pre.mk> + .if defined(WITH_JACK) LIB_DEPENDS+= jack.0:${PORTSDIR}/audio/jack .else @@ -46,4 +51,4 @@ post-patch: @${REINPLACE_CMD} -e 's| -O2 | |g ; \ s|== "yes"|= "yes"|g' ${WRKSRC}/configure -.include <bsd.port.mk> +.include <bsd.port.post.mk> |