pkgsrc/audio/festival/patches/patch-ac
marino 3b88cabf90 audio/festival: Update to version 2.1-release
The previous version of festival, 1.95-beta, was extremely picky about
the compiler.  When DragonFly moved to gcc 4.4 as the default, this
package would no longer build because it didn't share the pre-requisite
gcc 3.3.6 with NetBSD.

The latest version will accept any version of gcc (tested by developers
to version 4.5).  Upgrading the package has the double benefit of once
again building on DragonFly and removing the requirement to build
gcc 3.3.6 on NetBSD.
2011-11-21 01:35:29 +00:00

13 lines
456 B
Text

$NetBSD: patch-ac,v 1.5 2011/11/21 01:35:29 marino Exp $
--- festival/examples/Makefile.orig 2008-11-23 21:07:52.000000000 +0000
+++ festival/examples/Makefile
@@ -55,7 +55,7 @@ include $(TOP)/config/common_make_rules
$(ALL) : % : %.sh
rm -f $@
@echo "#!/bin/sh" >$@
- @echo "\"true\" ; exec "$(FESTIVAL_HOME)/bin/festival --script '$$0 $$*' >>$@
+ @echo "\"true\" ; exec "$(PREFIX)/bin/festival --script '$$0 $$*' >>$@
cat $< >>$@
chmod +x $@