1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-05 06:27:37 +00:00

Fio is an I/O testing tool that will spawn a number of threads or

processes doing a particular type of I/O action as specified by
the user. Fio can be driven by a 'job file' describing the I/O
load one wants to simulate.

WWW:    http://git.kernel.dk/
This commit is contained in:
Luigi Rizzo 2009-02-14 19:32:30 +00:00
parent b003deb680
commit ddd028e250
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=228299
4 changed files with 50 additions and 0 deletions

33
sysutils/fio/Makefile Normal file
View File

@ -0,0 +1,33 @@
# New ports collection makefile for: fio
# Date created: Jan.15, 2009
# Whom: luigi@FreeBSD.org
#
# Maintainers: Luigi Rizzo <luigi@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= fio
PORTVERSION= 1.24
CATEGORIES= sysutils
MASTER_SITES= http://brick.kernel.dk/snaps/
MAINTAINER= luigi@FreeBSD.org
COMMENT= The program fio - flexible IO tester
BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash
SCRIPTS_ENV= "SHELL=bash"
WRKSRC= ${WRKDIR}/${PORTNAME}
USE_GMAKE= yes
MAKEFILE= Makefile.FreeBSD
MAN1= fio.1
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/fio ${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKSRC}/fio_generate_plots ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/fio.1 ${PREFIX}/man/man1/
.include <bsd.port.mk>

3
sysutils/fio/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (fio-1.24.tar.gz) = bcaf7367e04a5777ff350f02e256d394
SHA256 (fio-1.24.tar.gz) = 6e67f90ff8af03a2eab782cae57d93f4c5c0d3f3eabc7855298aa9b3643b545e
SIZE (fio-1.24.tar.gz) = 1446301

View File

@ -0,0 +1,8 @@
--- fio_generate_plots.orig 2009-02-06 14:13:52.000000000 +0100
+++ fio_generate_plots 2009-02-14 20:00:49.000000000 +0100
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/local/bin/bash
# Use gnuplot to generate plots from fio run with -l and/or -w

6
sysutils/fio/pkg-descr Normal file
View File

@ -0,0 +1,6 @@
Fio is an I/O testing tool that will spawn a number of threads or
processes doing a particular type of I/O action as specified by
the user. Fio can be driven by a 'job file' describing the I/O
load one wants to simulate.
WWW: http://git.kernel.dk/