diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2013-07-19 14:11:31 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2013-07-19 14:11:31 +0000 |
commit | a685815a32127c077b26b69e7d2005dd750ca565 (patch) | |
tree | 3bf733a8c46d8e3a41a0cc7df3ec6288fe1c2364 /benchmarks/interbench | |
parent | 07fb09d8f42e8f81d7c75b1e33ea16fbe11a5de8 (diff) |
Notes
Diffstat (limited to 'benchmarks/interbench')
-rw-r--r-- | benchmarks/interbench/Makefile | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/benchmarks/interbench/Makefile b/benchmarks/interbench/Makefile index 5ffffe198407..6a55906cbf8c 100644 --- a/benchmarks/interbench/Makefile +++ b/benchmarks/interbench/Makefile @@ -4,17 +4,17 @@ PORTNAME= interbench DISTVERSION= 0.31 CATEGORIES= benchmarks -MASTER_SITES= http://ck.kolivas.org/apps/interbench/ +MASTER_SITES= http://ck.kolivas.org/apps/${PORTNAME}/ -MAINTAINER= danfe@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Interactivity benchmark for Unix-like systems LICENSE= GPLv2 USE_BZIP2= yes -USE_GMAKE= yes -ALL_TARGET= clean ${PORTNAME} +USES= gmake MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" +ALL_TARGET= ${PORTNAME} MAN8= ${PORTNAME}.8 PLIST_FILES= bin/${PORTNAME} @@ -24,15 +24,16 @@ OPTIONS_DEFINE= DOCS .include <bsd.port.options.mk> -.if ${OSVERSION} < 800000 -BROKEN= does not build, requires sqrtl(3) -.endif - post-patch: # Do not confuse the reader that this program is Linux-specific @${REINPLACE_CMD} -e '/kernel/!s,Linux,Unix-like systems, ; \ /kernel/s,Linux,the,' ${WRKSRC}/${MAN8} +pre-build: +# Remove stale Linuxish object files and binaries; setting ALL_TARGET to +# "clean ${PORTNAME}" turned out to be racy and breaking parallel builds + ${MAKE} -C ${BUILD_WRKSRC} clean + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/${MAN8} ${MANPREFIX}/man/man8 |