From owner-svn-ports-all@FreeBSD.ORG Tue Aug 12 18:15:54 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 5F00C71D for ; Tue, 12 Aug 2014 18:15:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 35C3F3B73 for ; Tue, 12 Aug 2014 18:15:54 +0000 (UTC) Received: from sunpoet (uid 1240) (envelope-from sunpoet@FreeBSD.org) id 6ef3 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Tue, 12 Aug 2014 18:15:53 +0000 From: Sunpoet Po-Chuan Hsieh Date: Tue, 12 Aug 2014 18:15:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364728 - head/lang/v8 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53ea59da.6ef3.27dfd937@svn.freebsd.org> X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 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: Tue, 12 Aug 2014 18:15:54 -0000 Author: sunpoet Date: Tue Aug 12 18:15:53 2014 New Revision: 364728 URL: http://svnweb.freebsd.org/changeset/ports/364728 QAT: https://qat.redports.org/buildarchive/r364728/ Log: - Reword COMMENT - Use CONFLICTS_INSTALL instead of CONFLICTS - Use USES=execinfo - Cosmetic change - Update pkg-descr Modified: head/lang/v8/Makefile head/lang/v8/pkg-descr Modified: head/lang/v8/Makefile ============================================================================== --- head/lang/v8/Makefile Tue Aug 12 18:06:03 2014 (r364727) +++ head/lang/v8/Makefile Tue Aug 12 18:15:53 2014 (r364728) @@ -7,21 +7,20 @@ CATEGORIES= lang MASTER_SITES= LOCAL/vanilla MAINTAINER= sunpoet@FreeBSD.org -COMMENT= Google's open source JavaScript engine +COMMENT= Open source JavaScript engine by Google LICENSE= BSD3CLAUSE -BUILD_DEPENDS= python:${PORTSDIR}/lang/python -LIB_DEPENDS= libexecinfo.so:${PORTSDIR}/devel/libexecinfo +BUILD_DEPENDS= ${LOCALBASE}/bin/python:${PORTSDIR}/lang/python -CONFLICTS= v8-3.27.* +CONFLICTS_INSTALL= v8-devel-[0-9]* -USES= gmake compiler tar:xz -USE_PYTHON= 2 -USE_LDCONFIG= yes ALL_TARGET= native MAKE_ARGS= library=shared -MAKE_ENV+= CC.host=${CC} CXX.host=${CXX} LINK.host=${CXX} LINK.target=${CXX} +MAKE_ENV= CC.host=${CC} CXX.host=${CXX} LINK.host=${CXX} LINK.target=${CXX} +USE_LDCONFIG= yes +USE_PYTHON= 2 +USES= compiler execinfo gmake tar:xz .include @@ -47,14 +46,9 @@ post-patch: @${REINPLACE_CMD} -e '1 s|${SETENV} python|&2|' ${WRKSRC}/build/gyp/gyp do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/out/native/d8 ${STAGEDIR}/${PREFIX}/bin/d8 - ${INSTALL_LIB} -m 755 ${WRKSRC}/out/native/lib.target/libv8.so ${STAGEDIR}/${PREFIX}/lib/libv8.so.1 - ${LN} -sf ${PREFIX}/lib/libv8.so.1 ${STAGEDIR}/${PREFIX}/lib/libv8.so - ${INSTALL_DATA} ${WRKSRC}/include/v8.h ${STAGEDIR}/${PREFIX}/include - ${INSTALL_DATA} ${WRKSRC}/include/v8-debug.h ${STAGEDIR}/${PREFIX}/include - ${INSTALL_DATA} ${WRKSRC}/include/v8-preparser.h ${STAGEDIR}/${PREFIX}/include - ${INSTALL_DATA} ${WRKSRC}/include/v8-profiler.h ${STAGEDIR}/${PREFIX}/include - ${INSTALL_DATA} ${WRKSRC}/include/v8-testing.h ${STAGEDIR}/${PREFIX}/include - ${INSTALL_DATA} ${WRKSRC}/include/v8stdint.h ${STAGEDIR}/${PREFIX}/include + ${INSTALL_PROGRAM} ${WRKSRC}/out/native/d8 ${STAGEDIR}${PREFIX}/bin/d8 + cd ${WRKSRC}/include/ && ${INSTALL_DATA} *.h ${STAGEDIR}${PREFIX}/include/ + ${INSTALL_LIB} ${WRKSRC}/out/native/lib.target/libv8.so ${STAGEDIR}${PREFIX}/lib/libv8.so.1 + ${LN} -fs ${PREFIX}/lib/libv8.so.1 ${STAGEDIR}${PREFIX}/lib/libv8.so .include Modified: head/lang/v8/pkg-descr ============================================================================== --- head/lang/v8/pkg-descr Tue Aug 12 18:06:03 2014 (r364727) +++ head/lang/v8/pkg-descr Tue Aug 12 18:15:53 2014 (r364728) @@ -1,3 +1,14 @@ -Google's open source JavaScript engine +V8 is Google's open source JavaScript engine. + +V8 is written in C++ and is used in Google Chrome, the open source browser from +Google. + +V8 implements ECMAScript as specified in ECMA-262, 5th edition, and runs on +Windows (XP or newer), Mac OS X (10.5 or newer), and Linux systems that use +IA-32, x64, or ARM processors. + +V8 can run standalone, or can be embedded into any C++ application. + +Git repository at https://github.com/v8/v8 WWW: http://code.google.com/p/v8/