diff options
Diffstat (limited to 'dev-php4/phpdbg/phpdbg-2.11.32.ebuild')
-rw-r--r-- | dev-php4/phpdbg/phpdbg-2.11.32.ebuild | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/dev-php4/phpdbg/phpdbg-2.11.32.ebuild b/dev-php4/phpdbg/phpdbg-2.11.32.ebuild deleted file mode 100644 index 3dffdf8add1d..000000000000 --- a/dev-php4/phpdbg/phpdbg-2.11.32.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php4/phpdbg/phpdbg-2.11.32.ebuild,v 1.6 2007/01/28 06:36:35 genone Exp $ - -PHP_EXT_NAME="dbg" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" - -inherit php-ext-source-r1 - -KEYWORDS="~ppc ~ppc64 ~sparc ~x86" -DESCRIPTION="A PHP debugger useable with some editors like phpedit." -SRC_URI="mirror://sourceforge/dbg2/dbg-${PV}${PL}-src.tar.gz" -HOMEPAGE="http://dd.cron.ru/dbg/" -LICENSE="dbgphp" -SLOT="0" -IUSE="" - -S="${WORKDIR}/dbg-${PV}${PL}" - -need_php_by_category - -pkg_setup() { - has_php - - # phpdbg does not work with Zend Thread Safety (ZTS) - # so abort if we are using PHP compiled with ZTS. - if has_zts ; then - eerror "phpdbg doesn't work with a ZTS enabled PHP." - eerror "Please disable ZTS by turning the 'threads'" - eerror "USE flag off when you compile dev-lang/php." - die "phpdbg does not support ZTS" - fi -} - -src_compile() { - has_php - - my_conf="--enable-dbg=shared --with-dbg-profiler" - php-ext-source-r1_src_compile -} - -src_install() { - php-ext-source-r1_src_install - dodoc-php AUTHORS COPYING INSTALL - php-ext-base-r1_addtoinifiles "[Debugger]" - php-ext-base-r1_addtoinifiles "debugger.enabled" "on" - php-ext-base-r1_addtoinifiles "debugger.profiler_enabled" "on" -} - -pkg_postinst() { - elog "Please reload Apache to activate the changes." -} - -pkg_postrm() { - elog "You need to remove all lines referring to the debugger, and" - elog "extension=dbg.so. Please reload Apache to activate the changes." -} |