diff options
Diffstat (limited to 'dev-php/xdebug-client/xdebug-client-2.2.5.ebuild')
-rw-r--r-- | dev-php/xdebug-client/xdebug-client-2.2.5.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-php/xdebug-client/xdebug-client-2.2.5.ebuild b/dev-php/xdebug-client/xdebug-client-2.2.5.ebuild new file mode 100644 index 000000000000..28f5c6f4a2ac --- /dev/null +++ b/dev-php/xdebug-client/xdebug-client-2.2.5.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86" + +MY_PV="${PV/_/}" +MY_PV="${MY_PV/rc/RC}" + +DESCRIPTION="Xdebug client for the Common Debugger Protocol (DBGP)" +HOMEPAGE="http://www.xdebug.org/" +SRC_URI="http://pecl.php.net/get/xdebug-${MY_PV}.tgz" +LICENSE="Xdebug" +SLOT="0" +IUSE="libedit" + +S="${WORKDIR}/xdebug-${MY_PV}/debugclient" + +DEPEND="libedit? ( dev-libs/libedit )" +RDEPEND="${DEPEND}" + +src_configure() { + econf $(use_with libedit) +} + +src_install() { + newbin debugclient xdebug +} |