Gentoo Archives: gentoo-commits

From: "Benedikt Boehm (hollow)" <hollow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-servers/apache: ChangeLog apache-2.2.9-r1.ebuild
Date: Fri, 29 Aug 2008 13:31:11
Message-Id: E1KZ449-0003Ow-7J@stork.gentoo.org
1 hollow 08/08/29 13:31:05
2
3 Modified: ChangeLog
4 Added: apache-2.2.9-r1.ebuild
5 Log:
6 fix #230690, #232083, #234088, #235152
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.22-vs2.2.0.6-gentoo x86_64)
8
9 Revision Changes Path
10 1.84 www-servers/apache/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/apache/ChangeLog?rev=1.84&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/apache/ChangeLog?rev=1.84&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/apache/ChangeLog?r1=1.83&r2=1.84
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/www-servers/apache/ChangeLog,v
19 retrieving revision 1.83
20 retrieving revision 1.84
21 diff -u -r1.83 -r1.84
22 --- ChangeLog 22 Aug 2008 22:21:41 -0000 1.83
23 +++ ChangeLog 29 Aug 2008 13:31:04 -0000 1.84
24 @@ -1,6 +1,11 @@
25 # ChangeLog for www-servers/apache
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/ChangeLog,v 1.83 2008/08/22 22:21:41 cardoe Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/ChangeLog,v 1.84 2008/08/29 13:31:04 hollow Exp $
29 +
30 +*apache-2.2.9-r1 (29 Aug 2008)
31 +
32 + 29 Aug 2008; Benedikt Böhm <hollow@g.o> +apache-2.2.9-r1.ebuild:
33 + fix #230690, #232083, #234088, #235152
34
35 22 Aug 2008; Doug Goldstein <cardoe@g.o> metadata.xml:
36 add GLEP 56 USE flag desc from use.local.desc
37
38
39
40 1.1 www-servers/apache/apache-2.2.9-r1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/apache/apache-2.2.9-r1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/apache/apache-2.2.9-r1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: apache-2.2.9-r1.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/www-servers/apache/apache-2.2.9-r1.ebuild,v 1.1 2008/08/29 13:31:04 hollow Exp $
50
51 # latest gentoo apache files
52 GENTOO_PATCHSTAMP="20080829"
53 GENTOO_DEVELOPER="hollow"
54
55 # IUSE/USE_EXPAND magic
56 IUSE_MPMS_FORK="itk peruser prefork"
57 IUSE_MPMS_THREAD="event worker"
58
59 IUSE_MODULES="actions alias asis auth_basic auth_digest authn_alias authn_anon
60 authn_dbd authn_dbm authn_default authn_file authz_dbm authz_default
61 authz_groupfile authz_host authz_owner authz_user autoindex cache cern_meta
62 charset_lite dav dav_fs dav_lock dbd deflate dir disk_cache dumpio env expires
63 ext_filter file_cache filter headers ident imagemap include info log_config
64 log_forensic logio mem_cache mime mime_magic negotiation proxy proxy_ajp
65 proxy_balancer proxy_connect proxy_ftp proxy_http rewrite setenvif speling
66 status substitute unique_id userdir usertrack version vhost_alias"
67
68 # inter-module dependencies
69 # TODO: this may still be incomplete
70 MODULE_DEPENDS="
71 dav_fs:dav
72 dav_lock:dav
73 deflate:filter
74 disk_cache:cache
75 ext_filter:filter
76 file_cache:cache
77 log_forensic:log_config
78 logio:log_config
79 mem_cache:cache
80 mime_magic:mime
81 proxy_ajp:proxy
82 proxy_balancer:proxy
83 proxy_connect:proxy
84 proxy_ftp:proxy
85 proxy_http:proxy
86 substitute:filter
87 "
88
89 # module<->define mappings
90 MODULE_DEFINES="
91 auth_digest:AUTH_DIGEST
92 authnz_ldap:AUTHNZ_LDAP
93 cache:CACHE
94 dav:DAV
95 dav_fs:DAV
96 dav_lock:DAV
97 disk_cache:CACHE
98 file_cache:CACHE
99 info:INFO
100 ldap:LDAP
101 mem_cache:CACHE
102 proxy:PROXY
103 proxy_ajp:PROXY
104 proxy_balancer:PROXY
105 proxy_connect:PROXY
106 proxy_ftp:PROXY
107 proxy_http:PROXY
108 ssl:SSL
109 status:STATUS
110 suexec:SUEXEC
111 userdir:USERDIR
112 "
113
114 # critical modules for the default config
115 MODULE_CRITICAL="
116 authz_host
117 dir
118 mime
119 "
120
121 inherit apache-2
122
123 DESCRIPTION="The Apache Web Server."
124 HOMEPAGE="http://httpd.apache.org/"
125
126 # some helper scripts are Apache-1.1, thus both are here
127 LICENSE="Apache-2.0 Apache-1.1"
128 SLOT="2"
129 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
130 IUSE="sni"
131
132 DEPEND="${DEPEND}
133 apache2_modules_deflate? ( sys-libs/zlib )"
134
135 RDEPEND="${RDEPEND}
136 apache2_modules_mime? ( app-misc/mime-types )"
137
138 src_unpack() {
139 if ! use sni ; then
140 EPATCH_EXCLUDE="04_all_mod_ssl_tls_sni.patch"
141 fi
142
143 apache-2_src_unpack
144 }
145
146 pkg_preinst() {
147 # note regarding IfDefine changes
148 if has_version "<${CATEGORY}/${PN}-2.2.6-r1"; then
149 elog
150 elog "When upgrading from versions 2.2.6 or earlier, please be aware"
151 elog "that the define for mod_authnz_ldap has changed from AUTH_LDAP"
152 elog "to AUTHNZ_LDAP. Additionally mod_auth_digest needs to be enabled"
153 elog "with AUTH_DIGEST now."
154 elog
155 fi
156 }