svn commit: r464591 - in head/devel: . pecl-xdebug26 pecl-xdebug26/files

Luca Pizzamiglio pizzamig at FreeBSD.org
Thu Mar 15 14:55:28 UTC 2018


Author: pizzamig
Date: Thu Mar 15 14:55:26 2018
New Revision: 464591
URL: https://svnweb.freebsd.org/changeset/ports/464591

Log:
  devel/pecl-xdebug26: new port for xdebug 2.6.0
  
  xdebug 2.6 drop the php5 support, so xdebug26 is php7 only.
  xdebug 2.5.x is still available for php5.
  
  Sponsored by:	trivago N.V.

Added:
  head/devel/pecl-xdebug26/
  head/devel/pecl-xdebug26/Makefile   (contents, props changed)
  head/devel/pecl-xdebug26/distinfo   (contents, props changed)
  head/devel/pecl-xdebug26/files/
  head/devel/pecl-xdebug26/files/pkg-message.in   (contents, props changed)
  head/devel/pecl-xdebug26/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Mar 15 14:51:39 2018	(r464590)
+++ head/devel/Makefile	Thu Mar 15 14:55:26 2018	(r464591)
@@ -4016,6 +4016,7 @@
     SUBDIR += pecl-weakref
     SUBDIR += pecl-weakref2
     SUBDIR += pecl-xdebug
+    SUBDIR += pecl-xdebug26
     SUBDIR += pecl-xhprof
     SUBDIR += pecl-yac
     SUBDIR += pecl-yaconf

Added: head/devel/pecl-xdebug26/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/pecl-xdebug26/Makefile	Thu Mar 15 14:55:26 2018	(r464591)
@@ -0,0 +1,22 @@
+# Created by: Luca Pizzamiglio <luca.pizzamiglio at trivago.com>
+# $FreeBSD$
+
+PORTNAME=	xdebug
+DISTVERSION=	2.6.0
+CATEGORIES=	devel pear
+PKGNAMESUFFIX=	26
+
+MAINTAINER=	pizzamig at FreeBSD.org
+COMMENT=	Xdebug extension for PHP
+
+LICENSE=	PHP30
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+IGNORE_WITH_PHP=	56
+
+CONFIGURE_ARGS=	--enable-xdebug
+USES=		php:pecl,zend tar:tgz
+
+SUB_FILES=	pkg-message
+
+.include <bsd.port.mk>

Added: head/devel/pecl-xdebug26/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/pecl-xdebug26/distinfo	Thu Mar 15 14:55:26 2018	(r464591)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1521120354
+SHA256 (PECL/xdebug-2.6.0.tgz) = b5264cc03bf68fcbb04b97229f96dca505d7b87ec2fb3bd4249896783d29cbdc
+SIZE (PECL/xdebug-2.6.0.tgz) = 283644

Added: head/devel/pecl-xdebug26/files/pkg-message.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/pecl-xdebug26/files/pkg-message.in	Thu Mar 15 14:55:26 2018	(r464591)
@@ -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-xdebug26/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/pecl-xdebug26/pkg-descr	Thu Mar 15 14:55:26 2018	(r464591)
@@ -0,0 +1,18 @@
+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
+
+WWW: http://www.xdebug.org/


More information about the svn-ports-head mailing list