mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
34d2963f97
- Fix readline depend [1] (based on) - Allow staging - Use options helpers PR: ports/170517 [1] Submitted by: A.J. Kehoe IV <g5ypsazo nanoman.ca> [1]
73 lines
2.0 KiB
Makefile
73 lines
2.0 KiB
Makefile
# Created by: Tilman Linneweh <arved@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= jackit
|
|
PORTVERSION= 0.121.3
|
|
PORTREVISION= 3
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://jackaudio.org/downloads/
|
|
DISTNAME= jack-audio-connection-kit-${PORTVERSION}
|
|
|
|
MAINTAINER= multimedia@FreeBSD.org
|
|
COMMENT= Low latency audio server
|
|
|
|
LIB_DEPENDS= libportaudio.so:${PORTSDIR}/audio/portaudio \
|
|
libsndfile.so:${PORTSDIR}/audio/libsndfile \
|
|
libsamplerate.so:${PORTSDIR}/audio/libsamplerate \
|
|
libcelt0.so:${PORTSDIR}/audio/celt
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
USES= gmake pathfix pkgconfig
|
|
|
|
CONFIGURE_ENV= LIBS="-pthread"
|
|
CONFIGURE_ARGS= --enable-portaudio \
|
|
--with-default-tmpdir=/tmp
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
LATEST_LINK= jack
|
|
|
|
OPTIONS_DEFINE= ALSA DOCS READLINE
|
|
OPTIONS_DEFAULT=READLINE
|
|
OPTIONS_SUB= yes
|
|
|
|
ALSA_LIB_DEPENDS= libasound.so:${PORTSDIR}/audio/alsa-lib
|
|
ALSA_CONFIGURE_ENABLE= alsa
|
|
|
|
READLINE_LIB_DEPENDS= libreadline.so:${PORTSDIR}/devel/readline
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen
|
|
.else
|
|
CONFIGURE_ENV+= ac_cv_prog_HAVE_DOXYGEN="false"
|
|
.endif
|
|
|
|
.if ! ${PORT_OPTIONS:MREADLINE}
|
|
CONFIGURE_ENV+= ac_cv_lib_readline_readline=no \
|
|
ac_cv_header_readline_chardefs_h=no
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|define USE_MLOCK|undef USE_MLOCK|' \
|
|
${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e "s,-lpthread,-pthread," \
|
|
${WRKSRC}/configure ${WRKSRC}/libjack/Makefile.in \
|
|
${WRKSRC}/jackd/Makefile.in \
|
|
${WRKSRC}/example-clients/Makefile.in ${WRKSRC}/jack.pc.in
|
|
@${REINPLACE_CMD} -e "s,-lrt,," ${WRKSRC}/libjack/Makefile.in \
|
|
${WRKSRC}/jackd/Makefile.in \
|
|
${WRKSRC}/example-clients/Makefile.in
|
|
@${REINPLACE_CMD} -e "s,-ldl,," ${WRKSRC}/jackd/Makefile.in \
|
|
${WRKSRC}/example-clients/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|md5sum|md5 -q|g' \
|
|
${WRKSRC}/jackd/Makefile.in
|
|
@${RM} -f ${WRKSRC}/doc/reference/html/*
|
|
|
|
post-build:
|
|
@${RM} -f ${WRKSRC}/doc/reference/html/dir__2F*
|
|
|
|
.include <bsd.port.mk>
|