Date: Tue, 9 Oct 2018 16:27:57 +0000 (UTC) From: Luca Pizzamiglio <pizzamig@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r481639 - in head/devel: . pecl-xdebug-devel pecl-xdebug-devel/files Message-ID: <201810091627.w99GRv6j077487@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pizzamig Date: Tue Oct 9 16:27:57 2018 New Revision: 481639 URL: https://svnweb.freebsd.org/changeset/ports/481639 Log: devel/pecl-xdebug-devel: add the beta version to support PHP 7.3 The xdebug 2.7.0 beta version is the only one that support PHP 7.3 Adding it as devel preview Sponsored by: trivago N.V. Added: head/devel/pecl-xdebug-devel/ head/devel/pecl-xdebug-devel/Makefile (contents, props changed) head/devel/pecl-xdebug-devel/distinfo (contents, props changed) head/devel/pecl-xdebug-devel/files/ head/devel/pecl-xdebug-devel/files/pkg-message.in (contents, props changed) head/devel/pecl-xdebug-devel/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Oct 9 16:23:46 2018 (r481638) +++ head/devel/Makefile Tue Oct 9 16:27:57 2018 (r481639) @@ -4094,6 +4094,7 @@ SUBDIR += pecl-weakref SUBDIR += pecl-weakref2 SUBDIR += pecl-xdebug + SUBDIR += pecl-xdebug-devel SUBDIR += pecl-xdebug25 SUBDIR += pecl-xhprof SUBDIR += pecl-yac Added: head/devel/pecl-xdebug-devel/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-xdebug-devel/Makefile Tue Oct 9 16:27:57 2018 (r481639) @@ -0,0 +1,23 @@ +# Created by: Luca Pizzamiglio <luca.pizzamiglio@trivago.com> +# $FreeBSD$ + +PORTNAME= xdebug +DISTVERSION= 2.7.0beta1 +CATEGORIES= devel pear +PKGNAMESUFFIX= -devel + +MAINTAINER= pizzamig@FreeBSD.org +COMMENT= Xdebug extension for PHP + +LICENSE= PHP30 +LICENSE_FILE= ${WRKSRC}/LICENSE + +IGNORE_WITH_PHP= 56 + +USES= php:pecl,zend tar:tgz + +CONFIGURE_ARGS= --enable-xdebug + +SUB_FILES= pkg-message + +.include <bsd.port.mk> Added: head/devel/pecl-xdebug-devel/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-xdebug-devel/distinfo Tue Oct 9 16:27:57 2018 (r481639) @@ -0,0 +1,3 @@ +TIMESTAMP = 1539096489 +SHA256 (PECL/xdebug-2.7.0beta1.tgz) = 90a0ceaf95c7d936113ed0d7474f16978ec2277453be69239d92d0523e0910be +SIZE (PECL/xdebug-2.7.0beta1.tgz) = 226296 Added: head/devel/pecl-xdebug-devel/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-xdebug-devel/files/pkg-message.in Tue Oct 9 16:27:57 2018 (r481639) @@ -0,0 +1,21 @@ +***************************************************************************** +The php debugger 'xdebug' has been installed successful. +Add a line containing + + extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/xdebug.so + +or + + zend_extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/xdebug.so + +to your php.ini to load it. xdebug is not compatible with the extension +'Zend Optimizer' - you're only able to use one of them. So take care having +at least the lesser required extension disabled by commenting out it's +loader line in your php.ini. + +Add following section to enable profiling: + +xdebug.profiler_enable = 1 +xdebug.profiler_output_dir = /tmp/profiler + +***************************************************************************** Added: head/devel/pecl-xdebug-devel/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-xdebug-devel/pkg-descr Tue Oct 9 16:27:57 2018 (r481639) @@ -0,0 +1,20 @@ +The Xdebug extension helps you debugging your script by providing a lot of +valuable debug information. The debug information that Xdebug can provide +includes the following: + + * stack and function traces in error messages with: + o full parameter display for user defined functions + o function name, file name and line indications + o support for member functions + * memory allocation + * protection for infinite recursions + +Xdebug also provides: + + * profiling information for PHP scripts + * script execution analysis + * capabilities to debug your scripts interactively with a debug client + +Beta Version! The only one supporting PHP 7.3 + +WWW: http://www.xdebug.org/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810091627.w99GRv6j077487>