From owner-svn-ports-all@FreeBSD.ORG Mon Jan 13 18:09:52 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5C50AF89; Mon, 13 Jan 2014 18:09:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 487911820; Mon, 13 Jan 2014 18:09:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0DI9q03096951; Mon, 13 Jan 2014 18:09:52 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0DI9qi0096950; Mon, 13 Jan 2014 18:09:52 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201401131809.s0DI9qi0096950@svn.freebsd.org> From: John Marino Date: Mon, 13 Jan 2014 18:09:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r339616 - head/accessibility/eflite/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Jan 2014 18:09:52 -0000 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