blob: a3ff45cb5ea76b49629c2b6a05597059d102a197 (
plain)
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
|
PORTNAME= a2jmidid
PORTVERSION= 9
PORTREVISION= 1
CATEGORIES= audio
MAINTAINER= hselasky@FreeBSD.org
COMMENT= ALSA to JACK MIDI bridge
LICENSE= GPLv2+
LIB_DEPENDS= libasound.so:audio/alsa-lib \
libjack.so:audio/jack
USES= meson pkgconfig tar:bzip2 uidfix
USE_GITHUB= yes
GH_ACCOUNT= jackaudio
OPTIONS_DEFINE= DBUS DEBUG
OPTIONS_DEFAULT= DBUS
OPTIONS_SUB= yes
DBUS_LIB_DEPENDS= libdbus-1.so:devel/dbus
DBUS_MESON_OFF= "-Ddisable-dbus=true"
DEBUG_CFLAGS= "-DDEBUG"
.include <bsd.port.options.mk>
.if ${ARCH} == powerpc64 || ${ARCH} == riscv64
MESON_ARGS+= -Db_lto=false
.endif
.include <bsd.port.mk>
|