summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrooks Davis <brooks@FreeBSD.org>2004-05-08 00:06:47 +0000
committerBrooks Davis <brooks@FreeBSD.org>2004-05-08 00:06:47 +0000
commit1d089609715abbc976d8108a18e4058b5cb9b100 (patch)
tree5c6d463f0db391b0e71f6fd786ed23b279484a96
parentThe diskprep program prepares a disk for use. It can be used for a (diff)
The program diskmark uses an unused entry in the Master Boot Record
on PC disks to record version information. The author uses this information to determine if scratch disks should be partitioned at boot on a network booting compute cluster. http://people.freebsd.org/~brooks/diskmark/ Approved by: krion (mentor)
-rw-r--r--sysutils/Makefile1
-rw-r--r--sysutils/diskmark/Makefile23
-rw-r--r--sysutils/diskmark/distinfo2
-rw-r--r--sysutils/diskmark/pkg-descr6
4 files changed, 32 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile
index ed7248e5fcbe..a079b0f74334 100644
--- a/sysutils/Makefile
+++ b/sysutils/Makefile
@@ -85,6 +85,7 @@
SUBDIR += dim
SUBDIR += dirdiff
SUBDIR += diskcheckd
+ SUBDIR += diskmark
SUBDIR += diskprep
SUBDIR += disktool
SUBDIR += disktype
diff --git a/sysutils/diskmark/Makefile b/sysutils/diskmark/Makefile
new file mode 100644
index 000000000000..9ab9e492d62b
--- /dev/null
+++ b/sysutils/diskmark/Makefile
@@ -0,0 +1,23 @@
+# Ports collection makefile for: diskmark
+# Date created: Friday, May 7, 2004
+# Whom: Brooks Davis <brooks@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= diskmark
+PORTVERSION= 0.9
+CATEGORIES= sysutils
+MASTER_SITES= http://people.freebsd.org/~brooks/diskmark/
+
+MAINTAINER= brooks@FreeBSD.org
+COMMENT= A program to mark disks using empty partition table entries
+
+PLIST_FILES= sbin/diskmark
+
+USE_BZIP2= yes
+
+MAN8= diskmark.8
+MANCOMPRESSED= yes
+
+.include <bsd.port.mk>
diff --git a/sysutils/diskmark/distinfo b/sysutils/diskmark/distinfo
new file mode 100644
index 000000000000..4811e6a51fb2
--- /dev/null
+++ b/sysutils/diskmark/distinfo
@@ -0,0 +1,2 @@
+MD5 (diskmark-0.9.tar.bz2) = 111c7d5e6d24d59130c2e614093a6731
+SIZE (diskmark-0.9.tar.bz2) = 5091
diff --git a/sysutils/diskmark/pkg-descr b/sysutils/diskmark/pkg-descr
new file mode 100644
index 000000000000..f3aa928b2346
--- /dev/null
+++ b/sysutils/diskmark/pkg-descr
@@ -0,0 +1,6 @@
+The program diskmark uses an unused entry in the Master Boot Record
+on PC disks to record version information. The author uses this
+information to determine if scratch disks should be partitioned at boot
+on a network booting compute cluster.
+
+WWW: http://people.freebsd.org/~brooks/diskmark/