diff options
author | Will Andrews <will@FreeBSD.org> | 2001-04-07 06:05:55 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2001-04-07 06:05:55 +0000 |
commit | 1f84276af5d0273da131b53458916adeb7f3ba76 (patch) | |
tree | 9ef60946cd403b3f9eec34ef48e8d40f56a01597 /sysutils/cpuburn | |
parent | db82fd31f26cbf4ff05cc7c616b4766602631322 (diff) | |
download | ports-1f84276af5d0273da131b53458916adeb7f3ba76.tar.gz ports-1f84276af5d0273da131b53458916adeb7f3ba76.zip |
Notes
Diffstat (limited to 'sysutils/cpuburn')
-rw-r--r-- | sysutils/cpuburn/Makefile | 36 | ||||
-rw-r--r-- | sysutils/cpuburn/distinfo | 1 | ||||
-rw-r--r-- | sysutils/cpuburn/pkg-comment | 1 | ||||
-rw-r--r-- | sysutils/cpuburn/pkg-descr | 8 | ||||
-rw-r--r-- | sysutils/cpuburn/pkg-plist | 8 |
5 files changed, 54 insertions, 0 deletions
diff --git a/sysutils/cpuburn/Makefile b/sysutils/cpuburn/Makefile new file mode 100644 index 000000000000..2ce0d625930c --- /dev/null +++ b/sysutils/cpuburn/Makefile @@ -0,0 +1,36 @@ +# New ports collection makefile for: cpuburn +# Date created: Apr 1, 2001 +# Whom: Mark Pulford <mark@kyne.com.au> +# +# $FreeBSD$ +# + +PORTNAME= cpuburn +PORTVERSION= 1.3 +CATEGORIES= sysutils +MASTER_SITES= http://users.ev1.net/~redelm/ +DISTNAME= cpuburn_${PORTVERSION:S/./_/g} +EXTRACT_SUFX= _tar.gz + +MAINTAINER= mark@kyne.com.au + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +do-build: + @(cd ${BUILD_WRKSRC}; \ + for CPU in BX K6 MMX P5 P6; do \ + ${ECHO} Building burn$$CPU..; \ + ${CC} -s -nostdlib -o burn$$CPU burn$$CPU.s; \ + done) + +do-install: + @(for CPU in BX K6 MMX P5 P6; do \ + ${ECHO} Installing burn$$CPU..; \ + ${INSTALL_PROGRAM} ${WRKSRC}/burn$$CPU ${PREFIX}/bin; \ + done) +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/${PORTNAME} + ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/${PORTNAME} + ${INSTALL_DATA} ${WRKSRC}/Design ${PREFIX}/share/doc/${PORTNAME} +.endif + +.include <bsd.port.mk> diff --git a/sysutils/cpuburn/distinfo b/sysutils/cpuburn/distinfo new file mode 100644 index 000000000000..8c2da665de32 --- /dev/null +++ b/sysutils/cpuburn/distinfo @@ -0,0 +1 @@ +MD5 (cpuburn_1_3_tar.gz) = 88a64e9526dfb93b37a9d2c27eaf0d50 diff --git a/sysutils/cpuburn/pkg-comment b/sysutils/cpuburn/pkg-comment new file mode 100644 index 000000000000..ffe8ddb444a5 --- /dev/null +++ b/sysutils/cpuburn/pkg-comment @@ -0,0 +1 @@ +CPU/memory stress testing utilities diff --git a/sysutils/cpuburn/pkg-descr b/sysutils/cpuburn/pkg-descr new file mode 100644 index 000000000000..e4888f74f2a7 --- /dev/null +++ b/sysutils/cpuburn/pkg-descr @@ -0,0 +1,8 @@ +CPUburn contains several utilities for stress testing various x86 +CPUs. To get the most of out of these utilities read the documentation +under share/doc/cpuburn. + +WWW: http://users.ev1.net/~redelm/ + +- Mark Pulford +mark@kyne.com.au diff --git a/sysutils/cpuburn/pkg-plist b/sysutils/cpuburn/pkg-plist new file mode 100644 index 000000000000..2dd072a44d04 --- /dev/null +++ b/sysutils/cpuburn/pkg-plist @@ -0,0 +1,8 @@ +bin/burnBX +bin/burnK6 +bin/burnMMX +bin/burnP5 +bin/burnP6 +%%PORTDOCS%%share/doc/cpuburn/README +%%PORTDOCS%%share/doc/cpuburn/Design +%%PORTDOCS%%@dirrm share/doc/cpuburn |