svn commit: r339616 - head/accessibility/eflite/files

John Marino marino at FreeBSD.org
Mon Jan 13 18:09:52 UTC 2014


Author: marino
Date: Mon Jan 13 18:09:51 2014
New Revision: 339616
URL: http://svnweb.freebsd.org/changeset/ports/339616

Log:
  accessibility/eflite: Unbreak by completing stage support
  
  This port was failing the package target because the main program
  was not staged after NO_STAGE definition was removed.

Modified:
  head/accessibility/eflite/files/patch-Makefile.in

Modified: head/accessibility/eflite/files/patch-Makefile.in
==============================================================================
--- head/accessibility/eflite/files/patch-Makefile.in	Mon Jan 13 17:55:52 2014	(r339615)
+++ head/accessibility/eflite/files/patch-Makefile.in	Mon Jan 13 18:09:51 2014	(r339616)
@@ -1,6 +1,6 @@
---- ./Makefile.in.orig	2007-01-18 19:01:09.000000000 -0500
-+++ ./Makefile.in	2011-05-27 12:55:15.000000000 -0400
-@@ -34,7 +34,7 @@
+--- Makefile.in.orig	2007-01-19 00:01:09.000000000 +0000
++++ Makefile.in
+@@ -34,7 +34,7 @@ eflite: fs.o es.o soccon.o sockopen.o to
  	$(CC) $(LDFLAGS) -o $@ $^ -lm $(LIBS) $(FLITE_LIBS) $(AUDIOLIBS)
  
  fs.o: fs.c
@@ -9,3 +9,13 @@
  
  tone.o: tone.c
  	$(CC) $(CFLAGS) -I$(flite_include_dir) -DEFLITE -c -o $@ $<
+@@ -55,7 +55,8 @@ ifneq (,$(wildcard *.o))
+ endif
+ 
+ install: eflite
+-	mkdir -p $(exec_prefix)/bin && install -c -m 0755 $< $(exec_prefix)/bin
++	mkdir -p $(DESTDIR)$(exec_prefix)/bin
++	$(BSD_INSTALL_PROGRAM) $< $(DESTDIR)$(exec_prefix)/bin
+ 
+ test: eflite
+ 	./eflite -f eflite_test.txt


More information about the svn-ports-all mailing list