blob: 511fdcc00b0150887a17905c813f04a03387b03d (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/xdebug-client/xdebug-client-2.0.0_rc1.ebuild,v 1.2 2006/10/27 19:54:16 swegener Exp $
IUSE="libedit"
DESCRIPTION="Xdebug client for the Common Debugger Protocol (DBGP)."
HOMEPAGE="http://www.xdebug.org/"
SLOT="0"
MY_PV="${PV/_/}"
SRC_URI="http://pecl.php.net/get/xdebug-${MY_PV}.tgz"
S="${WORKDIR}/xdebug-2.0.0RC1/debugclient"
LICENSE="Xdebug"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
DEPEND="libedit? ( || ( dev-libs/libedit sys-freebsd/freebsd-lib ) )"
src_unpack() {
unpack ${A}
chmod +x "${S}"/configure
}
src_compile() {
econf \
$(use_with libedit ) \
|| die "Configure of debug client failed!"
emake || die "Build of debug client failed!"
}
src_install() {
newbin debugclient xdebug
}
|