diff options
author | Devin Teske <dteske@FreeBSD.org> | 2018-06-01 21:25:06 +0000 |
---|---|---|
committer | Devin Teske <dteske@FreeBSD.org> | 2018-06-01 21:25:06 +0000 |
commit | 9293b362836b1d5bfd08eaf9735b6057379c496f (patch) | |
tree | 0617e1714d89d6aff5df767172a6f44c7e9ece81 | |
parent | Update to 0.10.2, addressing CVE-2018-10847. (diff) |
sysutils/dwatch-*: IGNORE if missing FreeBSD dwatch(1)
sysutils/dwatch-{gource,pwsnoop} require dwatch(1) in FreeBSD base.
Reviewed by: mat (mentor)
Approved by: mat (mentor)
Sponsored by: Smule, Inc.
Differential Revision: https://reviews.freebsd.org/D15621
Notes
Notes:
svn path=/head/; revision=471295
-rw-r--r-- | sysutils/dwatch-gource/Makefile | 6 | ||||
-rw-r--r-- | sysutils/dwatch-pwsnoop/Makefile | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/sysutils/dwatch-gource/Makefile b/sysutils/dwatch-gource/Makefile index 87cef0018b2b..e67e8d0e1f37 100644 --- a/sysutils/dwatch-gource/Makefile +++ b/sysutils/dwatch-gource/Makefile @@ -19,6 +19,12 @@ PORTDOCS= README.md OPTIONS_DEFINE= DOCS +.include <bsd.port.options.mk> + +.if ${OSVERSION} < 1101516 || (${OSVERSION} >= 1200000 && ${OSVERSION} < 1200065) +IGNORE= requires dwatch available in recent FreeBSD 11 or 12 +.endif + do-install: ${INSTALL_SCRIPT} ${WRKSRC}/gwatch ${STAGEDIR}${PREFIX}/sbin @${MKDIR} ${STAGEDIR}${PREFIX}/libexec/dwatch diff --git a/sysutils/dwatch-pwsnoop/Makefile b/sysutils/dwatch-pwsnoop/Makefile index 08faa92adf6b..83bb8b281890 100644 --- a/sysutils/dwatch-pwsnoop/Makefile +++ b/sysutils/dwatch-pwsnoop/Makefile @@ -20,6 +20,12 @@ PORTDOCS= README.md OPTIONS_DEFINE= DOCS +.include <bsd.port.options.mk> + +.if ${OSVERSION} < 1101516 || (${OSVERSION} >= 1200000 && ${OSVERSION} < 1200065) +IGNORE= requires dwatch available in recent FreeBSD 11 or 12 +.endif + do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/libexec/dwatch ${INSTALL_DATA} ${WRKSRC}/pwsnoop ${STAGEDIR}${PREFIX}/libexec/dwatch |