From 3370c7411f64b7ed21edec757a743b43e683b6cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Mon, 16 Nov 2015 16:39:13 +0000 Subject: [PATCH] The phybs utility attempts to measure disk performance for various I/O block sizes and alignments. It can be used to deduce the physical block size of a hard disk drive or the stripe size of an array. --- sysutils/Makefile | 1 + sysutils/phybs/Makefile | 17 +++++++++++++++++ sysutils/phybs/distinfo | 2 ++ sysutils/phybs/pkg-descr | 3 +++ 4 files changed, 23 insertions(+) create mode 100644 sysutils/phybs/Makefile create mode 100644 sysutils/phybs/distinfo create mode 100644 sysutils/phybs/pkg-descr diff --git a/sysutils/Makefile b/sysutils/Makefile index f2d2da2a72a6..82bad0261e91 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -727,6 +727,7 @@ SUBDIR += php55-posix SUBDIR += php56-fileinfo SUBDIR += php56-posix + SUBDIR += phybs SUBDIR += pick SUBDIR += pidof SUBDIR += pipemeter diff --git a/sysutils/phybs/Makefile b/sysutils/phybs/Makefile new file mode 100644 index 000000000000..a2ebac37ca31 --- /dev/null +++ b/sysutils/phybs/Makefile @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= phybs +PORTVERSION= 20140717 +CATEGORIES= sysutils +MASTER_SITES= LOCAL/des + +MAINTAINER= des@FreeBSD.org +COMMENT= Disk benchmarking utility + +LICENSE= BSD2CLAUSE + +PLIST_FILES= bin/phybs man/man1/phybs.1.gz + +GNU_CONFIGURE= yes + +.include diff --git a/sysutils/phybs/distinfo b/sysutils/phybs/distinfo new file mode 100644 index 000000000000..7b887e4e2275 --- /dev/null +++ b/sysutils/phybs/distinfo @@ -0,0 +1,2 @@ +SHA256 (phybs-20140717.tar.gz) = 0fa41ae196029ca514175c460fb8ef016dea6135ecbb735018a67483b999ceb4 +SIZE (phybs-20140717.tar.gz) = 85566 diff --git a/sysutils/phybs/pkg-descr b/sysutils/phybs/pkg-descr new file mode 100644 index 000000000000..508982c413ce --- /dev/null +++ b/sysutils/phybs/pkg-descr @@ -0,0 +1,3 @@ +The phybs utility attempts to measure disk performance for various I/O +block sizes and alignments. It can be used to deduce the physical block +size of a hard disk drive or the stripe size of an array.