summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2003-12-09 05:29:17 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2003-12-09 05:29:17 +0800
commitd7a20565431df554989f92db5189d9eeac486d00 (patch)
tree3edc981baaa15bac1353ff8e0d6b2e6ccba46b3b
parentc51f23ea80d2b5e5f6f4f3fcdad88e42969decd1 (diff)
downloadmarcuscom-ports-d7a20565431df554989f92db5189d9eeac486d00.tar
marcuscom-ports-d7a20565431df554989f92db5189d9eeac486d00.tar.gz
marcuscom-ports-d7a20565431df554989f92db5189d9eeac486d00.tar.bz2
marcuscom-ports-d7a20565431df554989f92db5189d9eeac486d00.tar.lz
marcuscom-ports-d7a20565431df554989f92db5189d9eeac486d00.tar.xz
marcuscom-ports-d7a20565431df554989f92db5189d9eeac486d00.tar.zst
marcuscom-ports-d7a20565431df554989f92db5189d9eeac486d00.zip
Update to 0.3.0.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@1414 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r--accessibility/gnome-speech/Makefile38
-rw-r--r--accessibility/gnome-speech/distinfo1
-rw-r--r--accessibility/gnome-speech/files/patch-ltmain.sh51
-rw-r--r--accessibility/gnome-speech/pkg-descr1
-rw-r--r--accessibility/gnome-speech/pkg-plist18
-rw-r--r--accessibility/gnomespeech/Makefile38
-rw-r--r--accessibility/gnomespeech/distinfo1
-rw-r--r--accessibility/gnomespeech/files/patch-ltmain.sh51
-rw-r--r--accessibility/gnomespeech/pkg-descr1
-rw-r--r--accessibility/gnomespeech/pkg-plist18
10 files changed, 218 insertions, 0 deletions
diff --git a/accessibility/gnome-speech/Makefile b/accessibility/gnome-speech/Makefile
new file mode 100644
index 000000000..d0481bbf6
--- /dev/null
+++ b/accessibility/gnome-speech/Makefile
@@ -0,0 +1,38 @@
+# New ports collection makefile for: gnomespeech
+# Date created: 11 May 2003
+# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
+#
+# $FreeBSD: ports/audio/gnomespeech/Makefile,v 1.2 2003/11/17 12:28:51 trevor Exp $
+#
+
+PORTNAME= gnomespeech
+PORTVERSION= 0.3.0
+CATEGORIES= audio gnome accessibility
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= sources/gnome-speech/0.3
+DISTNAME= gnome-speech-${PORTVERSION}
+DIST_SUBDIR= gnome2
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= GNOME text-to-speech API
+
+USE_BZIP2= 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>
diff --git a/accessibility/gnome-speech/distinfo b/accessibility/gnome-speech/distinfo
new file mode 100644
index 000000000..590d0819a
--- /dev/null
+++ b/accessibility/gnome-speech/distinfo
@@ -0,0 +1 @@
+MD5 (gnome2/gnome-speech-0.3.0.tar.bz2) = 2741ae0784ab59a79c9b05f19e057eb9
diff --git a/accessibility/gnome-speech/files/patch-ltmain.sh b/accessibility/gnome-speech/files/patch-ltmain.sh
new file mode 100644
index 000000000..be26a38ad
--- /dev/null
+++ b/accessibility/gnome-speech/files/patch-ltmain.sh
@@ -0,0 +1,51 @@
+--- ltmain.sh.orig Fri May 2 16:51:22 2003
++++ ltmain.sh Tue May 20 15:31:37 2003
+@@ -1277,7 +1277,7 @@
+ esac
+ elif test "X$arg" = "X-lc_r"; then
+ case $host in
+- *-*-openbsd* | *-*-freebsd*)
++ *-*-openbsd* | *-*-freebsd4*)
+ # Do not include libc_r directly, use -pthread flag.
+ continue
+ ;;
+@@ -1287,8 +1287,16 @@
+ continue
+ ;;
+
++ -pthread)
++ compile_command="$compile_command -pthread"
++ finalize_command="$finalize_command -pthread"
++ compiler_flags="$compiler_flags -pthread"
++ continue
++ ;;
++
+ -module)
+ module=yes
++ build_old_libs=no
+ continue
+ ;;
+
+@@ -2997,6 +3005,9 @@
+ # problems, so we reset it completely
+ verstring=
+ ;;
++ *-*-freebsd*)
++ # FreeBSD doesn't need this...
++ ;;
+ *)
+ verstring="0.0"
+ ;;
+@@ -5425,10 +5436,12 @@
+ fi
+
+ # Install the pseudo-library for information purposes.
++ if /usr/bin/false; then
+ name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
+ instname="$dir/$name"i
+ $show "$install_prog $instname $destdir/$name"
+ $run eval "$install_prog $instname $destdir/$name" || exit $?
++ fi
+
+ # Maybe install the static library, too.
+ test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
diff --git a/accessibility/gnome-speech/pkg-descr b/accessibility/gnome-speech/pkg-descr
new file mode 100644
index 000000000..bab24f601
--- /dev/null
+++ b/accessibility/gnome-speech/pkg-descr
@@ -0,0 +1 @@
+GNOME Speech is a simple general API for producing text-to-speech output.
diff --git a/accessibility/gnome-speech/pkg-plist b/accessibility/gnome-speech/pkg-plist
new file mode 100644
index 000000000..1c6614848
--- /dev/null
+++ b/accessibility/gnome-speech/pkg-plist
@@ -0,0 +1,18 @@
+bin/festival-synthesis-driver
+bin/test-speech
+include/gnome-speech-1.0/gnome-speech/GNOME_Speech.h
+include/gnome-speech-1.0/gnome-speech/gnome-speech.h
+include/gnome-speech-1.0/gnome-speech/speaker.h
+lib/libgnomespeech.a
+lib/libgnomespeech.so
+lib/libgnomespeech.so.7
+lib/orbit-2.0/GNOME_Speech_module.so
+libdata/bonobo/servers/GNOME_Speech_SynthesisDriver_Festival.server
+libdata/pkgconfig/gnome-speech-1.0.pc
+share/idl/gnome-speech-1.0/GNOME_Speech.idl
+share/idl/gnome-speech-1.0/GNOME_Speech_Speaker.idl
+share/idl/gnome-speech-1.0/GNOME_Speech_SpeechCallback.idl
+share/idl/gnome-speech-1.0/GNOME_Speech_SynthesisDriver.idl
+@dirrm share/idl/gnome-speech-1.0
+@dirrm include/gnome-speech-1.0/gnome-speech
+@dirrm include/gnome-speech-1.0
diff --git a/accessibility/gnomespeech/Makefile b/accessibility/gnomespeech/Makefile
new file mode 100644
index 000000000..d0481bbf6
--- /dev/null
+++ b/accessibility/gnomespeech/Makefile
@@ -0,0 +1,38 @@
+# New ports collection makefile for: gnomespeech
+# Date created: 11 May 2003
+# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
+#
+# $FreeBSD: ports/audio/gnomespeech/Makefile,v 1.2 2003/11/17 12:28:51 trevor Exp $
+#
+
+PORTNAME= gnomespeech
+PORTVERSION= 0.3.0
+CATEGORIES= audio gnome accessibility
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= sources/gnome-speech/0.3
+DISTNAME= gnome-speech-${PORTVERSION}
+DIST_SUBDIR= gnome2
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= GNOME text-to-speech API
+
+USE_BZIP2= 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>
diff --git a/accessibility/gnomespeech/distinfo b/accessibility/gnomespeech/distinfo
new file mode 100644
index 000000000..590d0819a
--- /dev/null
+++ b/accessibility/gnomespeech/distinfo
@@ -0,0 +1 @@
+MD5 (gnome2/gnome-speech-0.3.0.tar.bz2) = 2741ae0784ab59a79c9b05f19e057eb9
diff --git a/accessibility/gnomespeech/files/patch-ltmain.sh b/accessibility/gnomespeech/files/patch-ltmain.sh
new file mode 100644
index 000000000..be26a38ad
--- /dev/null
+++ b/accessibility/gnomespeech/files/patch-ltmain.sh
@@ -0,0 +1,51 @@
+--- ltmain.sh.orig Fri May 2 16:51:22 2003
++++ ltmain.sh Tue May 20 15:31:37 2003
+@@ -1277,7 +1277,7 @@
+ esac
+ elif test "X$arg" = "X-lc_r"; then
+ case $host in
+- *-*-openbsd* | *-*-freebsd*)
++ *-*-openbsd* | *-*-freebsd4*)
+ # Do not include libc_r directly, use -pthread flag.
+ continue
+ ;;
+@@ -1287,8 +1287,16 @@
+ continue
+ ;;
+
++ -pthread)
++ compile_command="$compile_command -pthread"
++ finalize_command="$finalize_command -pthread"
++ compiler_flags="$compiler_flags -pthread"
++ continue
++ ;;
++
+ -module)
+ module=yes
++ build_old_libs=no
+ continue
+ ;;
+
+@@ -2997,6 +3005,9 @@
+ # problems, so we reset it completely
+ verstring=
+ ;;
++ *-*-freebsd*)
++ # FreeBSD doesn't need this...
++ ;;
+ *)
+ verstring="0.0"
+ ;;
+@@ -5425,10 +5436,12 @@
+ fi
+
+ # Install the pseudo-library for information purposes.
++ if /usr/bin/false; then
+ name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
+ instname="$dir/$name"i
+ $show "$install_prog $instname $destdir/$name"
+ $run eval "$install_prog $instname $destdir/$name" || exit $?
++ fi
+
+ # Maybe install the static library, too.
+ test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
diff --git a/accessibility/gnomespeech/pkg-descr b/accessibility/gnomespeech/pkg-descr
new file mode 100644
index 000000000..bab24f601
--- /dev/null
+++ b/accessibility/gnomespeech/pkg-descr
@@ -0,0 +1 @@
+GNOME Speech is a simple general API for producing text-to-speech output.
diff --git a/accessibility/gnomespeech/pkg-plist b/accessibility/gnomespeech/pkg-plist
new file mode 100644
index 000000000..1c6614848
--- /dev/null
+++ b/accessibility/gnomespeech/pkg-plist
@@ -0,0 +1,18 @@
+bin/festival-synthesis-driver
+bin/test-speech
+include/gnome-speech-1.0/gnome-speech/GNOME_Speech.h
+include/gnome-speech-1.0/gnome-speech/gnome-speech.h
+include/gnome-speech-1.0/gnome-speech/speaker.h
+lib/libgnomespeech.a
+lib/libgnomespeech.so
+lib/libgnomespeech.so.7
+lib/orbit-2.0/GNOME_Speech_module.so
+libdata/bonobo/servers/GNOME_Speech_SynthesisDriver_Festival.server
+libdata/pkgconfig/gnome-speech-1.0.pc
+share/idl/gnome-speech-1.0/GNOME_Speech.idl
+share/idl/gnome-speech-1.0/GNOME_Speech_Speaker.idl
+share/idl/gnome-speech-1.0/GNOME_Speech_SpeechCallback.idl
+share/idl/gnome-speech-1.0/GNOME_Speech_SynthesisDriver.idl
+@dirrm share/idl/gnome-speech-1.0
+@dirrm include/gnome-speech-1.0/gnome-speech
+@dirrm include/gnome-speech-1.0