From owner-svn-ports-head@FreeBSD.ORG Tue Jun 24 04:58:12 2014 Return-Path: Delivered-To: svn-ports-head@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 6A6D8BD8; Tue, 24 Jun 2014 04:58: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 581702C53; Tue, 24 Jun 2014 04:58:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5O4wCuf074000; Tue, 24 Jun 2014 04:58:12 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5O4wC6P073998; Tue, 24 Jun 2014 04:58:12 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201406240458.s5O4wC6P073998@svn.freebsd.org> From: "Vanilla I. Shu" Date: Tue, 24 Jun 2014 04:58:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r359038 - in head/net/tcpdstat: . 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-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jun 2014 04:58:12 -0000 Author: vanilla Date: Tue Jun 24 04:58:11 2014 New Revision: 359038 URL: http://svnweb.freebsd.org/changeset/ports/359038 QAT: https://qat.redports.org/buildarchive/r359038/ Log: Stagify. Approved by: portmgr@ (blanket approval) Added: head/net/tcpdstat/files/patch-Makefile (contents, props changed) Modified: head/net/tcpdstat/Makefile Modified: head/net/tcpdstat/Makefile ============================================================================== --- head/net/tcpdstat/Makefile Tue Jun 24 04:54:26 2014 (r359037) +++ head/net/tcpdstat/Makefile Tue Jun 24 04:58:11 2014 (r359038) @@ -13,5 +13,4 @@ COMMENT= A tool for generating statistic PLIST_FILES= bin/tcpdstat WRKSRC= ${WRKDIR}/${DISTNAME}/${PORTNAME} -NO_STAGE= yes .include Added: head/net/tcpdstat/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/tcpdstat/files/patch-Makefile Tue Jun 24 04:58:11 2014 (r359038) @@ -0,0 +1,11 @@ +--- Makefile.orig 2014-06-24 12:55:40.174706872 +0800 ++++ Makefile 2014-06-24 12:55:48.621709202 +0800 +@@ -11,7 +11,7 @@ INCLUDES= -I. $(SYS_INCLUDES) + all: $(PROGS) + + install: $(PROGS) +- $(INSTALL) $(COPY) -m 0755 $(PROGS) $(PREFIX)/bin ++ $(INSTALL) $(COPY) -m 0755 $(PROGS) $(DESTDIR)$(PREFIX)/bin + + tcpdstat: $(OBJS) + $(CC) $(CFLAGS) $(INCLUDES) $(DEFINES) -o $@ $(OBJS) -lpcap -lm $(SYS_LIBS)