summaryrefslogtreecommitdiff
path: root/community/xdebug
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/xdebug
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/xdebug')
-rw-r--r--community/xdebug/PKGBUILD49
-rw-r--r--community/xdebug/xdebug-5.2.ini5
-rw-r--r--community/xdebug/xdebug.ini5
-rw-r--r--community/xdebug/xdebug.install18
4 files changed, 0 insertions, 77 deletions
diff --git a/community/xdebug/PKGBUILD b/community/xdebug/PKGBUILD
deleted file mode 100644
index b6b2cc3e9..000000000
--- a/community/xdebug/PKGBUILD
+++ /dev/null
@@ -1,49 +0,0 @@
-# $Id: PKGBUILD 92281 2013-06-03 13:37:54Z spupykin $
-# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
-# Maintainer: Jonathan Wiersma <arch aur at jonw dot org>
-# Contributor: Jonathan Wiersma <arch aur at jonw dot org>
-# Contributor: sracker <smb.sac@gmail.com>
-
-pkgname=xdebug
-pkgver=2.2.3
-pkgrel=1
-pkgdesc="PHP debugging extension"
-arch=('i686' 'x86_64')
-url="http://www.xdebug.org"
-license=('GPL')
-depends=('php')
-install="${pkgname}.install"
-backup=('etc/php/conf.d/xdebug.ini')
-source=(http://www.xdebug.org/files/$pkgname-$pkgver.tgz
- xdebug-5.2.ini
- xdebug.ini)
-md5sums=('e49cec9861b45dc0b36eae33bf8a14fa'
- '6b7fdbbe0bf381bda40e77e29981f439'
- '68de800943369d4c76bdf7eb35c8463b')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
- phpize
- ./configure --prefix=/usr --enable-xdebug
- make
-
- cd debugclient
- ./configure --prefix=/usr
- make
-}
-
-package() {
- local PHPVER=`php -r 'echo phpversion();'`
-
- cd $srcdir/$pkgname-$pkgver/debugclient
- make DESTDIR=$pkgdir install
-
- cd $srcdir/$pkgname-$pkgver
- if [ "$PHPVER" \< "5.3.0" ] ; then
- install -D -m 744 modules/xdebug.so $pkgdir/usr/lib/php/modules/xdebug.so
- install -D -m 644 $srcdir/xdebug-5.2.ini $pkgdir/etc/php/conf.d/xdebug.ini
- else
- install -D -m 744 modules/xdebug.so $pkgdir/usr/lib/php/modules/xdebug.so
- install -D -m 644 $srcdir/xdebug.ini $pkgdir/etc/php/conf.d/xdebug.ini
- fi
-}
diff --git a/community/xdebug/xdebug-5.2.ini b/community/xdebug/xdebug-5.2.ini
deleted file mode 100644
index 9beb7fc30..000000000
--- a/community/xdebug/xdebug-5.2.ini
+++ /dev/null
@@ -1,5 +0,0 @@
-zend_extension=/usr/lib/php/xdebug.so
-;xdebug.remote_enable=on
-;xdebug.remote_host=127.0.0.1
-;xdebug.remote_port=9000
-;xdebug.remote_handler=dbgp
diff --git a/community/xdebug/xdebug.ini b/community/xdebug/xdebug.ini
deleted file mode 100644
index c6c9222ea..000000000
--- a/community/xdebug/xdebug.ini
+++ /dev/null
@@ -1,5 +0,0 @@
-zend_extension=/usr/lib/php/modules/xdebug.so
-;xdebug.remote_enable=on
-;xdebug.remote_host=127.0.0.1
-;xdebug.remote_port=9000
-;xdebug.remote_handler=dbgp
diff --git a/community/xdebug/xdebug.install b/community/xdebug/xdebug.install
deleted file mode 100644
index a7ec0b9cc..000000000
--- a/community/xdebug/xdebug.install
+++ /dev/null
@@ -1,18 +0,0 @@
-post_install() {
- local _configfile=/etc/php/conf.d/xdebug.ini
- echo " ==> You may wish to uncomment/change the settings found in "
- echo " $_configfile"
- echo ""
-}
-
-post_upgrade() {
- local _configfile=/etc/php/conf.d/xdebug.ini
- local PHPVER=$(php -r 'echo phpversion();')
- post_install $1
-
- if [ "$PHPVER" \< "5.3" ] ; then
- echo " ==> You are currenty running a version of php < 5.3."
- echo " When/if you upgrade php to a version >= 5.3, you will need to reinstall $pkgname."
- echo ""
- fi
-}