diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2013-03-17 08:58:50 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2013-03-17 08:58:50 +0000 |
commit | 15f07b33d742c0981a255a780b5330fb476b0b21 (patch) | |
tree | dd1b4574422422d2eccf08b5217294f5b9ae0dcc /benchmarks | |
parent | 4efe82924ce4a85e61e86ececc7b7b9b0407d61a (diff) |
Notes
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/interbench/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/benchmarks/interbench/Makefile b/benchmarks/interbench/Makefile index 265e0503da4c..5ffffe198407 100644 --- a/benchmarks/interbench/Makefile +++ b/benchmarks/interbench/Makefile @@ -16,6 +16,7 @@ USE_GMAKE= yes ALL_TARGET= clean ${PORTNAME} MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" +MAN8= ${PORTNAME}.8 PLIST_FILES= bin/${PORTNAME} PORTDOCS= readme readme.interactivity @@ -27,8 +28,14 @@ OPTIONS_DEFINE= DOCS 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} + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${MAN8} ${MANPREFIX}/man/man8 .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR} |