svn commit: r531773 - head/devel/strace
John Baldwin
jhb at FreeBSD.org
Wed Apr 15 16:22:16 UTC 2020
Author: jhb (src,doc committer)
Date: Wed Apr 15 16:22:15 2020
New Revision: 531773
URL: https://svnweb.freebsd.org/changeset/ports/531773
Log:
Mark devel/strace as broken on 13.0 and later.
FreeBSD 13 removes procfs-based process debugging which strace(1)
uses. Users can use truss in the base system instead.
PR: 244939
Reviewed by: sbz (maintainer)
Differential Revision: https://reviews.freebsd.org/D24254
Modified:
head/devel/strace/Makefile
Modified: head/devel/strace/Makefile
==============================================================================
--- head/devel/strace/Makefile Wed Apr 15 15:45:36 2020 (r531772)
+++ head/devel/strace/Makefile Wed Apr 15 16:22:15 2020 (r531773)
@@ -25,6 +25,12 @@ OPTIONS_DEFINE= DOCS
PORTDOCS= AUTHORS COPYRIGHT CREDITS ChangeLog NEWS PORTING \
README README-freebsd README-svr4 TODO
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} >= 1300088
+BROKEN= Uses procfs-based process debugging
+.endif
+
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/strace ${STAGEDIR}${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKSRC}/strace-graph ${STAGEDIR}${PREFIX}/bin
@@ -34,4 +40,4 @@ do-install:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>
More information about the svn-ports-head
mailing list