svn commit: r451704 - head/ports-mgmt/synth

Tobias Kortkamp tobik at FreeBSD.org
Tue Oct 10 14:19:34 UTC 2017


Author: tobik
Date: Tue Oct 10 14:19:33 2017
New Revision: 451704
URL: https://svnweb.freebsd.org/changeset/ports/451704

Log:
  ports-mgmt/synth: Build with watchdog monitor by default
  
  Without WATCHDOG Synth will hang on the ports that stop building [1].
  
  While here:
  - Rename the double negative NOWATCHDOG option to WATCHDOG
  
  [1] https://github.com/jrmarino/synth/issues/53#issuecomment-335425660
  
  PR:		222900
  Submitted by:	ericturgeon.bsd at gmail.com (maintainer)
  MFH:		2017Q4

Modified:
  head/ports-mgmt/synth/Makefile

Modified: head/ports-mgmt/synth/Makefile
==============================================================================
--- head/ports-mgmt/synth/Makefile	Tue Oct 10 14:11:47 2017	(r451703)
+++ head/ports-mgmt/synth/Makefile	Tue Oct 10 14:19:33 2017	(r451704)
@@ -4,6 +4,7 @@
 PORTNAME=	synth
 PORTVERSION=	1.70
 DISTVERSIONPREFIX=	v
+PORTREVISION=	1
 CATEGORIES=	ports-mgmt
 
 MAINTAINER=	ericturgeon.bsd at gmail.com
@@ -23,12 +24,12 @@ GH_ACCOUNT=	jrmarino
 GPR=		${LOCALBASE}/lib/gnat
 MAKE_ENV=	NCURSES_LINK=static
 
-OPTIONS_DEFINE=	NOWATCHDOG
-OPTIONS_DEFAULT=NOWATCHDOG
+OPTIONS_DEFINE=	WATCHDOG
+OPTIONS_DEFAULT=WATCHDOG
 
-NOWATCHDOG_DESC=	Disable build watchdog monitor
+WATCHDOG_DESC=	Build with watchdog monitor
 
-NOWATCHDOG_EXTRA_PATCHES=	${FILESDIR}/extrapatch-nowatchdog-portscan-buildcycle.adb
+WATCHDOG_EXTRA_PATCHES_OFF=	${FILESDIR}/extrapatch-nowatchdog-portscan-buildcycle.adb
 
 .include <bsd.port.pre.mk>
 


More information about the svn-ports-all mailing list