2013-08-31 01:01:05 +02:00
|
|
|
# Created by: Kirill Ponomarew <ponomarew@oberon.net>
|
2003-06-02 16:42:57 +02:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= wavbreaker
|
2012-01-23 16:55:58 +01:00
|
|
|
PORTVERSION= 0.11
|
2012-06-01 07:26:28 +02:00
|
|
|
PORTREVISION= 1
|
2003-06-02 16:42:57 +02:00
|
|
|
CATEGORIES= audio
|
2007-05-27 12:00:11 +02:00
|
|
|
MASTER_SITES= SF
|
2003-06-02 16:42:57 +02:00
|
|
|
|
2008-06-04 01:09:26 +02:00
|
|
|
MAINTAINER= gahr@FreeBSD.org
|
|
|
|
COMMENT= Tool to split and merge wav files
|
|
|
|
|
2012-10-01 13:07:53 +02:00
|
|
|
OPTIONS_DEFINE= PULSEAUDIO NLS
|
2003-06-02 16:42:57 +02:00
|
|
|
|
2013-08-31 01:01:05 +02:00
|
|
|
USE_GNOME= gtk20 libxml2
|
2013-09-20 16:36:35 +02:00
|
|
|
NO_STAGE= yes
|
2013-08-31 01:01:05 +02:00
|
|
|
USES= gmake pathfix pkgconfig
|
2003-06-02 16:42:57 +02:00
|
|
|
GNU_CONFIGURE= yes
|
2011-09-24 00:26:39 +02:00
|
|
|
CONFIGURE_ENV= PKG_CONFIG="${LOCALBASE}/bin/pkg-config"
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
2007-07-23 11:36:51 +02:00
|
|
|
CONFIGURE_ARGS= --disable-alsa
|
2007-05-27 12:00:11 +02:00
|
|
|
INSTALLS_ICONS= yes
|
|
|
|
|
|
|
|
MAN1= wavbreaker.1 wavinfo.1 wavmerge.1
|
2003-06-02 16:42:57 +02:00
|
|
|
|
2012-10-01 13:07:53 +02:00
|
|
|
.include <bsd.port.options.mk>
|
2008-06-04 01:09:26 +02:00
|
|
|
|
2012-10-01 13:07:53 +02:00
|
|
|
.if ${PORT_OPTIONS:MPULSEAUDIO}
|
2008-06-04 01:09:26 +02:00
|
|
|
LIB_DEPENDS+= pulse.0:${PORTSDIR}/audio/pulseaudio
|
2012-10-01 13:07:53 +02:00
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --disable-pulse
|
2008-06-04 01:09:26 +02:00
|
|
|
.endif
|
|
|
|
|
2012-10-01 13:07:53 +02:00
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
2013-04-24 20:10:30 +02:00
|
|
|
USES+= gettext
|
2008-06-04 01:09:26 +02:00
|
|
|
PLIST_SUB= NLS=""
|
2012-10-01 13:07:53 +02:00
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
|
|
PLIST_SUB= NLS="@comment "
|
2008-06-04 01:09:26 +02:00
|
|
|
.endif
|
|
|
|
|
2012-10-01 13:07:53 +02:00
|
|
|
.include <bsd.port.mk>
|