From owner-svn-ports-head@FreeBSD.ORG Thu Feb 6 10:51:13 2014 Return-Path: Delivered-To: svn-ports-head@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 47115179; Thu, 6 Feb 2014 10:51:13 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 316901329; Thu, 6 Feb 2014 10:51:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s16ApD9I078795; Thu, 6 Feb 2014 10:51:13 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s16ApCXg078793; Thu, 6 Feb 2014 10:51:12 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201402061051.s16ApCXg078793@svn.freebsd.org> From: Martin Wilke Date: Thu, 6 Feb 2014 10:51:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r343021 - in head/benchmarks/iozone21: . 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.17 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: Thu, 06 Feb 2014 10:51:13 -0000 Author: miwi Date: Thu Feb 6 10:51:12 2014 New Revision: 343021 URL: http://svnweb.freebsd.org/changeset/ports/343021 QAT: https://qat.redports.org/buildarchive/r343021/ Log: - Stage support Modified: head/benchmarks/iozone21/Makefile head/benchmarks/iozone21/files/patch-aa Modified: head/benchmarks/iozone21/Makefile ============================================================================== --- head/benchmarks/iozone21/Makefile Thu Feb 6 10:49:29 2014 (r343020) +++ head/benchmarks/iozone21/Makefile Thu Feb 6 10:51:12 2014 (r343021) @@ -13,13 +13,12 @@ COMMENT= Performance Test of Sequential CONFLICTS= iozone-3.* -PLIST_FILES= bin/iozone +PLIST_FILES= bin/iozone \ + man/man1/iozone.1.gz EXTRACT_CMD= ( ${GZCAT} | ${AWK} '{if (/^\#!/) x++} {if(x) print $$0'}| ${SH} ) EXTRACT_BEFORE_ARGS= < EXTRACT_AFTER_ARGS= # empty NO_WRKSUBDIR= YES -MAN1= iozone.1 -NO_STAGE= yes .include Modified: head/benchmarks/iozone21/files/patch-aa ============================================================================== --- head/benchmarks/iozone21/files/patch-aa Thu Feb 6 10:49:29 2014 (r343020) +++ head/benchmarks/iozone21/files/patch-aa Thu Feb 6 10:51:12 2014 (r343021) @@ -9,9 +9,9 @@ + $(CC) $(CFLAGS) -Dbsd4_3 -DOS_TYPE="\"FreeBSD 2.x\"" -o iozone iozone.c + + install: -+ -@mkdir -p ${PREFIX}/bin -+ -@mkdir -p ${PREFIX}/man/man1 -+ ${BSD_INSTALL_PROGRAM} iozone ${PREFIX}/bin ++ -@mkdir -p $(DESTDIR)${PREFIX}/bin ++ -@mkdir -p $(DESTDIR)${PREFIX}/man/man1 ++ ${BSD_INSTALL_PROGRAM} iozone $(DESTDIR)${PREFIX}/bin + @echo .Dd `/bin/date` > iozone.1 + @echo .Dt IOZONE 1 >> iozone.1 + @echo .Sh NAME >> iozone.1 @@ -35,4 +35,4 @@ + {if (x) print $0}' >>iozone.1 + @echo .Sh AUTHOR >> iozone.1 + @echo Bill Norcott >> iozone.1 -+ ${BSD_INSTALL_MAN} iozone.1 ${PREFIX}/man/man1 ++ ${BSD_INSTALL_MAN} iozone.1 $(DESTDIR)${PREFIX}/man/man1