mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-02 11:09:29 +00:00
Fix some portlint problems. echo -> ${ECHO}, fill in version required
and shorten DESCR.
This commit is contained in:
parent
48d2d435a8
commit
19bc4199be
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=20257
@ -1,9 +1,9 @@
|
||||
# New ports collection makefile for: bytebench
|
||||
# Version required:
|
||||
# Version required: 3.1
|
||||
# Date created: 28 December 1995
|
||||
# Whom: se
|
||||
#
|
||||
# $Id: Makefile,v 1.6 1996/11/20 01:59:19 obrien Exp $
|
||||
# $Id: Makefile,v 1.7 1998/09/26 23:46:08 steve Exp $
|
||||
#
|
||||
|
||||
DISTNAME= bytebench-3.1
|
||||
@ -14,24 +14,24 @@ EXTRACT_SUFX= .tar.Z
|
||||
MAINTAINER= se@FreeBSD.org
|
||||
|
||||
do-install:
|
||||
-${MKDIR} $(PREFIX)/lib/bytebench
|
||||
for f in Makefile README Run doc pgms results testdir; \
|
||||
do ${CP} -R $(WRKSRC)/$$f $(PREFIX)/lib/bytebench; done
|
||||
echo "#!/bin/sh" > $(PREFIX)/bin/bytebench
|
||||
echo "TMPDIR=\$${TMPDIR-/var/tmp}" >> $(PREFIX)/bin/bytebench
|
||||
echo "RESULTDIR=/tmp" >> $(PREFIX)/bin/bytebench
|
||||
echo "export TMPDIR RESULTDIR" >> $(PREFIX)/bin/bytebench
|
||||
echo "cd $(PREFIX)/lib/bytebench" >> $(PREFIX)/bin/bytebench
|
||||
echo "exec ./Run \"\$$@\"" >> $(PREFIX)/bin/bytebench
|
||||
chmod 755 $(PREFIX)/bin/bytebench
|
||||
chmod 644 $(PREFIX)/lib/bytebench/Makefile
|
||||
chmod 644 $(PREFIX)/lib/bytebench/README
|
||||
chmod 755 $(PREFIX)/lib/bytebench/Run
|
||||
chmod 755 $(PREFIX)/lib/bytebench/doc
|
||||
chmod 755 $(PREFIX)/lib/bytebench/pgms
|
||||
chmod 755 $(PREFIX)/lib/bytebench/pgms/*
|
||||
chmod 755 $(PREFIX)/lib/bytebench/results
|
||||
chmod 755 $(PREFIX)/lib/bytebench/testdir
|
||||
@rm -f ${PREFIX}/lib/bytebench/pgms/*.orig
|
||||
-${MKDIR} $(PREFIX)/lib/bytebench
|
||||
for f in Makefile README Run doc pgms results testdir; \
|
||||
do ${CP} -R $(WRKSRC)/$$f $(PREFIX)/lib/bytebench; done
|
||||
${ECHO} "#!/bin/sh" > $(PREFIX)/bin/bytebench
|
||||
${ECHO} "TMPDIR=\$${TMPDIR-/var/tmp}" >> $(PREFIX)/bin/bytebench
|
||||
${ECHO} "RESULTDIR=/tmp" >> $(PREFIX)/bin/bytebench
|
||||
${ECHO} "export TMPDIR RESULTDIR" >> $(PREFIX)/bin/bytebench
|
||||
${ECHO} "cd $(PREFIX)/lib/bytebench" >> $(PREFIX)/bin/bytebench
|
||||
${ECHO} "exec ./Run \"\$$@\"" >> $(PREFIX)/bin/bytebench
|
||||
chmod 755 $(PREFIX)/bin/bytebench
|
||||
chmod 644 $(PREFIX)/lib/bytebench/Makefile
|
||||
chmod 644 $(PREFIX)/lib/bytebench/README
|
||||
chmod 755 $(PREFIX)/lib/bytebench/Run
|
||||
chmod 755 $(PREFIX)/lib/bytebench/doc
|
||||
chmod 755 $(PREFIX)/lib/bytebench/pgms
|
||||
chmod 755 $(PREFIX)/lib/bytebench/pgms/*
|
||||
chmod 755 $(PREFIX)/lib/bytebench/results
|
||||
chmod 755 $(PREFIX)/lib/bytebench/testdir
|
||||
@rm -f ${PREFIX}/lib/bytebench/pgms/*.orig
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,48 +1,24 @@
|
||||
The BYTE benchmark suite tests several aspects of system performance.
|
||||
|
||||
An article which describes the concepts and helps understand the results
|
||||
can be found in the doc directory (/usr/local/lib/bytebench/doc if you use
|
||||
a PREFIX of /usr/local).
|
||||
can be found in the doc directory (/usr/local/lib/bytebench/doc usually.)
|
||||
|
||||
This benchmark is quite prominent among Linux users, and there is a patched
|
||||
version available from some web suite from where results are made available,
|
||||
too.
|
||||
|
||||
Since they offer some results of non-Linux systems for comparison, they might
|
||||
be interested in FreeBSD reports, too ;-)
|
||||
|
||||
|
||||
Quoting from "README.submittal" of the Linux version of this benchmark suite:
|
||||
|
||||
% Please e-mail test results along with platform info to:
|
||||
%
|
||||
% results@silkroad.com
|
||||
%
|
||||
% Included CPU info, speed, RAM, and host adapter and bus
|
||||
% info as well as any special compilation flags.
|
||||
%
|
||||
% See TEMPLATE Below....
|
||||
%
|
||||
% results will be included in the URL:
|
||||
%
|
||||
% http://www.silkroad.com/bass/linux/bm.html
|
||||
%
|
||||
%
|
||||
% Thanks,
|
||||
%
|
||||
% Tim Bass (bass@silkroad.com)
|
||||
|
||||
Example:
|
||||
|
||||
CPU/Speed: Pentium 100
|
||||
Ram: 32M EDO Ram
|
||||
Motherboard: ASUS blah blah
|
||||
Bus: 4 PCI, 4 ISA
|
||||
Cache: 256K sync-burst
|
||||
Controller: PCI - Adaptec 2940W ctrler
|
||||
Disk: 1.08 Gig Fujitsu SCSI-III (Wide SCSI)
|
||||
Load: 1 user, running pppd and httpd
|
||||
Kernel: FreeBSD-2.1R
|
||||
pgms: gcc 2.6.3 compiled;
|
||||
options = -s -static -O -m486 -finline-functions \
|
||||
funroll-loops -fomit-frame-pointer
|
||||
|
@ -1,9 +1,9 @@
|
||||
# New ports collection makefile for: bytebench
|
||||
# Version required:
|
||||
# Version required: 3.1
|
||||
# Date created: 28 December 1995
|
||||
# Whom: se
|
||||
#
|
||||
# $Id: Makefile,v 1.6 1996/11/20 01:59:19 obrien Exp $
|
||||
# $Id: Makefile,v 1.7 1998/09/26 23:46:08 steve Exp $
|
||||
#
|
||||
|
||||
DISTNAME= bytebench-3.1
|
||||
@ -14,24 +14,24 @@ EXTRACT_SUFX= .tar.Z
|
||||
MAINTAINER= se@FreeBSD.org
|
||||
|
||||
do-install:
|
||||
-${MKDIR} $(PREFIX)/lib/bytebench
|
||||
for f in Makefile README Run doc pgms results testdir; \
|
||||
do ${CP} -R $(WRKSRC)/$$f $(PREFIX)/lib/bytebench; done
|
||||
echo "#!/bin/sh" > $(PREFIX)/bin/bytebench
|
||||
echo "TMPDIR=\$${TMPDIR-/var/tmp}" >> $(PREFIX)/bin/bytebench
|
||||
echo "RESULTDIR=/tmp" >> $(PREFIX)/bin/bytebench
|
||||
echo "export TMPDIR RESULTDIR" >> $(PREFIX)/bin/bytebench
|
||||
echo "cd $(PREFIX)/lib/bytebench" >> $(PREFIX)/bin/bytebench
|
||||
echo "exec ./Run \"\$$@\"" >> $(PREFIX)/bin/bytebench
|
||||
chmod 755 $(PREFIX)/bin/bytebench
|
||||
chmod 644 $(PREFIX)/lib/bytebench/Makefile
|
||||
chmod 644 $(PREFIX)/lib/bytebench/README
|
||||
chmod 755 $(PREFIX)/lib/bytebench/Run
|
||||
chmod 755 $(PREFIX)/lib/bytebench/doc
|
||||
chmod 755 $(PREFIX)/lib/bytebench/pgms
|
||||
chmod 755 $(PREFIX)/lib/bytebench/pgms/*
|
||||
chmod 755 $(PREFIX)/lib/bytebench/results
|
||||
chmod 755 $(PREFIX)/lib/bytebench/testdir
|
||||
@rm -f ${PREFIX}/lib/bytebench/pgms/*.orig
|
||||
-${MKDIR} $(PREFIX)/lib/bytebench
|
||||
for f in Makefile README Run doc pgms results testdir; \
|
||||
do ${CP} -R $(WRKSRC)/$$f $(PREFIX)/lib/bytebench; done
|
||||
${ECHO} "#!/bin/sh" > $(PREFIX)/bin/bytebench
|
||||
${ECHO} "TMPDIR=\$${TMPDIR-/var/tmp}" >> $(PREFIX)/bin/bytebench
|
||||
${ECHO} "RESULTDIR=/tmp" >> $(PREFIX)/bin/bytebench
|
||||
${ECHO} "export TMPDIR RESULTDIR" >> $(PREFIX)/bin/bytebench
|
||||
${ECHO} "cd $(PREFIX)/lib/bytebench" >> $(PREFIX)/bin/bytebench
|
||||
${ECHO} "exec ./Run \"\$$@\"" >> $(PREFIX)/bin/bytebench
|
||||
chmod 755 $(PREFIX)/bin/bytebench
|
||||
chmod 644 $(PREFIX)/lib/bytebench/Makefile
|
||||
chmod 644 $(PREFIX)/lib/bytebench/README
|
||||
chmod 755 $(PREFIX)/lib/bytebench/Run
|
||||
chmod 755 $(PREFIX)/lib/bytebench/doc
|
||||
chmod 755 $(PREFIX)/lib/bytebench/pgms
|
||||
chmod 755 $(PREFIX)/lib/bytebench/pgms/*
|
||||
chmod 755 $(PREFIX)/lib/bytebench/results
|
||||
chmod 755 $(PREFIX)/lib/bytebench/testdir
|
||||
@rm -f ${PREFIX}/lib/bytebench/pgms/*.orig
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,48 +1,24 @@
|
||||
The BYTE benchmark suite tests several aspects of system performance.
|
||||
|
||||
An article which describes the concepts and helps understand the results
|
||||
can be found in the doc directory (/usr/local/lib/bytebench/doc if you use
|
||||
a PREFIX of /usr/local).
|
||||
can be found in the doc directory (/usr/local/lib/bytebench/doc usually.)
|
||||
|
||||
This benchmark is quite prominent among Linux users, and there is a patched
|
||||
version available from some web suite from where results are made available,
|
||||
too.
|
||||
|
||||
Since they offer some results of non-Linux systems for comparison, they might
|
||||
be interested in FreeBSD reports, too ;-)
|
||||
|
||||
|
||||
Quoting from "README.submittal" of the Linux version of this benchmark suite:
|
||||
|
||||
% Please e-mail test results along with platform info to:
|
||||
%
|
||||
% results@silkroad.com
|
||||
%
|
||||
% Included CPU info, speed, RAM, and host adapter and bus
|
||||
% info as well as any special compilation flags.
|
||||
%
|
||||
% See TEMPLATE Below....
|
||||
%
|
||||
% results will be included in the URL:
|
||||
%
|
||||
% http://www.silkroad.com/bass/linux/bm.html
|
||||
%
|
||||
%
|
||||
% Thanks,
|
||||
%
|
||||
% Tim Bass (bass@silkroad.com)
|
||||
|
||||
Example:
|
||||
|
||||
CPU/Speed: Pentium 100
|
||||
Ram: 32M EDO Ram
|
||||
Motherboard: ASUS blah blah
|
||||
Bus: 4 PCI, 4 ISA
|
||||
Cache: 256K sync-burst
|
||||
Controller: PCI - Adaptec 2940W ctrler
|
||||
Disk: 1.08 Gig Fujitsu SCSI-III (Wide SCSI)
|
||||
Load: 1 user, running pppd and httpd
|
||||
Kernel: FreeBSD-2.1R
|
||||
pgms: gcc 2.6.3 compiled;
|
||||
options = -s -static -O -m486 -finline-functions \
|
||||
funroll-loops -fomit-frame-pointer
|
||||
|
Loading…
x
Reference in New Issue
Block a user