svn commit: r468307 - in head: chinese/wordpress-zh_CN chinese/wordpress-zh_TW comms/qpage french/wordpress german/wordpress japanese/wordpress java/icedtea-web lang/ghc math/sage russian/wordpress...

Mathieu Arnold mat at FreeBSD.org
Wed Apr 25 22:00:06 UTC 2018


Author: mat
Date: Wed Apr 25 22:00:04 2018
New Revision: 468307
URL: https://svnweb.freebsd.org/changeset/ports/468307

Log:
  Only sleep in ports if BATCH/PACKAGE_BUILDING are not defined.
  
  Sponsored by:	Absolight

Modified:
  head/chinese/wordpress-zh_CN/Makefile   (contents, props changed)
  head/chinese/wordpress-zh_TW/Makefile   (contents, props changed)
  head/comms/qpage/Makefile   (contents, props changed)
  head/french/wordpress/Makefile   (contents, props changed)
  head/german/wordpress/Makefile   (contents, props changed)
  head/japanese/wordpress/Makefile   (contents, props changed)
  head/java/icedtea-web/Makefile   (contents, props changed)
  head/lang/ghc/Makefile   (contents, props changed)
  head/math/sage/Makefile   (contents, props changed)
  head/russian/wordpress/Makefile   (contents, props changed)
  head/security/cryptopp/Makefile   (contents, props changed)
  head/security/openvpn/Makefile   (contents, props changed)
  head/sysutils/xcdroast/Makefile   (contents, props changed)
  head/www/e2guardian/Makefile   (contents, props changed)
  head/www/wordpress/Makefile   (contents, props changed)

Modified: head/chinese/wordpress-zh_CN/Makefile
==============================================================================
--- head/chinese/wordpress-zh_CN/Makefile	Wed Apr 25 21:09:11 2018	(r468306)
+++ head/chinese/wordpress-zh_CN/Makefile	Wed Apr 25 22:00:04 2018	(r468307)
@@ -33,7 +33,9 @@ SUB_FILES=	pkg-message
 pre-everything::
 	@${ECHO_CMD} "If you want to upgrade, you must read upgrade document."
 	@${ECHO_CMD} ""
+.  if !(defined(PACKAGE_BUILDING) || defined(BATCH))
 	@sleep 1
+.  endif
 
 pre-install:
 	${ECHO_CMD} '@owner www' > ${PLIST}

Modified: head/chinese/wordpress-zh_TW/Makefile
==============================================================================
--- head/chinese/wordpress-zh_TW/Makefile	Wed Apr 25 21:09:11 2018	(r468306)
+++ head/chinese/wordpress-zh_TW/Makefile	Wed Apr 25 22:00:04 2018	(r468307)
@@ -33,7 +33,9 @@ SUB_FILES=	pkg-message
 pre-everything::
 	@${ECHO_CMD} "If you want to upgrade, you must read upgrade document."
 	@${ECHO_CMD} ""
+.  if !(defined(PACKAGE_BUILDING) || defined(BATCH))
 	@sleep 1
+.  endif
 
 pre-install:
 	${ECHO_CMD} '@owner www' > ${PLIST}

Modified: head/comms/qpage/Makefile
==============================================================================
--- head/comms/qpage/Makefile	Wed Apr 25 21:09:11 2018	(r468306)
+++ head/comms/qpage/Makefile	Wed Apr 25 22:00:04 2018	(r468307)
@@ -50,7 +50,9 @@ pre-patch:
 	@${ECHO_MSG} ""
 	@${ECHO_MSG} "Press ^C now to stop the build and set make options."
 	@${ECHO_MSG} "You may find it necessary to 'make clean' before restarting the build."
+.  if !(defined(PACKAGE_BUILDING) || defined(BATCH))
 	@sleep 2
+.  endif
 .endif
 
 post-patch:

Modified: head/french/wordpress/Makefile
==============================================================================
--- head/french/wordpress/Makefile	Wed Apr 25 21:09:11 2018	(r468306)
+++ head/french/wordpress/Makefile	Wed Apr 25 22:00:04 2018	(r468307)
@@ -34,7 +34,9 @@ OPTIONS_DEFINE=	DOCS
 pre-everything::
 	@${ECHO_CMD} "If you want to upgrade, you must read upgrade document."
 	@${ECHO_CMD} ""
