View | Details | Raw Unified | Return to bug 236773
Collapse All | Expand All

(-)devel/Makefile (-1 lines)
Lines 4110-4116 Link Here
4110
    SUBDIR += pecl-weakref
4110
    SUBDIR += pecl-weakref
4111
    SUBDIR += pecl-weakref2
4111
    SUBDIR += pecl-weakref2
4112
    SUBDIR += pecl-xdebug
4112
    SUBDIR += pecl-xdebug
4113
    SUBDIR += pecl-xdebug-devel
4114
    SUBDIR += pecl-xdebug25
4113
    SUBDIR += pecl-xdebug25
4115
    SUBDIR += pecl-xhprof
4114
    SUBDIR += pecl-xhprof
4116
    SUBDIR += pecl-yac
4115
    SUBDIR += pecl-yac
(-)devel/pecl-xdebug-devel/Makefile (-23 lines)
Removed Link Here
1
# Created by: Luca Pizzamiglio <luca.pizzamiglio@trivago.com>
2
# $FreeBSD$
3
4
PORTNAME=	xdebug
5
DISTVERSION=	2.7.0beta1
6
CATEGORIES=	devel pear
7
PKGNAMESUFFIX=	-devel
8
9
MAINTAINER=	pizzamig@FreeBSD.org
10
COMMENT=	Xdebug extension for PHP
11
12
LICENSE=	PHP30
13
LICENSE_FILE=	${WRKSRC}/LICENSE
14
15
IGNORE_WITH_PHP=	71
16
17
USES=		php:pecl,zend tar:tgz
18
19
CONFIGURE_ARGS=	--enable-xdebug
20
21
SUB_FILES=	pkg-message
22
23
.include <bsd.port.mk>
(-)devel/pecl-xdebug-devel/distinfo (-3 lines)
Removed Link Here
1
TIMESTAMP = 1539096489
2
SHA256 (PECL/xdebug-2.7.0beta1.tgz) = 90a0ceaf95c7d936113ed0d7474f16978ec2277453be69239d92d0523e0910be
3
SIZE (PECL/xdebug-2.7.0beta1.tgz) = 226296
(-)devel/pecl-xdebug-devel/files/patch-xdebug__compat.h (-11 lines)
Removed Link Here
1
--- xdebug_compat.h.orig	2018-12-23 17:22:30 UTC
2
+++ xdebug_compat.h
3
@@ -75,8 +75,4 @@ zend_bool xdebug_zend_hash_apply_protection_end(HashTa
4
 #  define XDEBUG_ZEND_CONSTANT_MODULE_NUMBER(v) ((v)->module_number)
5
 # endif
6
 
7
-# if PHP_VERSION_ID < 70300
8
-typedef void (*zif_handler)(INTERNAL_FUNCTION_PARAMETERS);
9
-# endif
10
-
11
 #endif
(-)devel/pecl-xdebug-devel/files/pkg-message.in (-21 lines)
Removed Link Here
1
*****************************************************************************
2
The php debugger 'xdebug' has been installed successful.
3
Add a line containing
4
5
	extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/xdebug.so
6
7
or
8
9
	zend_extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/xdebug.so
10
11
to your php.ini to load it. xdebug is not compatible with the extension
12
'Zend Optimizer' - you're only able to use one of them. So take care having
13
at least the lesser required extension disabled by commenting out it's
14
loader line in your php.ini.
15
16
Add following section to enable profiling:
17
18
xdebug.profiler_enable = 1
19
xdebug.profiler_output_dir = /tmp/profiler
20
21
*****************************************************************************
(-)devel/pecl-xdebug-devel/pkg-descr (-20 lines)
Removed Link Here
1
The Xdebug extension helps you debugging your script by providing a lot of
2
valuable debug information. The debug information that Xdebug can provide
3
includes the following:
4
5
    * stack and function traces in error messages with:
6
          o full parameter display for user defined functions
7
          o function name, file name and line indications
8
          o support for member functions
9
    * memory allocation
10
    * protection for infinite recursions
11
12
Xdebug also provides:
13
14
    * profiling information for PHP scripts
15
    * script execution analysis
16
    * capabilities to debug your scripts interactively with a debug client
17
18
Beta Version! The only one supporting PHP 7.3
19
20
WWW: http://www.xdebug.org/
(-)devel/pecl-xdebug/Makefile (-3 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	xdebug
4
PORTNAME=	xdebug
5
DISTVERSION=	2.6.1
5
DISTVERSION=	2.7.0
6
CATEGORIES=	devel pear
6
CATEGORIES=	devel pear
7
7
8
MAINTAINER=	pizzamig@FreeBSD.org
8
MAINTAINER=	pizzamig@FreeBSD.org
Lines 11-18 COMMENT= Xdebug extension for PHP Link Here
11
LICENSE=	PHP30
11
LICENSE=	PHP30
12
LICENSE_FILE=	${WRKSRC}/LICENSE
12
LICENSE_FILE=	${WRKSRC}/LICENSE
13
13
14
IGNORE_WITH_PHP=	73
15
16
CONFIGURE_ARGS=	--enable-xdebug
14
CONFIGURE_ARGS=	--enable-xdebug
17
USES=		php:pecl,zend tar:tgz
15
USES=		php:pecl,zend tar:tgz
18
16
(-)devel/pecl-xdebug/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1539102067
1
TIMESTAMP = 1553502110
2
SHA256 (PECL/xdebug-2.6.1.tgz) = dae691d6c052073b886e0c6e1306a707bca9fd18a1e3485384ef6c4aacf1bd77
2
SHA256 (PECL/xdebug-2.7.0.tgz) = e896da91ce0373f5fd8f4ca392c68da8593932ad51b2ec5eb3ee032b50d4b2d6
3
SIZE (PECL/xdebug-2.6.1.tgz) = 283961
3
SIZE (PECL/xdebug-2.7.0.tgz) = 230326

Return to bug 236773