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: ChangeLog xdebug-client-2.1.2.ebuild
Date: Fri, 29 Jul 2011 14:16:53
Message-Id: 20110729141641.0F17A2004B@flycatcher.gentoo.org
1 olemarkus 11/07/29 14:16:41
2
3 Modified: ChangeLog
4 Added: xdebug-client-2.1.2.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.10.6/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.29 dev-php/xdebug-client/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xdebug-client/ChangeLog?rev=1.29&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xdebug-client/ChangeLog?rev=1.29&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xdebug-client/ChangeLog?r1=1.28&r2=1.29
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-php/xdebug-client/ChangeLog,v
20 retrieving revision 1.28
21 retrieving revision 1.29
22 diff -u -r1.28 -r1.29
23 --- ChangeLog 28 Mar 2011 17:00:40 -0000 1.28
24 +++ ChangeLog 29 Jul 2011 14:16:40 -0000 1.29
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-php/xdebug-client
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-php/xdebug-client/ChangeLog,v 1.28 2011/03/28 17:00:40 olemarkus Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-php/xdebug-client/ChangeLog,v 1.29 2011/07/29 14:16:40 olemarkus Exp $
30 +
31 +*xdebug-client-2.1.2 (29 Jul 2011)
32 +
33 + 29 Jul 2011; Ole Markus With <olemarkus@g.o>
34 + +xdebug-client-2.1.2.ebuild:
35 + Version bump
36
37 *xdebug-client-2.1.1 (28 Mar 2011)
38
39
40
41
42 1.1 dev-php/xdebug-client/xdebug-client-2.1.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xdebug-client/xdebug-client-2.1.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xdebug-client/xdebug-client-2.1.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xdebug-client-2.1.2.ebuild
48 ===================================================================
49 # Copyright 1999-2011 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.1.2.ebuild,v 1.1 2011/07/29 14:16:40 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 }