Thu Oct 29 18:20:36 2009 UTC ()
Not MAKE_JOBS safe.


(joerg)
diff -r1.42 -r1.43 pkgsrc/benchmarks/hbench/Makefile

cvs diff -r1.42 -r1.43 pkgsrc/benchmarks/hbench/Makefile (expand / switch to unified diff)

--- pkgsrc/benchmarks/hbench/Makefile 2009/07/08 14:19:46 1.42
+++ pkgsrc/benchmarks/hbench/Makefile 2009/10/29 18:20:36 1.43
@@ -1,29 +1,30 @@ @@ -1,29 +1,30 @@
1# $NetBSD: Makefile,v 1.42 2009/07/08 14:19:46 joerg Exp $ 1# $NetBSD: Makefile,v 1.43 2009/10/29 18:20:36 joerg Exp $
2 2
3DISTNAME= hbench-OS-1.0 3DISTNAME= hbench-OS-1.0
4PKGNAME= hbench-1.0 4PKGNAME= hbench-1.0
5PKGREVISION= 6 5PKGREVISION= 6
6CATEGORIES= benchmarks 6CATEGORIES= benchmarks
7MASTER_SITES= http://www.eecs.harvard.edu/vino/perf/hbench/ 7MASTER_SITES= http://www.eecs.harvard.edu/vino/perf/hbench/
8 8
9MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= http://www.eecs.harvard.edu/vino/perf/hbench/ 10HOMEPAGE= http://www.eecs.harvard.edu/vino/perf/hbench/
11COMMENT= Suite of portable benchmarks to measure the OS and the hardware 11COMMENT= Suite of portable benchmarks to measure the OS and the hardware
12 12
13DEPENDS+= gnuplot>=3.7:../../graphics/gnuplot 13DEPENDS+= gnuplot>=3.7:../../graphics/gnuplot
14 14
15PKG_INSTALLATION_TYPES= overwrite pkgviews 15PKG_INSTALLATION_TYPES= overwrite pkgviews
16PKG_DESTDIR_SUPPORT= user-destdir 16PKG_DESTDIR_SUPPORT= user-destdir
 17MAKE_JOBS_SAFE= no
17 18
18WRKSRC= ${WRKDIR}/hbench-OS 19WRKSRC= ${WRKDIR}/hbench-OS
19OSVERSION_SPECIFIC= YES 20OSVERSION_SPECIFIC= YES
20BUILD_TARGET= build 21BUILD_TARGET= build
21USE_TOOLS+= perl:run 22USE_TOOLS+= perl:run
22OVERRIDE_GNU_CONFIG_SCRIPTS= yes 23OVERRIDE_GNU_CONFIG_SCRIPTS= yes
23 24
24DIST_SUBDIR= ${PKGNAME_NOREV} 25DIST_SUBDIR= ${PKGNAME_NOREV}
25 26
26GET_ARCH_CMD= ${PKGSRCDIR:Q}/mk/gnu-config/config.guess | ${SED} -e 's/-.*-.*$$//' 27GET_ARCH_CMD= ${PKGSRCDIR:Q}/mk/gnu-config/config.guess | ${SED} -e 's/-.*-.*$$//'
27GET_OS_CMD= ${PKGSRCDIR:Q}/mk/gnu-config/config.guess | ${SED} -e 's/^.*-.*-//' 28GET_OS_CMD= ${PKGSRCDIR:Q}/mk/gnu-config/config.guess | ${SED} -e 's/^.*-.*-//'
28PLIST_SUBST+= PLATFORM=${GET_OS_CMD:sh:Q}-${GET_ARCH_CMD:sh:Q} 29PLIST_SUBST+= PLATFORM=${GET_OS_CMD:sh:Q}-${GET_ARCH_CMD:sh:Q}
29 30