diff options
author | grant <grant> | 2002-06-25 05:03:29 +0000 |
---|---|---|
committer | grant <grant> | 2002-06-25 05:03:29 +0000 |
commit | 01721655c88845772e9c2d74d0715f47d47f3e96 (patch) | |
tree | f7a266319037868307aa7e397f7cf514e3a88d8f /sysutils | |
parent | c6a7c569d250e46331de9faefce32a1d2448f23b (diff) | |
download | pkgsrc-01721655c88845772e9c2d74d0715f47d47f3e96.tar.gz |
Initial import of randread-0.1.
Randread is a simple program to help benchmark random read
performance.
See http://randread.sourceforge.net/ for information.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/randread/DESCR | 2 | ||||
-rw-r--r-- | sysutils/randread/Makefile | 19 | ||||
-rw-r--r-- | sysutils/randread/PLIST | 2 | ||||
-rw-r--r-- | sysutils/randread/distinfo | 5 | ||||
-rw-r--r-- | sysutils/randread/patches/patch-aa | 12 |
5 files changed, 40 insertions, 0 deletions
diff --git a/sysutils/randread/DESCR b/sysutils/randread/DESCR new file mode 100644 index 00000000000..3797571e329 --- /dev/null +++ b/sysutils/randread/DESCR @@ -0,0 +1,2 @@ +Randread is a simple program to help benchmark random read +performance. diff --git a/sysutils/randread/Makefile b/sysutils/randread/Makefile new file mode 100644 index 00000000000..fbc7a65cb0d --- /dev/null +++ b/sysutils/randread/Makefile @@ -0,0 +1,19 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/06/25 05:03:29 grant Exp $ +# + +DISTNAME= randread-0.1 +CATEGORIES= sysutils +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=randread/} + +MAINTAINER= grant@netbsd.org +HOMEPAGE= http://randread.sourceforge.net/ +COMMENT= simple program to help benchmark random read performance + +WRKSRC= ${WRKDIR} + +ALL_TARGET= randread + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/randread ${PREFIX}/sbin + +.include "../../mk/bsd.pkg.mk" diff --git a/sysutils/randread/PLIST b/sysutils/randread/PLIST new file mode 100644 index 00000000000..350a68d6bcc --- /dev/null +++ b/sysutils/randread/PLIST @@ -0,0 +1,2 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2002/06/25 05:03:29 grant Exp $ +sbin/randread diff --git a/sysutils/randread/distinfo b/sysutils/randread/distinfo new file mode 100644 index 00000000000..b10524757ae --- /dev/null +++ b/sysutils/randread/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2002/06/25 05:03:29 grant Exp $ + +SHA1 (randread-0.1.tar.gz) = fefdf7ebeda6767a85215898e67606745f57d149 +Size (randread-0.1.tar.gz) = 3490 bytes +SHA1 (patch-aa) = 9d29d08e0830320c3e9964b80c008f2b1b95711c diff --git a/sysutils/randread/patches/patch-aa b/sysutils/randread/patches/patch-aa new file mode 100644 index 00000000000..051101028ce --- /dev/null +++ b/sysutils/randread/patches/patch-aa @@ -0,0 +1,12 @@ +$NetBSD: patch-aa,v 1.1.1.1 2002/06/25 05:03:29 grant Exp $ + +--- Makefile.orig Fri Jun 21 17:12:37 2002 ++++ Makefile Wed Jun 26 01:00:37 2002 +@@ -1,6 +1,6 @@ + + randread: randread.c +- cc -g -Wall -o randread randread.c ++ ${CC} ${CFLAGS} -Wall -o randread randread.c + + tarfile: clean + tar cf - . | gzip -9 > ../randread.tar.gz |