From owner-svn-ports-all@FreeBSD.ORG Tue Sep 23 22:20:12 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 C80DF9E5; Tue, 23 Sep 2014 22:20:12 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B3699155; Tue, 23 Sep 2014 22:20:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8NMKCYu051467; Tue, 23 Sep 2014 22:20:12 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8NMKC4Y051466; Tue, 23 Sep 2014 22:20:12 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201409232220.s8NMKC4Y051466@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 23 Sep 2014 22:20:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r369129 - head/net/simpleproxy/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.18-1 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: Tue, 23 Sep 2014 22:20:12 -0000 Author: antoine Date: Tue Sep 23 22:20:12 2014 New Revision: 369129 URL: http://svnweb.freebsd.org/changeset/ports/369129 QAT: https://qat.redports.org/buildarchive/r369129/ Log: Do not violate stagedir, strip binary Modified: head/net/simpleproxy/files/patch-Makefile Modified: head/net/simpleproxy/files/patch-Makefile ============================================================================== --- head/net/simpleproxy/files/patch-Makefile Tue Sep 23 22:10:26 2014 (r369128) +++ head/net/simpleproxy/files/patch-Makefile Tue Sep 23 22:20:12 2014 (r369129) @@ -1,14 +1,17 @@ ---- Makefile.in.orig 2014-06-23 23:04:56.824141193 +0800 -+++ Makefile.in 2014-06-23 23:05:12.570149447 +0800 -@@ -31,9 +31,9 @@ distclean: clean +--- Makefile.in.orig 2005-08-26 04:45:46 UTC ++++ Makefile.in +@@ -30,10 +30,10 @@ + rm -f config.log config.cache config.status Makefile install: simpleproxy - $(top_srcdir)/mkinstalldirs $(bindir) +- $(top_srcdir)/mkinstalldirs $(bindir) - $(INSTALL) simpleproxy $(bindir) -+ $(INSTALL) simpleproxy $(DESTDIR)$(bindir) - $(top_srcdir)/mkinstalldirs $(mandir)/man1 +- $(top_srcdir)/mkinstalldirs $(mandir)/man1 - $(INSTALL) simpleproxy.man $(mandir)/man1/simpleproxy.1 -+ $(INSTALL) simpleproxy.man $(DESTDIR)$(mandir)/man1/simpleproxy.1 ++ $(top_srcdir)/mkinstalldirs $(DESTDIR)$(bindir) ++ $(BSD_INSTALL_PROGRAM) simpleproxy $(DESTDIR)$(bindir) ++ $(top_srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/man1 ++ $(BSD_INSTALL_MAN) simpleproxy.man $(DESTDIR)$(mandir)/man1/simpleproxy.1 simpleproxy: simpleproxy.o cfg.o Makefile $(CC) $(CFLAGS) -o simpleproxy simpleproxy.o cfg.o $(LIBS)