1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-30 01:15:52 +00:00
freebsd-ports/audio/sphinxbase/Makefile
Baptiste Daroussin 5978476c35 In preparation for making libtool generate libraries with a sane name, fix all
LIB_DEPENDS in audio

With hat:	portmgr
2013-12-11 14:35:36 +00:00

53 lines
1.1 KiB
Makefile

# Created by: r.neese
# $FreeBSD$
PORTNAME= sphinxbase
PORTVERSION= 0.8
CATEGORIES= audio accessibility
MASTER_SITES= SF/cmusphinx/${PORTNAME}/${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= CMU Sphinx Speech recognition system base
USE_LDCONFIG= yes
NO_STAGE= yes
USES= gmake bison
USE_AUTOTOOLS= libtool
CONFIGURE_ARGS+= --without-python --without-lapack
CONFIGURE_ENV+= HAVE_DOXYGEN=no
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
MAKE_ENV= MKDIR="${MKDIR}" \
OSVERSION=${OSVERSION}
OPTIONS_DEFINE= SNDFILE THREADS
OPTIONS_DEFAULT= THREADS
SNDFILE_DESC= libsndfile support
THREADS_DESC= Build with thread safety support
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MSNDFILE}
USES+= pkgconfig
LIB_DEPENDS+= libsndfile.so:${PORTSDIR}/audio/libsndfile
.else
CONFIGURE_ENV+= HAVE_PKGCONFIG=no
.endif
.if ${PORT_OPTIONS:MTHREADS}
CPPFLAGS+= ${PTHREAD_CFLAGS}
LDFLAGS+= ${PTHREAD_LIBS}
CONFIGURE_ARGS+= --enable-threads
.else
CONFIGURE_ARGS+= --disable-threads
.endif
post-patch:
@${REINPLACE_CMD} -e 's|$$(libdir)/pkgconfig|$$(prefix)/libdata/pkgconfig|g' ${WRKSRC}/Makefile.in
.include <bsd.port.mk>