From owner-svn-ports-all@FreeBSD.ORG Sun Feb 9 13:07:02 2014 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 A3251CF8; Sun, 9 Feb 2014 13:07:02 +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 8ED0B147E; Sun, 9 Feb 2014 13:07:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s19D72JN025028; Sun, 9 Feb 2014 13:07:02 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s19D720H025026; Sun, 9 Feb 2014 13:07:02 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201402091307.s19D720H025026@svn.freebsd.org> From: Kubilay Kocak Date: Sun, 9 Feb 2014 13:07:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r343500 - head/devel/py-yaml 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: Sun, 09 Feb 2014 13:07:02 -0000 Author: koobs Date: Sun Feb 9 13:07:02 2014 New Revision: 343500 URL: http://svnweb.freebsd.org/changeset/ports/343500 QAT: https://qat.redports.org/buildarchive/r343500/ Log: devel/py-yaml: Remove redundant bsd.port.options.mk include Save one extra parse of bsd.port.mk by moving PORT_OPTIONS:MEXAMPLES under the bsd.port.pre.mk include and removing bsd.port.options.mk. Reported by: mat Modified: head/devel/py-yaml/Makefile Modified: head/devel/py-yaml/Makefile ============================================================================== --- head/devel/py-yaml/Makefile Sun Feb 9 13:00:56 2014 (r343499) +++ head/devel/py-yaml/Makefile Sun Feb 9 13:07:02 2014 (r343500) @@ -23,15 +23,13 @@ PYDISTUTILS_AUTOPLIST= yes EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} -.include +.include .if ${PORT_OPTIONS:MEXAMPLES} post-install: @(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}/) .endif -.include - .if ${PORT_OPTIONS:MLIBYAML} PYDISTUTILS_SETUP+= --with-libyaml PYDISTUTILS_BUILD_TARGET= build_ext