cb73ca98dd
was source files out of date and we have a copy of the required version on ftp.openbsd.org
54 lines
1.3 KiB
Makefile
54 lines
1.3 KiB
Makefile
# $OpenBSD: Makefile,v 1.4 1998/10/18 05:01:59 marc Exp $
|
|
#
|
|
|
|
DISTNAME= lmbench
|
|
PKGNAME= lmbench-1.1
|
|
CATEGORIES= benchmarks
|
|
|
|
#BROKEN= "version changed; home site moved"
|
|
|
|
MAINTAINER= joey@OpenBSD.ORG
|
|
|
|
|
|
# this is the new home site
|
|
#
|
|
MASTER_SITES= ftp://ftp.bitmover.com/lmbench/
|
|
EXTRACT_SUFX= .tar.Z
|
|
|
|
ALL_TARGET= build
|
|
MAKE_ENV= PATH=${PATH}:${WRKSRC}/scripts
|
|
MAN1= bargraph.1 graph.1
|
|
MAN8= bw_file_rd.8 bw_mem_cp.8 bw_mem_rd.8 bw_mem_wr.8 \
|
|
bw_mmap_rd.8 bw_pipe.8 bw_tcp.8 lat_connect.8 lat_ctx.8 \
|
|
lat_fs.8 lat_mem_rd.8 lat_mmap.8 lat_pagefault.8 lat_pipe.8 \
|
|
lat_proc.8 lat_rpc.8 lat_syscall.8 lat_tcp.8 lat_udp.8 \
|
|
lmbench.8 lmdd.8 mhz.8
|
|
|
|
test: build
|
|
@(cd ${WRKSRC}; make results)
|
|
|
|
retest: build
|
|
@(cd ${WRKSRC}; make rerun)
|
|
|
|
# This package comes with its own RCS directory which confuses patch.
|
|
# Move it so patch doesn't get confused.
|
|
#
|
|
pre-patch:
|
|
@${MV} ${WRKSRC}/src/RCS ${WRKSRC}/src/RCS-
|
|
|
|
pre-install:
|
|
[ -d ${PREFIX}/lib/lmbench ] || ${MKDIR} ${PREFIX}/lib/lmbench
|
|
|
|
do-install:
|
|
${CP} ${FILESDIR}/Makefile ${PREFIX}/lib/lmbench
|
|
tar -C ${WRKSRC} -cf - Results bin scripts | \
|
|
tar -C ${PREFIX}/lib/lmbench -xf -
|
|
.for man in ${MAN1}
|
|
${INSTALL_MAN} ${WRKSRC}/doc/${man} ${PREFIX}/man/man1
|
|
.endfor
|
|
.for man in ${MAN8}
|
|
${INSTALL_MAN} ${WRKSRC}/doc/${man} ${PREFIX}/man/man8
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|