summaryrefslogtreecommitdiff
path: root/sysutils/ioping/Makefile
blob: a6b5ac2a4bf30e13273e8c2cb7fa92dfc90aa4b8 (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
# Created by: Oleg Ginzburg <olevole@olevole.ru>
# $FreeBSD$

PORTNAME=	ioping
PORTVERSION=	0.7
CATEGORIES=	sysutils
MASTER_SITES=	GOOGLE_CODE

MAINTAINER=	olevole@olevole.ru
COMMENT=	Simple disk I/0 latency measuring tool

LICENSE=	GPLv3

MAN1=		ioping.1
PLIST_FILES=	bin/ioping

MAKE_ENV=	VERSION=${PORTVERSION}

# for the benefit of <80000
CFLAGS+=	-lm

do-build:
	cd ${WRKSRC}; \
	${SETENV} ${MAKE_ENV} ${CC} ${CFLAGS} -DVERSION=${PORTVERSION} ioping.c -o ioping

do-install:
	${INSTALL_PROGRAM} ${WRKSRC}/ioping ${PREFIX}/bin
	${INSTALL_MAN} ${WRKSRC}/ioping.1 ${MAN1PREFIX}/man/man1

.include <bsd.port.mk>