Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37515627
en ru br
ALT Linux repos
S:2.5-alt0.4
5.0: 1.96-alt6
4.1: 1.96-alt5.M41.1
4.0: 1.96-alt2.6
3.0:
+backports:1.96-alt0.M30.1

Other repositories
Upstream:1.96-beta

Group :: Sound
RPM: festival

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 

Patch: festival_1.4.3-debian-dir.diff
Download


--- festival-1.4.3.orig/debian/festival.postrm
+++ festival-1.4.3/debian/festival.postrm
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
--- festival-1.4.3.orig/debian/festival.catalog
+++ festival-1.4.3/debian/festival.catalog
@@ -0,0 +1,8 @@
+-- This is the catalog entry for the Sable DTD used in the --
+-- Festival speech synthesis system. --
+ENTITY %ISOlat1 sable-latin.ent
+DOCTYPE "SABLE" Sable.v0_2.dtd
+PUBLIC "-//SABLE//DTD SABLE speech mark up//EN" Sable.v0_2.dtd
+PUBLIC "-//CSTR//DTD SABLE v0.2//EN" Sable.v0_2.dtd
+
+
--- festival-1.4.3.orig/debian/lintian.override
+++ festival-1.4.3/debian/lintian.override
@@ -0,0 +1 @@
+festival: install-info-not-called-with-section-option
--- festival-1.4.3.orig/debian/50festival.el
+++ festival-1.4.3/debian/50festival.el
@@ -0,0 +1,19 @@
+;; Autoloads (most probable entry points) for Festival
+
+(autoload 'say-minor-mode "festival" "Menu for using Festival." t)
+
+(autoload 'run-festival "festival"
+  "Run an inferior FESTIVAL process, input and output via buffer *festival*." t)
+
+(autoload 'festival-say-buffer "festival"
+  "Send given region to festival for saying.  This saves the region
+as a file in /tmp and then tells festival to say that file.  The
+major-mode is passed as a text mode to Festival." t)
+
+(autoload 'festival-say-region "festival"
+  "Send given region to festival for saying.  This saves the region
+as a file in /tmp and then tells festival to say that file.  The
+major mode is *not* passed as text mode name to Festival." t)
+
+(autoload 'festival-say-string "festival"
+  "Send string to festival and have it said" t)
--- festival-1.4.3.orig/debian/festival.scm
+++ festival-1.4.3/debian/festival.scm
@@ -0,0 +1,3 @@
+;; Any site-wide Festival initialization can be added to this file.
+;; It is marked as a configuration file, so your changes will be saved
+;; across upgrades of the Festival package.
--- festival-1.4.3.orig/debian/festival.init
+++ festival-1.4.3/debian/festival.init
@@ -0,0 +1,48 @@
+#! /bin/sh
+# /etc/init.d/festival
+#
+# Init script for starting Festival as a system-wide server process.
+#
+# Written by David Huggins-Daines <dhd@cepstral.com>
+
+# Comment out the next line to start a Festival server at boot time.
+exit 0
+# NOTE: Not just anybody can connect to your server; the list of allowed
+# hostnames is a regexp. Check /usr/share/festival/festival.scm for more
+# helpful comments; add your settings to /etc/festival.scm.
+#
+
+set -e
+
+DAEMON=/usr/bin/festival
+REALPROC=/usr/bin/festival
+NAME=festival
+
+test -x $DAEMON || exit 0
+
+case "$1" in
+  start)
+    echo -n "Starting Festival server: "
+    start-stop-daemon --start --chuid nobody:audio --background \
+		--exec $DAEMON -- --server
+    echo "done."
+    ;;
+  stop)
+    echo -n "Stopping Festival server: "
+    start-stop-daemon --stop --oknodo --exec $REALPROC
+    echo "done."
+    ;;
+  restart|reload|force-reload)
+    echo "Restarting Festival server: "
+    start-stop-daemon --stop --oknodo --exec $REALPROC
+    start-stop-daemon --start --chuid nobody:audio --background \
+		--exec $DAEMON -- --server
+    echo "done."
+    ;;
+  *)
+    echo "Usage: /etc/init.d/$NAME {start|stop|restart}"
+    exit 1
+    ;;
+esac
+
+exit 0
--- festival-1.4.3.orig/debian/copyright
+++ festival-1.4.3/debian/copyright
@@ -0,0 +1,96 @@
+This package was debianzied by Joey Hess, at some point in the distant
+past.
+
+It was downloaded from http://www.festvox.org/packed/festival/.
+
+From the COPYING file in the distribution:
+
+The system as a whole and almost all of the files in it are
+distributed under the following copyright and conditions
+
+                The Festival Speech Synthesis System
+                Centre for Speech Technology Research                 
+                     University of Edinburgh, UK                       
+                      Copyright (c) 1996-1999                         
+                        All Rights Reserved.                           
+                                                                       
+  Permission is hereby granted, free of charge, to use and distribute  
+  this software and its documentation without restriction, including   
+  without limitation the rights to use, copy, modify, merge, publish,  
+  distribute, sublicense, and/or sell copies of this work, and to      
+  permit persons to whom this work is furnished to do so, subject to   
+  the following conditions:                                            
+   1. The code must retain the above copyright notice, this list of    
+      conditions and the following disclaimer.                         
+   2. Any modifications must be clearly marked as such.                
+   3. Original authors' names are not deleted.                         
+   4. The authors' names are not used to endorse or promote products   
+      derived from this software without specific prior written        
+      permission.                                                      
+                                  
+  THE UNIVERSITY OF EDINBURGH AND THE CONTRIBUTORS TO THIS WORK        
+  DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING      
+  ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT   
+  SHALL THE UNIVERSITY OF EDINBURGH NOR THE CONTRIBUTORS BE LIABLE     
+  FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES    
+  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN   
+  AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,          
+  ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF       
+  THIS SOFTWARE.                                                       
+                                                                       
+Some further comments:
+
+Every effort has been made to ensure that Festival does not contain
+any violation of intellectual property rights through disclosure of
+trade secrets, copyright or patent violation.  Considerable time and
+effort has been spent to ensure that this is the case.  However,
+especially with patent problems, it is not always within our control
+to know what has or has not been restricted.  If you do suspect that
+some part of Festival cannot be legally distributed please please
+inform us so that an alternative may be sought.  Festival is only
+useful if it is truly free to distribute.
+
+As of 1.4.0 the core distribution (and speech tools) is free.  Unlike
+previous versions which had a commercial restriction.  You are free to
+incorporate Festival in commercial (and of course non-commercial
+systems), without any further communication or licence from us.
+However if you are seriously using Festival within a commercial
+application we would like to know, both so we know we are contributing
+and so we can keep you informed of future developments.  Also if you
+require maintenance, support or wish us to provide consultancy feel
+free to contact us.
+
+The voices however aren't all free.  At present the US voices, kal and
+ked are free. Our British voices are free themselves but they use OALD
+which is restricted for non-commercial use.  Our Spanish voice is also
+so restricted.
+
+Note other modules that festival supports e.g MBROLA and OGI
+extensions, may have different licencing please take care when using
+the system to understand what you are actually using.
+
+--------------------------------------------------
+
+A number of individual files in the system fall under a different
+copyright from the above.  All however are termed "free software"
+but most people.  
+
+./src/arch/festival/tcl.c
+ * Copyright (C)1997 Jacques H. de Villiers <jacques@cse.ogi.edu>
+ * Copyright (C)1997 Center for Spoken Language Understanding,
+ *                   Oregon Graduate Institute of Science & Technology
+ See conditions in file.  This is the standard TCL licence and hence
+ shouldn't cause problems from most people.
+
+./examples/festival_client.pl
+# Copyright (C) 1997
+# Kevin A. Lenzo (lenzo@cs.cmu.edu) 7/97
+ See condition in file
+
+./lib/festival.el
+;;;               Copyright (C) Alan W Black 1996
+copyright under FSF General Public Licence
+
+Please also read the COPYING section of speech_tools/README for the
+conditions on those files.
+
--- festival-1.4.3.orig/debian/festival.postinst
+++ festival-1.4.3/debian/festival.postinst
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
--- festival-1.4.3.orig/debian/compat
+++ festival-1.4.3/debian/compat
@@ -0,0 +1 @@
+4
--- festival-1.4.3.orig/debian/README.Debian
+++ festival-1.4.3/debian/README.Debian
@@ -0,0 +1,33 @@
+This package has a few differences to Upstream which are not adequately
+reflected in the documentation.
+
+- The standard .scm files are located in /usr/share/festival.
+- DTDs and related files are in /usr/share/sgml/festival.
+
+Feel free to submit patches to me. ;-)
+
+
+If you want to enable the Festival server code, you need to do two
+things:
+
+- Remove or comment the "exit 0" near the beginning of /etc/init.d/festval.
+- Set the 'server_access_list' variable to the host names you want to
+  grant access to the server.
+ 
+Note that this variable holds a regular expression which is matched
+against whatever the client's IP address resolves to (or the address
+itself, if address-to-name resolution fails). For local connections,
+that is the first name in the '127.0.0.1' line of /etc/hosts; it may or
+may not be 'localhost'.
+
+Set 'server_access_list' to NIL if you want to control access by other
+means (e.g., if your firewall filters incoming access to TCP port 1314,
+or whatever you've set the 'server_port' variable to):
+
+	(set! 'server_access-list nil)
+
+
+Have fun!
+
+  -- Matthias Urlichs <smurf@debian.org>
+
--- festival-1.4.3.orig/debian/festival.prerm
+++ festival-1.4.3/debian/festival.prerm
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
--- festival-1.4.3.orig/debian/festival.sgmlcatalogs
+++ festival-1.4.3/debian/festival.sgmlcatalogs
@@ -0,0 +1 @@
+debian/festival.catalog /usr/share/sgml/festival/catalog
--- festival-1.4.3.orig/debian/rules
+++ festival-1.4.3/debian/rules
@@ -0,0 +1,90 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+FT := $(shell pwd)/debian/festival
+FDT := $(shell pwd)/debian/festival-dev
+
+# export DH_VERBOSE=1
+
+build: build-stamp
+build-stamp:
+	$(MAKE) CC=gcc-3.4 CXX=g++-3.4
+	cd doc && $(MAKE) festival.info
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	dh_clean
+	-$(MAKE) clean
+	find . -name make.depend -print0 | xargs -0r $(RM)
+	find . -name make.include -print0 | xargs -0r $(RM)
+	find bin/ \( -name SCCS -o -name RCS -o -name CVS \) -prune \
+		-o -type f ! -name Makefile -print0 | xargs -0r $(RM)
+	$(RM) doc/*.1 doc/festfeat.texi doc/festvars.texi doc/festfunc.texi
+	$(RM) -r doc/info
+	$(RM) config/modincludes.inc config/system.mak
+	$(RM) -f install-stamp build-stamp
+
+install: install-stamp
+install-stamp: build-stamp debian/rules
+	dh_testdir
+	dh_testroot
+	dh_clean
+
+	dh_installdirs -pfestival usr/bin etc \
+		etc/emacs/site-start.d \
+		usr/share/emacs/site-lisp usr/share/man/man1 \
+		usr/share/sgml/festival usr/share/festival usr/lib/festival
+	install -s src/main/festival src/main/festival_client $(FT)/usr/bin/
+	install -s lib/etc/*Linux*/audsp $(FT)/usr/lib/festival/
+	cp debian/festival.scm $(FT)/etc/
+	cp lib/*.scm $(FT)/usr/share/festival/
+	# cp debian/festival.catalog $(FT)/usr/share/sgml/festival/festival.catalog
+	cp lib/sable-latin.ent lib/Sable.v0_2.dtd $(FT)/usr/share/sgml/festival
+	cp lib/Singing.v0_1.dtd $(FT)/usr/share/sgml/festival
+	cp lib/festival.el $(FT)/usr/share/emacs/site-lisp/
+	cp debian/50festival.el $(FT)/etc/emacs/site-start.d/
+	cp lib/*gram* $(FT)/usr/share/festival/
+	dh_installinfo -pfestival doc/info/festival.info*
+	cp doc/festival.1 doc/festival_client.1 doc/text2wave.1 $(FT)/usr/share/man/man1
+	dh_installexamples -pfestival examples/*
+	find debian/festival \( -name SCCS -o -name CVS -o -name RCS \) -print0 \
+			| xargs -0r rm -rf
+
+	cp $(FT)/usr/share/doc/festival/examples/text2wave $(FT)/usr/bin
+	dh_installinit -pfestival
+
+	dh_installdirs -p festival-dev usr/include/festival usr/lib
+	cp src/lib/libFestival.a $(FDT)/usr/lib/
+	cp src/include/*.h $(FDT)/usr/include/festival/
+	mkdir -p $(FT)/usr/share/lintian/overrides
+	install -m 644 debian/lintian.override $(FT)/usr/share/lintian/overrides/festival
+
+	touch install-stamp
+
+
+binary-indep:
+# Nothing to do here
+
+binary-arch: build install
+	dh_testdir -a
+	dh_testroot -a
+	dh_installchangelogs -a -k NEWS
+	dh_installdocs -a README ACKNOWLEDGMENTS 
+	dh_installcatalogs -a
+	dh_strip -a
+	dh_link -a
+	dh_compress -a
+	dh_fixperms -a
+	dh_installdeb -a
+	dh_shlibdeps -a
+	dh_gencontrol -a -u-isp
+	dh_md5sums -a
+	dh_builddeb -a
+
+source diff:                                                                  
+	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
--- festival-1.4.3.orig/debian/control
+++ festival-1.4.3/debian/control
@@ -0,0 +1,29 @@
+Source: festival
+Section: sound
+Priority: optional
+Maintainer: Matthias Urlichs <smurf@debian.org>
+Standards-Version: 3.6.1
+Build-Depends: g++-3.4, libestools1.2-dev (>= 1:1.2.3-9), libesd0-dev, libncurses5-dev, texinfo, debhelper (>= 4.1.75), c++abi2-dev
+
+Package: festival
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, festvox-kallpc16k | festival-voice
+Conflicts: festvox-rablpc8k (<< 1.4.0-2), festvox-rablpc16k (<< 1.4.0-2), festvox-kdlpc16k (<< 1.4.0-4), festvox-kdlpc8k (<< 1.4.0-5), festvox-don (<< 1.4.0-3), festvox-ellpc11k (<< 1.4.0-1), festlex-cmu (<< 1.4.0-3), festlex-oald (<< 1.4.0-2), festlex-poslex (<< 1.4.0-3)
+Description: general multi-lingual speech synthesis system
+ Festival offers a full text to speech system with various APIs, as 
+ well an environment for development and research of speech synthesis
+ techniques. It includes a Scheme-based command interpreter.
+ .
+ Besides research into speech synthesis, festival is useful as a
+ stand-alone speech synthesis program. It is capable of producing
+ clearly understandable speech from text.
+
+Package: festival-dev
+Architecture: any
+Depends: libestools1.2-dev (>= 1:1.2.3-9), c++abi2-dev
+Suggests: festival-doc
+Section: libdevel
+Description: development kit for the Festival speech synthesis system
+ This package contains the static library and headers that can be used to
+ develop programs that use Festival.  Documentation is now contained in the
+ separate festival-doc package
--- festival-1.4.3.orig/debian/changelog
+++ festival-1.4.3/debian/changelog
@@ -0,0 +1,475 @@
+festival (1.4.3-17.1) unstable; urgency=low
+
+  * NMU
+  * Added support for italian anf finnish language selection. Closes: #335845. Closes: #352351.
+  * Updated man page accordingly
+
+ -- Marco Presi (Zufus) <zufus@debian.org>  Fri, 24 Mar 2006 15:55:33 +0100
+
+festival (1.4.3-17) unstable; urgency=low
+
+  * Synchronize package from Ubuntu.
+  * (Build-)depend on c++abi2-dev.
+
+ -- Matthias Klose <doko@debian.org>  Tue,  2 Aug 2005 10:07:25 +0000
+
+festival (1.4.3-16ubuntu1) breezy; urgency=low
+
+  * CXX transition: Tighten build dependency on libestools1.2-dev.
+  * Build using g++-3.4, FTBFS with g++-4.0
+
+ -- Matthias Klose <doko@ubuntu.com>  Mon, 23 May 2005 21:26:47 +0000
+
+festival (1.4.3-16) unstable; urgency=low
+
+  * Add ';' as a sentence delimiter.
+    - Workaround for decreasing pitch in long sentences
+    - Fix by Alan W Black <awb@cs.cmu.edu>
+    - Closes: #284585
+
+ -- Matthias Urlichs <smurf@debian.org>  Thu,  9 Dec 2004 18:34:40 +0100
+
+festival (1.4.3-15) unstable; urgency=low
+
+  * Added a-law encoding rules, along the lines of the existing u-law
+    support.
+    - Closes: #217007: Patch required to use festival with asterisk
+      (This is a generic solution, not an Asterisk-specific hack.)
+  * better shared lib support
+
+ -- Matthias Urlichs <smurf@debian.org>  Fri, 16 Jul 2004 09:44:07 +0200
+
+festival (1.4.3-14) unstable; urgency=medium
+
+  * Conflict on those versions on all voice/lex packages which predate the
+    move from /usr/lib to /usr/share.
+    - Closes: #242086
+  * De-right-align Closes: texts.
+
+ -- Matthias Urlichs <smurf@debian.org>  Sun,  4 Apr 2004 22:59:20 +0200
+
+festival (1.4.3-13) unstable; urgency=low
+
+  * Depend on "festvox-kallpc16k | festival-voice" in order to avoid
+    preferring non-free. Thanks to <chris@maybe.net>.
+    - Closes: #235666
+
+ -- Matthias Urlichs <smurf@debian.org>  Mon,  1 Mar 2004 22:41:26 +0100
+
+festival (1.4.3-12) unstable; urgency=low
+
+  * Added singing DTD.
+    - Closes: #216816
+  * Helpful comments for server mode.
+    - Closes: #217005
+
+ -- Matthias Urlichs <smurf@debian.org>  Mon,  9 Feb 2004 16:14:28 +0100
+
+festival (1.4.3-11) unstable; urgency=low
+
+  * Depend on debhelper 4.1.75
+    	... which fixes a bug in dh_installcatalogs (thanks, Ardo)
+  * Updated maintainer address
+  * Updated Standards-Version
+    	3.6.1, no changes.
+
+ -- Matthias Urlichs <smurf@debian.org>  Sun, 19 Oct 2003 08:14:27 +0200
+
+festival (1.4.3-10) unstable; urgency=medium
+
+  * debian/festival.sgmlcatalogs:
+    The catalog path needs a leading slash (closes: #198928)
+  * lib/festival.scm:
+    typo (closes: #119998)
+  * lib/tts.scm:
+    Fix the path to festival's SGML files.
+  * debian/rules:
+    Don't create the the obsolete SGML directory (/usr/lib/sgml/cstr).
+
+ -- Matthias Urlichs <smurf@noris.de>  13 Jun 2003 09:14:00 +0200
+
+festival (1.4.3-9) unstable; urgency=low
+
+  * Extract the arch-independent files from /usr/lib/festival
+    (almost all of them...) to /usr/share/festival.
+  * Add a new option --datadir, aka FTDATADIR.
+   
+    Warning: This is no longer compatible with the previous version,
+    but doing anything else would be too confusing in the long run.
+
+ -- Matthias Urlichs <smurf@noris.de>  28 May 2003 12:48:25 +0200
+
+festival (1.4.3-8) unstable; urgency=low
+
+  * debian/rules
+    Use /usr/share/festival, not /usr/lib/festival --
+    the latter in fact doesn't contain any arch-dependent data.
+   
+  * TEMPORARY KLUDGE: Install a symlink from /usr/lib/festival
+    to /usr/share. This will be fixed later, as the Makefiles
+    need to be overhauled anyway.
+
+ -- Matthias Urlichs <smurf@noris.de>  27 May 2003 19:58:39 +0200
+
+festival (1.4.3-7) unstable; urgency=low
+
+  * debian/control:
+    Remove short description from long description (policy 5.7.1)
+  * debian/festival.sgmlcatalogs:
+    Install catalog file correctly
+
+ -- Matthias Urlichs <smurf@noris.de>  27 May 2003 19:04:40 +0200
+
+festival (1.4.3-6) unstable; urgency=low
+
+  * Add explicit EST_String cast to various .cc files which needed it
+    (GCC got more strict...)
+
+ -- Matthias Urlichs <smurf@noris.de>  19 May 2003 13:55:07 +0200
+
+festival (1.4.3-5) unstable; urgency=low
+
+  * Make loading of /etc/festival.scm optional
+
+ -- Matthias Urlichs <smurf@noris.de>  19 May 2003 13:53:17 +0200
+
+festival (1.4.3-4) unstable; urgency=low
+
+  * debian/control:
+    Move development libraries to section libdevel
+  * debian/rules:
+    Fix "find" command
+
+ -- Matthias Urlichs <smurf@noris.de>  19 May 2003 13:51:38 +0200
+
+festival (1.4.3-3) unstable; urgency=low
+
+  * Switched to debhelper compat level v4
+  * Fixed SGML installation (thanks, Ardo)
+
+ -- Matthias Urlichs <smurf@noris.de>  22 Apr 2003 04:55:42 +0200
+
+festival (1.4.3-2) unstable; urgency=low
+
+  * Depend on festival-voice
+
+ -- Matthias Urlichs <smurf@noris.de>  18 Apr 2003 21:46:56 +0200
+
+festival (1.4.3-1) unstable; urgency=low
+
+  * New maintainer.
+  * Bugs in (not uploaded) NMU / see earlier changelog entries:
+    Closes #115911, #143673, #179490, #167325, #160781, #186895
+
+ -- Matthias Urlichs <smurf@noris.de>  18 Apr 2003 16:50:22 +0200
+
+festival (1.4.3-0.2) unstable; urgency=low
+
+  * NMU.
+  * Updated SGML installation.
+    - Closes: #115911
+  * Shortened path to upstream.
+    - Closes: #143673
+
+ -- Matthias Urlichs <smurf@noris.de>  18 Apr 2003 15:49:21 +0200
+
+festival (1.4.3-0.1) unstable; urgency=low
+
+  * NMU.
+  * New upstream release.
+    - Closes: #179490
+
+ -- Matthias Urlichs <smurf@noris.de>  18 Apr 2003 01:15:13 +0200
+
+festival (1.4.2-2.3) unstable; urgency=low
+
+  * Make the festival server setgid audio. Closes: #167325.
+  * Load /etc/festival.scm. Closes: #160781.
+
+ -- Matthias Urlichs <smurf@noris.de>  17 Apr 2003 20:30:37 +0200
+
+festival (1.4.2-2.2) unstable; urgency=low
+
+  * NMU
+  * Fix GCC 3.2 problems.  Closes: #186895
+
+ -- Matthias Urlichs <smurf@noris.de>  17 Apr 2003 20:23:45 +0200
+
+festival (1.4.2-2.1) unstable; urgency=low
+
+  * NMU, to prevent removal from woody.
+  * Made /etc/emacs/site-start.d/50festival.el a conffile. Closes: #132192
+  * Fixed bashisms in rules file.
+
+ -- Joey Hess <joeyh@debian.org>  Sat,  2 Mar 2002 18:57:33 -0500
+
+festival (1.4.2-2) unstable; urgency=low
+
+  * Pre-emptively make Festival *not* default to ESD audio, because it
+    doesn't currently work.
+  * Clean up some cruft from the init.scm that was there to work
+    around bugs in 1.4.1.
+  * Twiddle the XML stuff a bit more.  It still
+    doesn't work perfectly since you need to (require 'sable-mode) (or
+    have tts_file do it for you) before you can synth sable markup, but
+    it's better than it used to be, at least.
+  * Add SHELL definition to debian/rules since it contains bashisms.
+
+ -- David Huggins-Daines <dhd@debian.org>  Fri, 24 Aug 2001 12:33:25 -0400
+
+festival (1.4.2-1) unstable; urgency=low
+
+  * New upstream version.
+  * Add Build-Depends: debhelper (strange this hasn't been reported yet)
+  * Fix prerm to remove sgml catalog entry on removal (closes: #96714)
+  * Twiddle paths in sable-mode to make it DTRT (closes: #106190)
+
+ -- David Huggins-Daines <dhd@debian.org>  Thu, 23 Aug 2001 22:28:51 -0400
+
+festival (1.4.1p-2) unstable; urgency=low
+
+  * Sorry ... have to rebuild this to get the correct speech-tools
+    dependency.
+  * Tweak the configuration stuff slightly.
+  * Add Build-Depends: texinfo (closes: #93147)
+
+ -- David Huggins-Daines <dhd@debian.org>  Mon,  9 Apr 2001 15:27:15 -0400
+
+festival (1.4.1p-1) unstable; urgency=low
+
+  * No longer using DBS.  Because I can't overwrite the .orig.tar.gz, I've
+    added a 'p' (for 'pristine', I guess) to the version number.
+    Wish our source package format wasn't so @#$%# broken... sigh...
+  * Twiddled configuration to build on all systems (it will fall back to
+    something reasonable, and it recognizes Debian specifically now)
+  * Fix brokenness in postinst/postrm (which should actually be prerm).
+    (closes: #91222)
+  * Make 16-bit audio the default.  I think it's safe to say that 16-bit
+    sound cards are now the vast majority.
+  * Remove NAS support, which is no longer in speech_tools either.
+  * Add an init script for optionally starting a festival server at boot
+    time.  This is turned off by default for security reasons.
+  * Apply serverdiphfdfix.patch from
+    http://festvox.org/packed/festival/1.4.1/PATCHES, merge changes from
+    lexicon.cc, siteinit.scm.
+
+ -- David Huggins-Daines <dhd@debian.org>  Sun,  8 Apr 2001 17:05:38 -0400
+
+festival (1.4.1-2.1) unstable; urgency=low
+
+  * NMU
+  * Set the "SYSTEM_TYPE" to "Linux" in
+    debian/patches/speech_tools_config_config. (closes: #84496)
+
+ -- Adrian Bunk <bunk@fs.tum.de>  Fri, 16 Mar 2001 23:32:35 +0100
+
+festival (1.4.1-2) unstable; urgency=low
+
+  * Fix build on powerpc. Closes: #62133
+  * Fix spew of compiler warnings when building.
+  * Recompile to fix esound dependency issues (feh).
+    Closes: #74592, #56193
+  * Recompile to fix speech-tools dependency issues.
+    Closes: #51630
+  * Mark /etc/festival.scm as a conffile.  Closes: #52901
+  * Include ESD patch from #62597.  Closes: #62597
+
+ -- David Huggins-Daines <dhd@debian.org>  Wed,  8 Nov 2000 19:19:00 -0500
+
+festival (1.4.1-1) unstable; urgency=low
+
+  * Fixed m68k config file patch.  Really, really closes: #51614, I mean it.
+  * New upstream (bugfix) version.  Now has esound support, included.
+
+ -- David Huggins-Daines <dhd@debian.org>  Sat, 15 Jan 2000 01:14:31 -0500
+
+festival (1.4.0-4) unstable; urgency=low
+
+  * Added m68k config files (sigh).  Closes: #51614
+  * Compile with -fPIC.  Closes: #51637
+
+ -- David Huggins-Daines <dhd@debian.org>  Tue, 30 Nov 1999 10:47:38 -0500
+
+festival (1.4.0-3) unstable; urgency=low
+
+  * Use -l option to dh_shlibdeps.  Closes: #50602, #50600
+  * Applied patch to sys-build.mak from Adam Heath.  Closes: #50327
+  * Created a sparc_Linux2.2.mak.  Closes: #50472
+
+ -- David Huggins-Daines <dhd@debian.org>  Sat, 27 Nov 1999 13:57:01 -0500
+
+festival (1.4.0-2) unstable; urgency=low
+
+  * Turns out the authors forgot to include a generic configuration file
+    for Linux 2.2 on i386.
+  * Fixed a foible in debian/rules that caused the *.so links to be
+    created in the wrong package, yuck.
+
+ -- David Huggins-Daines <dhd@debian.org>  Mon,  8 Nov 1999 23:35:27 -0500
+
+festival (1.4.0-1) unstable; urgency=medium
+
+  * New upstream version.  Is now free software.  Hooray.
+  * Change in source format - festival and speech-tools now build from a
+    single source package again, using Adam Heath's most excellent build
+    system.  This allows me to eliminate many (but not all) of the nasty
+    hacks previously needed to build this package.  An unfortunate side
+    effect of this is that the version number of the debian package for
+    speech-tools does not reflect the actual upstream numbering system.
+    This is due to Festival and Speech-Tools having a build system that is
+    designed with the intent that the packages will be built under the
+    same directory together and installed in place.  As the authors state,
+    this reflects the purpose of Festival as a research system.  It does,
+    however, make life very difficult when trying to produce a
+    distributable and policy-compliant Debian package.
+  * Most of the documentation is in the festival-doc package now.  This is
+    from the prebuilt festdoc package provided upstream, as it appears to
+    be quite impossible to build the docs without a specially modified
+    version of doc++ (boooooo)
+
+ -- David Huggins-Daines <dhd@debian.org>  Sat,  6 Nov 1999 20:05:18 -0500
+
+festival (1.3.1-4) unstable; urgency=low
+
+  * Now installs festival.el properly.  Also, did s/stml/sable/g.  Run
+    "say-minor-mode" to get a nice menu for reading your buffers.
+  * Also builds info documentation (this creates a rather nasty source
+    dependency on the voice packages, which I'll try to fix ASAP)
+  * Also builds C++ API documentation in HTML.
+  * Renamed ppc_Linux.mak to powerpc_Linux.mak (doh!)
+  * Work around some RXP weirdness with respect to the location of the
+    Sable DTD.  (a real fix will have to wait until a standalone RXP is
+    packaged and we can link against it)
+
+ -- David Huggins-Daines <dhd@debian.org>  Fri, 28 May 1999 00:15:49 -0400
+
+festival (1.3.1-3) unstable; urgency=low
+
+  * Cleaned out the Debian diff a bit
+  * Added some .mak files that may or may not allow the package to
+    build on non-i386 platforms.
+  * Installing the Sable DTD with sgml-base now, so that it works
+    automagically with Emacs, nsgmls, and the like.
+
+ -- David Huggins-Daines <dhd@debian.org>  Tue,  4 May 1999 18:40:00 -0400
+
+festival (1.3.1-2.1) unstable; urgency=low
+
+  * Fixed it to compile with glibc 2.1.
+  * Recompiled so it _works_ under glibc 2.1, without random crashes.
+
+ -- Joey Hess <joeyh@master.debian.org>  Fri, 26 Mar 1999 21:42:29 -0800
+
+festival (1.3.1-2) unstable; urgency=low
+
+  * Changed the name of ellpc16k to ellpc11k.
+  * Recommend the kallpc* packages too.
+  * Modified voices.scm so it will support the kal voice too.
+
+ -- Joey Hess <joeyh@master.debian.org>  Sun, 31 Jan 1999 19:47:30 -0800
+
+festival (1.3.1-1) unstable; urgency=low
+
+  * New upstream version.
+  * Linked dynamically to new speech tools libraries.
+  * Added festival-dev package (#32058).x
+
+ -- Joey Hess <joeyh@master.debian.org>  Thu, 28 Jan 1999 22:12:22 -0800
+
+festival (1.3.0-3) unstable; urgency=low
+
+  * Include Sable.v0_2.dtd in the lib directory (#31304).
+
+ -- Joey Hess <joeyh@master.debian.org>  Tue,  5 Jan 1999 14:20:41 -0800
+
+festival (1.3.0-2) unstable; urgency=low
+
+  * Made short description not start with package name.
+
+ -- Joey Hess <joeyh@master.debian.org>  Mon, 31 Aug 1998 13:40:35 -0700
+
+festival (1.3.0-1) unstable; urgency=low
+
+  * New upstream release.
+  * Updated copyright file.
+  * Currently depends on xlib6, I think this is due to a bug in nas.
+
+ -- Joey Hess <joeyh@master.debian.org>  Wed, 26 Aug 1998 15:57:21 -0700
+
+festival (1.2.1-9) unstable; urgency=low
+
+  * Corrected name of festvox-kdlpc16 in control file (#23886).
+
+ -- Joey Hess <joeyh@master.debian.org>  Thu, 25 Jun 1998 11:14:52 -0700
+
+festival (1.2.1-8) unstable; urgency=low
+
+  * Added nas support (#22359). Disabled by default, edit /etc/festival.scm
+    to enable.
+
+ -- Joey Hess <joeyh@master.debian.org>  Wed, 13 May 1998 19:09:48 -0700
+
+festival (1.2.1-7) unstable; urgency=low
+
+  * Rebuilt linked to a version of speech-tools that supports linux16
+    audio. However, it will continue to use 8 bit audio by default.
+  * Added a /etc/festival.scm (equivialnt to siteinit.scm that may be
+    referred to in festival's documentation) to make it easy to switch to 
+    16 bit sound (part of #22359).
+
+ -- Joey Hess <joeyh@master.debian.org>  Tue, 12 May 1998 12:44:17 -0700
+
+festival (1.2.1-6) unstable; urgency=low
+
+  * Removed old unused debian/config file.
+  * Do not compress some examples that are executables.
+
+ -- Joey Hess <joeyh@master.debian.org>  Sun,  8 Mar 1998 20:36:38 -0800
+
+festival (1.2.1-5) unstable; urgency=low
+
+  * Fixed package descrption spelling (#18973).
+
+ -- Joey Hess <joeyh@master.debian.org>  Thu,  5 Mar 1998 17:03:48 -0800
+
+festival (1.2.1-4) unstable; urgency=low
+
+  * New standards-version.
+  * Rebuilt with debhlper 0.60 to fix many mode 444 and 555 files.
+  * Moved audsp to /usr/lib/festival/audsp, becuase it's an internal command
+    I don't want to write a man page for.
+
+ -- Joey Hess <joeyh@master.debian.org>  Mon,  9 Feb 1998 14:42:55 -0800
+
+festival (1.2.1-3) unstable; urgency=low
+
+  * Applied patch from author to fix segfault problem (#16188).
+
+ -- Joey Hess <joeyh@master.debian.org>  Tue, 23 Dec 1997 11:04:10 -0500
+
+festival (1.2.1-2) unstable; urgency=low
+
+  * token.cc: Applied patch to fix number pronounciation (#15919).
+  * tts.scm: Fixed to call nsgmls, not nsgmls-1.0 (#15928).
+
+ -- Joey Hess <joeyh@master.debian.org>  Sun, 14 Dec 1997 13:33:33 -0500
+
+festival (1.2.1-1) unstable; urgency=low
+
+  * New upstream release.
+  * Split out speech-tools sources, so I could use pristine sources.
+  * Use debhelper.
+  * Fixed some examples files to work with modified festival paths.
+  * examples/benchmark: default to reading /usr/doc/festival/README.
+  * lib/voices.scm: added el_diphone to the voice search list, so
+    festvox-ellpc16k will work.
+
+ -- Joey Hess <joeyh@master.debian.org>  Sun, 26 Oct 1997 23:34:42 -0500
+
+festival (1.1.1-1) unstable; urgency=low
+
+  * First release.
+
+ -- Joey Hess <joeyh@master.debian.org>  Mon, 14 Jul 1997 23:29:25 -0400
+
+
 
design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
current maintainer: Michael Shigorin