Hanno Böck commited on 2015-12-04 08:37:00
Zeige 1 geänderte Dateien mit 234 Einfügungen und 0 Löschungen.
... | ... |
@@ -0,0 +1,234 @@ |
1 |
+# Copyright 1999-2015 Gentoo Foundation |
|
2 |
+# Distributed under the terms of the GNU General Public License v2 |
|
3 |
+# $Id$ |
|
4 |
+ |
|
5 |
+EAPI=5 |
|
6 |
+ |
|
7 |
+# latest gentoo apache files |
|
8 |
+GENTOO_PATCHSTAMP="20140731" |
|
9 |
+GENTOO_DEVELOPER="polynomial-c" |
|
10 |
+GENTOO_PATCHNAME="gentoo-apache-2.4.10-r1" |
|
11 |
+ |
|
12 |
+# IUSE/USE_EXPAND magic |
|
13 |
+IUSE_MPMS_FORK="peruser prefork" |
|
14 |
+IUSE_MPMS_THREAD="event worker" |
|
15 |
+ |
|
16 |
+# << obsolete modules: |
|
17 |
+# authn_default authz_default mem_cache |
|
18 |
+# mem_cache is replaced by cache_disk |
|
19 |
+# ?? buggy modules |
|
20 |
+# proxy_scgi: startup error: undefined symbol "ap_proxy_release_connection", no fix found |
|
21 |
+# >> added modules for reason: |
|
22 |
+# compat: compatibility with 2.2 access control |
|
23 |
+# authz_host: new module for access control |
|
24 |
+# authn_core: functionality provided by authn_alias in previous versions |
|
25 |
+# authz_core: new module, provides core authorization capabilities |
|
26 |
+# cache_disk: replacement for mem_cache |
|
27 |
+# lbmethod_byrequests: Split off from mod_proxy_balancer in 2.3 |
|
28 |
+# lbmethod_bytraffic: Split off from mod_proxy_balancer in 2.3 |
|
29 |
+# lbmethod_bybusyness: Split off from mod_proxy_balancer in 2.3 |
|
30 |
+# lbmethod_heartbeat: Split off from mod_proxy_balancer in 2.3 |
|
31 |
+# slotmem_shm: Slot-based shared memory provider (for lbmethod_byrequests). |
|
32 |
+# socache_shmcb: shared object cache provider. Default config with ssl needs it |
|
33 |
+# unixd: fixes startup error: Invalid command 'User' |
|
34 |
+IUSE_MODULES="access_compat actions alias asis auth_basic auth_digest |
|
35 |
+authn_alias authn_anon authn_core authn_dbd authn_dbm authn_file authz_core |
|
36 |
+authz_dbd authz_dbm authz_groupfile authz_host authz_owner authz_user autoindex |
|
37 |
+cache cache_disk cern_meta charset_lite cgi cgid dav dav_fs dav_lock dbd deflate |
|
38 |
+dir dumpio env expires ext_filter file_cache filter headers http2 ident imagemap |
|
39 |
+include info lbmethod_byrequests lbmethod_bytraffic lbmethod_bybusyness |
|
40 |
+lbmethod_heartbeat log_config log_forensic logio macro mime mime_magic negotiation |
|
41 |
+proxy proxy_ajp proxy_balancer proxy_connect proxy_ftp proxy_http proxy_scgi |
|
42 |
+proxy_fcgi proxy_wstunnel rewrite ratelimit remoteip reqtimeout setenvif |
|
43 |
+slotmem_shm speling socache_shmcb status substitute unique_id userdir usertrack |
|
44 |
+unixd version vhost_alias" |
|
45 |
+# The following are also in the source as of this version, but are not available |
|
46 |
+# for user selection: |
|
47 |
+# bucketeer case_filter case_filter_in echo http isapi optional_fn_export |
|
48 |
+# optional_fn_import optional_hook_export optional_hook_import |
|
49 |
+ |
|
50 |
+# inter-module dependencies |
|
51 |
+# TODO: this may still be incomplete |
|
52 |
+MODULE_DEPENDS=" |
|
53 |
+ dav_fs:dav |
|
54 |
+ dav_lock:dav |
|
55 |
+ deflate:filter |
|
56 |
+ cache_disk:cache |
|
57 |
+ ext_filter:filter |
|
58 |
+ file_cache:cache |
|
59 |
+ lbmethod_byrequests:proxy_balancer |
|
60 |
+ lbmethod_byrequests:slotmem_shm |
|
61 |
+ lbmethod_bytraffic:proxy_balancer |
|
62 |
+ lbmethod_bybusyness:proxy_balancer |
|
63 |
+ lbmethod_heartbeat:proxy_balancer |
|
64 |
+ log_forensic:log_config |
|
65 |
+ logio:log_config |
|
66 |
+ cache_disk:cache |
|
67 |
+ mime_magic:mime |
|
68 |
+ proxy_ajp:proxy |
|
69 |
+ proxy_balancer:proxy |
|
70 |
+ proxy_balancer:slotmem_shm |
|
71 |
+ proxy_connect:proxy |
|
72 |
+ proxy_ftp:proxy |
|
73 |
+ proxy_http:proxy |
|
74 |
+ proxy_scgi:proxy |
|
75 |
+ proxy_fcgi:proxy |
|
76 |
+ proxy_wstunnel:proxy |
|
77 |
+ substitute:filter |
|
78 |
+" |
|
79 |
+ |
|
80 |
+# module<->define mappings |
|
81 |
+MODULE_DEFINES=" |
|
82 |
+ auth_digest:AUTH_DIGEST |
|
83 |
+ authnz_ldap:AUTHNZ_LDAP |
|
84 |
+ cache:CACHE |
|
85 |
+ cache_disk:CACHE |
|
86 |
+ dav:DAV |
|
87 |
+ dav_fs:DAV |
|
88 |
+ dav_lock:DAV |
|
89 |
+ file_cache:CACHE |
|
90 |
+ http2:HTTP2 |
|
91 |
+ info:INFO |
|
92 |
+ ldap:LDAP |
|
93 |
+ proxy:PROXY |
|
94 |
+ proxy_ajp:PROXY |
|
95 |
+ proxy_balancer:PROXY |
|
96 |
+ proxy_connect:PROXY |
|
97 |
+ proxy_ftp:PROXY |
|
98 |
+ proxy_http:PROXY |
|
99 |
+ proxy_fcgi:PROXY |
|
100 |
+ proxy_scgi:PROXY |
|
101 |
+ proxy_wstunnel:PROXY |
|
102 |
+ socache_shmcb:SSL |
|
103 |
+ ssl:SSL |
|
104 |
+ status:STATUS |
|
105 |
+ suexec:SUEXEC |
|
106 |
+ userdir:USERDIR |
|
107 |
+" |
|
108 |
+ |
|
109 |
+# critical modules for the default config |
|
110 |
+MODULE_CRITICAL=" |
|
111 |
+ authn_core |
|
112 |
+ authz_core |
|
113 |
+ authz_host |
|
114 |
+ dir |
|
115 |
+ mime |
|
116 |
+ unixd |
|
117 |
+" |
|
118 |
+inherit eutils apache-2 systemd toolchain-funcs |
|
119 |
+ |
|
120 |
+DESCRIPTION="The Apache Web Server" |
|
121 |
+HOMEPAGE="http://httpd.apache.org/" |
|
122 |
+ |
|
123 |
+# some helper scripts are Apache-1.1, thus both are here |
|
124 |
+LICENSE="Apache-2.0 Apache-1.1" |
|
125 |
+SLOT="2" |
|
126 |
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x64-macos ~x86-macos ~m68k-mint ~sparc64-solaris ~x64-solaris" |
|
127 |
+ |
|
128 |
+DEPEND+="apache2_modules_http2? ( >=net-libs/nghttp2-1.0.0 )" |
|
129 |
+ |
|
130 |
+pkg_setup() { |
|
131 |
+ # dependend critical modules which are not allowed in global scope due |
|
132 |
+ # to USE flag conditionals (bug #499260) |
|
133 |
+ use ssl && MODULE_CRITICAL+=" socache_shmcb" |
|
134 |
+ use doc && MODULE_CRITICAL+=" alias negotiation setenvif" |
|
135 |
+ apache-2_pkg_setup |
|
136 |
+} |
|
137 |
+ |
|
138 |
+src_prepare() { |
|
139 |
+ epatch "${FILESDIR}/apache-fix-redirect-url.diff" |
|
140 |
+ apache-2_src_prepare |
|
141 |
+} |
|
142 |
+ |
|
143 |
+src_configure() { |
|
144 |
+ # Brain dead check. |
|
145 |
+ tc-is-cross-compiler && export ap_cv_void_ptr_lt_long="no" |
|
146 |
+ |
|
147 |
+ apache-2_src_configure |
|
148 |
+} |
|
149 |
+ |
|
150 |
+src_compile() { |
|
151 |
+ if tc-is-cross-compiler; then |
|
152 |
+ # This header is the same across targets, so use the build compiler. |
|
153 |
+ pushd server >/dev/null |
|
154 |
+ emake gen_test_char |
|
155 |
+ tc-export_build_env BUILD_CC |
|
156 |
+ ${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_CPPFLAGS} ${BUILD_LDFLAGS} \ |
|
157 |
+ gen_test_char.c -o gen_test_char $(apr-1-config --includes) || die |
|
158 |
+ popd >/dev/null |
|
159 |
+ fi |
|
160 |
+ |
|
161 |
+ default |
|
162 |
+} |
|
163 |
+ |
|
164 |
+src_install() { |
|
165 |
+ apache-2_src_install |
|
166 |
+ for i in /usr/bin/{htdigest,logresolve,htpasswd,htdbm,ab,httxt2dbm}; do |
|
167 |
+ rm "${ED}"/$i || die "Failed to prune apache-tools bits" |
|
168 |
+ done |
|
169 |
+ for i in /usr/share/man/man8/{rotatelogs.8,htcacheclean.8}; do |
|
170 |
+ rm "${ED}"/$i || die "Failed to prune apache-tools bits" |
|
171 |
+ done |
|
172 |
+ for i in /usr/share/man/man1/{logresolve.1,htdbm.1,htdigest.1,htpasswd.1,dbmmanage.1,ab.1}; do |
|
173 |
+ rm "${ED}"/$i || die "Failed to prune apache-tools bits" |
|
174 |
+ done |
|
175 |
+ for i in /usr/sbin/{checkgid,fcgistarter,htcacheclean,rotatelogs}; do |
|
176 |
+ rm "${ED}/"$i || die "Failed to prune apache-tools bits" |
|
177 |
+ done |
|
178 |
+ |
|
179 |
+ # install apxs in /usr/bin (bug #502384) and put a symlink into the |
|
180 |
+ # old location until all ebuilds and eclasses have been modified to |
|
181 |
+ # use the new location. |
|
182 |
+ local apxs="/usr/bin/apxs" |
|
183 |
+ cp "${S}"/support/apxs "${ED}"${apxs} || die "Failed to install apxs" |
|
184 |
+ ln -s ../bin/apxs "${ED}"/usr/sbin/apxs || die |
|
185 |
+ chmod 0755 "${ED}"${apxs} || die |
|
186 |
+ |
|
187 |
+ # Note: wait for mod_systemd to be included in the next release, |
|
188 |
+ # then apache2.4.service can be used and systemd support controlled |
|
189 |
+ # through --enable-systemd |
|
190 |
+ systemd_newunit "${FILESDIR}/apache2.2.service" "apache2.service" |
|
191 |
+ systemd_dotmpfilesd "${FILESDIR}/apache.conf" |
|
192 |
+ #insinto /etc/apache2/modules.d |
|
193 |
+ #doins "${FILESDIR}/00_systemd.conf" |
|
194 |
+} |
|
195 |
+ |
|
196 |
+pkg_postinst() |
|
197 |
+{ |
|
198 |
+ apache-2_pkg_postinst || die "apache-2_pkg_postinst failed" |
|
199 |
+ # warnings that default config might not work out of the box |
|
200 |
+ for mod in $MODULE_CRITICAL; do |
|
201 |
+ if ! use "apache2_modules_${mod}"; then |
|
202 |
+ echo |
|
203 |
+ ewarn "Warning: Critical module not installed!" |
|
204 |
+ ewarn "Modules 'authn_core', 'authz_core' and 'unixd'" |
|
205 |
+ ewarn "are highly recomended but might not be in the base profile yet." |
|
206 |
+ ewarn "Default config for ssl needs module 'socache_shmcb'." |
|
207 |
+ ewarn "Enabling the following flags is highly recommended:" |
|
208 |
+ for cmod in $MODULE_CRITICAL; do |
|
209 |
+ use "apache2_modules_${cmod}" || \ |
|
210 |
+ ewarn "+ apache2_modules_${cmod}" |
|
211 |
+ done |
|
212 |
+ echo |
|
213 |
+ break |
|
214 |
+ fi |
|
215 |
+ done |
|
216 |
+ # warning for proxy_balancer and missing load balancing scheduler |
|
217 |
+ if use apache2_modules_proxy_balancer; then |
|
218 |
+ local lbset= |
|
219 |
+ for mod in lbmethod_byrequests lbmethod_bytraffic lbmethod_bybusyness lbmethod_heartbeat; do |
|
220 |
+ if use "apache2_modules_${mod}"; then |
|
221 |
+ lbset=1 && break |
|
222 |
+ fi |
|
223 |
+ done |
|
224 |
+ if [ ! $lbset ]; then |
|
225 |
+ echo |
|
226 |
+ ewarn "Info: Missing load balancing scheduler algorithm module" |
|
227 |
+ ewarn "(They were split off from proxy_balancer in 2.3)" |
|
228 |
+ ewarn "In order to get the ability of load balancing, at least" |
|
229 |
+ ewarn "one of these modules has to be present:" |
|
230 |
+ ewarn "lbmethod_byrequests lbmethod_bytraffic lbmethod_bybusyness lbmethod_heartbeat" |
|
231 |
+ echo |
|
232 |
+ fi |
|
233 |
+ fi |
|
234 |
+} |
|
0 | 235 |