+.  if !(defined(PACKAGE_BUILDING) || defined(BATCH))
 	@sleep 1
+.  endif
 
 pre-install:
 	${ECHO_CMD} '@owner www' > ${PLIST}

Modified: head/german/wordpress/Makefile
==============================================================================
--- head/german/wordpress/Makefile	Wed Apr 25 21:09:11 2018	(r468306)
+++ head/german/wordpress/Makefile	Wed Apr 25 22:00:04 2018	(r468307)
@@ -36,7 +36,9 @@ OPTIONS_DEFINE=	DOCS
 pre-everything::
 	@${ECHO_CMD} "If you want to upgrade, you must read upgrade document."
 	@${ECHO_CMD} ""
+.  if !(defined(PACKAGE_BUILDING) || defined(BATCH))
 	@sleep 1
+.  endif
 
 pre-install:
 	${ECHO_CMD} '@owner www' > ${PLIST}

Modified: head/japanese/wordpress/Makefile
==============================================================================
--- head/japanese/wordpress/Makefile	Wed Apr 25 21:09:11 2018	(r468306)
+++ head/japanese/wordpress/Makefile	Wed Apr 25 22:00:04 2018	(r468307)
@@ -36,7 +36,9 @@ OPTIONS_DEFINE=	DOCS
 pre-everything::
 	@${ECHO_CMD} "If you want to upgrade, you must read upgrade document."
 	@${ECHO_CMD} ""
+.  if !(defined(PACKAGE_BUILDING) || defined(BATCH))
 	@sleep 1
+.  endif
 
 pre-install:
 	${ECHO_CMD} '@owner www' > ${PLIST}

Modified: head/java/icedtea-web/Makefile
==============================================================================
--- head/java/icedtea-web/Makefile	Wed Apr 25 21:09:11 2018	(r468306)
+++ head/java/icedtea-web/Makefile	Wed Apr 25 22:00:04 2018	(r468307)
@@ -83,7 +83,9 @@ pre-extract:
 	@${ECHO_MSG} "IMPORTANT: To build IcedTea-Web ${PORTVERSION}, you have to turn on 'ICEDTEA' option"
 	@${ECHO_MSG} "for ${JAVA_PORT} (default).  Otherwise, it will neither build nor work."
 	@${ECHO_MSG}
+.  if !(defined(PACKAGE_BUILDING) || defined(BATCH))
 	@sleep 5
+.  endif
 .endif
 
 post-patch:

Modified: head/lang/ghc/Makefile
==============================================================================
--- head/lang/ghc/Makefile	Wed Apr 25 21:09:11 2018	(r468306)
+++ head/lang/ghc/Makefile	Wed Apr 25 22:00:04 2018	(r468307)
@@ -216,7 +216,9 @@ pre-configure: apply-slist
 	@${ECHO_MSG} "           registration of both takes place.                          "
 	@${ECHO_MSG} "======================================================================"
 	@${ECHO_MSG} ""
+.  if !(defined(PACKAGE_BUILDING) || defined(BATCH))
 	@sleep 3
+.  endif
 
 	@${MKDIR} ${SLAVES_PREFIX}
 	@${MKDIR} ${SLAVES_WRKDIRPREFIX}

Modified: head/math/sage/Makefile
==============================================================================
--- head/math/sage/Makefile	Wed Apr 25 21:09:11 2018	(r468306)
+++ head/math/sage/Makefile	Wed Apr 25 22:00:04 2018	(r468307)
@@ -33,7 +33,9 @@ pre-extract:
 	@${ECHO_MSG} extra time and space, you can instead type \"make build\".  Then you can move
 	@${ECHO_MSG} work/${PORTNAME}-${PORTVERSION} to wherever you like, and run sage from there.
 	@${ECHO_MSG} However, there is no guarantee that this alternative will always work.
+.  if !(defined(PACKAGE_BUILDING) || defined(BATCH))
 	@sleep 10
+.  endif
 
 PLIST_FILES=	bin/sage
 USE_TEX=	latex:build

