Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 1 Jun 2018 21:25:06 +0000 (UTC)
From:      Devin Teske <dteske@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r471295 - in head/sysutils: dwatch-gource dwatch-pwsnoop
Message-ID:  <201806012125.w51LP6pb060708@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dteske
Date: Fri Jun  1 21:25:06 2018
New Revision: 471295
URL: https://svnweb.freebsd.org/changeset/ports/471295

Log:
  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

Modified:
  head/sysutils/dwatch-gource/Makefile
  head/sysutils/dwatch-pwsnoop/Makefile

Modified: head/sysutils/dwatch-gource/Makefile
==============================================================================
--- head/sysutils/dwatch-gource/Makefile	Fri Jun  1 20:58:04 2018	(r471294)
+++ head/sysutils/dwatch-gource/Makefile	Fri Jun  1 21:25:06 2018	(r471295)
@@ -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

Modified: head/sysutils/dwatch-pwsnoop/Makefile
==============================================================================
--- head/sysutils/dwatch-pwsnoop/Makefile	Fri Jun  1 20:58:04 2018	(r471294)
+++ head/sysutils/dwatch-pwsnoop/Makefile	Fri Jun  1 21:25:06 2018	(r471295)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806012125.w51LP6pb060708>