aboutsummaryrefslogtreecommitdiffstats
path: root/audio/wavbreaker/Makefile
blob: f74ea805ecd4b33c013d0659fbfa4af497274597 (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
# Created by: Kirill Ponomarew <ponomarew@oberon.net>
# $FreeBSD$

PORTNAME=   wavbreaker
PORTVERSION=    0.11
PORTREVISION=   1
CATEGORIES= audio
MASTER_SITES=   SF

MAINTAINER= gahr@FreeBSD.org
COMMENT=    Tool to split and merge wav files

LICENSE=    GPLv2

OPTIONS_DEFINE= PULSEAUDIO NLS

USE_GNOME=  gtk20 libxml2
USES=       gmake pathfix pkgconfig desktop-file-utils
GNU_CONFIGURE=  yes
CONFIGURE_ENV=  PKG_CONFIG="${LOCALBASE}/bin/pkg-config"
CPPFLAGS+=  -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib
CONFIGURE_ARGS= --disable-alsa
INSTALLS_ICONS= yes

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MPULSEAUDIO}
LIB_DEPENDS+=   libpulse.so:${PORTSDIR}/audio/pulseaudio
.else
CONFIGURE_ARGS+=--disable-pulse
.endif

.if ${PORT_OPTIONS:MNLS}
USES+=      gettext
PLIST_SUB=  NLS=""
.else
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB=  NLS="@comment "
.endif

.include <bsd.port.mk>