From owner-svn-ports-head@FreeBSD.ORG Thu Jun 27 06:23:37 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 3C803E0B; Thu, 27 Jun 2013 06:23:37 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 2F9E51C0F; Thu, 27 Jun 2013 06:23:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5R6NbCf025219; Thu, 27 Jun 2013 06:23:37 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5R6NboF025218; Thu, 27 Jun 2013 06:23:37 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201306270623.r5R6NboF025218@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 27 Jun 2013 06:23:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r321850 - head/devel/boost-all X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Jun 2013 06:23:37 -0000 Author: bapt Date: Thu Jun 27 06:23:36 2013 New Revision: 321850 URL: http://svnweb.freebsd.org/changeset/ports/321850 Log: PKGORIGIN being defined earlier, CATAGORIES needs to be defined prior any *.mk include meaning common.mk has to be included earlier [1] While here switch to new options helpers Reported by: erwin Modified: head/devel/boost-all/Makefile Modified: head/devel/boost-all/Makefile ============================================================================== --- head/devel/boost-all/Makefile Thu Jun 27 05:28:47 2013 (r321849) +++ head/devel/boost-all/Makefile Thu Jun 27 06:23:36 2013 (r321850) @@ -17,26 +17,14 @@ PYTHON_DESC= Boost.Python - interfacing NO_BUILD= yes -.include .include "common.mk" -.if ${PORT_OPTIONS:MLIBRARIES} -RUN_DEPENDS+= ${LOCALBASE}/lib/libboost_thread.so:${PORTSDIR}/devel/boost-libs -.endif - -.if ${PORT_OPTIONS:MJAM} -RUN_DEPENDS+= ${LOCALBASE}/bin/bjam:${PORTSDIR}/devel/boost-jam -.endif - -.if ${PORT_OPTIONS:MPYTHON} -RUN_DEPENDS+= ${LOCALBASE}/lib/libboost_python.so:${PORTSDIR}/devel/boost-python-libs -.endif - -.if ${PORT_OPTIONS:MDOCS} -RUN_DEPENDS+= ${LOCALBASE}/share/doc/boost/doc/html/index.html:${PORTSDIR}/devel/boost-docs -.endif +LIBRARIES_RUN_DEPENDS= ${LOCALBASE}/lib/libboost_thread.so:${PORTSDIR}/devel/boost-libs +JAM_RUN_DEPENDS= ${LOCALBASE}/bin/bjam:${PORTSDIR}/devel/boost-jam +PYTHON_RUN_DEPENDS= ${LOCALBASE}/lib/libboost_python.so:${PORTSDIR}/devel/boost-python-libs +DOCS_RUN_DEPENDS= ${LOCALBASE}/share/doc/boost/doc/html/index.html:${PORTSDIR}/devel/boost-docs do-install: ${DO_NADA} -.include +.include