blob: d45788bd44252b94477a88c1c441c86b9d21e25a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php5/phpdbg/phpdbg-2.15.5-r1.ebuild,v 1.6 2011/04/16 14:01:51 olemarkus Exp $
EAPI=3
PHP_EXT_NAME="dbg"
PHP_EXT_INI="yes"
PHP_EXT_ZENDEXT="no"
USE_PHP="php5-2"
inherit php-ext-source-r2
KEYWORDS="~amd64 ~ppc ~ppc64 ~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="<dev-lang/php-5.3[-threads]"
RDEPEND="${DEPEND}"
S="${WORKDIR}/dbg-${PV}"
my_conf="--enable-dbg=shared --with-dbg-profiler"
src_install() {
php-ext-source-r2_src_install
dodoc-php AUTHORS COPYING INSTALL
php-ext-source-r2_addtoinifiles "[Debugger]"
php-ext-source-r2_addtoinifiles "debugger.enabled" "on"
php-ext-source-r2_addtoinifiles "debugger.profiler_enabled" "on"
}
|