mirror of
https://git.freebsd.org/ports.git
synced 2025-06-03 20:06:29 -04:00
Filebench is quick to set up and use unlike many of the commercial benchmarks which it can emulate. It is also a handy tool for micro-benchmarking storage subsystems and studying the relationships of complex applications such as relational databases with their storage without having to incur the costs of setting up those applications, loading data and so forth. Filebench uses loadable workload personalities in a common framework to allow easy emulation of complex applications upon file systems. The workload personalities use a Workload Definition Language to define the workload's model. WWW: http://www.solarisinternals.com/wiki/index.php/FileBench WWW: http://www.fsl.cs.sunysb.edu/~vass/filebench/ PR: ports/153750 Submitted by: "Tom Judge" <tom@tomjudge.com> Approved by: fjoe (mentor)
28 lines
595 B
Makefile
28 lines
595 B
Makefile
# New ports collection makefile for: filebench
|
|
# Date created: Jan 6, 2011
|
|
# Whom: Tom Judge <tom@tomjudge.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= filebench
|
|
PORTVERSION= 1.4.8.0.8
|
|
CATEGORIES= benchmarks
|
|
MASTER_SITES= http://www.fsl.cs.sunysb.edu/~vass/filebench/
|
|
DISTNAME= go_filebench-1.4.8.fsl.0.8
|
|
|
|
MAINTAINER= tom@tomjudge.com
|
|
COMMENT= Performance Test of Filesystem I/O
|
|
|
|
ONLY_FOR_ARCHS= amd64 i386 ia64 ppc
|
|
|
|
GNU_CONFIGURE= yes
|
|
LICENSE= CDDL
|
|
|
|
do-install:
|
|
( cd ${WRKSRC} && make install-binPROGRAMS )
|
|
.if !defined(NOPORTDATA)
|
|
(cd ${WRKSRC} && make install-data )
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|