devstat is a small program that displays device statistics

available via kernel devstat(9) interface.

WWW: http://devstat.googlecode.com/
Author: Mikolaj Golub <to.my.trociny@gmail.com>

PR:		136437
Submitted by:	Mikolaj Golub <to.my.trociny@gmail.com>
This commit is contained in:
Dmitry Marakasov 2009-07-08 01:02:38 +00:00
parent 2e4368f84b
commit 5313f727a1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=237390
4 changed files with 32 additions and 0 deletions

View File

@ -147,6 +147,7 @@
SUBDIR += detox
SUBDIR += devcpu
SUBDIR += devcpu-data
SUBDIR += devstat
SUBDIR += di
SUBDIR += dim
SUBDIR += dircomp

23
sysutils/devstat/Makefile Normal file
View File

@ -0,0 +1,23 @@
# New ports collection makefile for: devstat
# Date created: 13 April 2008
# Whom: Mikolaj Golub <to.my.trociny@gmail.com>
#
# $FreeBSD$
#
PORTNAME= devstat
PORTVERSION= 0.3.1
CATEGORIES= sysutils
MASTER_SITES= GOOGLE_CODE
MAINTAINER= to.my.trociny@gmail.com
COMMENT= Utility to display device statistics
PLIST_FILES= bin/devstat
MAN8= devstat.8
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/devstat ${PREFIX}/bin/
${INSTALL_MAN} ${WRKSRC}/devstat.8 ${PREFIX}/man/man8
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (devstat-0.3.1.tar.gz) = 3359298b7e86e0edfdd1b6fa0c1a199c
SHA256 (devstat-0.3.1.tar.gz) = 45240a42223002f6aa1fa434ef03ed179c38115394f2c03754d52325dfe7930f
SIZE (devstat-0.3.1.tar.gz) = 4260

View File

@ -0,0 +1,5 @@
devstat is a small program that displays device statistics
available via kernel devstat(9) interface.
WWW: http://devstat.googlecode.com/
Author: Mikolaj Golub <to.my.trociny@gmail.com>