Gentoo Archives: gentoo-commits

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