diff options
author | Jason Helfman <jgh@FreeBSD.org> | 2011-12-27 20:38:35 +0000 |
---|---|---|
committer | Jason Helfman <jgh@FreeBSD.org> | 2011-12-27 20:38:35 +0000 |
commit | af304d9b96942097335eafdb52428fb50d295391 (patch) | |
tree | 9428049e4ad015f87ae6067d6f75d187b1bf0772 /sysutils/ioping/Makefile | |
parent | 9f8350eaab7ff6ac805ac151cbd10f4622726c23 (diff) | |
download | ports-af304d9b96942097335eafdb52428fb50d295391.tar.gz ports-af304d9b96942097335eafdb52428fb50d295391.zip |
Notes
Diffstat (limited to 'sysutils/ioping/Makefile')
-rw-r--r-- | sysutils/ioping/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/sysutils/ioping/Makefile b/sysutils/ioping/Makefile new file mode 100644 index 000000000000..131d3ab75d98 --- /dev/null +++ b/sysutils/ioping/Makefile @@ -0,0 +1,31 @@ +# New ports collection makefile for: ioping +# Date created: 27 December 2011 +# Whom: Oleg Ginzburg <olevole@olevole.ru> +# +# $FreeBSD$ +# + +PORTNAME= ioping +PORTVERSION= 0.6 +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} + +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> |