Index: head/benchmarks/unixbench/Makefile =================================================================== --- head/benchmarks/unixbench/Makefile (revision 449272) +++ head/benchmarks/unixbench/Makefile (revision 449273) @@ -1,49 +1,50 @@ # Created by: se # $FreeBSD$ PORTNAME= unixbench -PORTVERSION= 4.1.0 -PORTREVISION= 2 +DISTVERSIONPREFIX= v +DISTVERSION= 5.1.3 CATEGORIES= benchmarks -MASTER_SITES= http://ftp.osuosl.org/pub/nslu2/sources/ \ - http://www.tux.org/pub/tux/niemi/unixbench/ -MAINTAINER= luca.pizzamiglio@gmail.com +MAINTAINER= pizzamig@FreeBSD.org COMMENT= BYTE magazine's Public Domain benchmark for UNIX -USES= shebangfix tar:tgz -SHEBANG_FILES= pgms/perlbench -SUB_FILES= unixbench -MAKE_JOBS_UNSAFE= yes +LICENSE= GPLv2 -post-extract: - ${RM} ${WRKSRC}/pgms/select +RUN_DEPENDS= x11perf:x11/x11perf +USES= gmake perl5 shebangfix +USE_GITHUB= yes +GH_ACCOUNT= kdlucas +GH_PROJECT= byte-unixbench +WRKSRC_SUBDIR= UnixBench + +SUB_FILES= unixbench +SHEBANG_FILES= Run pgms/gfx-x11 + do-install: ${INSTALL_SCRIPT} ${WRKDIR}/unixbench ${STAGEDIR}${PREFIX}/bin/ - ${MKDIR} ${STAGEDIR}${PREFIX}/lib/unixbench - for f in Run ; do \ - ${INSTALL_SCRIPT} ${WRKSRC}/$${f} ${STAGEDIR}${PREFIX}/lib/unixbench/ ; \ - done - for f in Makefile README ; do \ - ${INSTALL_DATA} ${WRKSRC}/$${f} ${STAGEDIR}${PREFIX}/lib/unixbench/ ; \ - done - ${MKDIR} ${STAGEDIR}${PREFIX}/lib/unixbench/pgms + ${MKDIR} ${STAGEDIR}${PREFIX}/libexec/unixbench + ${INSTALL_SCRIPT} ${WRKSRC}/Run ${STAGEDIR}${PREFIX}/libexec/unixbench + ${MKDIR} ${STAGEDIR}${PREFIX}/libexec/unixbench/pgms for f in ${WRKSRC}/pgms/* ; do \ case $$f in \ - *.awk|*.sh|*perlbench) \ - ${INSTALL_SCRIPT} $${f} ${STAGEDIR}${PREFIX}/lib/unixbench/pgms/ ;; \ - *.logo|*.base) \ - ${INSTALL_SCRIPT} $${f} ${STAGEDIR}${PREFIX}/lib/unixbench/pgms/ ;; \ - *.orig|*.rej|*~) \ - ;;\ - *) \ - ${INSTALL_PROGRAM} $${f} ${STAGEDIR}${PREFIX}/lib/unixbench/pgms/ ;; \ + *.sh|*gfx-x11) \ + ${INSTALL_SCRIPT} $${f} \ + ${STAGEDIR}${PREFIX}/libexec/unixbench/pgms/ ;; \ + *.logo|*.base) \ + ${INSTALL_DATA} $${f} \ + ${STAGEDIR}${PREFIX}/libexec/unixbench/pgms/ ;; \ + *.orig|*.rej|*~) \ + ;;\ + *) \ + ${INSTALL_PROGRAM} $${f} \ + ${STAGEDIR}${PREFIX}/libexec/unixbench/pgms/ ;; \ esac ; \ done - -${MKDIR} ${STAGEDIR}${PREFIX}/lib/unixbench/testdir - for f in ${WRKSRC}/testdir/* ; do \ - ${INSTALL_DATA} $${f} ${STAGEDIR}${PREFIX}/lib/unixbench/testdir/ ; \ - done + ${MKDIR} ${STAGEDIR}${PREFIX}/libexec/unixbench/testdir + ${INSTALL_DATA} ${WRKSRC}/testdir/* ${STAGEDIR}${PREFIX}/libexec/unixbench/testdir/ + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${PREFIX}/libexec/unixbench/ + ${INSTALL_DATA} ${WRKSRC}/Makefile ${STAGEDIR}${PREFIX}/libexec/unixbench/ .include Index: head/benchmarks/unixbench/distinfo =================================================================== --- head/benchmarks/unixbench/distinfo (revision 449272) +++ head/benchmarks/unixbench/distinfo (revision 449273) @@ -1,2 +1,3 @@ -SHA256 (unixbench-4.1.0.tgz) = 4605f3f0001afd3af91ffb554dfd65c5cd313b6b9ada52ae8b2efdccf894cfa2 -SIZE (unixbench-4.1.0.tgz) = 63075 +TIMESTAMP = 1503481858 +SHA256 (kdlucas-byte-unixbench-v5.1.3_GH0.tar.gz) = 3a6bb00f270a5329682dff20fd2c1ab5332ef046eb54a96a0d7bd371005d31a3 +SIZE (kdlucas-byte-unixbench-v5.1.3_GH0.tar.gz) = 145908 Index: head/benchmarks/unixbench/files/patch-pgms_cleanup.sh =================================================================== --- head/benchmarks/unixbench/files/patch-pgms_cleanup.sh (revision 449272) +++ head/benchmarks/unixbench/files/patch-pgms_cleanup.sh (nonexistent) @@ -1,13 +0,0 @@ ---- pgms/cleanup.sh.orig 1997-09-13 02:01:19 UTC -+++ pgms/cleanup.sh -@@ -107,8 +107,8 @@ do - ;; - - -r) # reason for failure -- echo $1 -- echo $1 >>$LOGFILE -+ echo -e $1 -+ echo -e $1 >>$LOGFILE - shift - ;; - Property changes on: head/benchmarks/unixbench/files/patch-pgms_cleanup.sh ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/benchmarks/unixbench/files/patch-src_execl.c =================================================================== --- head/benchmarks/unixbench/files/patch-src_execl.c (revision 449272) +++ head/benchmarks/unixbench/files/patch-src_execl.c (nonexistent) @@ -1,11 +0,0 @@ ---- src/execl.c.orig 1999-07-28 21:46:58 UTC -+++ src/execl.c -@@ -88,7 +88,7 @@ char *argv[]; - fprintf(stderr, "%lu loops\n", iter); - exit(0); - } -- execl(fullpath, fullpath, "0", dur_str, count_str, start_str, 0); -+ execl(fullpath, fullpath, "0", dur_str, count_str, start_str, NULL); - printf("Exec failed at iteration %lu\n", iter); - perror("Reason"); - exit(1); Property changes on: head/benchmarks/unixbench/files/patch-src_execl.c ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/benchmarks/unixbench/files/patch-Makefile =================================================================== --- head/benchmarks/unixbench/files/patch-Makefile (revision 449272) +++ head/benchmarks/unixbench/files/patch-Makefile (revision 449273) @@ -1,40 +1,46 @@ ---- Makefile.orig 1999-07-28 22:05:02 UTC +--- Makefile.orig 2015-06-04 17:20:18 UTC +++ Makefile -@@ -30,9 +30,7 @@ +@@ -38,7 +38,7 @@ ############################################################################## - ID="@(#)Makefile:3.9 -- 5/15/91 19:30:15"; + SHELL = /bin/sh --#HZ = ???? #(read from environment) --CFLAGS = -DTIME --CC=gcc +- +HZ = 128 + # GRAPHICS TESTS: Uncomment the definition of "GRAPHIC_TESTS" to enable + # the building of the graphics benchmarks. This will require the + # X11 libraries on your system. +@@ -53,7 +53,7 @@ GL_LIBS = -lGL -lXext -lX11 + # COMPILER CONFIGURATION: Set "CC" to the name of the compiler to use + # to build the binary benchmarks. You should also set "$cCompiler" in the + # Run script to the name of the compiler you want to test. +-CC=gcc ++#CC=gcc - ## For Linux 486/Pentium, GCC 2.7.x and 2.8.x - #OPTON = -O2 -fomit-frame-pointer -fforce-addr -fforce-mem -ffast-math \ -@@ -44,7 +42,7 @@ CC=gcc + # OPTIMISATION SETTINGS: + +@@ -71,14 +71,14 @@ CC=gcc # -m386 -malign-loops=1 -malign-jumps=1 -malign-functions=1 ## For Solaris 2, or general-purpose GCC 2.7.x --OPTON = -O2 -fomit-frame-pointer -fforce-addr -fforce-mem -ffast-math -Wall -+#OPTON = -O2 -fomit-frame-pointer -fforce-addr -fforce-mem -ffast-math -Wall +-OPTON = -O2 -fomit-frame-pointer -fforce-addr -ffast-math -Wall ++OPTON = -O2 -fomit-frame-pointer -ffast-math -Wall - ## Very generic - #OPTON = -O -@@ -54,14 +52,14 @@ OPTON = -O2 -fomit-frame-pointer -fforce + ## For Digital Unix v4.x, with DEC cc v5.x + #OPTON = -O4 #CFLAGS = -DTIME -std1 -verbose -w0 - ## generic gcc CFLAGS. -DTIME must be included + ## generic gcc CFLAGS. -DTIME must be included. -CFLAGS = -DTIME -Wall -pedantic -ansi +CFLAGS += -DTIME -Wall -pedantic -ansi - # local directories + + ############################################################################## +@@ -90,8 +90,6 @@ CFLAGS = -DTIME -Wall -pedantic -ansi PROGDIR = ./pgms SRCDIR = ./src TESTDIR = ./testdir -RESULTDIR = ./results -TMPDIR = ./tmp -+#RESULTDIR = ./results -+#TMPDIR = /var/tmp # other directories INCLDIR = /usr/include LIBDIR = /lib Index: head/benchmarks/unixbench/files/patch-Run =================================================================== --- head/benchmarks/unixbench/files/patch-Run (revision 449272) +++ head/benchmarks/unixbench/files/patch-Run (revision 449273) @@ -1,61 +1,71 @@ ---- Run.orig 1999-07-28 22:04:47 UTC +--- Run.orig 2017-09-04 20:35:19 UTC +++ Run -@@ -88,11 +88,11 @@ else - fi +@@ -91,10 +91,10 @@ chomp($BASEDIR); + my $BINDIR = getDir('UB_BINDIR', $BASEDIR . "/pgms"); - # check that the required files are in the proper places --if make check; then -- : --else -- make all --fi -+#if make check; then -+# : -+#else -+# make all -+#fi + # Temp directory, for temp files. +-my $TMPDIR = getDir('UB_TMPDIR', $BASEDIR . "/tmp"); ++my $TMPDIR = "/tmp"; + # Directory to put results in. +-my $RESULTDIR = getDir('UB_RESULTDIR', $BASEDIR . "/results"); ++my $RESULTDIR = "/tmp"; - # establish full paths to directories -@@ -114,7 +114,7 @@ cd $SCRPDIR - SCRPDIR=`pwd` - cd $_WD + # Directory where the tests are executed. + my $TESTDIR = getDir('UB_TESTDIR', $BASEDIR . "/testdir"); +@@ -735,12 +735,10 @@ sub getSystemInfo { --TMPDIR=${HOMEDIR}/tmp -+TMPDIR=${TMPDIR-${HOMEDIR}/tmp} - cd $TMPDIR - TMPDIR=`pwd` - cd $_WD -@@ -367,10 +367,11 @@ do # line argument processing - C) - logmsg="C Compiler Throughput" - prog="looper ${looper-60} ${CC} cctest.c" -+ prog="looper ${looper-60} ${CC} cctest.c -o ${TMPDIR}/a.out" - stdout=/dev/null - repeat="$shortloop" - cleanopt="-m $TMPTIMES" -- rm -f ${TESTDIR}/cctest.o ${TESTDIR}/a.out -+ rm -f ${TESTDIR}/cctest.o ${TMPDIR}/a.out - ;; + # Get the language info. + my $lang = getCmdOutput("printenv LANG"); +- my $map = getCmdOutput("locale -k LC_CTYPE | grep charmap"); ++ my $map = getCmdOutput("locale -k | grep charmap"); + $map =~ s/.*=//; +- my $coll = getCmdOutput("locale -k LC_COLLATE | grep collate-codeset"); +- $coll =~ s/.*=//; +- $info->{'language'} = sprintf "%s (charmap=%s, collate=%s)", +- $lang, $map, $coll; ++ $info->{'language'} = sprintf "%s (charmap=%s)", ++ $lang, $map; - arithoh) -@@ -385,8 +386,8 @@ do # line argument processing + # Get details on the CPUs, if possible. + my $cpus = getCpuInfo(); +@@ -750,10 +748,9 @@ sub getSystemInfo { + } - dc) - logmsg="Dc: sqrt(2) to 99 decimal places" -- prog="looper ${looper-30} dc" -- stdin=dc.dat -+ prog="looper ${looper-30} \"dc < ${TESTDIR}/dc.dat\"" -+ stdin= - stdout=/dev/null - cleanopt="-m $TMPTIMES" - ;; -@@ -508,7 +509,7 @@ do # line argument processing - ########### some specific cleanup routines ############## - case $bench in - C) -- rm -f ${TESTDIR}/cctest.o ${TESTDIR}/a.out -+ rm -f ${TESTDIR}/cctest.o ${TMPDIR}/a.out - ;; + # Get graphics hardware info. +- $info->{'graphics'} = getCmdOutput("3dinfo | cut -f1 -d\'(\'"); ++ # $info->{'graphics'} = getCmdOutput("3dinfo | cut -f1 -d\'(\'"); - fstime | fsbuffer | fsdisk) + # Get system run state, load and usage info. +- $info->{'runlevel'} = getCmdOutput("runlevel | cut -f2 -d\" \""); + $info->{'load'} = getCmdOutput("uptime"); + $info->{'numUsers'} = getCmdOutput("who | wc -l"); + +@@ -781,6 +778,7 @@ sub abortRun { + + # Do checks that everything's ready for testing. + sub preChecks { ++ return; + # Set the language. + $ENV{'LANG'} = $language; + +@@ -1386,7 +1384,7 @@ sub displaySystem { + } + + # Display system load and usage info. +- printf $fd " %s; runlevel %s\n\n", $info->{'load'}, $info->{'runlevel'}; ++ printf $fd " %s; \n\n", $info->{'load'}; + } + + +@@ -1603,8 +1601,8 @@ sub displaySystemHtml { + # Display system runlevel, load and usage info. + printf $fd "\n"; + printf $fd " Uptime:\n"; +- printf $fd " %s; runlevel %s\n", +- $info->{'load'}, $info->{'runlevel'}; ++ printf $fd " %s\n", ++ $info->{'load'}; + printf $fd "\n"; + + printf $fd "

