aboutsummaryrefslogtreecommitdiffstats
path: root/audio/sphinxbase/Makefile
blob: 429a3a5e63e548361445b7560af66d67c7c6da30 (plain) (blame)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# 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

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}
USES+=      pkgconfig
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>