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-http: ChangeLog pecl-http-1.7.1.ebuild
Date: Thu, 05 May 2011 13:19:43
Message-Id: 20110505131930.54DCC20054@flycatcher.gentoo.org
1 olemarkus 11/05/05 13:19:30
2
3 Modified: ChangeLog
4 Added: pecl-http-1.7.1.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.9.42/cvs/Linux i686)
9
10 Revision Changes Path
11 1.19 dev-php5/pecl-http/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-http/ChangeLog?rev=1.19&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-http/ChangeLog?rev=1.19&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-http/ChangeLog?r1=1.18&r2=1.19
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-php5/pecl-http/ChangeLog,v
20 retrieving revision 1.18
21 retrieving revision 1.19
22 diff -u -r1.18 -r1.19
23 --- ChangeLog 4 Jan 2011 15:19:33 -0000 1.18
24 +++ ChangeLog 5 May 2011 13:19:30 -0000 1.19
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-php5/pecl-http
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-http/ChangeLog,v 1.18 2011/01/04 15:19:33 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-http/ChangeLog,v 1.19 2011/05/05 13:19:30 olemarkus Exp $
30 +
31 +*pecl-http-1.7.1 (05 May 2011)
32 +
33 + 05 May 2011; Ole Markus With <olemarkus@g.o> +pecl-http-1.7.1.ebuild:
34 + Version bump
35
36 04 Jan 2011; Markos Chandras <hwoarang@g.o> pecl-http-1.7.0-r1.ebuild:
37 Stable on amd64 wrt bug #349659
38
39
40
41 1.1 dev-php5/pecl-http/pecl-http-1.7.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-http/pecl-http-1.7.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-http/pecl-http-1.7.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pecl-http-1.7.1.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-http/pecl-http-1.7.1.ebuild,v 1.1 2011/05/05 13:19:30 olemarkus Exp $
51
52 EAPI="3"
53
54 PHP_EXT_NAME="http"
55 PHP_EXT_PECL_PKG="pecl_http"
56 PHP_EXT_INI="yes"
57 PHP_EXT_ZENDEXT="no"
58 DOCS="docs/examples/tutorial.txt ThanksTo.txt KnownIssues.txt"
59
60 inherit php-ext-pecl-r2 php-ext-source-r2
61
62 KEYWORDS="~amd64 ~x86"
63
64 DESCRIPTION="Extended HTTP Support for PHP."
65 LICENSE="BSD-2 MIT"
66 SLOT="0"
67 IUSE=""
68
69 DEPEND=">=net-misc/curl-7.19.4
70 sys-libs/zlib
71 dev-libs/libevent
72 || ( <dev-lang/php-5.3[spl] >=dev-lang/php-5.3 )
73 >=dev-lang/php-5[hash,session,iconv]
74 "
75 RDEPEND="${DEPEND}"
76
77 my_conf="--enable-http \
78 --with-http-curl-requests \
79 --with-http-zlib-compression \
80 --with-http-curl-libevent \
81 --with-http-magic-mime"
82
83 src_install() {
84 php-ext-pecl-r2_src_install
85
86 php-ext-source-r2_addtoinifiles "http.etag.mode" "MD5"
87 php-ext-source-r2_addtoinifiles "http.force_exit" "1"
88 php-ext-source-r2_addtoinifiles "http.log.allowed_methods" ""
89 php-ext-source-r2_addtoinifiles "http.log.cache" ""
90 php-ext-source-r2_addtoinifiles "http.log.composite" ""
91 php-ext-source-r2_addtoinifiles "http.log.not_found" ""
92 php-ext-source-r2_addtoinifiles "http.log.redirect" ""
93 php-ext-source-r2_addtoinifiles "http.only_exceptions" "0"
94 php-ext-source-r2_addtoinifiles "http.persistent.handles.ident" "GLOBAL"
95 php-ext-source-r2_addtoinifiles "http.persistent.handles.limit" "-1"
96 php-ext-source-r2_addtoinifiles "http.request.datashare.connect" "0"
97 php-ext-source-r2_addtoinifiles "http.request.datashare.cookie" "0"
98 php-ext-source-r2_addtoinifiles "http.request.datashare.dns" "1"
99 php-ext-source-r2_addtoinifiles "http.request.datashare.ssl" "0"
100 php-ext-source-r2_addtoinifiles "http.request.methods.allowed" ""
101 php-ext-source-r2_addtoinifiles "http.request.methods.custom" ""
102 php-ext-source-r2_addtoinifiles "http.send.inflate.start_auto" "0"
103 php-ext-source-r2_addtoinifiles "http.send.inflate.start_flags" "0"
104 php-ext-source-r2_addtoinifiles "http.send.deflate.start_auto" "0"
105 php-ext-source-r2_addtoinifiles "http.send.deflate.start_flags" "0"
106 php-ext-source-r2_addtoinifiles "http.send.not_found_404" "1"
107 }