blob: 1e54576eaedd0999ef3a863bc126ba11d4ef3506 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php4/xdebug/xdebug-2.0.0_beta4.ebuild,v 1.1 2005/11/25 16:19:41 chtekk Exp $
PHP_EXT_NAME="xdebug"
PHP_EXT_INI="yes"
PHP_EXT_ZENDEXT="yes"
inherit php-ext-source-r1
KEYWORDS="~x86"
DESCRIPTION="A PHP Debugging and Profiling extension."
HOMEPAGE="http://www.xdebug.org/"
LICENSE="Xdebug"
SLOT="0"
IUSE=""
MY_P="${P/_/}"
SRC_URI="http://pecl.php.net/get/${MY_P}.tgz"
S="${WORKDIR}/${MY_P}"
RDEPEND="${RDEPEND} !dev-php4/ZendOptimizer"
need_php_by_category
src_install() {
php-ext-source-r1_src_install
dodoc-php NEWS README Changelog CREDITS LICENSE
}
|