From owner-svn-ports-all@freebsd.org Wed Apr 25 22:00:06 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ABAAAFB1586; Wed, 25 Apr 2018 22:00:06 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5A4557449A; Wed, 25 Apr 2018 22:00:06 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 50E0E7078; Wed, 25 Apr 2018 22:00:06 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3PM06U0008237; Wed, 25 Apr 2018 22:00:06 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3PM04EJ008222; Wed, 25 Apr 2018 22:00:04 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201804252200.w3PM04EJ008222@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 25 Apr 2018 22:00:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: 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... X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: 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 security/cryptopp securi... X-SVN-Commit-Revision: 468307 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Apr 2018 22:00:06 -0000 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 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}