From owner-svn-ports-all@FreeBSD.ORG Fri Dec 6 09:14:13 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E751EF86; Fri, 6 Dec 2013 09:14:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D38B11ACE; Fri, 6 Dec 2013 09:14:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rB69EDLr083236; Fri, 6 Dec 2013 09:14:13 GMT (envelope-from ak@svn.freebsd.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rB69EDrO083234; Fri, 6 Dec 2013 09:14:13 GMT (envelope-from ak@svn.freebsd.org) Message-Id: <201312060914.rB69EDrO083234@svn.freebsd.org> From: Alex Kozlov Date: Fri, 6 Dec 2013 09:14:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335727 - head/Mk X-SVN-Group: ports-head 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.17 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: Fri, 06 Dec 2013 09:14:14 -0000 Author: ak Date: Fri Dec 6 09:14:13 2013 New Revision: 335727 URL: http://svnweb.freebsd.org/changeset/ports/335727 Log: - Use NO_ARCH instead of NOARCH for consistency with other NO_ knobs Suggested by: Eugene Stenkin Approved by: portmgr (bapt) Modified: head/Mk/bsd.pkgng.mk head/Mk/bsd.port.mk Modified: head/Mk/bsd.pkgng.mk ============================================================================== --- head/Mk/bsd.pkgng.mk Fri Dec 6 09:11:25 2013 (r335726) +++ head/Mk/bsd.pkgng.mk Fri Dec 6 09:14:13 2013 (r335727) @@ -45,7 +45,7 @@ create-manifest: @${ECHO_CMD} " "${COMMENT:Q} >> ${MANIFESTF} @${ECHO_CMD} "maintainer: ${MAINTAINER}" >> ${MANIFESTF} @${ECHO_CMD} "prefix: ${PREFIX}" >> ${MANIFESTF} -.if defined(NOARCH) +.if defined(NO_ARCH) @${ECHO_CMD} "arch: `${PKG_BIN} config abi | ${CUT} -d: -f1,2`:*" >> ${MANIFESTF} .endif .if defined(WWW) Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Fri Dec 6 09:11:25 2013 (r335726) +++ head/Mk/bsd.port.mk Fri Dec 6 09:14:13 2013 (r335727) @@ -215,7 +215,7 @@ FreeBSD_MAINTAINER= portmgr@FreeBSD.org # generated on the fly. # Default: not set. # -# NOARCH - Set this if port is architecture neutral. +# NO_ARCH - Set this if port is architecture neutral. # # Set these if your port only makes sense to certain architectures. # They are lists containing names for them (e.g., "amd64 i386").