mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
eb384d41a1
them to interface with Festival Lite, a free text-to-speech engine developed at the CMU Speech Center as an off-shoot of Festival. EFlite is still in beta, but I have been using it successfully with Yasr to get speech on my notebook under Linux without having to lug my Speak-out around. It uses Festival Lite's code to interface with the sound driver and, therefore, should work with some versions of ALSA, but I have only tested it with the OSS sound drivers so far. Michael P. Gorse mgorse@alum.wpi.edu mgorse@users.sf.net WWW: http://eflite.sourceforge.net/ Ported by David K. Gerry <David.K.Gerry@GMail.com> PR: ports/119790 Submitted by: David K. Gerry
63 lines
1.6 KiB
Makefile
63 lines
1.6 KiB
Makefile
# Ports collection makefile for: eflite
|
|
# Date created: Thu Jul 21 2005
|
|
# Whom: David K. Gerry
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= eflite
|
|
PORTVERSION= 0.4.1
|
|
CATEGORIES= accessibility
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= David.K.Gerry@GMail.com
|
|
COMMENT= Speech server for Festival Lite used by yasr and Emacspeak
|
|
|
|
BUILD_DEPENDS= flite:${PORTSDIR}/audio/flite
|
|
RUN_DEPENDS= flite:${PORTSDIR}/audio/flite
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
ALL_TARGET= eflite
|
|
|
|
CONFIGURE_ARGS+= --with-audio=freebsd
|
|
.if defined(FL_LANG)
|
|
CONFIGURE_ARGS+= --with-lang=${FL_LANG}
|
|
.endif
|
|
.if defined(FL_LEX)
|
|
CONFIGURE_ARGS+= --with-lex=${FL_LEX}
|
|
.endif
|
|
.if defined(FL_VOX)
|
|
CONFIGURE_ARGS+= --with-vox=${FL_VOX}
|
|
.else
|
|
CONFIGURE_ARGS+= --with-vox=cmu_us_kal16
|
|
.endif
|
|
|
|
PLIST_FILES= bin/eflite
|
|
PORTDOCS= AUTHORS CREDITS ChangeLog INSTALL README
|
|
|
|
pre-fetch:
|
|
.ifdef!(FL_LANG || FL_LEX || FL_VOX)
|
|
@${ECHO_MSG} "===> You can set FL_LANG, FL_LEX and/or FL_VOX"
|
|
@${ECHO_MSG} " to link the appropriate libflite_* libraries"
|
|
@${ECHO_MSG} " (i.e. \"make FL_VOX=cmu_us_kal\".)"
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/etc/es\.conf|${PREFIX}/etc/es.conf|' ${WRKSRC}/es.c
|
|
@${REINPLACE_CMD} -e 's|/etc/es\.conf|${PREFIX}/etc/es.conf|;s|sockname|socketfile|g' ${WRKSRC}/INSTALL
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for doc in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
${INSTALL_DATA} ${FILESDIR}/es.conf.sample ${PREFIX}/etc
|
|
@if [ ! -f ${PREFIX}/etc/es.conf ]; then \
|
|
${CP} -p ${PREFIX}/etc/es.conf.sample ${PREFIX}/etc/es.conf ; \
|
|
fi
|
|
|
|
.include <bsd.port.mk>
|