From owner-svn-ports-all@freebsd.org Tue Jul 14 03:11:42 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6D075914D; Tue, 14 Jul 2015 03:11:42 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5838B1DD9; Tue, 14 Jul 2015 03:11:42 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t6E3BgRT068502; Tue, 14 Jul 2015 03:11:42 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t6E3BeIN068498; Tue, 14 Jul 2015 03:11:40 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201507140311.t6E3BeIN068498@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 14 Jul 2015 03:11:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r391967 - in head/devel: . pecl-trace 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.20 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, 14 Jul 2015 03:11:42 -0000 Author: pi Date: Tue Jul 14 03:11:40 2015 New Revision: 391967 URL: https://svnweb.freebsd.org/changeset/ports/391967 Log: New port: devel/pecl-trace Trace is a low-overhead tracing tool for PHP. It can trace all PHP execution, function calls, request information during run-time. And provides features like Filter, Statistics, Current Status and so on. It is very useful to locate blocking, heavy-load problems and debug in all environments, especially in production environments. WWW: https://pecl.php.net/package/trace PR: 200363 Submitted by: Gasol Wu Added: head/devel/pecl-trace/ head/devel/pecl-trace/Makefile (contents, props changed) head/devel/pecl-trace/distinfo (contents, props changed) head/devel/pecl-trace/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jul 14 02:56:46 2015 (r391966) +++ head/devel/Makefile Tue Jul 14 03:11:40 2015 (r391967) @@ -3611,6 +3611,7 @@ SUBDIR += pecl-swoole SUBDIR += pecl-sync SUBDIR += pecl-test_helpers + SUBDIR += pecl-trace SUBDIR += pecl-uopz SUBDIR += pecl-uploadprogress SUBDIR += pecl-uri_template Added: head/devel/pecl-trace/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-trace/Makefile Tue Jul 14 03:11:40 2015 (r391967) @@ -0,0 +1,39 @@ +# Created by: Gasol Wu +# $FreeBSD$ + +PORTNAME= trace +PORTVERSION= 0.3.0 +CATEGORIES= devel +MASTER_SITES= http://pecl.php.net/get/ +PKGNAMEPREFIX= pecl- +DIST_SUBDIR= PECL + +MAINTAINER= gasol.wu@gmail.com +COMMENT= Low-overhead tracing tool for PHP + +LICENSE= APACHE20 + +WRKSRC= ${WRKDIR}/${DISTNAME}/extension +CMDTOOLSRC= ${WRKSRC}/../cmdtool + +GNU_CONFIGURE= yes +USES= gmake shebangfix tar:tgz +USE_PHP= yes +USE_PHP_BUILD= yes +USE_PHPEXT= yes + +SHEBANG_FILES= ${CMDTOOLSRC}/phptrace +PLIST_FILES= bin/phptrace \ + bin/trace-php + +post-patch: + ${REINPLACE_CMD} -e 's|Darwin|FreeBSD|g' ${CMDTOOLSRC}/phptrace + +post-build: + (cd ${CMDTOOLSRC} && ${GMAKE} ${MAKE_ENV}) + +post-install: + ${INSTALL_PROGRAM} ${CMDTOOLSRC}/trace-php ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${CMDTOOLSRC}/phptrace ${STAGEDIR}${PREFIX}/bin + +.include Added: head/devel/pecl-trace/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-trace/distinfo Tue Jul 14 03:11:40 2015 (r391967) @@ -0,0 +1,2 @@ +SHA256 (PECL/trace-0.3.0.tgz) = aa5f6a91a77ef11f4102b542847b32fce03ea7777081ebb86a812228526b38f7 +SIZE (PECL/trace-0.3.0.tgz) = 76354 Added: head/devel/pecl-trace/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-trace/pkg-descr Tue Jul 14 03:11:40 2015 (r391967) @@ -0,0 +1,9 @@ +Trace is a low-overhead tracing tool for PHP. + +It can trace all PHP execution, function calls, request information during +run-time. And provides features like Filter, Statistics, Current Status and +so on. +It is very useful to locate blocking, heavy-load problems and debug in all +environments, especially in production environments. + +WWW: https://pecl.php.net/package/trace