diff options
author | jmmv <jmmv@pkgsrc.org> | 2005-02-26 17:25:36 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2005-02-26 17:25:36 +0000 |
commit | 63506db6a71c72df65c0de2117bce5edb1d60ff2 (patch) | |
tree | 857f0b778783f50cd0792d47b34f6c76a210049a /audio | |
parent | 2b260d1e847022636e0cb4516ef3d3bf938dfcce (diff) | |
download | pkgsrc-63506db6a71c72df65c0de2117bce5edb1d60ff2.tar.gz |
Update to 0.3.6:
* Festival driver now supports callbacks and end-of-speech markers - thanks to
Oana Serb of BAUM Retec.
* FreeTTS driver is less intolerant of nonstandard JAVA environments at
build time (Callum McKenzie).
* IBM ViaVoice driver updated to work with new Linux ViaVoice runtime
(Marc Mulcahy)
* Critical fixes for FreeTTS 1.2 driver which could cause speech to fail
(Marc)
Diffstat (limited to 'audio')
-rw-r--r-- | audio/gnome-speech/Makefile | 5 | ||||
-rw-r--r-- | audio/gnome-speech/distinfo | 9 | ||||
-rw-r--r-- | audio/gnome-speech/patches/patch-aa | 13 |
3 files changed, 20 insertions, 7 deletions
diff --git a/audio/gnome-speech/Makefile b/audio/gnome-speech/Makefile index d4fad6985fa..eb91f5783c6 100644 --- a/audio/gnome-speech/Makefile +++ b/audio/gnome-speech/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.12 2004/10/03 00:13:06 tv Exp $ +# $NetBSD: Makefile,v 1.13 2005/02/26 17:25:36 jmmv Exp $ # -DISTNAME= gnome-speech-0.3.5 -PKGREVISION= 1 +DISTNAME= gnome-speech-0.3.6 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gnome-speech/0.3/} EXTRACT_SUFX= .tar.bz2 diff --git a/audio/gnome-speech/distinfo b/audio/gnome-speech/distinfo index 6bbcf5dedc6..29fbe887f17 100644 --- a/audio/gnome-speech/distinfo +++ b/audio/gnome-speech/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.5 2005/02/23 20:39:46 agc Exp $ +$NetBSD: distinfo,v 1.6 2005/02/26 17:25:36 jmmv Exp $ -SHA1 (gnome-speech-0.3.5.tar.bz2) = 4f02313ba9956bfd96ecc90015bd57beab25d025 -RMD160 (gnome-speech-0.3.5.tar.bz2) = 88f921857b72a834366c017bcbdbe25d132da98c -Size (gnome-speech-0.3.5.tar.bz2) = 255271 bytes +SHA1 (gnome-speech-0.3.6.tar.bz2) = 2c62e341d70aa743ec41a50dc3bfb76eb6a85dd0 +RMD160 (gnome-speech-0.3.6.tar.bz2) = f932dc5560402a2a51e7a64ef69c442354758f41 +Size (gnome-speech-0.3.6.tar.bz2) = 266492 bytes +SHA1 (patch-aa) = fa584bbe19bc3db626e70b0ad35368539eb61314 diff --git a/audio/gnome-speech/patches/patch-aa b/audio/gnome-speech/patches/patch-aa new file mode 100644 index 00000000000..090353a1254 --- /dev/null +++ b/audio/gnome-speech/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2005/02/26 17:25:37 jmmv Exp $ + +--- drivers/festival/festivalsynthesisdriver.c.orig 2005-01-11 13:27:34.000000000 +0100 ++++ drivers/festival/festivalsynthesisdriver.c +@@ -25,6 +25,8 @@ + * + */ + ++#include <sys/socket.h> ++#include <netinet/in.h> + #include <string.h> + #include <sys/types.h> + #include <sys/wait.h> |