diff options
author | Will Andrews <will@FreeBSD.org> | 2000-09-16 08:53:23 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2000-09-16 08:53:23 +0000 |
commit | 6bcd95466ecb20f042df3e7d5579602e99aa9ac4 (patch) | |
tree | 48086c7343d32b9336ec28a0e9866a8c78906534 /audio/festvox-tll/Makefile | |
parent | bab74078a9840cb4e1407279f9c4809ecc61386e (diff) |
Add festival 1.4.1, a multi-lingual text-to-speech system for Unix. This
commit includes the various ports festival can work with. Big thanks to
Trevor for putting in all the time to port this!
[ Ok, this is another 3:45am screwup. Sorry. -Ed. ]
PR: 21200
Submitted by: Trevor Johnson <trevor@jpj.net>
Notes
Notes:
svn path=/head/; revision=32684
Diffstat (limited to 'audio/festvox-tll/Makefile')
-rw-r--r-- | audio/festvox-tll/Makefile | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/audio/festvox-tll/Makefile b/audio/festvox-tll/Makefile new file mode 100644 index 000000000000..f4b2bde0e15a --- /dev/null +++ b/audio/festvox-tll/Makefile @@ -0,0 +1,41 @@ +# New ports collection makefile for: festvox-tll +# Date created: 2000-06-20 +# Whom: Trevor Johnson <trevor@jpj.net> +# based on the NetBSD port +# +# $NetBSD: Makefile,v 1.10 2000/02/15 09:26:17 agc Exp $ +# $FreeBSD$ +# + +PORTNAME= festvox-tll +PORTVERSION= 2.0 +CATEGORIES= audio +MASTER_SITES= ftp://ftp.leb.net/pub/blinux/festival/mirror.ogi-synth_home/ \ + ftp://ftp.mayn.de/pub/linux/BLinux/festival/mirror.ogi-synth_home/ \ + ftp://cslu.cse.ogi.edu/pub/tts/ +DISTNAME= voice_tll_di-2.0 +DIST_SUBDIR= festival + +MAINTAINER= trevor@jpj.net + +RUN_DEPENDS= festival:../festival \ + ${LOCALBASE}/share/festival/lib/dicts/ogi_lex.out:../festlex-ogi + +RESTRICTED= no-commercial-use + +WRKSRC= ${WRKDIR}/festival + +NO_BUILD= yes + +FHOME= ${PREFIX}/share/festival + +post-extract: + @ ${CHMOD} -R a+r ${WRKSRC} + find ${WRKSRC} -type d -print0 | xargs -0 ${CHMOD} 755 + find ${WRKSRC} -type d -name CVS | xargs ${RM} -fr + +do-install: + ${MKDIR} ${FHOME} + cd ${WRKSRC} && ${CP} -pPR * ${FHOME} + +.include <bsd.port.mk> |