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-php5/phpdbg: ChangeLog phpdbg-2.15.5-r1.ebuild
Date: Thu, 04 Nov 2010 17:17:32
Message-Id: 20101104171728.A9D5B20051@flycatcher.gentoo.org
1 mabi 10/11/04 17:17:28
2
3 Modified: ChangeLog
4 Added: phpdbg-2.15.5-r1.ebuild
5 Log:
6 add version supporting minor version slotting
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.13 dev-php5/phpdbg/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/phpdbg/ChangeLog?rev=1.13&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/phpdbg/ChangeLog?rev=1.13&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/phpdbg/ChangeLog?r1=1.12&r2=1.13
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-php5/phpdbg/ChangeLog,v
19 retrieving revision 1.12
20 retrieving revision 1.13
21 diff -u -r1.12 -r1.13
22 --- ChangeLog 4 Jul 2010 21:48:24 -0000 1.12
23 +++ ChangeLog 4 Nov 2010 17:17:28 -0000 1.13
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-php5/phpdbg
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/phpdbg/ChangeLog,v 1.12 2010/07/04 21:48:24 mabi Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-php5/phpdbg/ChangeLog,v 1.13 2010/11/04 17:17:28 mabi Exp $
29 +
30 +*phpdbg-2.15.5-r1 (04 Nov 2010)
31 +
32 + 04 Nov 2010; Matti Bickel <mabi@g.o> +phpdbg-2.15.5-r1.ebuild:
33 + add version supporting minor version slotting
34
35 04 Jul 2010; Matti Bickel <mabi@g.o> phpdbg-2.15.5.ebuild:
36 does not build with php-5.3 (bug #324829)
37
38
39
40 1.1 dev-php5/phpdbg/phpdbg-2.15.5-r1.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/phpdbg/phpdbg-2.15.5-r1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/phpdbg/phpdbg-2.15.5-r1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: phpdbg-2.15.5-r1.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-php5/phpdbg/phpdbg-2.15.5-r1.ebuild,v 1.1 2010/11/04 17:17:28 mabi Exp $
50
51 EAPI=3
52
53 PHP_EXT_NAME="dbg"
54 PHP_EXT_INI="yes"
55 PHP_EXT_ZENDEXT="no"
56
57 inherit php-ext-source-r2
58
59 KEYWORDS="~amd64 ~x86"
60
61 DESCRIPTION="A PHP debugger useable with some editors like phpedit."
62 HOMEPAGE="http://dd.cron.ru/dbg/"
63 SRC_URI="mirror://sourceforge/dbg2/dbg-${PV}.tar.gz"
64 LICENSE="dbgphp"
65 SLOT="0"
66 IUSE=""
67
68 USE_PHP="php5-2"
69
70 DEPEND="<dev-lang/php-5.3[-threads]"
71 RDEPEND="${DEPEND}"
72
73 S="${WORKDIR}/dbg-${PV}"
74
75 my_conf="--enable-dbg=shared --with-dbg-profiler"
76
77 src_install() {
78 php-ext-source-r2_src_install
79 dodoc-php AUTHORS COPYING INSTALL
80
81 php-ext-base-r1_addtoinifiles "[Debugger]"
82 php-ext-base-r1_addtoinifiles "debugger.enabled" "on"
83 php-ext-base-r1_addtoinifiles "debugger.profiler_enabled" "on"
84 }