Files
gentoo/dev-php/xdebug-client/xdebug-client-2.5.3.ebuild
Brian Evans 3b5a379d56 dev-php/xdebug-client: Mark stable for amd64
Bug: https://bugs.gentoo.org/633618
Package-Manager: Portage-2.3.16, Repoman-2.3.6
2017-11-29 12:28:32 -05:00

30 lines
590 B
Bash

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
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
}