From owner-svn-ports-all@FreeBSD.ORG Fri Jun 13 14:49:00 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 E9C5AC26; Fri, 13 Jun 2014 14:48:59 +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 D71492334; Fri, 13 Jun 2014 14:48:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5DEmxQq046635; Fri, 13 Jun 2014 14:48:59 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5DEmxo4046632; Fri, 13 Jun 2014 14:48:59 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201406131448.s5DEmxo4046632@svn.freebsd.org> From: "Vanilla I. Shu" Date: Fri, 13 Jun 2014 14:48:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357685 - in head/benchmarks/autobench: . 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: Fri, 13 Jun 2014 14:49:00 -0000 Author: vanilla Date: Fri Jun 13 14:48:58 2014 New Revision: 357685 URL: http://svnweb.freebsd.org/changeset/ports/357685 QAT: https://qat.redports.org/buildarchive/r357685/ Log: 1: Stagify. 2: use @sample on pkg-plist. 3: bump version. Modified: head/benchmarks/autobench/Makefile head/benchmarks/autobench/files/patch-Makefile head/benchmarks/autobench/pkg-plist Modified: head/benchmarks/autobench/Makefile ============================================================================== --- head/benchmarks/autobench/Makefile Fri Jun 13 14:41:30 2014 (r357684) +++ head/benchmarks/autobench/Makefile Fri Jun 13 14:48:58 2014 (r357685) @@ -3,7 +3,7 @@ PORTNAME= autobench PORTVERSION= 2.1.2 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= benchmarks www MASTER_SITES= http://www.xenoclast.org/autobench/downloads/ \ http://www.sfr-fresh.com/unix/privat/ @@ -17,14 +17,11 @@ RUN_DEPENDS= httperf:${PORTSDIR}/benchma LICENSE= GPLv2 -USES= gmake perl5 +USES= gmake perl5 shebangfix MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" DEBUG_FLAGS= \ PREFIX=${PREFIX} +SHEBANG_FILES= autobench_admin autobenchd autobench -MAN1= autobench.1 autobench_admin.1 autobenchd.1 bench2graph.1 \ - crfile.1 sesslog.1 - -NO_STAGE= yes post-patch: .for file in autobench autobench_admin @${REINPLACE_CMD} -i '' -e 's|/etc/|${PREFIX}/etc/|' ${WRKSRC}/${file} Modified: head/benchmarks/autobench/files/patch-Makefile ============================================================================== --- head/benchmarks/autobench/files/patch-Makefile Fri Jun 13 14:41:30 2014 (r357684) +++ head/benchmarks/autobench/files/patch-Makefile Fri Jun 13 14:48:58 2014 (r357685) @@ -1,11 +1,18 @@ ---- Makefile.orig Thu May 27 18:59:27 2004 -+++ Makefile Sun Jan 16 19:44:14 2005 -@@ -55,7 +55,7 @@ +--- Makefile.orig 2004-05-28 00:59:27.000000000 +0800 ++++ Makefile 2014-06-13 22:45:30.432113271 +0800 +@@ -51,11 +51,11 @@ debug: crfile.c + $(CC) $(DEBUG_FLAGS) -o crfile crfile.c + + install: crfile sesslog +- mkdir -p $(BINDIR) $(ETCDIR) $(MANDIR) ++ mkdir -p $(DESTDIR)$(BINDIR) $(DESTDIR)$(ETCDIR) $(DESTDIR)$(MANDIR) perl -pi -e 's/my \$$MASTER_CONFIG =.*$$/my \$$MASTER_CONFIG = "$$ENV{AB_CFG}";/' autobench - cp crfile autobench autobenchd autobench_admin sesslog bench2graph $(BINDIR) - cp autobenchd.1 autobench_admin.1 crfile.1 autobench.1 sesslog.1 bench2graph.1 $(MANDIR) +- cp crfile autobench autobenchd autobench_admin sesslog bench2graph $(BINDIR) +- cp autobenchd.1 autobench_admin.1 crfile.1 autobench.1 sesslog.1 bench2graph.1 $(MANDIR) - cp autobench.conf $(ETCDIR) -+ cp autobench.conf $(ETCDIR)/autobench.conf-dist ++ cp crfile autobench autobenchd autobench_admin sesslog bench2graph $(DESTDIR)$(BINDIR) ++ cp autobenchd.1 autobench_admin.1 crfile.1 autobench.1 sesslog.1 bench2graph.1 $(DESTDIR)$(MANDIR) ++ cp autobench.conf $(DESTDIR)$(ETCDIR)/autobench.conf.sample clean: rm -f crfile sesslog Modified: head/benchmarks/autobench/pkg-plist ============================================================================== --- head/benchmarks/autobench/pkg-plist Fri Jun 13 14:41:30 2014 (r357684) +++ head/benchmarks/autobench/pkg-plist Fri Jun 13 14:48:58 2014 (r357685) @@ -4,4 +4,10 @@ bin/autobenchd bin/bench2graph bin/crfile bin/sesslog -etc/autobench.conf-dist +@sample etc/autobench.conf.sample +man/man1/autobench.1.gz +man/man1/autobench_admin.1.gz +man/man1/autobenchd.1.gz +man/man1/bench2graph.1.gz +man/man1/crfile.1.gz +man/man1/sesslog.1.gz