\n\n"; Index: head/benchmarks/unixbench/files/patch-pgms_multi.sh =================================================================== --- head/benchmarks/unixbench/files/patch-pgms_multi.sh (revision 449272) +++ head/benchmarks/unixbench/files/patch-pgms_multi.sh (revision 449273) @@ -1,10 +1,10 @@ ---- pgms/multi.sh.orig 1995-11-28 00:19:10 UTC +--- pgms/multi.sh.orig 2015-06-04 17:20:18 UTC +++ pgms/multi.sh @@ -14,6 +14,7 @@ # ############################################################################### ID="@(#)multi.sh:3.4 -- 5/15/91 19:30:24"; +cd ${TMPDIR} instance=1 while [ $instance -le $1 ]; do - /bin/sh $BINDIR/tst.sh & + /bin/sh "$UB_BINDIR/tst.sh" & Index: head/benchmarks/unixbench/files/patch-pgms_tst.sh =================================================================== --- head/benchmarks/unixbench/files/patch-pgms_tst.sh (revision 449272) +++ head/benchmarks/unixbench/files/patch-pgms_tst.sh (revision 449273) @@ -1,11 +1,11 @@ ---- pgms/tst.sh.orig 1995-11-27 17:07:03 UTC +--- pgms/tst.sh.orig 2015-06-04 17:20:18 UTC +++ pgms/tst.sh @@ -14,7 +14,7 @@ # ############################################################################### ID="@(#)tst.sh:3.4 -- 5/15/91 19:30:24"; -sort >sort.$$ sort.$$ < ${TESTDIR}/sort.src - od sort.$$ | sort -n +1 > od.$$ ++sort >sort.$$ < ${UB_TESTDIR}/sort.src + od sort.$$ | sort -n -k 1 > od.$$ grep the sort.$$ | tee grep.$$ | wc > wc.$$ rm sort.$$ grep.$$ od.$$ wc.$$ Index: head/benchmarks/unixbench/files/patch-src_big.c =================================================================== --- head/benchmarks/unixbench/files/patch-src_big.c (nonexistent) +++ head/benchmarks/unixbench/files/patch-src_big.c (revision 449273) @@ -0,0 +1,11 @@ +--- src/big.c.orig 2015-06-04 17:20:18 UTC ++++ src/big.c +@@ -583,7 +583,7 @@ void dumpwork(void) + void fatal(char *s) + { + int i; +- fprintf(stderr, s); ++ fprintf(stderr, "%s", s); + fflush(stderr); + perror("Reason?"); + fflush(stderr); Property changes on: head/benchmarks/unixbench/files/patch-src_big.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/benchmarks/unixbench/files/patch-src_dhry__1.c =================================================================== --- head/benchmarks/unixbench/files/patch-src_dhry__1.c (revision 449272) +++ head/benchmarks/unixbench/files/patch-src_dhry__1.c (revision 449273) @@ -1,19 +1,19 @@ ---- src/dhry_1.c.orig 1999-07-28 21:43:08 UTC +--- src/dhry_1.c.orig 2015-06-04 17:20:18 UTC +++ src/dhry_1.c @@ -34,6 +34,7 @@ ***************************************************************************/ char SCCSid[] = "@(#) @(#)dhry_1.c:3.4 -- 5/15/91 19:30:21"; +#include #include #include #include @@ -81,7 +82,7 @@ extern int times (); /* Measurements should last at least about 2 seconds */ #endif #ifdef TIME -extern long time(); +extern time_t time(); /* see library function "time" */ #define Too_Small_Time 2 /* Measurements should last at least 2 seconds */ Index: head/benchmarks/unixbench/files/patch-src_syscall.c =================================================================== --- head/benchmarks/unixbench/files/patch-src_syscall.c (nonexistent) +++ head/benchmarks/unixbench/files/patch-src_syscall.c (revision 449273) @@ -0,0 +1,11 @@ +--- src/syscall.c.orig 2015-06-04 17:20:18 UTC ++++ src/syscall.c +@@ -90,7 +90,7 @@ char *argv[]; + fprintf(stderr,"%s: fork failed\n", argv[0]); + exit(1); + } else if (pid == 0) { +- execl("/bin/true", (char *) 0); ++ execl("/bin/true", (char *) 0, (char *) 0); + fprintf(stderr,"%s: exec /bin/true failed\n", argv[0]); + exit(1); + } else { Property changes on: head/benchmarks/unixbench/files/patch-src_syscall.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/benchmarks/unixbench/pkg-descr =================================================================== --- head/benchmarks/unixbench/pkg-descr (revision 449272) +++ head/benchmarks/unixbench/pkg-descr (revision 449273) @@ -1,3 +1,3 @@ -UnixBench v4.1 based on the BYTE UNIX Benchmarks v3. +UnixBench based on the BYTE UNIX Benchmarks v3. -WWW: http://www.tux.org/pub/tux/benchmarks/System/unixbench/ +WWW: https://github.com/kdlucas/byte-unixbench Index: head/benchmarks/unixbench/pkg-message =================================================================== --- head/benchmarks/unixbench/pkg-message (revision 449272) +++ head/benchmarks/unixbench/pkg-message (revision 449273) @@ -1,5 +1,5 @@ ------------------------------------------------------------------------ -If you want to run unixbench, please type the following command: +If you want to run unixbench, please type the following commands: % unixbench ------------------------------------------------------------------------ Index: head/benchmarks/unixbench/pkg-plist =================================================================== --- head/benchmarks/unixbench/pkg-plist (revision 449272) +++ head/benchmarks/unixbench/pkg-plist (revision 449273) @@ -1,42 +1,31 @@ bin/unixbench -lib/unixbench/Makefile -lib/unixbench/README -lib/unixbench/Run -lib/unixbench/pgms/arithoh -lib/unixbench/pgms/cleanup.sh -lib/unixbench/pgms/context1 -lib/unixbench/pgms/dhry2 -lib/unixbench/pgms/dhry2reg -lib/unixbench/pgms/double -lib/unixbench/pgms/execl -lib/unixbench/pgms/float -lib/unixbench/pgms/fs.awk -lib/unixbench/pgms/fsbuffer -lib/unixbench/pgms/fsdisk -lib/unixbench/pgms/fstime -lib/unixbench/pgms/hanoi -lib/unixbench/pgms/index.awk -lib/unixbench/pgms/index.base -lib/unixbench/pgms/index.sh -lib/unixbench/pgms/int -lib/unixbench/pgms/long -lib/unixbench/pgms/looper -lib/unixbench/pgms/loopm.awk -lib/unixbench/pgms/loops.awk -lib/unixbench/pgms/lps.awk -lib/unixbench/pgms/multi.sh -lib/unixbench/pgms/mwips.awk -lib/unixbench/pgms/perlbench -lib/unixbench/pgms/pipe -lib/unixbench/pgms/register -lib/unixbench/pgms/report.awk -lib/unixbench/pgms/report.sh -lib/unixbench/pgms/short -lib/unixbench/pgms/spawn -lib/unixbench/pgms/syscall -lib/unixbench/pgms/tst.sh -lib/unixbench/pgms/unixbench.logo -lib/unixbench/pgms/whetstone-double -lib/unixbench/testdir/cctest.c -lib/unixbench/testdir/dc.dat -lib/unixbench/testdir/sort.src +libexec/unixbench/Makefile +libexec/unixbench/README +libexec/unixbench/Run +libexec/unixbench/pgms/arithoh +libexec/unixbench/pgms/context1 +libexec/unixbench/pgms/dhry2 +libexec/unixbench/pgms/dhry2reg +libexec/unixbench/pgms/double +libexec/unixbench/pgms/execl +libexec/unixbench/pgms/float +libexec/unixbench/pgms/fstime +libexec/unixbench/pgms/gfx-x11 +libexec/unixbench/pgms/hanoi +libexec/unixbench/pgms/index.base +libexec/unixbench/pgms/int +libexec/unixbench/pgms/long +libexec/unixbench/pgms/looper +libexec/unixbench/pgms/multi.sh +libexec/unixbench/pgms/pipe +libexec/unixbench/pgms/register +libexec/unixbench/pgms/short +libexec/unixbench/pgms/spawn +libexec/unixbench/pgms/syscall +libexec/unixbench/pgms/tst.sh +libexec/unixbench/pgms/unixbench.logo +libexec/unixbench/pgms/whetstone-double +libexec/unixbench/testdir/cctest.c +libexec/unixbench/testdir/dc.dat +libexec/unixbench/testdir/large.txt +libexec/unixbench/testdir/sort.src