Name: espeak Summary: Software speech synthesizer (text-to-speech) Version: 1.48.04 Release: 2%{?_dist_release} Group: Applications/Multimedia License: GPLv3+ URL: http://espeak.sourceforge.net Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}-source.zip # Upstream ticket: https://sourceforge.net/p/espeak/patches/10/ Source1: espeak.1 Patch0: espeak-1.47-makefile-nostaticlibs.patch Patch1: espeak-1.47-ftbs-ld-libm.patch # Upstream ticket: https://sourceforge.net/p/espeak/patches/10/ Patch2: espeak-1.48-help-fix.patch # Upstream ticket: https://sourceforge.net/p/espeak/bugs/105/ Patch3: espeak-1.47-wav-close.patch BuildRoot: %{_tmppath}/%{name}-%{version}-root BuildRequires: portaudio-devel BuildRequires: pulseaudio-libs-devel BuildRequires: gcc-c++ %description eSpeak is a software speech synthesizer for English and other languages. eSpeak produces good quality English speech. It uses a different synthesis method from other open source TTS engines, and sounds quite different. It's perhaps not as natural or "smooth", but some people may find the articulation clearer and easier to listen to for long periods. eSpeak supports several languages, however in most cases these are initial drafts and need more work to improve them. It can run as a command line program to speak text from a file or from stdin. #' %package devel Summary: Development files for %{name} Summary(ja): %{name} の開発用ファイル Group: Development/Libraries Requires: %{name} = %{version}-%{release} %description devel Development files for eSpeak, a software speech synthesizer. %prep %setup -q -n espeak-%{version}-source %patch0 -p1 -b .nostaticlibs %patch1 -p1 -b .ftbs-ld-libm %patch2 -p1 -b .help-fix %patch3 -p1 -b .wav-close # Fix file permissions find . -type f -exec chmod 0644 {} ";" # Prepare documentation rm -rf docs/images/.svn mv docs html sed -i 's/\r//' License.txt # Compile against portaudio v19 (see ReadMe) cp -f src/portaudio19.h src/portaudio.h # Don't use the included binary voice dictionaries; we compile these from source rm -f espeak-data/*_dict %build # Compile espeak cd src make %{?_smp_mflags} CXXFLAGS="$RPM_OPT_FLAGS" LDFLAGS="$RPM_LD_FLAGS" AUDIO=pulseaudio # Compile the TTS voice dictionaries export ESPEAK_DATA_PATH=$RPM_BUILD_DIR/espeak-%{version}-source cd ../dictsource # Strange sed regex to parse ambiguous output from 'speak --voices', filled upstream BZ 3608811 for voice in $(../src/speak --voices | \ LANG=C sed -n '/Age\/Gender/ ! s/ *[0-9]\+ *\([^ ]\+\) *M\? *[^ ]\+ *\(\((\|[A-Z]\)[^ ]\+\)\? *\([^ ]\+\).*/\1 \4/ p' | \ sort | uniq); do \ ../src/speak --compile=$voice; \ done %install rm -rf $RPM_BUILD_ROOT cd $RPM_BUILD_DIR/espeak-%{version}-source/src make install DESTDIR=$RPM_BUILD_ROOT BINDIR=%{_bindir} INCDIR=%{_includedir}/espeak LIBDIR=%{_libdir} # Install manpage mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1 cp -pf %{SOURCE1} $RPM_BUILD_ROOT%{_mandir}/man1/ %clean rm -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc $RPM_BUILD_DIR/espeak-%{version}-source/ReadMe $RPM_BUILD_DIR/espeak-%{version}-source/ChangeLog.txt $RPM_BUILD_DIR/espeak-%{version}-source/License.txt $RPM_BUILD_DIR/espeak-%{version}-source/html/ %{_mandir}/man1/espeak.1.gz %{_bindir}/espeak %{_datadir}/espeak-data %{_libdir}/libespeak.so.* %files devel %defattr(-,root,root) %{_libdir}/*.so %{_includedir}/espeak %changelog * Thu Sep 01 2016 Toshiaki Ara - 1.48.04-2 - rebuild with gcc-5.4.0 * Mon Dec 15 2014 Ryoichi INAGAKI - 1.48.04-1 - updated to 1.48.04 - replaced Patch0, 1, 2 and 3 based FC * Sun May 27 2012 Ryoichi INAGAKI - 1.43-4 - rebuilt with rpm-4.8.1-3 * Sun Mar 14 2010 Ryoichi INAGAKI - 1.43-3 - Initial build for Vine Linux * Thu Feb 18 2010 Francois Aucamp - 1.43-2 - Added patch declaring explicit libm linking dependency (RHBZ #565186) * Sat Feb 13 2010 Francois Aucamp - 1.43-1 - Update to version 1.43 - Added patch for runtime detection of pulseaudio, contributed by Kevin Kofler (RHBZ #512190) * Thu Dec 17 2009 Francois Aucamp - 1.42.04-1 - Update to version 1.42.04 - Revert: build against PortAudio instead of native PulseAudio (RHBZ #512190, #532674) * Fri Jul 24 2009 Fedora Release Engineering - 1.40.02-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Tue Jun 30 2009 Francois Aucamp - 1.40.02-2 - Compile against pulseaudio instead of portaudio (RHBZ #481651) * Mon Jun 22 2009 Francois Aucamp - 1.40.02-1 - Update to version 1.40.02 - Added patch to compile with GCC and not to link to libstdc++ (not needed) - Added manpage (thanks goes to Luke Yelavich from Ubuntu for writing it) * Tue Feb 24 2009 Fedora Release Engineering - 1.39-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Tue Oct 21 2008 Francois Aucamp - 1.39-1 - Update to version 1.39 * Tue Feb 26 2008 Francois Aucamp - 1.31-5 - Export ESPEAK_DATA_PATH in %%build to allow proper compilation of voice dictionaries * Tue Jan 29 2008 Francois Aucamp - 1.31-4 - Removed libjack patches as they are unnecessary * Tue Jan 29 2008 Francois Aucamp - 1.31-3 - Added "makefile_libjack" patch to link to libjack - Added BuildRequires: jack-audio-connection-kit-devel * Fri Jan 25 2008 Francois Aucamp - 1.31-2 - Removed espeakedit (and associated patches and BuildRequires) from package until all phoneme table compilation functions can be moved into espeak (or a separate commandline app without wxGTK dependencies) - Voices are still compiled from source, but using pre-compiled phoneme table from upstream until the above issue is resolved * Thu Jan 24 2008 Francois Aucamp - 1.31-1 - Update to version 1.31 - Compile phoneme tables and voice dictionaries from source instead of packaging pre-compiled binary data - Added espeakedit as Source1 - Added BuildRequires: wxGTK-devel for espeakedit - Added "makefile_rpmoptflags_wxversion" espeakedit patch to enable RPM_OPT_FLAGS and set the correct wxWidgets version - Added "espeak_data_path" espeakedit patch to be able to set control the source directory that espeakedit's compiler uses * Tue Jan 15 2008 Francois Aucamp - 1.30-1 - Update to version 1.30 - Removed local "synthdata_strlen" patch (included upstream) * Mon Aug 20 2007 Francois Aucamp - 1.28-1 - Update to version 1.28 - Added "synthdata_strlen" patch to fix memory allocation issue on x86_64 (RHBZ #252712) - Modified %%prep to build against portaudio v19 for F8 and later - Upstream license changed from GPLv2+ to GPLv3+ * Tue Jun 19 2007 Francois Aucamp - 1.26-1 - Update to version 1.26 - Modified %%prep to build against portaudio v19 * Tue Jun 05 2007 Francois Aucamp - 1.25-1 - Update to version 1.25 * Tue May 08 2007 Francois Aucamp - 1.24-1 - Update to version 1.24 * Tue Apr 24 2007 Francois Aucamp - 1.23-1 - Update to version 1.23 - Added "makefile_nostaticlibs" patch so static libraries aren't installed * Thu Feb 08 2007 Francois Aucamp - 1.20-1 - Update to version 1.20 - Solves stack smash bug (RHBZ #227316) * Fri Jan 26 2007 Francois Aucamp - 1.19-1 - Update to version 1.19 - Removed "espeak-1.18-makefile_lpthread" patch as it has been included upstream - Removed "espeak-1.18-makefile_smp" patch as it has been included upstream - Removed "espeak-1.18-ptr_64bit" patch as it has been solved upstream - Fixed espeak-data file permissions * Tue Jan 16 2007 Francois Aucamp - 1.18-2 - Created "espeak-1.18-ptr_64bit" patch to allow compilation on x86_64 (fixes 64-bit pointer issues) - Created "espeak-1.18-makefile_smp" patch to allow parallel make ("_smp_mflags") - Renamed "makefile_lpthread" patch to "espeak-1.18-makefile_lpthread" * Mon Jan 15 2007 Francois Aucamp - 1.18-1 - Update to version 1.18 - Dropped statically-linked "speak" executable (replaced by dynamically-linked "espeak" executable) - Removed the "espeak program name" patch as it has been included upstream - Removed "espeak program name" patch backup file cleanup from %%install - Minor modification to "makefile lpthread" patch to account for new lib/executable - Removed "BIN_NAME" variable from make in %%build (implemented upstream) * Mon Nov 20 2006 Francois Aucamp - 1.17-1 - Update to version 1.17 - Removed "makefile install target" patch as it has been included upstream - Removed "AMD64 sizeof(char *)" patch as it has been included upstream - Minor modification to "espeak program name" patch to allow patching current version * Tue Nov 07 2006 Francois Aucamp - 1.16-4 - Modified patch steps to create backups with different suffixes - Renamed patch file extensions to .patch - Added step in %%install to remove patch backup files in documentation * Sat Nov 04 2006 Francois Aucamp - 1.16-3 - Fixed source file permissions for -debuginfo package in %%prep - Added RPM_OPT_FLAGS to "make" command in %%build; removed RPM_OPT_FLAGS makefile patch - Modified makefile install target patch to include general support for setting compiler optimization flags via CXXFLAGS - Removed creation of .orig backup files during patching - Modified patch files to have different suffixes * Thu Nov 02 2006 Francois Aucamp - 1.16-2 - Added "install" target to makefile (makefile_install_target.patch) - Added patch to fix AMD64 sizeof(char *) assumption bug (upstream request ID 1588938) - Changed "portaudio" BuildRequires to "portaudio-devel" - Added patch to makefile to allow RPM_OPT_FLAGS - Added patch to replace all references to "speak" binary with "espeak" - Moved header files to /usr/include/espeak - Added rmdir command to "install" to remove empty soundicons directory * Wed Oct 04 2006 Francois Aucamp - 1.16-1 - Initial RPM build