From owner-svn-ports-all@FreeBSD.ORG Mon Jun 23 02:44:53 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8E70CC17; Mon, 23 Jun 2014 02:44:53 +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 61A5C21D9; Mon, 23 Jun 2014 02:44:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5N2irM1034320; Mon, 23 Jun 2014 02:44:53 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5N2irqq034318; Mon, 23 Jun 2014 02:44:53 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201406230244.s5N2irqq034318@svn.freebsd.org> From: "Vanilla I. Shu" Date: Mon, 23 Jun 2014 02:44:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r358894 - in head/net/bittwist: . 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 02:44:53 -0000 Author: vanilla Date: Mon Jun 23 02:44:52 2014 New Revision: 358894 URL: http://svnweb.freebsd.org/changeset/ports/358894 QAT: https://qat.redports.org/buildarchive/r358894/ Log: Stagify. Approved by: portmgr@ Modified: head/net/bittwist/Makefile head/net/bittwist/files/patch-Makefile Modified: head/net/bittwist/Makefile ============================================================================== --- head/net/bittwist/Makefile Mon Jun 23 02:44:12 2014 (r358893) +++ head/net/bittwist/Makefile Mon Jun 23 02:44:52 2014 (r358894) @@ -12,8 +12,9 @@ COMMENT= Libpcap-based Ethernet packet g WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USES= gmake -MAN1= bittwist.1 bittwistb.1 bittwiste.1 -PLIST_FILES= bin/bittwist bin/bittwistb bin/bittwiste +PLIST_FILES= bin/bittwist bin/bittwistb bin/bittwiste \ + man/man1/bittwist.1.gz \ + man/man1/bittwistb.1.gz \ + man/man1/bittwiste.1.gz -NO_STAGE= yes .include Modified: head/net/bittwist/files/patch-Makefile ============================================================================== --- head/net/bittwist/files/patch-Makefile Mon Jun 23 02:44:12 2014 (r358893) +++ head/net/bittwist/files/patch-Makefile Mon Jun 23 02:44:52 2014 (r358894) @@ -1,5 +1,5 @@ ---- ./Makefile.orig 2012-01-16 13:46:05.147743123 -0500 -+++ ./Makefile 2012-01-16 13:46:25.029731197 -0500 +--- Makefile.orig 2011-02-24 23:23:42.000000000 +0800 ++++ Makefile 2014-06-23 10:40:19.186220280 +0800 @@ -1,6 +1,6 @@ SHELL = /bin/sh @@ -8,3 +8,22 @@ exec_prefix = ${prefix} bindir = ${exec_prefix}/bin mandir = ${prefix}/man/man1 +@@ -31,12 +31,12 @@ clean: + rm -f $(SRC)/bittwist $(SRC)/bittwistb $(SRC)/bittwiste + + install: +- mkdir -p $(bindir) +- chmod 755 $(bindir) +- $(INSTALL_PROGRAM) $(SRC)/bittwist $(SRC)/bittwistb $(SRC)/bittwiste $(bindir) +- mkdir -p $(mandir) +- chmod 755 $(mandir) +- $(INSTALL_DATA) $(DOC)/bittwist.1 $(DOC)/bittwistb.1 $(DOC)/bittwiste.1 $(mandir) ++ mkdir -p $(DESTDIR)$(bindir) ++ chmod 755 $(DESTDIR)$(bindir) ++ $(INSTALL_PROGRAM) $(SRC)/bittwist $(SRC)/bittwistb $(SRC)/bittwiste $(DESTDIR)$(bindir) ++ mkdir -p $(DESTDIR)$(mandir) ++ chmod 755 $(DESTDIR)$(mandir) ++ $(INSTALL_DATA) $(DOC)/bittwist.1 $(DOC)/bittwistb.1 $(DOC)/bittwiste.1 $(DESTDIR)$(mandir) + + uninstall: + rm -f $(bindir)/bittwist $(bindir)/bittwistb $(bindir)/bittwiste