1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/audio/sphinxbase/Makefile
Jase Thew 2d676029f1 - Update to 0.7 [1]
- Remove unnecessary PORTREVISION
- Fix typo in COMMENT
- Add missing build dependency on devel/bison
- Add options for libsndfile support and thread safety
- Disable building of python module
- Disable building of doxygen docs
- Replace use of gnomehack with specific REINPLACE for pkgconfig

PR:		ports/169426 [1]
Submitted by:	Richard Neese <r.neese@gmail.com> (maintainer)
Approved by:	flo (mentor)
2012-08-28 11:14:20 +00:00

58 lines
1.2 KiB
Makefile

# New ports collection makefile for: sphinxbase
# Date created: 8 Jan 2008
# Whom: r.neese
#
# $FreeBSD$
#
PORTNAME= sphinxbase
PORTVERSION= 0.7
CATEGORIES= audio accessibility
MASTER_SITES= SF/cmusphinx/${PORTNAME}/${PORTVERSION}
MAINTAINER= r.neese@gmail.com
COMMENT= CMU Sphinx Speech recognition system base
BUILD_DEPENDS= bison:${PORTSDIR}/devel/bison
USE_LDCONFIG= yes
USE_GMAKE= yes
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}
USE_PKGCONFIG= build
LIB_DEPENDS+= sndfile:${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>