[Midnightbsd-cvs] mports [17842] trunk/accessibility: speech dispatcher
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Tue Nov 11 21:01:57 EST 2014
Revision: 17842
http://svnweb.midnightbsd.org/mports/?rev=17842
Author: laffer1
Date: 2014-11-11 21:01:56 -0500 (Tue, 11 Nov 2014)
Log Message:
-----------
speech dispatcher
Modified Paths:
--------------
trunk/accessibility/Makefile
Added Paths:
-----------
trunk/accessibility/speech-dispatcher/
trunk/accessibility/speech-dispatcher/Makefile
trunk/accessibility/speech-dispatcher/distinfo
trunk/accessibility/speech-dispatcher/files/
trunk/accessibility/speech-dispatcher/files/patch-include__spd_utils.h
trunk/accessibility/speech-dispatcher/files/patch-src__clients__spdsend__server.c
trunk/accessibility/speech-dispatcher/files/patch-src__common__spd_getline.c
trunk/accessibility/speech-dispatcher/files/patch-src__modules__cicero.c
trunk/accessibility/speech-dispatcher/files/patch-src__server__output.c
trunk/accessibility/speech-dispatcher/files/patch-src__server__sem_functions.c
trunk/accessibility/speech-dispatcher/files/patch-src__server__speaking.c
trunk/accessibility/speech-dispatcher/files/patch-src__server__speechd.h
trunk/accessibility/speech-dispatcher/pkg-descr
trunk/accessibility/speech-dispatcher/pkg-plist
Modified: trunk/accessibility/Makefile
===================================================================
--- trunk/accessibility/Makefile 2014-11-12 01:58:29 UTC (rev 17841)
+++ trunk/accessibility/Makefile 2014-11-12 02:01:56 UTC (rev 17842)
@@ -18,5 +18,6 @@
SUBDIR += mousetweaks
SUBDIR += orca
SUBDIR += qt4-accessible
+SUBDIR += speech-dispatcher
.include <bsd.port.subdir.mk>
Added: trunk/accessibility/speech-dispatcher/Makefile
===================================================================
--- trunk/accessibility/speech-dispatcher/Makefile (rev 0)
+++ trunk/accessibility/speech-dispatcher/Makefile 2014-11-12 02:01:56 UTC (rev 17842)
@@ -0,0 +1,87 @@
+# $MidnightBSD$
+# $FreeBSD: head/accessibility/speech-dispatcher/Makefile 371241 2014-10-20 08:12:20Z marino $
+
+PORTNAME= speech-dispatcher
+PORTVERSION= 0.8
+CATEGORIES= accessibility audio
+MASTER_SITES= http://devel.freebsoft.org/pub/projects/speechd/
+
+MAINTAINER= ports at MidnightBSD.org
+COMMENT= Common interface to speech synthesis
+
+LICENSE= gpl2 lgpl2.1
+LICENSE_COMB= multi
+
+LIB_DEPENDS= libdotconf.so:${PORTSDIR}/devel/dotconf \
+ libltdl.so:${PORTSDIR}/devel/libltdl \
+ libsndfile.so:${PORTSDIR}/audio/libsndfile
+
+# gnomehier is required because of share/sounds directory.
+USE_GNOME= glib20 gnomehier intltool
+USES= alias gettext gmake pathfix pkgconfig libtool
+GNU_CONFIGURE= yes
+CFLAGS+= -I${LOCALBASE}/include
+LDFLAGS+= -L${LOCALBASE}/lib
+USE_LDCONFIG= yes
+
+ETCFILES= clients/emacs.conf clients/gnome-speech.conf \
+ modules/cicero.conf modules/dtk-generic.conf \
+ modules/epos-generic.conf modules/espeak-generic.conf \
+ modules/espeak-mbrola-generic.conf modules/espeak.conf \
+ modules/festival.conf modules/flite.conf modules/ibmtts.conf \
+ modules/ivona.conf modules/llia_phon-generic.conf \
+ modules/swift-generic.conf speechd.conf
+
+PLIST_SUB+= ETCFILES="${ETCFILES}"
+
+PORTDOCS= AUTHORS ChangeLog FAQ INSTALL NEWS README TODO
+
+INFO= spd-say speech-dispatcher ssip
+
+OPTIONS_DEFINE= ALSA AO DOCS ESPEAK FESTIVAL FLITE NAS PULSEAUDIO #PYTHON
+OPTIONS_DEFAULT=ESPEAK
+OPTIONS_SUB= yes
+
+ALSA_LIB_DEPENDS= libasound.so:${PORTSDIR}/audio/alsa-lib
+ALSA_CONFIGURE_WITH= alsa
+
+AO_LIB_DEPENDS= libao.so:${PORTSDIR}/audio/libao
+AO_CONFIGURE_WITH= libao
+
+ESPEAK_DESC= eSpeak speech synthesizer support
+ESPEAK_LIB_DEPENDS= libespeak.so:${PORTSDIR}/audio/espeak
+ESPEAK_CONFIGURE_WITH= espeak
+
+FESTIVAL_DESC= Festival Speech Synthesis System support
+FESTIVAL_RUN_DEPENDS= festival:${PORTSDIR}/audio/festival \
+ ${LOCALBASE}/share/festival/lib/${PORTNAME}.scm:${PORTSDIR}/audio/festival-freebsoft-utils
+
+FLITE_DESC= Flite speech synthesis engine support
+FLITE_LIB_DEPENDS= libflite.so:${PORTSDIR}/audio/flite
+FLITE_CONFIGURE_WITH= flite
+
+NAS_LIB_DEPENDS= libaudio.so:${PORTSDIR}/audio/nas
+NAS_CONFIGURE_WITH= nas
+
+PULSEAUDIO_LIB_DEPENDS= libpulse.so:${PORTSDIR}/audio/pulseaudio
+PULSEAUDIO_CONFIGURE_WITH=pulse
+
+# devel/py-xdg doesn't support Python 3.
+CONFIGURE_ARGS+= --disable-python
+PLIST_SUB+= PYTHON="@comment "
+#PYTHON_RUN_DEPENDS= ${PYTHON_SITELIBDIR}/xdg/__init__.py:${PORTSDIR}/devel/py-xdg
+#PYTHON_USE= PYTHON=3
+#PYTHON_CONFIGURE_ENABLE=python
+
+post-patch:
+ @${REINPLACE_CMD} -e '/SUBDIRS/ s/tests//' \
+ ${WRKSRC}/src/Makefile.in
+
+post-install:
+.for f in ${ETCFILES}
+ @${MV} ${ETCDIR}/${f} ${ETCDIR}/${f}.sample
+.endfor
+ ${MKDIR} ${DOCSDIR}
+ ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
+
+.include <bsd.port.mk>
Property changes on: trunk/accessibility/speech-dispatcher/Makefile
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/accessibility/speech-dispatcher/distinfo
===================================================================
--- trunk/accessibility/speech-dispatcher/distinfo (rev 0)
+++ trunk/accessibility/speech-dispatcher/distinfo 2014-11-12 02:01:56 UTC (rev 17842)
@@ -0,0 +1,2 @@
+SHA256 (speech-dispatcher-0.8.tar.gz) = 0a6ce544cfbac8592a8ea08e3ab24c389153904ea51c6fd68756cea52de9efa2
+SIZE (speech-dispatcher-0.8.tar.gz) = 1229312
Property changes on: trunk/accessibility/speech-dispatcher/distinfo
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/accessibility/speech-dispatcher/files/patch-include__spd_utils.h
===================================================================
--- trunk/accessibility/speech-dispatcher/files/patch-include__spd_utils.h (rev 0)
+++ trunk/accessibility/speech-dispatcher/files/patch-include__spd_utils.h 2014-11-12 02:01:56 UTC (rev 17842)
@@ -0,0 +1,11 @@
+--- ./include/spd_utils.h.orig 2012-07-11 11:05:05.000000000 +0200
++++ ./include/spd_utils.h 2013-11-15 08:46:53.865350816 +0100
+@@ -27,4 +27,8 @@
+ #include <sys/types.h>
+
+ ssize_t spd_getline(char **lineptr, size_t * n, FILE * f);
++
++ssize_t safe_read(int fd, void *buf, size_t count);
++ssize_t safe_write(int fd, const void *buf, size_t count);
++
+ #endif /* SPD_UTILS_H */
Property changes on: trunk/accessibility/speech-dispatcher/files/patch-include__spd_utils.h
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/accessibility/speech-dispatcher/files/patch-src__clients__spdsend__server.c
===================================================================
--- trunk/accessibility/speech-dispatcher/files/patch-src__clients__spdsend__server.c (rev 0)
+++ trunk/accessibility/speech-dispatcher/files/patch-src__clients__spdsend__server.c 2014-11-12 02:01:56 UTC (rev 17842)
@@ -0,0 +1,10 @@
+--- ./src/clients/spdsend/server.c.orig 2012-07-11 11:05:05.000000000 +0200
++++ ./src/clients/spdsend/server.c 2013-11-15 08:44:05.105354858 +0100
+@@ -33,6 +33,7 @@
+
+ #include <errno.h>
+ #include <netdb.h>
++#include <sys/types.h>
+ #include <netinet/in.h>
+ #include <netinet/tcp.h>
+ #if USE_THREADS
Property changes on: trunk/accessibility/speech-dispatcher/files/patch-src__clients__spdsend__server.c
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/accessibility/speech-dispatcher/files/patch-src__common__spd_getline.c
===================================================================
--- trunk/accessibility/speech-dispatcher/files/patch-src__common__spd_getline.c (rev 0)
+++ trunk/accessibility/speech-dispatcher/files/patch-src__common__spd_getline.c 2014-11-12 02:01:56 UTC (rev 17842)
@@ -0,0 +1,34 @@
+--- ./src/common/spd_getline.c.orig 2012-07-11 11:05:05.000000000 +0200
++++ ./src/common/spd_getline.c 2013-11-15 11:25:07.125139008 +0100
+@@ -26,6 +26,7 @@
+
+ #include <stdio.h>
+ #include <stdlib.h>
++#include <unistd.h>
+ #include <errno.h>
+ #include <limits.h>
+ #include <glib.h>
+@@ -122,3 +123,23 @@
+ }
+ return buf_pos;
+ }
++
++ssize_t
++safe_read(int fd, void *buf, size_t count)
++{
++ ssize_t r;
++ do {
++ r = read(fd, buf, count);
++ } while (r == -1 && errno == EINTR);
++ return r;
++}
++
++ssize_t
++safe_write(int fd, const void *buf, size_t count)
++{
++ ssize_t w;
++ do {
++ w = write(fd, buf, count);
++ } while (w == -1 && errno == EINTR);
++ return w;
++}
Property changes on: trunk/accessibility/speech-dispatcher/files/patch-src__common__spd_getline.c
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/accessibility/speech-dispatcher/files/patch-src__modules__cicero.c
===================================================================
--- trunk/accessibility/speech-dispatcher/files/patch-src__modules__cicero.c (rev 0)
+++ trunk/accessibility/speech-dispatcher/files/patch-src__modules__cicero.c 2014-11-12 02:01:56 UTC (rev 17842)
@@ -0,0 +1,21 @@
+--- ./src/modules/cicero.c.orig 2012-07-11 11:05:05.000000000 +0200
++++ ./src/modules/cicero.c 2013-11-15 08:51:41.687674164 +0100
+@@ -32,6 +32,7 @@
+ #include <langinfo.h>
+ #include <sys/stat.h>
+ #include <semaphore.h>
++#include <spd_utils.h>
+
+ #include "module_utils.h"
+
+@@ -377,9 +378,7 @@
+ break;
+ }
+ if (ret > 0)
+- TEMP_FAILURE_RETRY(read
+- (fd1[0], b,
+- 2));
++ safe_read(fd1[0], b, 2);
+ if (cicero_stop) {
+ cicero_speaking = 0;
+ module_report_event_stop();
Property changes on: trunk/accessibility/speech-dispatcher/files/patch-src__modules__cicero.c
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/accessibility/speech-dispatcher/files/patch-src__server__output.c
===================================================================
--- trunk/accessibility/speech-dispatcher/files/patch-src__server__output.c (rev 0)
+++ trunk/accessibility/speech-dispatcher/files/patch-src__server__output.c 2014-11-12 02:01:56 UTC (rev 17842)
@@ -0,0 +1,25 @@
+--- ./src/server/output.c.orig 2012-07-11 11:05:06.000000000 +0200
++++ ./src/server/output.c 2013-11-15 11:18:27.066817985 +0100
+@@ -30,22 +30,9 @@
+ #include "output.h"
+ #include "parse.h"
+
+-#ifdef TEMP_FAILURE_RETRY /* GNU libc */
+-#define safe_write(fd, buf, count) TEMP_FAILURE_RETRY(write(fd, buf, count))
+-#else /* TEMP_FAILURE_RETRY */
+ #ifdef HAVE_UNISTD_H
+ #include <unistd.h>
+ #endif
+-static inline ssize_t
+-safe_write(int fd, const void *buf, size_t count) {
+- do {
+- ssize_t w = write(fd, buf, count);
+-
+- if (w == -1 && errno == EINTR) continue;
+- return w;
+- } while (1);
+-}
+-#endif /* TEMP_FAILURE_RETRY */
+
+ #if !(defined(__GLIBC__) && defined(_GNU_SOURCE))
+ /* Added by Willie Walker - strndup is a gcc-ism
Property changes on: trunk/accessibility/speech-dispatcher/files/patch-src__server__output.c
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/accessibility/speech-dispatcher/files/patch-src__server__sem_functions.c
===================================================================
--- trunk/accessibility/speech-dispatcher/files/patch-src__server__sem_functions.c (rev 0)
+++ trunk/accessibility/speech-dispatcher/files/patch-src__server__sem_functions.c 2014-11-12 02:01:56 UTC (rev 17842)
@@ -0,0 +1,18 @@
+--- ./src/server/sem_functions.c.orig 2012-07-11 11:05:06.000000000 +0200
++++ ./src/server/sem_functions.c 2013-11-15 11:19:15.965146025 +0100
+@@ -28,13 +28,13 @@
+
+ #include "speechd.h"
+ #include "sem_functions.h"
++#include <spd_utils.h>
+
+ void speaking_semaphore_post(void)
+ {
+ char buf[1];
+ buf[0] = 42;
+- const ssize_t wr_bytes =
+- TEMP_FAILURE_RETRY(write(speaking_pipe[1], buf, 1));
++ const ssize_t wr_bytes = safe_write(speaking_pipe[1], buf, 1);
+ if (wr_bytes != 1)
+ FATAL("write to polled fd: could not write 1 byte");
+ }
Property changes on: trunk/accessibility/speech-dispatcher/files/patch-src__server__sem_functions.c
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/accessibility/speech-dispatcher/files/patch-src__server__speaking.c
===================================================================
--- trunk/accessibility/speech-dispatcher/files/patch-src__server__speaking.c (rev 0)
+++ trunk/accessibility/speech-dispatcher/files/patch-src__server__speaking.c 2014-11-12 02:01:56 UTC (rev 17842)
@@ -0,0 +1,22 @@
+--- ./src/server/speaking.c.orig 2012-07-11 11:05:06.000000000 +0200
++++ ./src/server/speaking.c 2013-11-15 11:20:31.405951238 +0100
+@@ -39,6 +39,7 @@
+ #include "output.h"
+ #include "speaking.h"
+ #include "sem_functions.h"
++#include <spd_utils.h>
+
+ TSpeechDMessage *current_message = NULL;
+ static SPDPriority highest_priority = 0;
+@@ -87,10 +88,7 @@
+ char buf[1];
+ MSG(5,
+ "wait_for_poll: activity in Speech Dispatcher");
+- const ssize_t rd_bytes =
+- TEMP_FAILURE_RETRY(read
+- (poll_fds[0].fd, buf,
+- 1));
++ const ssize_t rd_bytes = safe_read(poll_fds[0].fd, buf, 1);
+ if (rd_bytes != 1)
+ FATAL
+ ("read from polled fd: could not read 1 byte");
Property changes on: trunk/accessibility/speech-dispatcher/files/patch-src__server__speaking.c
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/accessibility/speech-dispatcher/files/patch-src__server__speechd.h
===================================================================
--- trunk/accessibility/speech-dispatcher/files/patch-src__server__speechd.h (rev 0)
+++ trunk/accessibility/speech-dispatcher/files/patch-src__server__speechd.h 2014-11-12 02:01:56 UTC (rev 17842)
@@ -0,0 +1,11 @@
+--- ./src/server/speechd.h.orig 2012-07-11 11:05:06.000000000 +0200
++++ ./src/server/speechd.h 2013-11-15 08:44:05.115355454 +0100
+@@ -56,7 +56,7 @@
+ /* TODO: This fixes compilation for Mac OS X but might not be a correct
+ solution for other platforms. A better check is needed, possibly including
+ _POSIX_C_SOURCE and friends*/
+-#if (defined(__GNU_LIBRARY__) && !defined(_SEM_SEMUN_UNDEFINED)) || defined(__APPLE__)
++#if (defined(__GNU_LIBRARY__) && !defined(_SEM_SEMUN_UNDEFINED)) || defined(__APPLE__) || defined(__FreeBSD__)
+ /* union semun is defined by including <sys/sem.h> */
+ #else
+ /* according to X/OPEN we have to define it ourselves */
Property changes on: trunk/accessibility/speech-dispatcher/files/patch-src__server__speechd.h
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/accessibility/speech-dispatcher/pkg-descr
===================================================================
--- trunk/accessibility/speech-dispatcher/pkg-descr (rev 0)
+++ trunk/accessibility/speech-dispatcher/pkg-descr 2014-11-12 02:01:56 UTC (rev 17842)
@@ -0,0 +1,8 @@
+Speech Dispatcher is a device independent layer for speech synthesis,
+developed with the goal of making the usage of speech synthesis easier
+for application programmers. It takes care of most of the tasks
+necessary to solve in speech enabled applications. What is a very high
+level GUI library to graphics, Speech Dispatcher is to speech
+synthesis.
+
+WWW: http://devel.freebsoft.org/speechd
Property changes on: trunk/accessibility/speech-dispatcher/pkg-descr
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/accessibility/speech-dispatcher/pkg-plist
===================================================================
--- trunk/accessibility/speech-dispatcher/pkg-plist (rev 0)
+++ trunk/accessibility/speech-dispatcher/pkg-plist 2014-11-12 02:01:56 UTC (rev 17842)
@@ -0,0 +1,98 @@
+%%PYTHON%%bin/spd-conf
+bin/spd-say
+bin/spdsend
+bin/speech-dispatcher
+ at sample %%ETCDIR%%/clients/emacs.conf.sample
+ at sample %%ETCDIR%%/clients/gnome-speech.conf.sample
+ at sample %%ETCDIR%%/modules/cicero.conf.sample
+ at sample %%ETCDIR%%/modules/dtk-generic.conf.sample
+ at sample %%ETCDIR%%/modules/epos-generic.conf.sample
+ at sample %%ETCDIR%%/modules/espeak-generic.conf.sample
+ at sample %%ETCDIR%%/modules/espeak-mbrola-generic.conf.sample
+ at sample %%ETCDIR%%/modules/espeak.conf.sample
+ at sample %%ETCDIR%%/modules/festival.conf.sample
+ at sample %%ETCDIR%%/modules/flite.conf.sample
+ at sample %%ETCDIR%%/modules/ibmtts.conf.sample
+ at sample %%ETCDIR%%/modules/ivona.conf.sample
+ at sample %%ETCDIR%%/modules/llia_phon-generic.conf.sample
+ at sample %%ETCDIR%%/modules/swift-generic.conf.sample
+ at sample %%ETCDIR%%/speechd.conf.sample
+include/speech-dispatcher/libspeechd.h
+include/speech-dispatcher/spd_audio_plugin.h
+include/speech-dispatcher/speechd_types.h
+lib/libspeechd.a
+lib/libspeechd.so
+lib/libspeechd.so.2
+lib/libspeechd.so.2.4.0
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/speechd/__init__.py
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/speechd/__init__.pyc
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/speechd/__init__.pyo
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/speechd/_test.py
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/speechd/_test.pyc
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/speechd/_test.pyo
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/speechd/client.py
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/speechd/client.pyc
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/speechd/client.pyo
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/speechd/paths.py
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/speechd/paths.pyc
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/speechd/paths.pyo
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/speechd_config/__init__.py
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/speechd_config/__init__.pyc
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/speechd_config/__init__.pyo
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/speechd_config/config.py
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/speechd_config/config.pyc
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/speechd_config/config.pyo
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/speechd_config/paths.py
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/speechd_config/paths.pyc
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/speechd_config/paths.pyo
+lib/speech-dispatcher-modules/sd_cicero
+lib/speech-dispatcher-modules/sd_dummy
+%%ESPEAK%%lib/speech-dispatcher-modules/sd_espeak
+lib/speech-dispatcher-modules/sd_festival
+%%FLITE%%lib/speech-dispatcher-modules/sd_flite
+lib/speech-dispatcher-modules/sd_generic
+%%ALSA%%lib/speech-dispatcher/spd_alsa.a
+%%ALSA%%lib/speech-dispatcher/spd_alsa.so
+%%AO%%lib/speech-dispatcher/spd_libao.a
+%%AO%%lib/speech-dispatcher/spd_libao.so
+%%NAS%%lib/speech-dispatcher/spd_nas.a
+%%NAS%%lib/speech-dispatcher/spd_nas.so
+lib/speech-dispatcher/spd_oss.a
+lib/speech-dispatcher/spd_oss.so
+%%PULSEAUDIO%%lib/speech-dispatcher/spd_pulse.a
+%%PULSEAUDIO%%lib/speech-dispatcher/spd_pulse.so
+libdata/pkgconfig/speech-dispatcher.pc
+share/locale/cs/LC_MESSAGES/speech-dispatcher.mo
+share/locale/hu/LC_MESSAGES/speech-dispatcher.mo
+share/sounds/speech-dispatcher/dummy-message.wav
+%%PYTHON%%share/sounds/speech-dispatcher/test.wav
+%%DATADIR%%/conf/clients/emacs.conf
+%%DATADIR%%/conf/clients/gnome-speech.conf
+%%DATADIR%%/conf/modules/cicero.conf
+%%DATADIR%%/conf/modules/dtk-generic.conf
+%%DATADIR%%/conf/modules/epos-generic.conf
+%%DATADIR%%/conf/modules/espeak-generic.conf
+%%DATADIR%%/conf/modules/espeak-mbrola-generic.conf
+%%DATADIR%%/conf/modules/espeak.conf
+%%DATADIR%%/conf/modules/festival.conf
+%%DATADIR%%/conf/modules/flite.conf
+%%DATADIR%%/conf/modules/ibmtts.conf
+%%DATADIR%%/conf/modules/ivona.conf
+%%DATADIR%%/conf/modules/llia_phon-generic.conf
+%%DATADIR%%/conf/modules/swift-generic.conf
+%%DATADIR%%/conf/speechd.conf
+ at dirrm %%DATADIR%%/conf/modules
+ at dirrm %%DATADIR%%/conf/clients
+ at dirrm %%DATADIR%%/conf
+ at dirrm %%DATADIR%%
+ at dirrm share/sounds/speech-dispatcher
+ at dirrm lib/speech-dispatcher-modules
+ at dirrm lib/speech-dispatcher
+%%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/speechd_config
+%%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/speechd
+%%PYTHON%%@dirrmtry %%PYTHON_SITELIBDIR%%
+%%PYTHON%%@dirrmtry %%PYTHON_LIBDIR%%
+ at dirrm include/speech-dispatcher
+ at dirrmtry %%ETCDIR%%/modules
+ at dirrmtry %%ETCDIR%%/clients
+ at dirrmtry %%ETCDIR%%
Property changes on: trunk/accessibility/speech-dispatcher/pkg-plist
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
More information about the Midnightbsd-cvs
mailing list