From owner-svn-ports-all@FreeBSD.ORG Sun Dec 8 13:29:42 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 80F3EA4B; Sun, 8 Dec 2013 13:29:42 +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 6D59312A6; Sun, 8 Dec 2013 13:29:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8DTgD1079661; Sun, 8 Dec 2013 13:29:42 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rB8DTgQi079659; Sun, 8 Dec 2013 13:29:42 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201312081329.rB8DTgQi079659@svn.freebsd.org> From: Marcus von Appen Date: Sun, 8 Dec 2013 13:29:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335890 - in head/lang: gjs v8 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, 08 Dec 2013 13:29:42 -0000 Author: mva Date: Sun Dec 8 13:29:41 2013 New Revision: 335890 URL: http://svnweb.freebsd.org/changeset/ports/335890 Log: - Fix the usage of 'python' to get rid of the implicit lang/python dependency - lang/v8 requires python to build Approved by: portmgr (blanket) Modified: head/lang/gjs/Makefile head/lang/v8/Makefile (contents, props changed) Modified: head/lang/gjs/Makefile ============================================================================== --- head/lang/gjs/Makefile Sun Dec 8 13:25:49 2013 (r335889) +++ head/lang/gjs/Makefile Sun Dec 8 13:29:41 2013 (r335890) @@ -18,7 +18,7 @@ CONFLICTS_BUILD=spidermonkey17-1.7.* USE_XZ= yes USES= gettext gmake pathfix pkgconfig shebangfix -USE_PYTHON_BUILD=yes +USE_PYTHON_BUILD=2 USE_AUTOTOOLS= libtool USE_GNOME= cairo glib20 gnomeprefix introspection:build \ intlhack ltverhack @@ -26,6 +26,8 @@ USE_LDCONFIG= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +python_OLD_CMD= /usr/bin/env python +python_CMD= /usr/bin/env python2 SHEBANG_FILES= scripts/make-tests NO_STAGE= yes Modified: head/lang/v8/Makefile ============================================================================== --- head/lang/v8/Makefile Sun Dec 8 13:25:49 2013 (r335889) +++ head/lang/v8/Makefile Sun Dec 8 13:29:41 2013 (r335890) @@ -9,6 +9,7 @@ MASTER_SITES= LOCAL/vanilla MAINTAINER= vanilla@FreeBSD.org COMMENT= Google\'s open source JavaScript engine +BUILD_DEPENDS= python:${PORTSDIR}/lang/python LIB_DEPENDS= execinfo:${PORTSDIR}/devel/libexecinfo USES= gmake