mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
# Created by: michael johnson <ahze@ahze.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pnetmark
|
|
PORTVERSION= 0.0.6
|
|
PORTREVISION= 1
|
|
CATEGORIES= benchmarks
|
|
MASTER_SITES= ${PNET_MASTER_SITES}
|
|
MASTER_SITE_SUBDIR= ${PNET_MASTER_SITE_SUBDIR}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Benchmarking tool for Common Language Runtime (CLR)
|
|
|
|
BUILD_DEPENDS= cscc:${PORTSDIR}/lang/pnet-base \
|
|
csunit:${PORTSDIR}/lang/pnetlib
|
|
RUN_DEPENDS= cscc:${PORTSDIR}/lang/pnet-base \
|
|
csunit:${PORTSDIR}/lang/pnetlib
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= gmake
|
|
STRIP= # Nothing to Strip
|
|
PORTDOCS= pm_faq.html
|
|
PNET_STRAP_BIN= pnetmark \
|
|
linpack \
|
|
scimark2
|
|
|
|
NO_STAGE= yes
|
|
.include "${.CURDIR}/../../lang/pnet/Makefile.pnet"
|
|
.include <bsd.port.pre.mk>
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/src/pnetmark.exe ${PREFIX}/bin
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/linpack/linpack.exe ${PREFIX}/bin
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/scimark2/scimark2.exe ${PREFIX}/bin
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for docfile in ${PORTDOCS}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/${docfile} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|