1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
freebsd-ports/accessibility/eflite/Makefile
Dmitry Marakasov 6f6fbe4bdf - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:		157936
Submitted by:	myself
Exp-runs by:	pav
Approved by:	pav
2011-09-23 22:26:39 +00:00

65 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
CONFIGURE_ENV+= flite_dir=${LOCALBASE}
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>