Gentoo Archives: gentoo-commits

From: "Ben de Groot (yngwin)" <yngwin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php/xdebug-client: ChangeLog xdebug-client-2.0.5.ebuild
Date: Fri, 01 Jan 2010 20:20:51
Message-Id: E1NQnzK-0002JL-DZ@stork.gentoo.org
1 yngwin 10/01/01 20:20:46
2
3 Modified: ChangeLog
4 Added: xdebug-client-2.0.5.ebuild
5 Log:
6 Version bump. Fixes bug 256080.
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.14 dev-php/xdebug-client/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/xdebug-client/ChangeLog?rev=1.14&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/xdebug-client/ChangeLog?rev=1.14&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/xdebug-client/ChangeLog?r1=1.13&r2=1.14
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-php/xdebug-client/ChangeLog,v
19 retrieving revision 1.13
20 retrieving revision 1.14
21 diff -u -r1.13 -r1.14
22 --- ChangeLog 15 Jul 2008 18:21:46 -0000 1.13
23 +++ ChangeLog 1 Jan 2010 20:20:46 -0000 1.14
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-php/xdebug-client
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-php/xdebug-client/ChangeLog,v 1.13 2008/07/15 18:21:46 jer Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-php/xdebug-client/ChangeLog,v 1.14 2010/01/01 20:20:46 yngwin Exp $
30 +
31 +*xdebug-client-2.0.5 (01 Jan 2010)
32 +
33 + 01 Jan 2010; Ben de Groot <yngwin@g.o> +xdebug-client-2.0.5.ebuild:
34 + Version bump. Fixes bug 256080.
35
36 15 Jul 2008; Jeroen Roovers <jer@g.o> xdebug-client-2.0.3.ebuild:
37 Marked ~hppa too.
38
39
40
41 1.1 dev-php/xdebug-client/xdebug-client-2.0.5.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/xdebug-client/xdebug-client-2.0.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/xdebug-client/xdebug-client-2.0.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xdebug-client-2.0.5.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.0.5.ebuild,v 1.1 2010/01/01 20:20:46 yngwin 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 sys-freebsd/freebsd-lib ) )"
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 }