aboutsummaryrefslogtreecommitdiffstats
path: root/devel
diff options
context:
space:
mode:
authorpizzamig <pizzamig@FreeBSD.org>2018-03-19 18:25:12 +0800
committerpizzamig <pizzamig@FreeBSD.org>2018-03-19 18:25:12 +0800
commitf34082afd26b62a14292e696ade2aa134d9acb8b (patch)
tree98b0f58274d944044e00447d48b0562243c7eeb3 /devel
parent1dfbf52809c55677866870d5181e8a05a86480cd (diff)
downloadfreebsd-ports-gnome-f34082afd26b62a14292e696ade2aa134d9acb8b.tar.gz
freebsd-ports-gnome-f34082afd26b62a14292e696ade2aa134d9acb8b.tar.zst
freebsd-ports-gnome-f34082afd26b62a14292e696ade2aa134d9acb8b.zip
devel/pecl-xdebug26: delete it as it wasn't added properly as a repocopy
Reported by: dbaio@
Diffstat (limited to 'devel')
-rw-r--r--devel/Makefile1
-rw-r--r--devel/pecl-xdebug26/Makefile22
-rw-r--r--devel/pecl-xdebug26/distinfo3
-rw-r--r--devel/pecl-xdebug26/files/pkg-message.in21
-rw-r--r--devel/pecl-xdebug26/pkg-descr18
5 files changed, 0 insertions, 65 deletions
diff --git a/devel/Makefile b/devel/Makefile
index 721a22ab31c8..e6b7397b6833 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -4022,7 +4022,6 @@
SUBDIR += pecl-weakref
SUBDIR += pecl-weakref2
SUBDIR += pecl-xdebug
- SUBDIR += pecl-xdebug26
SUBDIR += pecl-xhprof
SUBDIR += pecl-yac
SUBDIR += pecl-yaconf
diff --git a/devel/pecl-xdebug26/Makefile b/devel/pecl-xdebug26/Makefile
deleted file mode 100644
index 828ffee8716b..000000000000
--- a/devel/pecl-xdebug26/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
-# Created by: Luca Pizzamiglio <luca.pizzamiglio@trivago.com>
-# $FreeBSD$
-
-PORTNAME= xdebug
-DISTVERSION= 2.6.0
-CATEGORIES= devel pear
-PKGNAMESUFFIX= 26
-
-MAINTAINER= pizzamig@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>
diff --git a/devel/pecl-xdebug26/distinfo b/devel/pecl-xdebug26/distinfo
deleted file mode 100644
index bb9d12fad6e7..000000000000
--- a/devel/pecl-xdebug26/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1521120354
-SHA256 (PECL/xdebug-2.6.0.tgz) = b5264cc03bf68fcbb04b97229f96dca505d7b87ec2fb3bd4249896783d29cbdc
-SIZE (PECL/xdebug-2.6.0.tgz) = 283644
diff --git a/devel/pecl-xdebug26/files/pkg-message.in b/devel/pecl-xdebug26/files/pkg-message.in
deleted file mode 100644
index 40b8ca11dcb6..000000000000
--- a/devel/pecl-xdebug26/files/pkg-message.in
+++ /dev/null
@@ -1,21 +0,0 @@
-*****************************************************************************
-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
-
-*****************************************************************************
diff --git a/devel/pecl-xdebug26/pkg-descr b/devel/pecl-xdebug26/pkg-descr
deleted file mode 100644
index 99fa7223fb59..000000000000
--- a/devel/pecl-xdebug26/pkg-descr
+++ /dev/null
@@ -1,18 +0,0 @@
-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/