ef451787b0
- don't bother trying to fix compiler optimization flag tests. they're badly broken/linux spcific, and we don't use them anyway. - the net source client became a "real" client (executable), instead of an "in process" client (plugin) - previous sun_driver patches accepted upstream, plus: * fix cycle timing in duplex mode by moving calculations and function calls out of the poll() synchronization loop * shorten xrun and silence writing/reading messages * remove unused variables * attempt to stop continuous playback underruns in duplex mode that are caused by the capture buffer overrunning * try harder to make sure we have pristine buffers after sun_driver_start() * use native endian audio encodings * report a delay when poll() times out, instead of effectively running a null cycle now jack works on my r10k sgi :)
60 lines
1.4 KiB
Makefile
60 lines
1.4 KiB
Makefile
# $OpenBSD: Makefile,v 1.4 2008/04/22 09:34:58 jakemsr Exp $
|
|
|
|
SHARED_ONLY = Yes
|
|
|
|
COMMENT = low latency sound server
|
|
|
|
DISTNAME = jack-0.111.2.1169
|
|
|
|
SHARED_LIBS += jack 0.0 # 0.28
|
|
SHARED_LIBS += jackserver 0.0 # 0.28
|
|
|
|
CATEGORIES = audio
|
|
HOMEPAGE = http://jackaudio.org/
|
|
|
|
MAINTAINER = Jacob Meuser <jakemsr@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB = c m pthread readline termcap
|
|
|
|
#MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=jackit/}
|
|
# using a subversion snapshot for now
|
|
MASTER_SITES = http://jakemsr.trancell.org/distfiles/
|
|
|
|
LIB_DEPENDS = sndfile.>=1::audio/libsndfile \
|
|
samplerate.>=1::audio/libsamplerate
|
|
|
|
USE_LIBTOOL = Yes
|
|
LIBTOOL_FLAGS += --tag=disable-static
|
|
|
|
AUTOCONF_VERSION = 2.61
|
|
AUTOMAKE_VERSION = 1.9
|
|
BUILD_DEPENDS += ${MODGNU_AUTOCONF_DEPENDS} \
|
|
${MODGNU_AUTOMAKE_DEPENDS}
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS += ${CONFIGURE_SHARED} \
|
|
--disable-portaudio \
|
|
--disable-optimize \
|
|
--enable-dynsimd
|
|
|
|
CONFIGURE_ENV = CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib" \
|
|
LIBS="-pthread" \
|
|
HAVE_DOXYGEN="false"
|
|
|
|
.ifdef DEBUG
|
|
CONFIGURE_ARGS += --enable-debug
|
|
.endif
|
|
|
|
post-patch:
|
|
cd ${WRKSRC} && ${SETENV} AUTOCONF_VERSION=${AUTOCONF_VERSION} \
|
|
AUTOMAKE_VERSION=${AUTOMAKE_VERSION} ${AUTOCONF} \
|
|
./autogen.sh --no-conf
|
|
|
|
.include <bsd.port.mk>
|