Gentoo Archives: gentoo-commits

From: "Matti Bickel (mabi)" <mabi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php/xdebug-client: xdebug-client-2.1.0_rc1.ebuild ChangeLog
Date: Sat, 01 May 2010 19:30:53
Message-Id: 20100501193049.0A1D22C13F@corvid.gentoo.org
1 mabi 10/05/01 19:30:48
2
3 Modified: ChangeLog
4 Added: xdebug-client-2.1.0_rc1.ebuild
5 Log:
6 bump
7 (Portage version: 2.1.8.3/cvs/Linux i686)
8
9 Revision Changes Path
10 1.16 dev-php/xdebug-client/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/xdebug-client/ChangeLog?rev=1.16&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/xdebug-client/ChangeLog?rev=1.16&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/xdebug-client/ChangeLog?r1=1.15&r2=1.16
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-php/xdebug-client/ChangeLog,v
19 retrieving revision 1.15
20 retrieving revision 1.16
21 diff -u -r1.15 -r1.16
22 --- ChangeLog 5 Feb 2010 09:49:32 -0000 1.15
23 +++ ChangeLog 1 May 2010 19:30:48 -0000 1.16
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-php/xdebug-client
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-php/xdebug-client/ChangeLog,v 1.15 2010/02/05 09:49:32 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-php/xdebug-client/ChangeLog,v 1.16 2010/05/01 19:30:48 mabi Exp $
29 +
30 +*xdebug-client-2.1.0_rc1 (01 May 2010)
31 +
32 + 01 May 2010; <mabi@g.o> +xdebug-client-2.1.0_rc1.ebuild:
33 + version bump (bug #310515, thanks to Ole Markus With
34 + <o.with@××××××××××.ag>)
35
36 05 Feb 2010; Alexis Ballier <aballier@g.o>
37 xdebug-client-2.0.2.ebuild, xdebug-client-2.0.3.ebuild,
38
39
40
41 1.1 dev-php/xdebug-client/xdebug-client-2.1.0_rc1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/xdebug-client/xdebug-client-2.1.0_rc1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/xdebug-client/xdebug-client-2.1.0_rc1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xdebug-client-2.1.0_rc1.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-php/xdebug-client/xdebug-client-2.1.0_rc1.ebuild,v 1.1 2010/05/01 19:30:48 mabi Exp $
51
52 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
53
54 MY_PV="${PV/_/}"
55 MY_PV="${MY_PV/rc/RC}"
56
57 DESCRIPTION="Xdebug client for the Common Debugger Protocol (DBGP)."
58 HOMEPAGE="http://www.xdebug.org/"
59 SRC_URI="http://pecl.php.net/get/xdebug-${MY_PV}.tgz"
60 LICENSE="Xdebug"
61 SLOT="0"
62 IUSE="libedit"
63
64 S="${WORKDIR}/xdebug-${MY_PV}/debugclient"
65
66 DEPEND="libedit? ( dev-libs/libedit )"
67 RDEPEND="${DEPEND}"
68
69 src_unpack() {
70 unpack ${A}
71 chmod +x "${S}"/configure
72 }
73
74 src_compile() {
75 econf $(use_with libedit) --disable-dependency-tracking
76 emake || die "Build of debug client failed!"
77 }
78
79 src_install() {
80 newbin debugclient xdebug
81 }