diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2003-05-12 12:02:57 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2003-05-12 12:02:57 +0800 |
commit | 9c05c4f69822fe41e9fe5f17c277a2872009c542 (patch) | |
tree | 474c3010441cf5ad2d29fbaea6dd86a30a069bf3 /accessibility/gnome-speech/Makefile | |
parent | 6ec0a661259ed1075af3c5f312b0c618b974ee61 (diff) | |
download | marcuscom-ports-9c05c4f69822fe41e9fe5f17c277a2872009c542.tar marcuscom-ports-9c05c4f69822fe41e9fe5f17c277a2872009c542.tar.gz marcuscom-ports-9c05c4f69822fe41e9fe5f17c277a2872009c542.tar.bz2 marcuscom-ports-9c05c4f69822fe41e9fe5f17c277a2872009c542.tar.lz marcuscom-ports-9c05c4f69822fe41e9fe5f17c277a2872009c542.tar.xz marcuscom-ports-9c05c4f69822fe41e9fe5f17c277a2872009c542.tar.zst marcuscom-ports-9c05c4f69822fe41e9fe5f17c277a2872009c542.zip |
Add gnomespeech. Note, this is still very much in development. You will
need to either run a NAS server, or create a ~/.festivalrc file with
(Parameter.set 'Audio_Method 'esdaudio)
To get this to work. Also, be sure to install one or more of the
audio/festvox ports or you'll get a lot of zombies.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@750 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'accessibility/gnome-speech/Makefile')
-rw-r--r-- | accessibility/gnome-speech/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/accessibility/gnome-speech/Makefile b/accessibility/gnome-speech/Makefile new file mode 100644 index 000000000..7193361c1 --- /dev/null +++ b/accessibility/gnome-speech/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: gnomespeech +# Date created: 11 May 2003 +# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= gnomespeech +PORTVERSION= 0.2.1 +CATEGORIES= audio gnome +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/gnome_speech/0.2 +DISTNAME= gnome_speech-${PORTVERSION} +DIST_SUBDIR= gnome2 + +MAINTAINER= gnome@FreeBSD.org +COMMENT= GNOME text-to-speech API + +RUN_DEPENDS= festival:${PORTSDIR}/audio/festival + +USE_X_PREFIX= yes +USE_GNOME= gnomehack gnomeprefix libbonobo +USE_REINPLACE= yes +USE_GMAKE= yes +GNU_CONFIGURE= yes +INSTALLS_SHLIB= yes +CONFIGURE_ARGS= --enable-static +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" + +post-patch: + @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ + s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure + +.include <bsd.port.mk> |