diff options
author | Ole Markus With <olemarkus@gentoo.org> | 2012-05-08 17:30:55 +0000 |
---|---|---|
committer | Ole Markus With <olemarkus@gentoo.org> | 2012-05-08 17:30:55 +0000 |
commit | 2aeae1761e8b1b04786e4c6e9a469a7e88efc78c (patch) | |
tree | 8b9c55537f102c991e18e16fea0a9d7a7fa4a3bf /dev-php/xdebug-client/xdebug-client-2.2.0.ebuild | |
parent | Version bump (diff) | |
download | gentoo-2-2aeae1761e8b1b04786e4c6e9a469a7e88efc78c.tar.gz gentoo-2-2aeae1761e8b1b04786e4c6e9a469a7e88efc78c.tar.bz2 gentoo-2-2aeae1761e8b1b04786e4c6e9a469a7e88efc78c.zip |
Version bump
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'dev-php/xdebug-client/xdebug-client-2.2.0.ebuild')
-rw-r--r-- | dev-php/xdebug-client/xdebug-client-2.2.0.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/dev-php/xdebug-client/xdebug-client-2.2.0.ebuild b/dev-php/xdebug-client/xdebug-client-2.2.0.ebuild new file mode 100644 index 000000000000..1cac1b89bd84 --- /dev/null +++ b/dev-php/xdebug-client/xdebug-client-2.2.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2012 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.2.0.ebuild,v 1.1 2012/05/08 17:30:55 olemarkus Exp $ + +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~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_unpack() { + unpack ${A} + chmod +x "${S}"/configure +} + +src_compile() { + econf $(use_with libedit) --disable-dependency-tracking + emake || die "Build of debug client failed!" +} + +src_install() { + newbin debugclient xdebug +} |