1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00

- Enable gsm support

- Add optional pulseaudio support

PR:		ports/154043
Submitted by:	Janik Galasso <janik@hikarihq.com> (maintainer)
Feature safe:	yes
This commit is contained in:
Pav Lucistnik 2011-01-27 14:09:26 +00:00
parent c78f2593ca
commit 90b8a48a0a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=268292

View File

@ -7,6 +7,7 @@
PORTNAME= mangler
PORTVERSION= 1.2.1
PORTREVISION= 1
CATEGORIES= audio
MASTER_SITES= http://www.mangler.org/downloads/
@ -16,18 +17,32 @@ COMMENT= A Ventrilo VOIP combatible client
LIB_DEPENDS= celt.0:${PORTSDIR}/audio/celt \
speex.1:${PORTSDIR}/audio/speex \
dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \
gtkmm-2.4.1:${PORTSDIR}/x11-toolkits/gtkmm24
gtkmm-2.4.1:${PORTSDIR}/x11-toolkits/gtkmm24 \
gsm.1:${PORTSDIR}/audio/gsm
USE_GNOME= librsvg2
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-gsm --without-pulseaudio --without-alsa
CONFIGURE_ARGS= --without-alsa
USE_LDCONFIG= yes
CONFIGURE_ENV= CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
CFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
OPTIONS= PULSEAUDIO "Adds support for the PulseAudio sound server" off
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 800000
BROKEN= does not build
.endif
.if !defined(WITHOUT_PULSEAUDIO)
LIB_DEPENDS+= pulse.0:${PORTSDIR}/audio/pulseaudio
CONFIGURE_ARGS+=--with-pulseaudio
.else
CONFIGURE_ARGS+=--without-pulseaudio
.endif
.include <bsd.port.post.mk>