mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
df57a0e76f
- Add a patch to make sphinx3 compile. I can not figure out what compiler they used when releasing this. Upstream will be contacted. - Pet portlint
31 lines
729 B
Makefile
31 lines
729 B
Makefile
# Created by: Richard Neese
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sphinx3
|
|
PORTVERSION= 0.8
|
|
CATEGORIES= audio accessibility
|
|
MASTER_SITES= SF/cmusphinx/${PORTNAME}/${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Speech recognition system
|
|
|
|
LIB_DEPENDS= sphinxbase:${PORTSDIR}/audio/sphinxbase
|
|
|
|
USE_LDCONFIG= yes
|
|
USE_GMAKE= yes
|
|
USE_AUTOTOOLS=libtool
|
|
USE_CSTD= gnu99
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include #-I${LOCALBASE}/include/sphinxbase
|
|
CXXFLAGS+= -I${LOCALBASE}/include #-I${LOCALBASE}/include/sphinxbase
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
MAKE_ENV= MKDIR="${MKDIR}" \
|
|
OSVERSION=${OSVERSION}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|(libdir)/pkgconfig|(prefix)/libdata/pkgconfig|' ${WRKSRC}/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|