Gentoo Archives: gentoo-commits

From: "Brian Evans (grknight)" <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php/pecl-haru: pecl-haru-1.0.4-r1.ebuild ChangeLog
Date: Wed, 29 Apr 2015 00:59:31
Message-Id: 20150429005922.C507098C@oystercatcher.gentoo.org
1 grknight 15/04/29 00:59:21
2
3 Modified: ChangeLog
4 Added: pecl-haru-1.0.4-r1.ebuild
5 Log:
6 Revbump to add php5-6 wrt bug 548038
7
8 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xD1F781EFF9F4A3B6)
9
10 Revision Changes Path
11 1.7 dev-php/pecl-haru/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-haru/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-haru/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-haru/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-php/pecl-haru/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 9 Oct 2014 20:51:00 -0000 1.6
24 +++ ChangeLog 29 Apr 2015 00:59:21 -0000 1.7
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-php/pecl-haru
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-haru/ChangeLog,v 1.6 2014/10/09 20:51:00 grknight Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-haru/ChangeLog,v 1.7 2015/04/29 00:59:21 grknight Exp $
31 +
32 +*pecl-haru-1.0.4-r1 (29 Apr 2015)
33 +
34 + 29 Apr 2015; Brian Evans <grknight@g.o> +pecl-haru-1.0.4-r1.ebuild:
35 + Revbump to add php5-6 wrt bug 548038
36
37 30 Sep 2014; Brian Evans <grknight@g.o> -pecl-haru-1.0.3.ebuild:
38 Drop support for php5.3
39
40
41
42 1.1 dev-php/pecl-haru/pecl-haru-1.0.4-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-haru/pecl-haru-1.0.4-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-haru/pecl-haru-1.0.4-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pecl-haru-1.0.4-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-haru/pecl-haru-1.0.4-r1.ebuild,v 1.1 2015/04/29 00:59:21 grknight Exp $
52
53 EAPI=5
54
55 USE_PHP="php5-4 php5-5 php5-6"
56
57 inherit php-ext-pecl-r2
58
59 DESCRIPTION="An interface to libharu, a PDF generator"
60
61 LICENSE="PHP-3.01"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="png zlib"
65
66 DEPEND="media-libs/libharu[png?,zlib?]"
67 RDEPEND="${DEPEND}"
68
69 src_configure() {
70 # config.m4 is broken checking paths, so we need to override it
71 my_conf=""
72 use png && my_conf+=" --with-png-dir=/usr"
73 use zlib && my_conf+=" --with-zlib-dir=/usr"
74
75 php-ext-source-r2_src_configure
76 }