Modified: head/russian/wordpress/Makefile
==============================================================================
--- head/russian/wordpress/Makefile	Wed Apr 25 21:09:11 2018	(r468306)
+++ head/russian/wordpress/Makefile	Wed Apr 25 22:00:04 2018	(r468307)
@@ -36,7 +36,9 @@ OPTIONS_DEFINE=	DOCS
 pre-everything::
 	@${ECHO_CMD} "If you want to upgrade, you must read upgrade document."
 	@${ECHO_CMD} ""
+.  if !(defined(PACKAGE_BUILDING) || defined(BATCH))
 	@sleep 1
+.  endif
 
 pre-install:
 	${ECHO_CMD} '@owner www' > ${PLIST}

Modified: head/security/cryptopp/Makefile
==============================================================================
--- head/security/cryptopp/Makefile	Wed Apr 25 21:09:11 2018	(r468306)
+++ head/security/cryptopp/Makefile	Wed Apr 25 22:00:04 2018	(r468307)
@@ -96,7 +96,9 @@ pre-configure-FULL_DEBUG-on:
 	@${ECHO_CMD} "now and run 'make config clean' and disable the FULL_DEBUG option."
 	@${ECHO_CMD} "---------------------------------------------------------------------"
 	@${ECHO_CMD}
+.  if !(defined(PACKAGE_BUILDING) || defined(BATCH))
 	@sleep 10
+.  endif
 
 do-install:
 	${INSTALL_DATA} ${WRKSRC}/libcryptopp.a ${STAGEDIR}${PREFIX}/lib

Modified: head/security/openvpn/Makefile
==============================================================================
--- head/security/openvpn/Makefile	Wed Apr 25 21:09:11 2018	(r468306)
+++ head/security/openvpn/Makefile	Wed Apr 25 22:00:04 2018	(r468307)
@@ -119,7 +119,9 @@ pre-everything::
 	@${ECHO_CMD} "If things break, rebuild with OpenSSL or mbedTLS."
 	@${ECHO_CMD} "You may wish to change your default SSL library"
 	@${ECHO_CMD} "and press Ctrl+C within the next 10 seconds to abort."
+.  if !(defined(PACKAGE_BUILDING) || defined(BATCH))
 	@sleep 10
+.  endif
 .endif
 
 # sanity check that we don't inherit incompatible SSL libs through,

Modified: head/sysutils/xcdroast/Makefile
==============================================================================
--- head/sysutils/xcdroast/Makefile	Wed Apr 25 21:09:11 2018	(r468306)
+++ head/sysutils/xcdroast/Makefile	Wed Apr 25 22:00:04 2018	(r468307)
@@ -67,7 +67,9 @@ pre-everything::
 	@${ECHO_MSG} "         wrapping utility which gets a SUID Bit after enabling"
 	@${ECHO_MSG} "         the non-root mode inside the application!"
 	@${ECHO_MSG}
+.  if !(defined(PACKAGE_BUILDING) || defined(BATCH))
 	sleep 5
+.  endif
 .endif
 
 .include <bsd.port.mk>

Modified: head/www/e2guardian/Makefile
==============================================================================
--- head/www/e2guardian/Makefile	Wed Apr 25 21:09:11 2018	(r468306)
+++ head/www/e2guardian/Makefile	Wed Apr 25 22:00:04 2018	(r468307)
@@ -88,7 +88,9 @@ post-extract:
 	@${ECHO_MSG} "before preceeding with e2guardian compilation"
 	@${ECHO_MSG} "######################################################"
 	@${ECHO_MSG} ""
+.  if !(defined(PACKAGE_BUILDING) || defined(BATCH))
 	@sleep 3
+.  endif
 .endif
 
 pre-configure:

Modified: head/www/wordpress/Makefile
==============================================================================
--- head/www/wordpress/Makefile	Wed Apr 25 21:09:11 2018	(r468306)
+++ head/www/wordpress/Makefile	Wed Apr 25 22:00:04 2018	(r468307)
@@ -33,7 +33,9 @@ OPTIONS_DEFINE=	DOCS
 pre-everything::
 	@${ECHO_CMD} "If you want to upgrade, you must read upgrade document."
 	@${ECHO_CMD} ""
+.  if !(defined(PACKAGE_BUILDING) || defined(BATCH))
 	@sleep 1
+.  endif
 
 pre-install:
 	${ECHO_CMD} '@owner www' > ${PLIST}


More information about the svn-ports-head mailing list