blob: dff18dc2ee66a08d349b857f4b87d457fa2cf5cc (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php5/xdebug/xdebug-2.0.0_beta5.ebuild,v 1.4 2006/02/10 17:05:54 gustavoz Exp $
PHP_EXT_ZENDEXT="yes"
PHP_EXT_NAME="xdebug"
inherit php-ext-source-r1
IUSE=""
DESCRIPTION="A PHP Debugging and Profiling extension."
HOMEPAGE="http://www.xdebug.org/"
SLOT="0"
MY_P="${P/_/}"
SRC_URI="http://pecl.php.net/get/${MY_P}.tgz"
S="${WORKDIR}/${MY_P}"
LICENSE="Xdebug"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
RDEPEND="${RDEPEND} !dev-php5/ZendOptimizer"
need_php_by_category
src_install() {
php-ext-source-r1_src_install
dodoc-php NEWS README Changelog CREDITS LICENSE
}
|