blob: d6f6a6b1a202dd078f5e3859e0cab56a1e46d415 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# New ports collection makefile for: fio
# Date created: Jan.15, 2009
# Whom: luigi@FreeBSD.org
#
# Maintainers: Bruce Cran <brucec@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= fio
PORTVERSION= 1.54
CATEGORIES= sysutils benchmarks
MASTER_SITES= http://brick.kernel.dk/snaps/
MAINTAINER= brucec@FreeBSD.org
COMMENT= FIO - flexible IO tester
USE_BZIP2= yes
USE_GMAKE= yes
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
OPTIONS= GNUPLOT "Support for plotting graphs" off
MAN1= fio.1 fio_generate_plots.1
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/fio ${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKSRC}/fio_generate_plots ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/fio.1 ${MAN1PREFIX}/man/man1/
${INSTALL_MAN} ${WRKSRC}/fio_generate_plots.1 ${MAN1PREFIX}/man/man1
.if !defined(NOPORTEXAMPLES)
@${MKDIR} ${EXAMPLESDIR}
@(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${EXAMPLESDIR})
.endif
.include <bsd.port.pre.mk>
.if defined(WITH_GNUPLOT)
BUILD_DEPENDS+= ${LOCALBASE}/bin/gnuplot:${PORTSDIR}/math/gnuplot
.endif
.include <bsd.port.post.mk>
|