diff options
author | drochner <drochner> | 2007-07-17 19:21:51 +0000 |
---|---|---|
committer | drochner <drochner> | 2007-07-17 19:21:51 +0000 |
commit | abe740ec43a95a6940da9b77677e3b93061cb27d (patch) | |
tree | c8d429a43cd38b8bc63f4c3fa5cabfe037394ac2 /audio | |
parent | 04611e031ac02f7690da6216b6525c7e6180d835 (diff) | |
download | pkgsrc-abe740ec43a95a6940da9b77677e3b93061cb27d.tar.gz |
add a patch which allows to build the espeak backend as a separate pkg
while still sharing patches and distinfo
(no change to the base pkg)
Diffstat (limited to 'audio')
-rw-r--r-- | audio/gnome-speech/distinfo | 3 | ||||
-rw-r--r-- | audio/gnome-speech/patches/patch-ac | 30 |
2 files changed, 32 insertions, 1 deletions
diff --git a/audio/gnome-speech/distinfo b/audio/gnome-speech/distinfo index aac87f744f2..3548303c71c 100644 --- a/audio/gnome-speech/distinfo +++ b/audio/gnome-speech/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.20 2007/07/17 10:26:57 drochner Exp $ +$NetBSD: distinfo,v 1.21 2007/07/17 19:21:51 drochner Exp $ SHA1 (gnome-speech-0.4.15.tar.bz2) = 6d386e3c32a14ed31581b2126c228741399aa91b RMD160 (gnome-speech-0.4.15.tar.bz2) = 249a3d528f30e989b8dfec87787f60d90ff371ae Size (gnome-speech-0.4.15.tar.bz2) = 331723 bytes SHA1 (patch-aa) = 039606f4e47be7d6e812687504a577fc149b5722 SHA1 (patch-ab) = 95750a125944a7071f2ea125d7e8d3e099edad47 +SHA1 (patch-ac) = f41764148c704983ec34224ba5d1409082064bf6 diff --git a/audio/gnome-speech/patches/patch-ac b/audio/gnome-speech/patches/patch-ac new file mode 100644 index 00000000000..a80d796d2bc --- /dev/null +++ b/audio/gnome-speech/patches/patch-ac @@ -0,0 +1,30 @@ +$NetBSD: patch-ac,v 1.1 2007/07/17 19:21:51 drochner Exp $ + +--- drivers/espeak/Makefile.in.orig 2007-07-09 15:20:12.000000000 +0200 ++++ drivers/espeak/Makefile.in +@@ -59,7 +59,6 @@ espeak_synthesis_driver_OBJECTS = \ + espeak_synthesis_driver_LDADD = $(LDADD) + am__DEPENDENCIES_1 = + espeak_synthesis_driver_DEPENDENCIES = \ +- $(top_builddir)/gnome-speech/libgnomespeech.la \ + $(am__DEPENDENCIES_1) + DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) + depcomp = $(SHELL) $(top_srcdir)/depcomp +@@ -274,13 +273,13 @@ INCLUDES = -I$(top_srcdir) \ + -I$(top_srcdir)/gnome-speech\ + $(gnome_speech_CFLAGS) \ + $(WARN_CFLAGS) \ +- -I$(espeak_INCLUDES) ++ -I$(espeak_INCLUDES) -I ${LOCALBASE}/include/gnome-speech-1.0 + +-LDADD = $(top_builddir)/gnome-speech/libgnomespeech.la \ ++LDADD = -L${LOCALBASE}/lib -Wl,-R${LOCALBASE}/lib -lgnomespeech \ + $(gnome_speech_LIBS) \ +- -L$(espeak_LIBDIR) \ ++ $(espeak_LIBS) \ + -lespeak \ +- -lstdc++ ++ -lstdc++ -lm + + espeak_synthesis_driver_SOURCES = \ + espeaksynthesisdriver.c \ |