summaryrefslogtreecommitdiff
path: root/audio/festival/patches
diff options
context:
space:
mode:
authorproff <proff>1999-04-04 19:32:15 +0000
committerproff <proff>1999-04-04 19:32:15 +0000
commit2f59adaad2c27a9447461f0207106b1c9abfb562 (patch)
treef1b058c61e9f3c0a5663e680a9a7e0f01762903a /audio/festival/patches
parentf5da4d00ad0cecb592e929c432c0294c7ccd3273 (diff)
downloadpkgsrc-2f59adaad2c27a9447461f0207106b1c9abfb562.tar.gz
part of the festival speech synthesis system from CSTR
Diffstat (limited to 'audio/festival/patches')
-rw-r--r--audio/festival/patches/patch-aa12
-rw-r--r--audio/festival/patches/patch-ab47
-rw-r--r--audio/festival/patches/patch-ac23
-rw-r--r--audio/festival/patches/patch-ad25
-rw-r--r--audio/festival/patches/patch-ae12
5 files changed, 119 insertions, 0 deletions
diff --git a/audio/festival/patches/patch-aa b/audio/festival/patches/patch-aa
new file mode 100644
index 00000000000..28685e7d404
--- /dev/null
+++ b/audio/festival/patches/patch-aa
@@ -0,0 +1,12 @@
+$NetBSD: patch-aa,v 1.1.1.1 1999/04/04 19:32:33 proff Exp $
+
+--- /tmp/speech_tools/include/EST_unix.h Mon Jan 11 20:43:14 1999
++++ speech_tools/include/EST_unix.h Wed Mar 10 03:20:38 1999
+@@ -49,6 +49,7 @@
+ # include <sys/wait.h>
+ # include <sys/resource.h>
+ # include <dirent.h>
++# define unix 1
+ #elif defined(SYSTEM_IS_WIN32)
+ # include <io.h>
+ # include "win32/EST_unix_win32.h"
diff --git a/audio/festival/patches/patch-ab b/audio/festival/patches/patch-ab
new file mode 100644
index 00000000000..72662fc78f3
--- /dev/null
+++ b/audio/festival/patches/patch-ab
@@ -0,0 +1,47 @@
+$NetBSD: patch-ab,v 1.1.1.1 1999/04/04 19:32:34 proff Exp $
+
+--- /tmp/speech_tools/config/config Wed Mar 10 03:24:51 1999
++++ speech_tools/config/config Wed Mar 10 03:04:29 1999
+@@ -15,7 +15,7 @@
+ ## You may need to set this explicitly if automounter or NFS
+ ## side effects cause problems
+
+-EST_HOME := $(shell (cd $(EST); pwd))
++EST_HOME := $(PKG_EST_HOME)
+
+ ###########################################################################
+ ## System type.
+@@ -28,14 +28,18 @@
+ ##
+ ## Examples: sparc_SunOS5 intel_Linux2.0
+
+-SYSTEM_TYPE=$(MACHINETYPE)_$(OSTYPE)$(OSREV)
++#SYSTEM_TYPE=$(MACHINETYPE)_$(OSTYPE)$(OSREV)
++# unforunately the above does not fit in well with NetBSD's multiple
++# architectures and frequent changes of revision level (for people running
++# NetBSD-current)
++SYSTEM_TYPE=NetBSD
+
+ ###########################################################################
+ ## Compiler.
+ ## The definitions are in compilers/$(COMPILER).mak
+ ## Examples: gcc gcc26 suncc egcs gcc28
+
+-COMPILER=gcc
++COMPILER=$(PKG_COMPILER)
+
+ ###########################################################################
+ ## Java system to use if you include the Java interface.
+@@ -77,10 +81,10 @@
+ ## specify a program to play files in a desired format.
+
+ ## NCD's network audio system, This is recommended.
+-# INCLUDE_MODULES += NAS_AUDIO
++INCLUDE_MODULES += NAS_AUDIO
+
+ ## Native audio for your platform (sun, linux, freebsd, irix, windows)
+-INCLUDE_MODULES += NATIVE_AUDIO
++#INCLUDE_MODULES += NATIVE_AUDIO
+
+ ## Special code to run Windows MPLAYER
+ # INCLUDE_MODULES += MPLAYER_AUDIO
diff --git a/audio/festival/patches/patch-ac b/audio/festival/patches/patch-ac
new file mode 100644
index 00000000000..c9fc1106352
--- /dev/null
+++ b/audio/festival/patches/patch-ac
@@ -0,0 +1,23 @@
+$NetBSD: patch-ac,v 1.1.1.1 1999/04/04 19:32:34 proff Exp $
+
+diff -u -r /tmp/festival/doc/Makefile work/festival/doc/Makefile
+--- /tmp/festival/doc/Makefile Mon Jan 25 18:31:38 1999
++++ festival/doc/Makefile Wed Mar 10 06:59:12 1999
+@@ -29,7 +29,7 @@
+ TOP=..
+ DIRNAME=doc
+
+-FESTIVAL=$(TOP)/bin/festival --libdir $(TOP)/lib
++FESTIVAL=$(TOP)/src/main/festival --libdir $(TOP)/lib
+
+ # Include some of EST documentation.
+ DOCXX_EXTRA_FILES = $(EST)/include/EST_Stream.h
+@@ -52,7 +52,7 @@
+ %.1 : %.head %.options %.tail
+ cat $^ >$@
+ %.options : $(TOP)/src/main/%
+- $(TOP)/bin/$* -man_options >$@
++ $(FESTIVAL)$* -man_options >$@
+
+ festival.info: festival.texi festfunc.texi festvars.texi festfeat.texi
+ makeinfo festival.texi
diff --git a/audio/festival/patches/patch-ad b/audio/festival/patches/patch-ad
new file mode 100644
index 00000000000..cd7f2ae7e51
--- /dev/null
+++ b/audio/festival/patches/patch-ad
@@ -0,0 +1,25 @@
+$NetBSD: patch-ad,v 1.1.1.1 1999/04/04 19:32:34 proff Exp $
+
+diff -u -r /tmp/festival/examples/benchmark work/festival/examples/benchmark
+--- /tmp/festival/examples/benchmark Mon Jan 11 21:02:32 1999
++++ festival/examples/benchmark Wed Mar 10 06:59:12 1999
+@@ -1,6 +1,6 @@
+ #!/bin/sh
+
+-default_libdir="/projects/festival/lib"
++default_libdir="$FESTIVAL_HOME/lib"
+
+ while true
+ do
+@@ -15,9 +15,9 @@
+ esac
+ done
+
+-text=${1-"$HOME/projects/festival/examples/benchmark.text"}
++text=${1-"$FESTIVAL_HOME/examples/benchmark.text"}
+
+-for i in . src/main ../src/main $HOME/projects/festival/src/main /cstr/bin
++for i in . src/main ../src/main $FESTIVAL_HOME/src/main
+ do
+ if [ -n "$festival" ]
+ then
diff --git a/audio/festival/patches/patch-ae b/audio/festival/patches/patch-ae
new file mode 100644
index 00000000000..0f6de5d59ce
--- /dev/null
+++ b/audio/festival/patches/patch-ae
@@ -0,0 +1,12 @@
+$NetBSD: patch-ae,v 1.1.1.1 1999/04/04 19:32:34 proff Exp $
+
+--- festival/config/config-dist Mon Jan 11 20:59:22 1999
++++ festival/config/config Thu Mar 11 02:41:30 1999
+@@ -43,6 +43,7 @@
+ # ALSO_INCLUDE += diphone
+ # ALSO_INCLUDE += clunits
+ # ALSO_INCLUDE += rjc_synthesis
++ALSO_INCLUDE+=OGIresLPC
+
+ ###########################################################################
+ ##