Import of pkgsrc-2014Q1
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.47 2012/12/04 10:33:56 msaitoh Exp $
|
||||
# $NetBSD: Makefile,v 1.48 2013/11/30 20:31:30 tron Exp $
|
||||
#
|
||||
|
||||
COMMENT= Benchmarking tools
|
||||
@@ -10,6 +10,7 @@ SUBDIR+= bonnie++
|
||||
SUBDIR+= bytebench
|
||||
SUBDIR+= dbench
|
||||
SUBDIR+= dhrystone
|
||||
SUBDIR+= dnsperf
|
||||
SUBDIR+= fib
|
||||
SUBDIR+= filebench
|
||||
SUBDIR+= flops
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
# $NetBSD: Makefile,v 1.37 2012/09/11 22:37:11 asau Exp $
|
||||
# $NetBSD: Makefile,v 1.38 2013/09/10 14:12:38 joerg Exp $
|
||||
|
||||
DISTNAME= bonnie
|
||||
PKGNAME= bonnie-2.06
|
||||
PKGREVISION= 2
|
||||
PKGREVISION= 3
|
||||
CATEGORIES= benchmarks
|
||||
MASTER_SITES= http://www.textuality.com/bonnie/
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
$NetBSD: distinfo,v 1.10 2011/09/12 07:17:14 dholland Exp $
|
||||
$NetBSD: distinfo,v 1.11 2013/09/10 14:12:38 joerg Exp $
|
||||
|
||||
SHA1 (bonnie.tar.gz) = f435ae56903883c8e3e011eb989783c8410f5ee3
|
||||
RMD160 (bonnie.tar.gz) = 677446fde3f53e2afc2b5f1d76af2555a4779d88
|
||||
Size (bonnie.tar.gz) = 7140 bytes
|
||||
SHA1 (patch-aa) = e81766946655b43fbd6a7c1dc23e32987827d399
|
||||
SHA1 (patch-ab) = 927415c66b7c03897aa4cbee07cd54c242272148
|
||||
SHA1 (patch-ac) = a03a1c886f1c53c5a37b0f0a658bff28ca0b434b
|
||||
SHA1 (patch-ac) = f41bbb7bb6fbb6a72b25c31a848450f81eab2376
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
$NetBSD: patch-ac,v 1.5 2011/09/12 07:17:14 dholland Exp $
|
||||
$NetBSD: patch-ac,v 1.6 2013/09/10 14:12:38 joerg Exp $
|
||||
|
||||
- ...
|
||||
- cope with 64-bit off_t
|
||||
@@ -89,7 +89,7 @@ $NetBSD: patch-ac,v 1.5 2011/09/12 07:17:14 dholland Exp $
|
||||
+ if (size < ((off_t)1 << 32)) /* From FreeBSD */
|
||||
+ seekto = random() % (size / Chunk);
|
||||
+ else
|
||||
+ seekto = ((off_t)random() << 32 + random()) % (size / Chunk);
|
||||
+ seekto = (((off_t)random() << 32) + random()) % (size / Chunk);
|
||||
+ doseek(seekto, fd,
|
||||
((lseek_count++ % UpdateSeek) == 0));
|
||||
if (read(seek_control[0], seek_tickets, 1) != 1)
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
$NetBSD: distinfo,v 1.11 2011/09/12 11:37:46 taca Exp $
|
||||
$NetBSD: distinfo,v 1.12 2013/10/27 20:30:01 joerg Exp $
|
||||
|
||||
SHA1 (unixbench-4.1.0.tgz) = 0a43d9cf08869c0f81bde4647be6bcf76c064248
|
||||
RMD160 (unixbench-4.1.0.tgz) = 182e8a35574df0cd7984662bf99d47a7e24e7e03
|
||||
Size (unixbench-4.1.0.tgz) = 63075 bytes
|
||||
SHA1 (patch-aa) = e99170aaa9100486ef4e62387a0795dd4372f157
|
||||
SHA1 (patch-ab) = 76c010c87925900f8d7046395bd9f42b885893f2
|
||||
SHA1 (patch-ab) = 9e4fdf23a7a665b60ef8b18fe800f9fdbb66fb77
|
||||
SHA1 (patch-ac) = ebfb09da84c96f8c6f48293c65a74dcf8a43cff5
|
||||
SHA1 (patch-ad) = 3a1b788d9fa51fc168d59d8c87b1f476df2d5f41
|
||||
SHA1 (patch-ae) = fbbce3deed7f0421034c1d57b66b1967ad8bddf1
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
$NetBSD: patch-ab,v 1.4 2011/09/12 11:37:46 taca Exp $
|
||||
$NetBSD: patch-ab,v 1.5 2013/10/27 20:30:01 joerg Exp $
|
||||
|
||||
--- Makefile.orig 1999-07-28 22:05:02.000000000 +0000
|
||||
+++ Makefile
|
||||
@@ -18,7 +18,7 @@ $NetBSD: patch-ab,v 1.4 2011/09/12 11:37:46 taca Exp $
|
||||
OPTON = -O2 -fomit-frame-pointer -fforce-addr -fforce-mem -ffast-math -Wall
|
||||
|
||||
+## For Solaris 2, or general-purpose GCC 4.5
|
||||
+OPTON = -O2 -fomit-frame-pointer -fforce-addr -ffast-math -Wall
|
||||
+OPTON = -O2 -fomit-frame-pointer -ffast-math -Wall
|
||||
+
|
||||
## Very generic
|
||||
#OPTON = -O
|
||||
|
||||
17
benchmarks/dnsperf/DESCR
Normal file
17
benchmarks/dnsperf/DESCR
Normal file
@@ -0,0 +1,17 @@
|
||||
DNSPerf, ResPerf, and DHCPerf are free tools developed by Nominum that
|
||||
make it simple to gather accurate latency and throughput metrics for
|
||||
Domain Name Service (DNS) and Dynamic Host Configuration Protocol
|
||||
(DHCP). These tools are easy-to-use and simulate typical Internet so
|
||||
network operators can benchmark their naming and addressing
|
||||
infrastructure and plan for upgrades. The latest version of the DNS
|
||||
test tools (DNSPerf and ResPerf) can be used with new test files that
|
||||
include IPv6 queries.
|
||||
|
||||
DNSPerf "self-paces" the DNS query load to simulate network
|
||||
conditions. New features in DNSPerf improve the precision of latency
|
||||
measurements and allow for per packet per-query latency reporting is
|
||||
possible. DNSPerf is now multithreaded, multiple DNSPerf clients can
|
||||
be supported in multicore systems (each client requires two
|
||||
cores). The output of DNSPerf has also been improved so it is more
|
||||
concise and useful. Latency data can be used to make detailed graphs
|
||||
so it is simple for network operators to take advantage of the data.
|
||||
25
benchmarks/dnsperf/Makefile
Normal file
25
benchmarks/dnsperf/Makefile
Normal file
@@ -0,0 +1,25 @@
|
||||
# $NetBSD: Makefile,v 1.3 2014/02/12 23:17:35 tron Exp $
|
||||
|
||||
DISTNAME= dnsperf-src-2.0.0.0-1
|
||||
PKGNAME= dnsperf-2.0.0.0
|
||||
PKGREVISION= 1
|
||||
CATEGORIES= benchmarks net
|
||||
MASTER_SITES= ftp://ftp.nominum.com/pub/nominum/${PKGBASE}/${PKGVERSION}/
|
||||
|
||||
MAINTAINER= tron@NetBSD.org
|
||||
HOMEPAGE= http://www.nominum.com/support/measurement-tools/
|
||||
COMMENT= DNS server performance measurement tools
|
||||
LICENSE= mit
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
USE_TOOLS+= sh:run
|
||||
|
||||
# This package needs "isc" include files and "isc-config.sh" to build.
|
||||
# The built-in check only considers "libbind".
|
||||
USE_BUILTIN.bind= no
|
||||
|
||||
REPLACE_SH+= resperf-report
|
||||
|
||||
.include "../../net/bind99/buildlink3.mk"
|
||||
.include "../../security/openssl/buildlink3.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
6
benchmarks/dnsperf/PLIST
Normal file
6
benchmarks/dnsperf/PLIST
Normal file
@@ -0,0 +1,6 @@
|
||||
@comment $NetBSD: PLIST,v 1.1 2013/11/30 20:31:18 tron Exp $
|
||||
bin/dnsperf
|
||||
bin/resperf
|
||||
bin/resperf-report
|
||||
man/man1/dnsperf.1
|
||||
man/man1/resperf.1
|
||||
6
benchmarks/dnsperf/distinfo
Normal file
6
benchmarks/dnsperf/distinfo
Normal file
@@ -0,0 +1,6 @@
|
||||
$NetBSD: distinfo,v 1.1 2013/11/30 20:31:18 tron Exp $
|
||||
|
||||
SHA1 (dnsperf-src-2.0.0.0-1.tar.gz) = a0cf8f95de821a9ca1b7f8001e5ef7334e968540
|
||||
RMD160 (dnsperf-src-2.0.0.0-1.tar.gz) = 1d2f856651e82755e0c7071100574dba682e1e8f
|
||||
Size (dnsperf-src-2.0.0.0-1.tar.gz) = 565871 bytes
|
||||
SHA1 (patch-Makefile.in) = 9f5377a75d9674a3aeb12f933f0a552564534d91
|
||||
15
benchmarks/dnsperf/patches/patch-Makefile.in
Normal file
15
benchmarks/dnsperf/patches/patch-Makefile.in
Normal file
@@ -0,0 +1,15 @@
|
||||
$NetBSD: patch-Makefile.in,v 1.1 2013/11/30 20:31:18 tron Exp $
|
||||
|
||||
Don't attempt to strip shell scripts which breaks the installation.
|
||||
|
||||
--- Makefile.in.orig 2012-03-02 02:25:22.000000000 +0000
|
||||
+++ Makefile.in 2013-11-30 19:48:44.000000000 +0000
|
||||
@@ -41,7 +41,7 @@
|
||||
install: all installdirs
|
||||
${INSTALL_PROGRAM} dnsperf ${DESTDIR}${bindir}
|
||||
${INSTALL_PROGRAM} resperf ${DESTDIR}${bindir}
|
||||
- ${INSTALL_PROGRAM} resperf-report ${DESTDIR}${bindir}
|
||||
+ ${BSD_INSTALL_SCRIPT} resperf-report ${DESTDIR}${bindir}
|
||||
${INSTALL_DATA} dnsperf.1 ${DESTDIR}${mandir}/man1
|
||||
${INSTALL_DATA} resperf.1 ${DESTDIR}${mandir}/man1
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.2 2012/09/11 22:37:12 asau Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2013/08/27 15:40:42 joerg Exp $
|
||||
|
||||
DISTNAME= filebench-1.4.9.1
|
||||
CATEGORIES= benchmarks
|
||||
@@ -14,7 +14,7 @@ USE_TOOLS= lex
|
||||
USE_TOOLS+= aclocal autoconf automake
|
||||
|
||||
pre-configure:
|
||||
cd $(WRKSRC) && aclocal && automake && autoconf
|
||||
cd $(WRKSRC) && aclocal && automake -a && autoconf
|
||||
|
||||
post-install:
|
||||
cd $(WRKSRC) && $(INSTALL_DATA) README $(DESTDIR)$(PREFIX)/share/$(PKGBASE)/
|
||||
|
||||
@@ -2,5 +2,4 @@ This benchmark utility is used to determine how the processor,
|
||||
its caches and coprocessors influence overall system performance.
|
||||
Its measurements can indicate problems with the processor subsystem
|
||||
and (since the processor is a major influence on overall system
|
||||
system performance) give us an idea of how well a given system will
|
||||
perform.
|
||||
performance) give us an idea of how well a given system will perform.
|
||||
|
||||
@@ -1,12 +1,18 @@
|
||||
# $NetBSD: Makefile,v 1.20.8.2 2013/07/17 12:43:31 gdt Exp $
|
||||
# $NetBSD: Makefile,v 1.21 2013/07/17 12:45:19 gdt Exp $
|
||||
|
||||
DISTNAME= paranoia
|
||||
PKGNAME= paranoia-960101
|
||||
PKGREVISION= 1
|
||||
CATEGORIES= benchmarks
|
||||
MASTER_SITES= ${MASTER_SITE_NETLIB:=paranoia/}
|
||||
EXTRACT_SUFX= .c
|
||||
|
||||
MAINTAINER= pkgsrc-users@NetBSD.org
|
||||
# Not really the HOMEPAGE:
|
||||
# HOMEPAGE= http://people.sc.fsu.edu/~jburkardt/c_src/paranoia/paranoia.html
|
||||
# An alteranative MASTER_SITE:
|
||||
# http://people.sc.fsu.edu/~jburkardt/c_src/paranoia/paranoia.c
|
||||
|
||||
MAINTAINER= gdt@NetBSD.org
|
||||
COMMENT= Highly paranoid test of IEEE 754 conformance
|
||||
|
||||
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
||||
@@ -15,8 +21,12 @@ WRKSRC= ${WRKDIR}
|
||||
|
||||
INSTALLATION_DIRS= bin
|
||||
|
||||
# The use of -ffloat-store in CFLAGS is controversial. The point of
|
||||
# the program is to test the compiler/machine environment, and
|
||||
# therefore this Makefile should not set non-default flags.
|
||||
|
||||
do-build:
|
||||
(cd ${WRKSRC} ; ${CC} ${CFLAGS} -ffloat-store -o paranoia paranoia.c -lm)
|
||||
(cd ${WRKSRC} ; ${CC} ${CFLAGS} -o paranoia paranoia.c -lm)
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/paranoia ${DESTDIR}${PREFIX}/bin
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# $NetBSD: Makefile,v 1.18 2013/02/06 23:21:43 jperkin Exp $
|
||||
# $NetBSD: Makefile,v 1.19 2014/02/12 23:17:35 tron Exp $
|
||||
|
||||
DISTNAME= postal-0.70
|
||||
PKGREVISION= 1
|
||||
PKGREVISION= 2
|
||||
CATEGORIES= benchmarks
|
||||
MASTER_SITES= http://www.coker.com.au/postal/
|
||||
EXTRACT_SUFX= .tgz
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# $NetBSD: Makefile,v 1.10 2013/03/02 20:33:22 wiz Exp $
|
||||
# $NetBSD: Makefile,v 1.11 2014/01/01 11:52:10 wiz Exp $
|
||||
|
||||
DISTNAME= sysbench-0.4.12
|
||||
PKGREVISION= 3
|
||||
PKGREVISION= 4
|
||||
CATEGORIES= benchmarks
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=sysbench/}
|
||||
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
# $NetBSD: Makefile,v 1.20 2012/09/11 22:37:15 asau Exp $
|
||||
# $NetBSD: Makefile,v 1.21 2013/12/17 15:05:23 tron Exp $
|
||||
|
||||
DISTNAME= ttcp
|
||||
PKGNAME= ${DISTNAME}-1.12
|
||||
PKGREVISION= 2
|
||||
CATEGORIES= benchmarks net
|
||||
MASTER_SITES= ftp://ftp.ptb.de/pub/benchmarks/
|
||||
#MASTER_SITES= ftp://ftp.ptb.de/pub/benchmarks/
|
||||
EXTRACT_SUFX= .tar.Z
|
||||
|
||||
MAINTAINER= pkgsrc-users@NetBSD.org
|
||||
@@ -15,6 +15,7 @@ LICENSE= public-domain
|
||||
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
||||
|
||||
USE_BSD_MAKEFILE= yes
|
||||
USE_TOOLS+= nroff
|
||||
MAKE_ENV+= NOGCCERROR=yes
|
||||
WRKSRC= ${WRKDIR}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
$NetBSD: distinfo,v 1.11 2007/01/18 11:28:00 rillig Exp $
|
||||
$NetBSD: distinfo,v 1.12 2013/12/17 15:05:23 tron Exp $
|
||||
|
||||
SHA1 (ttcp.tar.Z) = 33a60af208eff3dc9ae745060f44b24c4e74aa7e
|
||||
RMD160 (ttcp.tar.Z) = b5cb1a8efe0f716d25d58a4950f35bac47b17668
|
||||
Size (ttcp.tar.Z) = 18163 bytes
|
||||
SHA1 (patch-aa) = 4ef0fe369d4836a4de758a4cd62fda4785a471b7
|
||||
SHA1 (patch-ab) = a4419e0ee02a8b6d30ac13913f45fc9f5f9d7746
|
||||
SHA1 (patch-aa) = 96e3a9136bae4057682d2b3cfea2ec8c8bb21eaa
|
||||
SHA1 (patch-ab) = 265c19e05e22ce9fff7596b7b1efca0c07a7f4e0
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
$NetBSD: patch-aa,v 1.3 2007/01/18 11:28:00 rillig Exp $
|
||||
$NetBSD: patch-aa,v 1.4 2013/12/17 15:05:23 tron Exp $
|
||||
|
||||
Fix build.
|
||||
|
||||
--- Makefile.orig Tue Mar 26 16:19:05 2002
|
||||
+++ Makefile
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
$NetBSD: patch-ab,v 1.8 2005/12/21 11:49:51 tron Exp $
|
||||
$NetBSD: patch-ab,v 1.9 2013/12/17 15:05:23 tron Exp $
|
||||
|
||||
Fix build.
|
||||
|
||||
--- ttcp.c.orig 1997-02-27 21:30:23.000000000 +0000
|
||||
+++ ttcp.c 2005-12-21 11:40:39.000000000 +0000
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
# $NetBSD: Makefile,v 1.20 2013/06/04 22:15:43 tron Exp $
|
||||
# $NetBSD: Makefile,v 1.21 2013/09/04 12:31:24 obache Exp $
|
||||
#
|
||||
|
||||
DISTNAME= zelibm
|
||||
PKGNAME= zelibm-0
|
||||
PKGREVISION= 13
|
||||
PKGREVISION= 14
|
||||
CATEGORIES= benchmarks
|
||||
MASTER_SITES= http://people.redhat.com/drepper/libm/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user