1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
freebsd-ports/audio/lingot/Makefile
Baptiste Daroussin c3c235ebef Reduce over inclusion of bsd.port.mk
Remove well known license file
2014-01-15 22:33:28 +00:00

49 lines
1.1 KiB
Makefile

# Created by: Bartoletti <coder@tuxfamily.org>
# $FreeBSD$
PORTNAME= lingot
PORTVERSION= 0.9.1
PORTREVISION= 1
CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_SAVANNAH}
MASTER_SITE_SUBDIR=${PORTNAME}
MAINTAINER= coder@tuxfamily.org
COMMENT= LINGOT is a musical instrument tuner
LICENSE= GPLv2
USE_GNOME= gtk20 libglade2
NO_STAGE= yes
GNU_CONFIGURE= yes
USES= gettext gmake pkgconfig
LDFLAGS+= -L${LOCALBASE}/lib
OPTIONS_DEFINE= JACK ALSA
OPTIONS_DEFAULT= JACK
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MJACK}
LIB_DEPENDS+= libjack.so:${PORTSDIR}/audio/jack \
libsamplerate.so:${PORTSDIR}/audio/libsamplerate
CONFIGURE_ARGS+=--enable-jack
.else
CONFIGURE_ARGS+=--disable-jack
.endif
.if ${PORT_OPTIONS:MALSA}
LIB_DEPENDS+= libasound.so:${PORTSDIR}/audio/alsa-lib
RUN_DEPENDS+= ${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:${PORTSDIR}/audio/alsa-plugins
CONFIGURE_ARGS+=--enable-alsa
.else
CONFIGURE_ARGS+=--disable-alsa
.endif
.if ${OSVERSION} < 802502 || (${OSVERSION} > 900000 && ${OSVERSION} < 900027)
EXTRA_PATCHES+= ${FILESDIR}/extra-lingot-config-scale.h
.endif
.include <bsd.port.mk>