From owner-svn-ports-all@FreeBSD.ORG Mon Jun 23 15:07:03 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 989C69D9; Mon, 23 Jun 2014 15:07:03 +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 856FD21E7; Mon, 23 Jun 2014 15:07:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5NF73aL082496; Mon, 23 Jun 2014 15:07:03 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5NF73sv082492; Mon, 23 Jun 2014 15:07:03 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201406231507.s5NF73sv082492@svn.freebsd.org> From: "Vanilla I. Shu" Date: Mon, 23 Jun 2014 15:07:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r358968 - in 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 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, 23 Jun 2014 15:07:03 -0000 Author: vanilla Date: Mon Jun 23 15:07:02 2014 New Revision: 358968 URL: http://svnweb.freebsd.org/changeset/ports/358968 QAT: https://qat.redports.org/buildarchive/r358968/ Log: Stagify. Approved by: portmgr@ Added: head/net/simpleproxy/files/ head/net/simpleproxy/files/patch-Makefile (contents, props changed) Modified: head/net/simpleproxy/Makefile Modified: head/net/simpleproxy/Makefile ============================================================================== --- head/net/simpleproxy/Makefile Mon Jun 23 14:59:52 2014 (r358967) +++ head/net/simpleproxy/Makefile Mon Jun 23 15:07:02 2014 (r358968) @@ -3,6 +3,7 @@ PORTNAME= simpleproxy PORTVERSION= 3.4 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= SF @@ -11,11 +12,6 @@ COMMENT= Simple TCP proxy GNU_CONFIGURE= yes -PLIST_FILES= bin/${PORTNAME} +PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz -.if !defined(NO_INSTALL_MANPAGES) -MAN1= simpleproxy.1 -.endif - -NO_STAGE= yes .include Added: head/net/simpleproxy/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/simpleproxy/files/patch-Makefile Mon Jun 23 15:07:02 2014 (r358968) @@ -0,0 +1,14 @@ +--- 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 + + install: simpleproxy + $(top_srcdir)/mkinstalldirs $(bindir) +- $(INSTALL) simpleproxy $(bindir) ++ $(INSTALL) simpleproxy $(DESTDIR)$(bindir) + $(top_srcdir)/mkinstalldirs $(mandir)/man1 +- $(INSTALL) simpleproxy.man $(mandir)/man1/simpleproxy.1 ++ $(INSTALL) simpleproxy.man $(DESTDIR)$(mandir)/man1/simpleproxy.1 + + simpleproxy: simpleproxy.o cfg.o Makefile + $(CC) $(CFLAGS) -o simpleproxy simpleproxy.o cfg.o $(LIBS)