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/pecl-haru: pecl-haru-1.0.3.ebuild ChangeLog
Date: Thu, 02 Feb 2012 12:16:20
Message-Id: 20120202121609.00F9E2004B@flycatcher.gentoo.org
1 olemarkus 12/02/02 12:16:08
2
3 Modified: ChangeLog
4 Added: pecl-haru-1.0.3.ebuild
5 Log:
6 Version/EAPI/USE_PHP bump
7
8 (Portage version: 2.1.10.41/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 dev-php/pecl-haru/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-haru/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-haru/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-haru/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-php/pecl-haru/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 14 Dec 2011 22:37:15 -0000 1.1
24 +++ ChangeLog 2 Feb 2012 12:16:08 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-php5/pecl-haru
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-haru/ChangeLog,v 1.1 2011/12/14 22:37:15 mabi Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-haru/ChangeLog,v 1.2 2012/02/02 12:16:08 olemarkus Exp $
31 +
32 +*pecl-haru-1.0.3 (02 Feb 2012)
33 +
34 + 02 Feb 2012; Ole Markus With <olemarkus@g.o> +pecl-haru-1.0.3.ebuild:
35 + Version/EAPI/USE_PHP bump
36
37 *pecl-haru-1.0.0-r1 (04 Nov 2010)
38
39
40
41
42 1.1 dev-php/pecl-haru/pecl-haru-1.0.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-haru/pecl-haru-1.0.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-haru/pecl-haru-1.0.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pecl-haru-1.0.3.ebuild
48 ===================================================================
49 # Copyright 1999-2012 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.3.ebuild,v 1.1 2012/02/02 12:16:08 olemarkus Exp $
52
53 EAPI=4
54
55 PHP_EXT_NAME="haru"
56
57 USE_PHP="php5-3 php5-4"
58
59 inherit php-ext-pecl-r2
60
61 DESCRIPTION="An interface to libharu, a PDF generator"
62
63 LICENSE="PHP-3.01"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="png zlib"
67
68 DEPEND="media-libs/libharu[png?,zlib?]"
69 RDEPEND="${DEPEND}"
70
71 src_configure() {
72 # config.m4 is broken checking paths, so we need to override it
73 my_conf="--with-haru=/usr"
74 use png && my_conf+=" --with-png-dir=/usr"
75 use zlib && my_conf+=" --with-zlib-dir=/usr"
76
77 php-ext-source-r2_src_configure
78 }