Portage is a package management system used by Gentoo Linux
# ChangeLog for dev-php4/phpdbg
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-php4/phpdbg/ChangeLog,v 1.11 2007/05/30 15:49:47 chtekk Exp $
*phpdbg-2.15.5 (30 May 2007)
30 May 2007; Luca Longinotti
+phpdbg-2.15.5.ebuild:
Version bump.
18 Mar 2007; Luca Longinotti
Cleanup.
*phpdbg-2.15.1 (06 Mar 2007)
06 Mar 2007; Luca Longinotti
-phpdbg-2.13.1.ebuild, +phpdbg-2.15.1.ebuild:
Version bump, cleanup.
21 Feb 2007; Piotr JaroszyĆski
Transition to Manifest2.
28 Jan 2007; Marius Mauch
phpdbg-2.13.1.ebuild:
Replacing einfo with elog
27 May 2006; Luca Longinotti
Added to ~amd64.
*phpdbg-2.13.1 (15 Apr 2006)
15 Apr 2006; Luca Longinotti
+phpdbg-2.13.1.ebuild:
Version bump and rework ebuilds.
25 Nov 2005; Luca Longinotti
Fix var ordering, tidy up ebuild.
19 Nov 2005; Markus Rothe
Added ~ppc64 keyword; bug #102649
15 Oct 2005; Jason Wever
Added ~sparc keyword.
18 Aug 2005;
Initial version; replaces older dev-php/* packages
DIST dbg-2.15.5.tar.gz 252533 RMD160 396e9658ffa4adc3b3669a7185f79444264cd932 SHA1 4994b2b45c6b7681785286265aae7f3b50f87401 SHA256 84dc46495610cd6ca96ff32578ee5df75aad672228cb63d593e72796bd11d77a
EBUILD phpdbg-2.15.5.ebuild 1314 RMD160 361c2b3694116f720653aa425c854dbc5606f4fd SHA1 db29176109f1c617fc706be57365a9f95a75c0d0 SHA256 e5edba2a79f11d1e2dc689a6344bb885ef063977c185d74c5c01fa0a1f13f96c
MISC ChangeLog 1502 RMD160 86eb94f749d097820008ac07a82a6319377f015b SHA1 cd02b9e2bc04787c1a69d41c5838a76bc5d88568 SHA256 709a9aa9c106cb7607beec40529c7bd9062558220526d18d723947a0d4868885
MISC metadata.xml 157 RMD160 a98db3a086fae3c09a903dadbc05f60443ec4b1a SHA1 ddaa23cc35eb917bf8962b652442bebb1ce0f440 SHA256 54f8878ca0228e380abbaa4b529806b5533a6b9b51b3b16c0909e906586a91a1
# 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.15.5.ebuild,v 1.1 2007/05/30 15:49:47 chtekk Exp $
PHP_EXT_NAME="dbg"
PHP_EXT_INI="yes"
PHP_EXT_ZENDEXT="no"
inherit php-ext-source-r1
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
DESCRIPTION="A PHP debugger useable with some editors like phpedit."
HOMEPAGE="http://dd.cron.ru/dbg/"
SRC_URI="mirror://sourceforge/dbg2/dbg-${PV}.tar.gz"
LICENSE="dbgphp"
SLOT="0"
IUSE=""
DEPEND=""
RDEPEND=""
S="${WORKDIR}/dbg-${PV}"
need_php_by_category
pkg_setup() {
has_php
# phpdbg does not work with Zend Thread Safety (ZTS),
# so abort if we're 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() {
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"
}