diff options
author | rmind <rmind@pkgsrc.org> | 2007-03-05 15:55:25 +0000 |
---|---|---|
committer | rmind <rmind@pkgsrc.org> | 2007-03-05 15:55:25 +0000 |
commit | 7409fbf550262b83561fc1a0773c7c35221f0987 (patch) | |
tree | 8417f44b3298742875bc941cde5912a5d8af8f1e /benchmarks/sysbench/Makefile | |
parent | e2277684c24dce3ffb77764445919ce1d9e378d8 (diff) | |
download | pkgsrc-7409fbf550262b83561fc1a0773c7c35221f0987.tar.gz |
PR/35905: New pkg: benchmarks/sysbench 0.4.8
Thanks for Kimura Fuyuki. OK: agc@
SysBench is a modular, cross-platform and multi-threaded benchmark
tool for evaluating OS parameters that are important for a system
running a database under intensive load.
Diffstat (limited to 'benchmarks/sysbench/Makefile')
-rw-r--r-- | benchmarks/sysbench/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/benchmarks/sysbench/Makefile b/benchmarks/sysbench/Makefile new file mode 100644 index 00000000000..8c397fd2a9a --- /dev/null +++ b/benchmarks/sysbench/Makefile @@ -0,0 +1,31 @@ +# $NetBSD: Makefile,v 1.1.1.1 2007/03/05 15:55:25 rmind Exp $ + +DISTNAME= sysbench-0.4.8 +CATEGORIES= benchmarks +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=sysbench/} + +MAINTAINER= fuyuki@hadaly.org +HOMEPAGE= http://sysbench.sourceforge.net/ +COMMENT= Modular, cross-platform and multi-threaded benchmark tool + +BUILD_DEPENDS+= libxslt-[0-9]*:../../textproc/libxslt +BUILD_DEPENDS+= docbook-xsl-[0-9]*:../../textproc/docbook-xsl + +GNU_CONFIGURE= yes +PTHREAD_AUTO_VARS= yes +MAKE_FLAGS+= bin_SCRIPTS= # don't install problematic scripts + +.include "../../mk/bsd.prefs.mk" + +.if ${OPSYS} == "NetBSD" +CFLAGS+= -D_NETBSD_SOURCE # hack for ulong along with patch-aa +.endif + +post-build: + ${PREFIX}/bin/xsltproc -o ${WRKSRC}/doc/manual.html \ + ${PREFIX}/share/xsl/docbook/xhtml/docbook.xsl \ + ${WRKSRC}/doc/manual.xml + +.include "options.mk" +.include "../../mk/pthread.buildlink3.mk" +.include "../../mk/bsd.pkg.mk" |