From owner-svn-ports-all@FreeBSD.ORG Fri Sep 20 15:53:00 2013 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 ESMTP id D6F4B80A; Fri, 20 Sep 2013 15:53:00 +0000 (UTC) (envelope-from bapt@FreeBSD.org) 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 C20BF2FCC; Fri, 20 Sep 2013 15:53:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8KFr0aW050222; Fri, 20 Sep 2013 15:53:00 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8KFqjRl050113; Fri, 20 Sep 2013 15:52:45 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201309201552.r8KFqjRl050113@svn.freebsd.org> From: Baptiste Daroussin Date: Fri, 20 Sep 2013 15:52:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r327708 - in head/benchmarks: autobench blogbench bonnie bonnie++ cpipe dbench dbs dkftpbench expedite fhourstones filebench fio flops flowgrind forkbomb geekbench gtkperf himenobench h... 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.14 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, 20 Sep 2013 15:53:01 -0000 Author: bapt Date: Fri Sep 20 15:52:44 2013 New Revision: 327708 URL: http://svnweb.freebsd.org/changeset/ports/327708 Log: Add NO_STAGE all over the place in preparation for the staging support (cat: benchmarks) Modified: head/benchmarks/autobench/Makefile head/benchmarks/blogbench/Makefile head/benchmarks/bonnie++/Makefile head/benchmarks/bonnie/Makefile head/benchmarks/cpipe/Makefile head/benchmarks/dbench/Makefile head/benchmarks/dbs/Makefile head/benchmarks/dkftpbench/Makefile head/benchmarks/expedite/Makefile head/benchmarks/fhourstones/Makefile head/benchmarks/filebench/Makefile head/benchmarks/fio/Makefile head/benchmarks/flops/Makefile head/benchmarks/flowgrind/Makefile head/benchmarks/forkbomb/Makefile head/benchmarks/geekbench/Makefile head/benchmarks/gtkperf/Makefile head/benchmarks/himenobench/Makefile head/benchmarks/hpl/Makefile head/benchmarks/hs-criterion/Makefile head/benchmarks/httperf/Makefile head/benchmarks/imb/Makefile head/benchmarks/interbench/Makefile head/benchmarks/iorate/Makefile head/benchmarks/iozone/Makefile head/benchmarks/iozone21/Makefile head/benchmarks/iperf/Makefile head/benchmarks/libmicro/Makefile head/benchmarks/lmbench/Makefile head/benchmarks/mdtest/Makefile head/benchmarks/nbench/Makefile head/benchmarks/netio/Makefile head/benchmarks/netperf/Makefile head/benchmarks/netperfmeter/Makefile head/benchmarks/netpipe/Makefile head/benchmarks/nosqlbench/Makefile head/benchmarks/nqueens/Makefile head/benchmarks/nttcp/Makefile head/benchmarks/nuttcp/Makefile head/benchmarks/octave-forge-benchmark/Makefile head/benchmarks/p5-Benchmark-Forking/Makefile head/benchmarks/p5-Benchmark-Stopwatch/Makefile head/benchmarks/pathchirp/Makefile head/benchmarks/pathload/Makefile head/benchmarks/pathrate/Makefile head/benchmarks/pear-Benchmark/Makefile head/benchmarks/phoronix-test-suite/Makefile head/benchmarks/pipebench/Makefile head/benchmarks/pnetmark/Makefile head/benchmarks/polygraph/Makefile head/benchmarks/postal/Makefile head/benchmarks/postmark/Makefile head/benchmarks/pybench/Makefile head/benchmarks/raidtest/Makefile head/benchmarks/randomio/Makefile head/benchmarks/rubygem-railsbench/Makefile head/benchmarks/scimark2/Makefile head/benchmarks/scimark2c/Makefile head/benchmarks/siege/Makefile head/benchmarks/sipp/Makefile head/benchmarks/slowloris/Makefile head/benchmarks/spp/Makefile head/benchmarks/stream/Makefile head/benchmarks/super-smack/Makefile head/benchmarks/sysbench/Makefile head/benchmarks/tcpblast/Makefile head/benchmarks/thrulay/Makefile head/benchmarks/tsung/Makefile head/benchmarks/ttcp/Makefile head/benchmarks/ubench/Makefile head/benchmarks/unixbench/Makefile head/benchmarks/webbench/Makefile head/benchmarks/wrk/Makefile head/benchmarks/xdd/Makefile Modified: head/benchmarks/autobench/Makefile ============================================================================== --- head/benchmarks/autobench/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/autobench/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -24,6 +24,7 @@ MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" 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/blogbench/Makefile ============================================================================== --- head/benchmarks/blogbench/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/blogbench/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -17,6 +17,7 @@ MAN8= blogbench.8 PLIST_FILES= bin/blogbench PORTDOCS= README +NO_STAGE= yes post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} Modified: head/benchmarks/bonnie++/Makefile ============================================================================== --- head/benchmarks/bonnie++/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/bonnie++/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,10 +1,5 @@ -# ex:ts=8 -# New ports collection makefile for: bonnie++ -# Date created: Mar 24, 2001 -# Whom: Ying-Chieh Liao -# +# Created by: Ying-Chieh Liao # $FreeBSD$ -# PORTNAME= bonnie++ PORTVERSION= 1.97 @@ -26,6 +21,7 @@ MAN8= bonnie++.8 getc_putc.8 zcav.8 PORTDOCS= readme.html +NO_STAGE= yes .include post-patch: Modified: head/benchmarks/bonnie/Makefile ============================================================================== --- head/benchmarks/bonnie/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/bonnie/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,9 +1,5 @@ -# New ports collection makefile for: bonnie -# Date created: 26 September 1994 -# Whom: se -# +# Created by: se # $FreeBSD$ -# PORTNAME= bonnie PORTVERSION= 2.0.6 @@ -23,6 +19,7 @@ ALL_TARGET= bsd MAN1= bonnie.1 PLIST_FILES= bin/bonnie +NO_STAGE= yes do-install: ${INSTALL_PROGRAM} ${WRKSRC}/Bonnie ${PREFIX}/bin/bonnie ${INSTALL_MAN} ${FILESDIR}/bonnie.1 ${PREFIX}/man/man1 Modified: head/benchmarks/cpipe/Makefile ============================================================================== --- head/benchmarks/cpipe/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/cpipe/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,9 +1,5 @@ -# New ports collection makefile for: cpipe -# Date created: 1 March 2013 -# Whom: uminac -# +# Created by: uminac # $FreeBSD$ -# PORTNAME= cpipe PORTVERSION= 3.0.2 @@ -23,4 +19,5 @@ MAKE_ARGS= "prefix=${PREFIX}" PLIST_FILES= bin/cpipe +NO_STAGE= yes .include Modified: head/benchmarks/dbench/Makefile ============================================================================== --- head/benchmarks/dbench/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/dbench/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,9 +1,5 @@ -# New ports collection makefile for: dbench -# Date created: 18 Febrary 2002 -# Whom: Andrew Shevtsov -# +# Created by: Andrew Shevtsov # $FreeBSD$ -# PORTNAME= dbench PORTVERSION= 4.0 @@ -28,6 +24,7 @@ CONFIGURE_ARGS+=--datadir=${DATADIR} MAN1= dbench.1 MLINKS= dbench.1 tbench.1 dbench.1 tbench_srv.1 +NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's,$$(mandir),$$(mandir)/man1,' \ ${WRKSRC}/Makefile.in Modified: head/benchmarks/dbs/Makefile ============================================================================== --- head/benchmarks/dbs/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/dbs/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -26,6 +26,7 @@ PORTEXAMPLES= * OPTIONS_DEFINE= DOCS EXAMPLES +NO_STAGE= yes .include post-patch: Modified: head/benchmarks/dkftpbench/Makefile ============================================================================== --- head/benchmarks/dkftpbench/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/dkftpbench/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,9 +1,5 @@ -# New ports collection makefile for: dkftpbench -# Date created: 2004-10-22 -# Whom: Roman Bogorodskiy -# +# Created by: Roman Bogorodskiy # $FreeBSD$ -# PORTNAME= dkftpbench PORTVERSION= 0.45 @@ -20,4 +16,5 @@ GNU_CONFIGURE= yes USE_AUTOTOOLS= automake14 autoconf +NO_STAGE= yes .include Modified: head/benchmarks/expedite/Makefile ============================================================================== --- head/benchmarks/expedite/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/expedite/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -26,6 +26,7 @@ OPENGL_DESC= Enable OpenGL evas engine SDL_DESC= Enable SDL evas engine X11_DESC= Enable X11 evas engine +NO_STAGE= yes .include .if ${PORT_OPTIONS:MOPENGL} Modified: head/benchmarks/fhourstones/Makefile ============================================================================== --- head/benchmarks/fhourstones/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/fhourstones/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,9 +1,5 @@ -# New ports collection makefile for: fhourstones -# Date created: 2006-11-23 -# Whom: trasz -# +# Created by: trasz # $FreeBSD$ -# PORTNAME= fhourstones PORTVERSION= 3.1 @@ -19,6 +15,7 @@ NO_WRKSUBDIR= yes PLIST_FILES= bin/fhourstones lib/fhourstones/SearchGame lib/fhourstones/inputs PLIST_DIRS= lib/fhourstones +NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/Makefile @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/fhourstones Modified: head/benchmarks/filebench/Makefile ============================================================================== --- head/benchmarks/filebench/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/filebench/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,9 +1,5 @@ -# New ports collection makefile for: filebench -# Date created: Jan 6, 2011 -# Whom: Tom Judge -# +# Created by: Tom Judge # $FreeBSD$ -# PORTNAME= filebench PORTVERSION= 1.4.8.0.8 @@ -19,6 +15,7 @@ ONLY_FOR_ARCHS= amd64 i386 ia64 ppc GNU_CONFIGURE= yes LICENSE= CDDL +NO_STAGE= yes do-install: ( cd ${WRKSRC} && make install-binPROGRAMS ) .if !defined(NOPORTDATA) Modified: head/benchmarks/fio/Makefile ============================================================================== --- head/benchmarks/fio/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/fio/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -20,6 +20,7 @@ GNUPLOT_DESC= Support for plotting graph MAN1= fio.1 fio_generate_plots.1 +NO_STAGE= yes .include do-install: Modified: head/benchmarks/flops/Makefile ============================================================================== --- head/benchmarks/flops/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/flops/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -16,6 +16,7 @@ NO_WRKSUBDIR= yes PORTDOCS= flops.doc PLIST_FILES= bin/flops +NO_STAGE= yes .include post-extract: Modified: head/benchmarks/flowgrind/Makefile ============================================================================== --- head/benchmarks/flowgrind/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/flowgrind/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -23,4 +23,5 @@ MAN1= flowgrind-stop.1 \ flowgrind.1 \ flowgrindd.1 +NO_STAGE= yes .include Modified: head/benchmarks/forkbomb/Makefile ============================================================================== --- head/benchmarks/forkbomb/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/forkbomb/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,9 +1,5 @@ -# New ports collection makefile for: forkbomb -# Date created: 21 Jan 2004 -# Whom: Radim Kolar -# +# Created by: Radim Kolar # $FreeBSD$ -# PORTNAME= forkbomb PORTVERSION= 1.4 @@ -18,4 +14,5 @@ COMMENT= System stress testing tool MAN8= forkbomb.8 PLIST_FILES= sbin/forkbomb +NO_STAGE= yes .include Modified: head/benchmarks/geekbench/Makefile ============================================================================== --- head/benchmarks/geekbench/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/geekbench/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,9 +1,5 @@ -# New ports collection makefile for: geekbench -# Date created: 2006-12-09 -# Whom: Gea-Suan Lin -# +# Created by: Gea-Suan Lin # $FreeBSD$ -# PORTNAME= geekbench PORTVERSION= 2.1.13 @@ -22,6 +18,7 @@ USE_LINUX= yes WRKSRC= ${WRKDIR}/dist/${DISTNAME} PLIST_FILES= bin/geekbench +NO_STAGE= yes do-install: ${INSTALL_PROGRAM} ${WRKSRC}/geekbench_x86_32 ${PREFIX}/bin/geekbench Modified: head/benchmarks/gtkperf/Makefile ============================================================================== --- head/benchmarks/gtkperf/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/gtkperf/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -16,6 +16,7 @@ USES= gmake pkgconfig GNU_CONFIGURE= yes USE_GNOME= gtk20 gnomeprefix +NO_STAGE= yes .include .if ${PORT_OPTIONS:MNLS} Modified: head/benchmarks/himenobench/Makefile ============================================================================== --- head/benchmarks/himenobench/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/himenobench/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,9 +1,5 @@ -# New ports collection makefile for: himenobench -# Date Created: 16 Aug 2004 -# Whom: NAKATA Maho -# +# Created by: NAKATA Maho # $FreeBSD$ -# PORTNAME= himenobench PORTVERSION= 2004.08.16 @@ -31,6 +27,7 @@ USE_FORTRAN= yes USE_FORTRAN= ifort .endif +NO_STAGE= yes .include .if defined(WITH_OPTIMIZED_FLAGS) Modified: head/benchmarks/hpl/Makefile ============================================================================== --- head/benchmarks/hpl/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/hpl/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -53,6 +53,7 @@ MAN3= HPL_abort.3 HPL_all_reduce.3 HPL_ OPTIONS_DEFINE= DOCS +NO_STAGE= yes .include post-patch: Modified: head/benchmarks/hs-criterion/Makefile ============================================================================== --- head/benchmarks/hs-criterion/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/hs-criterion/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,4 +1,4 @@ -# Created by: Giuseppe Pilichi aka Jacula Modyun +# Created by: Giuseppe Pilichi aka Jacula Modyun # $FreeBSD$ PORTNAME= criterion @@ -20,5 +20,6 @@ INSTALL_PORTEXAMPLES= \ INSTALL_PORTDATA= ${INSTALL_DATA} ${WRKSRC}/README.markdown ${DATADIR} +NO_STAGE= yes .include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" .include Modified: head/benchmarks/httperf/Makefile ============================================================================== --- head/benchmarks/httperf/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/httperf/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -23,6 +23,7 @@ PORTDOCS= ChangeLog NEWS README TODO .endif MAN1= httperf.1 +NO_STAGE= yes post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} Modified: head/benchmarks/imb/Makefile ============================================================================== --- head/benchmarks/imb/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/imb/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -31,6 +31,7 @@ CFLAGS= -O3 CFLAGS+= -DCHECK .endif +NO_STAGE= yes .include .if exists(${LOCALBASE}/mpi/openmpi/bin/mpirun) Modified: head/benchmarks/interbench/Makefile ============================================================================== --- head/benchmarks/interbench/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/interbench/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -22,6 +22,7 @@ PORTDOCS= readme readme.interactivity OPTIONS_DEFINE= DOCS +NO_STAGE= yes .include post-patch: Modified: head/benchmarks/iorate/Makefile ============================================================================== --- head/benchmarks/iorate/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/iorate/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -21,6 +21,7 @@ PORTDOCS= README README.versions OPTIONS_DEFINE= DOCS +NO_STAGE= yes .include post-patch: Modified: head/benchmarks/iozone/Makefile ============================================================================== --- head/benchmarks/iozone/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/iozone/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -29,6 +29,7 @@ OPTIONS_DEFAULT=SSH THREADS SSH_DESC= Use ssh in distributed measurement THREADS_DESC= Enable threading (uses pthreads) +NO_STAGE= yes .include .if ${PORT_OPTIONS:MTHREADS} Modified: head/benchmarks/iozone21/Makefile ============================================================================== --- head/benchmarks/iozone21/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/iozone21/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,10 +1,5 @@ -# ex:ts=8 -# Ports collection makefile for: iozone -# Date created: 26 September 1994 -# Whom: jmz -# +# Created by: jmz # $FreeBSD$ -# PORTNAME= iozone PORTVERSION= 2.01 @@ -26,4 +21,5 @@ EXTRACT_AFTER_ARGS= # empty NO_WRKSUBDIR= YES MAN1= iozone.1 +NO_STAGE= yes .include Modified: head/benchmarks/iperf/Makefile ============================================================================== --- head/benchmarks/iperf/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/iperf/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -20,6 +20,7 @@ MAN1= iperf.1 PLIST_FILES= bin/iperf PORTDOCS= * +NO_STAGE= yes .include .if ${PORT_OPTIONS:MIPV6} Modified: head/benchmarks/libmicro/Makefile ============================================================================== --- head/benchmarks/libmicro/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/libmicro/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -25,6 +25,7 @@ PLIST_SUB= ARCH="${ARCH}" PKGLIBDIR= ${PREFIX}/lib/${PORTNAME} +NO_STAGE= yes post-build: @${ECHO_CMD} '#!/bin/sh' > ${WRKDIR}/libmicro-bench @${ECHO_CMD} '(cd ${PKGLIBDIR} && ./bench $$1)' >> ${WRKDIR}/libmicro-bench.sh Modified: head/benchmarks/lmbench/Makefile ============================================================================== --- head/benchmarks/lmbench/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/lmbench/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -29,6 +29,7 @@ MAN8= bw_file_rd.8 bw_mem.8 bw_mem_rd.8 USES= gmake +NO_STAGE= yes # the bindir for the PLIST is: # (note that ./os needs to be run inside the work dir, running it # outside will give a different result.) Modified: head/benchmarks/mdtest/Makefile ============================================================================== --- head/benchmarks/mdtest/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/mdtest/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -21,6 +21,7 @@ PLIST_FILES= bin/${PORTNAME} CFLAGS+= -DDarwin +NO_STAGE= yes .include .if ${PORT_OPTIONS:MOPENMPI} Modified: head/benchmarks/nbench/Makefile ============================================================================== --- head/benchmarks/nbench/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/nbench/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,9 +1,5 @@ -# New ports collection makefile for: nbench -# Date created: 17 December 1997 -# Whom: Andrey Zakhvatov -# +# Created by: Andrey Zakhvatov # $FreeBSD$ -# PORTNAME= nbench PORTVERSION= 2.2.3 @@ -17,6 +13,7 @@ COMMENT= BYTE Magazine's native benchmar ALL_TARGET= # empty MAKE_JOBS_UNSAFE= yes +NO_STAGE= yes do-install: ${INSTALL_PROGRAM} ${WRKSRC}/nbench ${PREFIX}/bin @${MKDIR} ${DATADIR} Modified: head/benchmarks/netio/Makefile ============================================================================== --- head/benchmarks/netio/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/netio/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -22,6 +22,7 @@ MAKE_ENV+= OUT="-o" LIBS=${PTHREAD_LIBS} PLIST_FILES+= bin/netio6 .endif +NO_STAGE= yes do-build: cd ${WRKSRC}; \ ${SETENV} ${MAKE_ENV} O=.o CFLAGS="${CFLAGS}" ${GMAKE} all Modified: head/benchmarks/netperf/Makefile ============================================================================== --- head/benchmarks/netperf/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/netperf/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -20,6 +20,7 @@ SOCKETS_DESC= Enable Unix Domain socket HISTOGRAM_DESC= Enable optional histogram output EXS_DESC= Enable ICSC async socket support +NO_STAGE= yes .include USE_CSTD= gnu89 Modified: head/benchmarks/netperfmeter/Makefile ============================================================================== --- head/benchmarks/netperfmeter/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/netperfmeter/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -19,6 +19,7 @@ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING +NO_STAGE= yes .include .if ${OSVERSION} < 700000 Modified: head/benchmarks/netpipe/Makefile ============================================================================== --- head/benchmarks/netpipe/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/netpipe/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,7 +1,4 @@ -# New ports collection makefile for: netpipe -# Date created: 20 Feb 1998 -# Whom: jkoshy -# +# Created by: jkoshy # $FreeBSD$ PORTNAME= NetPIPE @@ -21,6 +18,7 @@ PLIST_FILES= bin/NPtcp bin/NPtcp6 DOCSDIR= ${PREFIX}/share/doc/${PORTNAME:L} +NO_STAGE= yes do-build: cd ${WRKSRC} \ && ${CC} ${CFLAGS} src/netpipe.c src/tcp.c -DTCP -o NPtcp \ Modified: head/benchmarks/nosqlbench/Makefile ============================================================================== --- head/benchmarks/nosqlbench/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/nosqlbench/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -17,6 +17,7 @@ USES= cmake CMAKE_ARGS= -DLIBTNT_INCLUDE=${LOCALBASE}/include \ -DLIBTNT_LIB=${LOCALBASE}/lib +NO_STAGE= yes pre-configure: ${REINPLACE_CMD} 's#DESTINATION doc#DESTINATION ${DOCSDIR}#g' \ ${WRKSRC}/CMakeLists.txt Modified: head/benchmarks/nqueens/Makefile ============================================================================== --- head/benchmarks/nqueens/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/nqueens/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -17,6 +17,7 @@ OPTIONS_DEFINE= MPI STATIC OPTIMIZED_CFL MPI_DESC= Build distributed MPI version STATIC_DESC= Link resulting binaries statically +NO_STAGE= yes .include .if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS} Modified: head/benchmarks/nttcp/Makefile ============================================================================== --- head/benchmarks/nttcp/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/nttcp/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -20,6 +20,7 @@ USES= gmake MAKE_ENV+= OPT="${CFLAGS}" NOPRECIOUSMAKEVARS=yes +NO_STAGE= yes do-install: ${INSTALL_PROGRAM} ${WRKSRC}/nttcp ${PREFIX}/bin/ ${INSTALL_MAN} ${WRKSRC}/nttcp.1 ${PREFIX}/man/man1/ Modified: head/benchmarks/nuttcp/Makefile ============================================================================== --- head/benchmarks/nuttcp/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/nuttcp/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,4 +1,4 @@ -# Whom: Andy Clark +# Created by: Andy Clark # $FreeBSD$ PORTNAME= nuttcp @@ -26,6 +26,7 @@ OPTIONS_DEFAULT= NUTTSCP NUTTSCP_DESC= Install script for copying files over nuttcp +NO_STAGE= yes .include .if ${PORT_OPTIONS:MNUTTSCP} Modified: head/benchmarks/octave-forge-benchmark/Makefile ============================================================================== --- head/benchmarks/octave-forge-benchmark/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/octave-forge-benchmark/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -9,5 +9,6 @@ CATEGORIES= benchmarks math MAINTAINER= stephen@FreeBSD.org COMMENT= Octave-forge package ${OCTAVE_PKGNAME} +NO_STAGE= yes .include "${.CURDIR}/../../Mk/bsd.octave.mk" .include Modified: head/benchmarks/p5-Benchmark-Forking/Makefile ============================================================================== --- head/benchmarks/p5-Benchmark-Forking/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/p5-Benchmark-Forking/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -17,4 +17,5 @@ USE_PERL5= configure MAN3= Benchmark::Forking.3 +NO_STAGE= yes .include Modified: head/benchmarks/p5-Benchmark-Stopwatch/Makefile ============================================================================== --- head/benchmarks/p5-Benchmark-Stopwatch/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/p5-Benchmark-Stopwatch/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -20,4 +20,5 @@ USE_PERL5= configure MAN3= Benchmark::Stopwatch.3 +NO_STAGE= yes .include Modified: head/benchmarks/pathchirp/Makefile ============================================================================== --- head/benchmarks/pathchirp/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/pathchirp/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -17,6 +17,7 @@ MAKE_JOBS_UNSAFE= yes PLIST_FILES= bin/pathchirp_rcv bin/pathchirp_snd bin/pathchirp_run PORTDOCS= README +NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e '/CFLAGS.*O4/d' ${WRKSRC}/configure Modified: head/benchmarks/pathload/Makefile ============================================================================== --- head/benchmarks/pathload/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/pathload/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -19,6 +19,7 @@ MAKE_JOBS_UNSAFE= yes PLIST_FILES= bin/pathload_rcv bin/pathload_snd +NO_STAGE= yes do-install: .for f in pathload_rcv pathload_snd ${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin Modified: head/benchmarks/pathrate/Makefile ============================================================================== --- head/benchmarks/pathrate/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/pathrate/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -18,6 +18,7 @@ MAKEFILE= makefile PLIST_FILES= bin/pathrate_rcv bin/pathrate_snd +NO_STAGE= yes do-install: .for f in pathrate_rcv pathrate_snd ${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin Modified: head/benchmarks/pear-Benchmark/Makefile ============================================================================== --- head/benchmarks/pear-Benchmark/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/pear-Benchmark/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,9 +1,5 @@ -# Ports collection makefile for: pear-Benchmark -# Date created: 09 September 2004 -# Whom: Antonio Carlos Venancio Junior () -# +# Created by: Antonio Carlos Venancio Junior () # $FreeBSD$ -# PORTNAME= Benchmark PORTVERSION= 1.2.9 @@ -18,6 +14,7 @@ RUN_DEPENDS:= ${PEARDIR}/PEAR.php:${PORT USE_PHP= bcmath PEAR_AUTOINSTALL= yes +NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Modified: head/benchmarks/phoronix-test-suite/Makefile ============================================================================== --- head/benchmarks/phoronix-test-suite/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/phoronix-test-suite/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,5 +1,4 @@ -# Created by: Kris Moore -# +# Created by: Kris Moore # $FreeBSD$ PORTNAME= phoronix-test-suite @@ -30,6 +29,7 @@ OPTIONS_DEFAULT= X11 BASH_COMPLETIONS_DESC= Install bash completions X11_DESC= Install X11 icons and mimetypes +NO_STAGE= yes .include .if ${PORT_OPTIONS:MX11} Modified: head/benchmarks/pipebench/Makefile ============================================================================== --- head/benchmarks/pipebench/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/pipebench/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,10 +1,5 @@ -# ex:ts=8 -# New ports collection makefile for: pipebench -# Date created: Jan 14, 2003 -# Whom: mich@freebsdcluster.org -# +# Created by: mich@freebsdcluster.org # $FreeBSD$ -# PORTNAME= pipebench PORTVERSION= 0.40 @@ -16,6 +11,7 @@ COMMENT= Pipebench shows current through CFLAGS+= -w -pedantic +NO_STAGE= yes do-build: cd ${WRKSRC} && \ ${CC} ${CFLAGS} -o ${PORTNAME} ${PORTNAME}.c Modified: head/benchmarks/pnetmark/Makefile ============================================================================== --- head/benchmarks/pnetmark/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/pnetmark/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -24,6 +24,7 @@ PNET_STRAP_BIN= pnetmark \ linpack \ scimark2 +NO_STAGE= yes .include "${.CURDIR}/../../lang/pnet/Makefile.pnet" .include Modified: head/benchmarks/polygraph/Makefile ============================================================================== --- head/benchmarks/polygraph/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/polygraph/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,9 +1,5 @@ -# New ports collection makefile for: polygraph -# Date created: 3 March 1999 -# Whom: Dima Sivachenko -# +# Created by: Dima Sivachenko # $FreeBSD$ -# PORTNAME= polygraph PORTVERSION= 4.3.2 @@ -34,6 +30,7 @@ ZLIB_DESC= Enable HTTP compression suppo OPTIONS_DEFAULT= OPENSSL ZLIB +NO_STAGE= yes .include .if ${PORT_OPTIONS:MGNUPLOT} Modified: head/benchmarks/postal/Makefile ============================================================================== --- head/benchmarks/postal/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/postal/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -24,6 +24,7 @@ PLIST_FILES= sbin/bhm sbin/postal bin/po MAN1= postal-list.1 MAN8= bhm.8 postal.8 rabid.8 +NO_STAGE= yes .include CONFIGURE_ARGS= --disable-gnutls Modified: head/benchmarks/postmark/Makefile ============================================================================== --- head/benchmarks/postmark/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/postmark/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -18,6 +18,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVER MAN1= postmark.1 PLIST_FILES= sbin/postmark +NO_STAGE= yes do-build: (cd ${WRKSRC} && ${CC} ${CFLAGS} -o postmark postmark-${PORTVERSION}.c) Modified: head/benchmarks/pybench/Makefile ============================================================================== --- head/benchmarks/pybench/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/pybench/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,9 +1,5 @@ -# New ports collection makefile for: pybench -# Date created: 29 March 2001 -# Whom: Maxim Sobolev -# +# Created by: Maxim Sobolev # $FreeBSD$ -# PORTNAME= pybench PORTVERSION= 2.0 @@ -20,6 +16,7 @@ USE_PYTHON= yes PORTDOCS= README +NO_STAGE= yes do-build: @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC} @${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${WRKSRC} Modified: head/benchmarks/raidtest/Makefile ============================================================================== --- head/benchmarks/raidtest/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/raidtest/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,10 +1,5 @@ -# ex:ts=8 -# Ports collection makefile for: raidtest -# Date created: Sat Oct 16, 2004 -# Whom: David O'Brien (obrien@FreeBSD.org) -# +# Created by: David O'Brien (obrien@FreeBSD.org) # $FreeBSD$ -# PORTNAME= raidtest PORTVERSION= 1.2 @@ -18,6 +13,7 @@ COMMENT= Test performance of storage dev NO_WRKSUBDIR= yes PLIST_FILES= bin/raidtest +NO_STAGE= yes do-fetch: do-extract: Modified: head/benchmarks/randomio/Makefile ============================================================================== --- head/benchmarks/randomio/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/randomio/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -13,6 +13,7 @@ USE_BZIP2= yes USES= gmake PLIST_FILES= bin/${PORTNAME} +NO_STAGE= yes do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/${PORTNAME} Modified: head/benchmarks/rubygem-railsbench/Makefile ============================================================================== --- head/benchmarks/rubygem-railsbench/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/rubygem-railsbench/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -20,6 +20,7 @@ OPTIONS_DEFINE= GRUFF GRUFF_DESC= Plotting of perf data support using gruff OPTIONSFILE= ${PORT_DBDIR}/rubygem-${PORTNAME}/options +NO_STAGE= yes .include .if ${PORT_OPTIONS:MGRUFF} Modified: head/benchmarks/scimark2/Makefile ============================================================================== --- head/benchmarks/scimark2/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/scimark2/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -28,6 +28,7 @@ SMSH= ${PORTNAME}${PKGNAMESUFFIX} PLIST_SUB= SMDIR=${LSMDIR} PKGMESSAGE= ${WRKSRC}/pkg-message +NO_STAGE= yes do-build: cd ${WRKSRC} && ${JAVAC} ${JAVAC_OPTS} commandline.java @${CP} ${WRKSRC}/commandline.class ${WRKSRC}/jnt/scimark2 Modified: head/benchmarks/scimark2c/Makefile ============================================================================== --- head/benchmarks/scimark2c/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/scimark2c/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,9 +1,5 @@ -# New ports collection makefile for: scimark2c -# Date created: Sat Apr 05 2003 -# Whom: thierry@pompo.net -# +# Created by: thierry@pompo.net # $FreeBSD$ -# PORTNAME= scimark2c DISTVERSION= 2_1 @@ -18,6 +14,7 @@ PLIST_FILES= bin/scimark2 WRKSRC= ${WRKDIR} USE_ZIP= yes +NO_STAGE= yes do-install: ${INSTALL_PROGRAM} ${WRKSRC}/scimark2 ${PREFIX}/bin Modified: head/benchmarks/siege/Makefile ============================================================================== --- head/benchmarks/siege/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/siege/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -23,6 +23,7 @@ MAN1= siege.1 siege.config.1 bombardmen MAN5= urls_txt.5 MAN7= layingsiege.7 +NO_STAGE= yes do-install: @${INSTALL_PROGRAM} ${WRKSRC}/src/siege ${PREFIX}/bin/ @${INSTALL_SCRIPT} ${WRKSRC}/utils/bombardment ${PREFIX}/bin/ Modified: head/benchmarks/sipp/Makefile ============================================================================== --- head/benchmarks/sipp/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/sipp/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -28,6 +28,7 @@ OPENSSL_DESC= OpenSSL support (for diges GSL_DESC= GSL support (for statistical distributed pauses) PCAPPLAY_DESC= RTP play support +NO_STAGE= yes .include .if ${PORT_OPTIONS:MGSL} Modified: head/benchmarks/slowloris/Makefile ============================================================================== --- head/benchmarks/slowloris/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/slowloris/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,9 +1,5 @@ -# New ports collection makefile for: slowloris -# Date created: Fri 03 Jul 2009 -# Whom: Alexey V. Degtyarev -# +# Created by: Alexey V. Degtyarev # $FreeBSD$ -# PORTNAME= slowloris PORTVERSION= 0.7 @@ -21,6 +17,7 @@ RUN_DEPENDS= p5-IO-Socket-SSL>=0:${PORTS PLIST_FILES= bin/slowloris +NO_STAGE= yes .include PERL_THREADS= no Modified: head/benchmarks/spp/Makefile ============================================================================== --- head/benchmarks/spp/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/spp/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -12,6 +12,7 @@ COMMENT= Calculates round trip time from PLIST_FILES= bin/spp MAN1= spp.1 +NO_STAGE= yes post-patch: @${REINPLACE_CMD} -E '/(-DDEBUG|-g)/s|^|#|g' \ ${WRKSRC}/Makefile Modified: head/benchmarks/stream/Makefile ============================================================================== --- head/benchmarks/stream/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/stream/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -22,6 +22,7 @@ EXTRACT_AFTER_ARGS= ${WRKDIR} PORTDOCS= stream.c PLIST_FILES= bin/stream_bench +NO_STAGE= yes .include do-build: Modified: head/benchmarks/super-smack/Makefile ============================================================================== --- head/benchmarks/super-smack/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/super-smack/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -23,6 +23,7 @@ OPTIONS_DEFAULT= MYSQL PGSQL_DESC= Enable PostgreSQL support MYSQL_DESC= Enable MySQL support +NO_STAGE= yes .include .if ${PORT_OPTIONS:MMYSQL} Modified: head/benchmarks/sysbench/Makefile ============================================================================== --- head/benchmarks/sysbench/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/sysbench/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -19,6 +19,7 @@ OPTIONS_DEFINE= LARGEFILE MYSQL PGSQL DO OTPIONS_DEFAULT= LARGEFILE MYSQL LARGEFILE_DESC= Enable Largefile support +NO_STAGE= yes .include .if ${PORT_OPTIONS:MLARGEFILE} Modified: head/benchmarks/tcpblast/Makefile ============================================================================== --- head/benchmarks/tcpblast/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/tcpblast/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,10 +1,5 @@ -# New ports collection makefile for: tcpblast -# Date created: 22 August 1994 -# Whom: mr -# +# Created by: mr # $FreeBSD$ -# -# port's source files are in src dir in portball PORTNAME= tcpblast PORTVERSION= 1.1 @@ -19,6 +14,7 @@ PLIST_FILES= bin/tcpblast WRKSRC= ${WRKDIR}/src +NO_STAGE= yes do-extract: @${RM} -rf ${WRKDIR} @${MKDIR} ${WRKDIR} Modified: head/benchmarks/thrulay/Makefile ============================================================================== --- head/benchmarks/thrulay/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/thrulay/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -22,6 +22,7 @@ MAKE_JOBS_UNSAFE= yes PORTDOCS= ChangeLog README thrulay-protocol.txt thrulay-index.html +NO_STAGE= yes post-patch: ${REINPLACE_CMD} -e '922s,datarootdir,prefix,g' ${WRKSRC}/configure Modified: head/benchmarks/tsung/Makefile ============================================================================== --- head/benchmarks/tsung/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/tsung/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -24,6 +24,7 @@ PLIST_SUB= PORTVERSION=${PORTVERSION} MAN1= tsplot.1 tsung-recorder.1 tsung.1 +NO_STAGE= yes post-patch-script: @${REINPLACE_CMD} -e 's|MAN_DIR = $$(datadir)/man/man1/|MAN_DIR = $$(prefix)/man/man1/|' \ ${WRKSRC}/Makefile.in Modified: head/benchmarks/ttcp/Makefile ============================================================================== --- head/benchmarks/ttcp/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/ttcp/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,9 +1,5 @@ -# New ports collection makefile for: ttcp -# Date created: Tue Jun 1 22:58:13 PDT 1999 -# Whom: mharo@FreeBSD.org -# +# Created by: mharo@FreeBSD.org # $FreeBSD$ -# PORTNAME= ttcp PORTVERSION= 1.12 @@ -26,6 +22,7 @@ NO_WRKSUBDIR= yes DIST_SUBDIR= ${PORTNAME} MAN1= ttcp.1 +NO_STAGE= yes post-extract: ${CP} ${DISTDIR}/${DIST_SUBDIR}/ttcp.c ${WRKSRC}/ ${CP} ${DISTDIR}/${DIST_SUBDIR}/ttcp.1 ${WRKSRC}/ Modified: head/benchmarks/ubench/Makefile ============================================================================== --- head/benchmarks/ubench/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/ubench/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,9 +1,5 @@ -# New ports collection makefile for: ubench -# Date created: 6 June 2000 -# Whom: Yen-Ming Lee -# +# Created by: Yen-Ming Lee # $FreeBSD$ -# PORTNAME= ubench PORTVERSION= 0.32 @@ -19,4 +15,5 @@ HAS_CONFIGURE= yes MAN8= ubench.8 PLIST_FILES= bin/ubench +NO_STAGE= yes .include Modified: head/benchmarks/unixbench/Makefile ============================================================================== --- head/benchmarks/unixbench/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/unixbench/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -14,6 +14,7 @@ COMMENT= The BYTE magazine's Public Doma SUB_FILES= unixbench MAKE_JOBS_UNSAFE= yes +NO_STAGE= yes post-extract: ${RM} -f ${WRKSRC}/pgms/select Modified: head/benchmarks/webbench/Makefile ============================================================================== --- head/benchmarks/webbench/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/webbench/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -1,9 +1,5 @@ -# New ports collection makefile for: webbench -# Date created: 10 Jan 2004 -# Whom: Radim Kolar -# +# Created by: Radim Kolar # $FreeBSD$ -# PORTNAME= webbench PORTVERSION= 1.5 @@ -26,6 +22,7 @@ PORTDOCS= copyright changelog PLIST_FILES= bin/webbench +NO_STAGE= yes do-install: ${INSTALL_PROGRAM} ${WRKSRC}/webbench ${PREFIX}/bin .if !defined(NO_INSTALL_MANPAGES) Modified: head/benchmarks/wrk/Makefile ============================================================================== --- head/benchmarks/wrk/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/wrk/Makefile Fri Sep 20 15:52:44 2013 (r327708) @@ -20,6 +20,7 @@ CFLAGS+= -std=c99 -D_DECLARE_C99_LDBL_MA PLIST_FILES= bin/wrk +NO_STAGE= yes .include .if ${OSVERSION} < 800000 Modified: head/benchmarks/xdd/Makefile ============================================================================== --- head/benchmarks/xdd/Makefile Fri Sep 20 15:28:04 2013 (r327707) +++ head/benchmarks/xdd/Makefile Fri Sep 20 15:52:44 2013 (r327708) *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***