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-php5/pecl-mailparse: ChangeLog pecl-mailparse-2.1.5.ebuild
Date: Sat, 02 Oct 2010 08:56:40
Message-Id: 20101002085626.94FEB20051@flycatcher.gentoo.org
1 olemarkus 10/10/02 08:56:26
2
3 Modified: ChangeLog pecl-mailparse-2.1.5.ebuild
4 Log:
5 Ebuilds inheriting pecl-ext-source-r1 cannot use EAPI2 (bug #339408)
6 (Portage version: 2.1.8.3/cvs/Linux i686)
7
8 Revision Changes Path
9 1.19 dev-php5/pecl-mailparse/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-mailparse/ChangeLog?rev=1.19&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-mailparse/ChangeLog?rev=1.19&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-mailparse/ChangeLog?r1=1.18&r2=1.19
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-php5/pecl-mailparse/ChangeLog,v
18 retrieving revision 1.18
19 retrieving revision 1.19
20 diff -u -r1.18 -r1.19
21 --- ChangeLog 30 Sep 2010 10:22:14 -0000 1.18
22 +++ ChangeLog 2 Oct 2010 08:56:26 -0000 1.19
23 @@ -1,6 +1,9 @@
24 # ChangeLog for dev-php5/pecl-mailparse
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-mailparse/ChangeLog,v 1.18 2010/09/30 10:22:14 hwoarang Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-mailparse/ChangeLog,v 1.19 2010/10/02 08:56:26 olemarkus Exp $
28 +
29 + 02 Oct 2010; <olemarkus@g.o> pecl-mailparse-2.1.5.ebuild:
30 + Ebuilds inheriting pecl-ext-source-r1 cannot use EAPI2 (bug #339408)
31
32 30 Sep 2010; Markos Chandras <hwoarang@g.o>
33 pecl-mailparse-2.1.5.ebuild:
34
35
36
37 1.4 dev-php5/pecl-mailparse/pecl-mailparse-2.1.5.ebuild
38
39 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-mailparse/pecl-mailparse-2.1.5.ebuild?rev=1.4&view=markup
40 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-mailparse/pecl-mailparse-2.1.5.ebuild?rev=1.4&content-type=text/plain
41 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-mailparse/pecl-mailparse-2.1.5.ebuild?r1=1.3&r2=1.4
42
43 Index: pecl-mailparse-2.1.5.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/dev-php5/pecl-mailparse/pecl-mailparse-2.1.5.ebuild,v
46 retrieving revision 1.3
47 retrieving revision 1.4
48 diff -u -r1.3 -r1.4
49 --- pecl-mailparse-2.1.5.ebuild 30 Sep 2010 10:22:14 -0000 1.3
50 +++ pecl-mailparse-2.1.5.ebuild 2 Oct 2010 08:56:26 -0000 1.4
51 @@ -1,15 +1,12 @@
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-mailparse/pecl-mailparse-2.1.5.ebuild,v 1.3 2010/09/30 10:22:14 hwoarang Exp $
55 -
56 -EAPI="2"
57 +# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-mailparse/pecl-mailparse-2.1.5.ebuild,v 1.4 2010/10/02 08:56:26 olemarkus Exp $
58
59 PHP_EXT_NAME="mailparse"
60 PHP_EXT_INI="yes"
61 PHP_EXT_ZENDEXT="no"
62
63 DOCS="README"
64 -
65 inherit php-ext-pecl-r1
66
67 KEYWORDS="amd64 ~ppc ~ppc64 ~sparc ~x86"
68 @@ -19,7 +16,11 @@
69 SLOT="0"
70 IUSE=""
71
72 -DEPEND="dev-lang/php[unicode]"
73 +DEPEND=""
74 RDEPEND=""
75
76 need_php_by_category
77 +
78 +pkg_setup() {
79 + require_php_with_use unicode
80 +}