View | Details | Raw Unified | Return to bug 154043
Collapse All | Expand All

(-)mangler/Makefile (-1 / +19 lines)
Lines 7-12 Link Here
7
7
8
PORTNAME=	mangler
8
PORTNAME=	mangler
9
PORTVERSION=	1.2.1
9
PORTVERSION=	1.2.1
10
PORTREVISION=   1
10
CATEGORIES=	audio
11
CATEGORIES=	audio
11
MASTER_SITES=	http://www.mangler.org/downloads/
12
MASTER_SITES=	http://www.mangler.org/downloads/
12
13
Lines 21-33 Link Here
21
USE_GNOME=	librsvg2
22
USE_GNOME=	librsvg2
22
USE_GMAKE=	yes
23
USE_GMAKE=	yes
23
GNU_CONFIGURE=	yes
24
GNU_CONFIGURE=	yes
24
CONFIGURE_ARGS=	--disable-gsm --without-pulseaudio --without-alsa
25
CONFIGURE_ARGS=	--without-alsa
25
USE_LDCONFIG=	yes
26
USE_LDCONFIG=	yes
26
27
28
OPTIONS=	GSM "GSM audio codec support" ON \
29
	PULSEAUDIO "Adds support for the PulseAudio sound server" OFF \
30
27
.include <bsd.port.pre.mk>
31
.include <bsd.port.pre.mk>
28
32
29
.if ${OSVERSION} < 800000
33
.if ${OSVERSION} < 800000
30
BROKEN=		does not build
34
BROKEN=		does not build
31
.endif
35
.endif
32
36
37
.ifdef(WITH_GSM)
38
LIB_DEPENDS+=		gsm.1:${PORTSDIR}/audio/gsm
39
CONFIGURE_ARGS+=	--enable-libgsm
40
.else
41
CONFIGURE_ARGS+=	--disable-gsm
42
.endif
43
44
.if !defined(WITHOUT_PULSEAUDIO)
45
LIB_DEPENDS+=   pulse.0:${PORTSDIR}/audio/pulseaudio
46
CONFIGURE_ARGS+=--with-pulseaudio
47
.else
48
CONFIGURE_ARGS+=--without-pulseaudio
49
.endif
50
33
.include <bsd.port.post.mk>
51
.include <bsd.port.post.mk>

Return to bug 154043