diff options
author | marcus <marcus@FreeBSD.org> | 2003-09-18 07:01:13 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-09-18 07:01:13 +0000 |
commit | baf223d17f3d580966ee6fe7c898f5abd5d6c274 (patch) | |
tree | 12bf0a7861f8b12e4252c9f6ff9fb163cb6cb041 /accessibility/gnomespeech/Makefile | |
parent | a2c767e3b36bc99e1bb220ce28ded4fa43eff88b (diff) | |
download | FreeBSD-ports-baf223d17f3d580966ee6fe7c898f5abd5d6c274.zip FreeBSD-ports-baf223d17f3d580966ee6fe7c898f5abd5d6c274.tar.gz |
Add gnomespeech, a library that facilitates text-to-speech for the GNOME
desktop.
Diffstat (limited to 'accessibility/gnomespeech/Makefile')
-rw-r--r-- | accessibility/gnomespeech/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/accessibility/gnomespeech/Makefile b/accessibility/gnomespeech/Makefile new file mode 100644 index 0000000..c1cceca --- /dev/null +++ b/accessibility/gnomespeech/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: gnomespeech +# Date created: 11 May 2003 +# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= gnomespeech +PORTVERSION= 0.2.7 +CATEGORIES= audio gnome accessibility +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 + +USE_BZIP2= yes +USE_REINPLACE= yes +USE_GMAKE= yes +USE_GNOME= gnomehack libbonobo +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" + +.include <bsd.port.pre.mk> + +.if exists(${LOCALBASE}/bin/festival) +WITH_FESTIVAL= yes +.endif + +.if defined(WITH_FESTIVAL) +RUN_DEPENDS= festival:${PORTSDIR}/audio/festival +.endif + +.include <bsd.port.post.mk> |