| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2007 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/apache-2.eclass,v 1.3 2007/12/15 14:00:19 hollow Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/apache-2.eclass,v 1.18 2009/09/20 08:37:23 hollow Exp $ |
| 4 | |
4 | |
|
|
5 | EAPI="2" |
|
|
6 | |
| 5 | # @ECLASS: apache-2 |
7 | # @ECLASS: apache-2.eclass |
|
|
8 | # @MAINTAINER: |
| 6 | # @MAINTAINER: apache-devs@gentoo.org |
9 | # apache-devs@gentoo.org |
| 7 | # @BLURB: Provides a common set of functions for >=apache-2.2* ebuilds |
10 | # @BLURB: Provides a common set of functions for apache-2.x ebuilds |
| 8 | # @DESCRIPTION: |
11 | # @DESCRIPTION: |
| 9 | # This eclass handles common apache ebuild functions in a sane way and providing |
12 | # This eclass handles apache-2.x ebuild functions such as LoadModule generation |
| 10 | # information about where certain interfaces are located such as LoadModule |
|
|
| 11 | # generation and inter-module dependency checking. |
13 | # and inter-module dependency checking. |
| 12 | |
14 | |
| 13 | inherit depend.apache eutils flag-o-matic multilib autotools |
15 | inherit autotools eutils flag-o-matic multilib ssl-cert |
| 14 | |
16 | |
| 15 | # ============================================================================== |
17 | # ============================================================================== |
| 16 | # INTERNAL VARIABLES |
18 | # INTERNAL VARIABLES |
| 17 | # ============================================================================== |
19 | # ============================================================================== |
| 18 | |
20 | |
| 19 | # @ECLASS-VARIABLE: GENTOO_PATCHNAME |
21 | # @ECLASS-VARIABLE: GENTOO_PATCHNAME |
| 20 | # @DESCRIPTION: |
22 | # @DESCRIPTION: |
| 21 | # This internal variable contains the prefix for the patch tarball |
23 | # This internal variable contains the prefix for the patch tarball. |
| 22 | GENTOO_PATCHNAME="gentoo-${PF}" |
24 | # Defaults to the full name and version (including revision) of the package. |
|
|
25 | # If you want to override this in an ebuild, use: |
|
|
26 | # ORIG_PR="(revision of Gentoo stuff you want)" |
|
|
27 | # GENTOO_PATCHNAME="gentoo-${PN}-${PV}${ORIG_PR:+-${ORIG_PR}}" |
|
|
28 | [[ -n "$GENTOO_PATCHNAME" ]] || GENTOO_PATCHNAME="gentoo-${PF}" |
| 23 | |
29 | |
| 24 | # @ECLASS-VARIABLE: GENTOO_PATCHDIR |
30 | # @ECLASS-VARIABLE: GENTOO_PATCHDIR |
| 25 | # @DESCRIPTION: |
31 | # @DESCRIPTION: |
| 26 | # This internal variable contains the working directory where patches and config |
32 | # This internal variable contains the working directory where patches and config |
| 27 | # files are located |
33 | # files are located. |
|
|
34 | # Defaults to the patchset name appended to the working directory. |
| 28 | GENTOO_PATCHDIR="${WORKDIR}/${GENTOO_PATCHNAME}" |
35 | [[ -n "$GENTOO_PATCHDIR" ]] || GENTOO_PATCHDIR="${WORKDIR}/${GENTOO_PATCHNAME}" |
| 29 | |
36 | |
| 30 | # @ECLASS-VARIABLE: GENTOO_DEVELOPER |
37 | # @VARIABLE: GENTOO_DEVELOPER |
| 31 | # @DESCRIPTION: |
38 | # @DESCRIPTION: |
| 32 | # This variable needs to be set in the ebuild and contains the name of the |
39 | # This variable needs to be set in the ebuild and contains the name of the |
| 33 | # gentoo developer who created the patch tarball |
40 | # gentoo developer who created the patch tarball |
| 34 | |
41 | |
| 35 | # @ECLASS-VARIABLE: GENTOO_PATCHSTAMP |
42 | # @VARIABLE: GENTOO_PATCHSTAMP |
| 36 | # @DESCRIPTION: |
43 | # @DESCRIPTION: |
| 37 | # This variable needs to be set in the ebuild and contains the date the patch |
44 | # This variable needs to be set in the ebuild and contains the date the patch |
| 38 | # tarball was created at in YYMMDD format |
45 | # tarball was created at in YYYYMMDD format |
|
|
46 | |
|
|
47 | # @VARIABLE: GENTOO_PATCH_A |
|
|
48 | # @DESCRIPTION: |
|
|
49 | # This variable should contain the entire filename of patch tarball. |
|
|
50 | # Defaults to the name of the patchset, with a datestamp. |
|
|
51 | [[ -n "$GENTOO_PATCH_A" ]] || GENTOO_PATCH_A="${GENTOO_PATCHNAME}-${GENTOO_PATCHSTAMP}.tar.bz2" |
| 39 | |
52 | |
| 40 | SRC_URI="mirror://apache/httpd/httpd-${PV}.tar.bz2 |
53 | SRC_URI="mirror://apache/httpd/httpd-${PV}.tar.bz2 |
| 41 | http://dev.gentoo.org/~${GENTOO_DEVELOPER}/dist/apache/${GENTOO_PATCHNAME}-${GENTOO_PATCHSTAMP}.tar.bz2" |
54 | http://dev.gentoo.org/~${GENTOO_DEVELOPER}/dist/apache/${GENTOO_PATCH_A}" |
| 42 | |
55 | |
| 43 | # @ECLASS-VARIABLE: IUSE_MPMS_FORK |
56 | # @VARIABLE: IUSE_MPMS_FORK |
| 44 | # @DESCRIPTION: |
57 | # @DESCRIPTION: |
| 45 | # This variable needs to be set in the ebuild and contains a list of forking |
58 | # This variable needs to be set in the ebuild and contains a list of forking |
| 46 | # (i.e. non-threaded) MPMS |
59 | # (i.e. non-threaded) MPMs |
| 47 | |
60 | |
| 48 | # @ECLASS-VARIABLE: IUSE_MPMS_THREAD |
61 | # @VARIABLE: IUSE_MPMS_THREAD |
| 49 | # @DESCRIPTION: |
62 | # @DESCRIPTION: |
| 50 | # This variable needs to be set in the ebuild and contains a list of threaded |
63 | # This variable needs to be set in the ebuild and contains a list of threaded |
| 51 | # MPMS |
64 | # MPMs |
| 52 | |
65 | |
| 53 | # @ECLASS-VARIABLE: IUSE_MODULES |
66 | # @VARIABLE: IUSE_MODULES |
| 54 | # @DESCRIPTION: |
67 | # @DESCRIPTION: |
| 55 | # This variable needs to be set in the ebuild and contains a list of available |
68 | # This variable needs to be set in the ebuild and contains a list of available |
| 56 | # built-in modules |
69 | # built-in modules |
| 57 | |
70 | |
| 58 | IUSE_MPMS="${IUSE_MPMS_FORK} ${IUSE_MPMS_THREAD}" |
71 | IUSE_MPMS="${IUSE_MPMS_FORK} ${IUSE_MPMS_THREAD}" |
| … | |
… | |
| 66 | IUSE="${IUSE} apache2_mpms_${mpm}" |
79 | IUSE="${IUSE} apache2_mpms_${mpm}" |
| 67 | done |
80 | done |
| 68 | |
81 | |
| 69 | DEPEND="dev-lang/perl |
82 | DEPEND="dev-lang/perl |
| 70 | =dev-libs/apr-1* |
83 | =dev-libs/apr-1* |
| 71 | =dev-libs/apr-util-1* |
84 | =dev-libs/apr-util-1*[ldap?] |
| 72 | dev-libs/libpcre |
85 | dev-libs/libpcre |
| 73 | ldap? ( =net-nds/openldap-2* ) |
86 | ldap? ( =net-nds/openldap-2* ) |
| 74 | selinux? ( sec-policy/selinux-apache ) |
87 | selinux? ( sec-policy/selinux-apache ) |
| 75 | ssl? ( dev-libs/openssl ) |
88 | ssl? ( >=dev-libs/openssl-0.9.8f ) |
| 76 | !=www-servers/apache-1*" |
89 | !=www-servers/apache-1*" |
| 77 | RDEPEND="${DEPEND}" |
90 | RDEPEND="${DEPEND}" |
| 78 | PDEPEND="~app-admin/apache-tools-${PV}" |
91 | PDEPEND="~app-admin/apache-tools-${PV}" |
| 79 | |
92 | |
| 80 | S="${WORKDIR}/httpd-${PV}" |
93 | S="${WORKDIR}/httpd-${PV}" |
| … | |
… | |
| 82 | # ============================================================================== |
95 | # ============================================================================== |
| 83 | # INTERNAL FUNCTIONS |
96 | # INTERNAL FUNCTIONS |
| 84 | # ============================================================================== |
97 | # ============================================================================== |
| 85 | |
98 | |
| 86 | # @ECLASS-VARIABLE: MY_MPM |
99 | # @ECLASS-VARIABLE: MY_MPM |
| 87 | # DESCRIPTION: |
100 | # @DESCRIPTION: |
| 88 | # This internal variable contains the selected MPM after a call to setup_mpm() |
101 | # This internal variable contains the selected MPM after a call to setup_mpm() |
| 89 | |
102 | |
| 90 | # @FUNCTION: setup_mpm |
103 | # @FUNCTION: setup_mpm |
| 91 | # @DESCRIPTION: |
104 | # @DESCRIPTION: |
| 92 | # This internal function makes sure that only one of APACHE2_MPMS was selected |
105 | # This internal function makes sure that only one of APACHE2_MPMS was selected |
| 93 | # or a default based on USE=threads is selected if APACHE2_MPMS is empty |
106 | # or a default based on USE=threads is selected if APACHE2_MPMS is empty |
| 94 | setup_mpm() { |
107 | setup_mpm() { |
|
|
108 | MY_MPM="" |
| 95 | for x in ${IUSE_MPMS} ; do |
109 | for x in ${IUSE_MPMS} ; do |
| 96 | if use apache2_mpms_${x} ; then |
110 | if use apache2_mpms_${x} ; then |
| 97 | if [[ -z "${MY_MPM}" ]] ; then |
111 | if [[ -z "${MY_MPM}" ]] ; then |
| 98 | MY_MPM=${x} |
112 | MY_MPM=${x} |
| 99 | elog |
113 | elog |
| … | |
… | |
| 130 | eerror "You have selected a non-threaded MPM but USE=threads is enabled" |
144 | eerror "You have selected a non-threaded MPM but USE=threads is enabled" |
| 131 | die "invalid use flag combination" |
145 | die "invalid use flag combination" |
| 132 | fi |
146 | fi |
| 133 | } |
147 | } |
| 134 | |
148 | |
| 135 | # @ECLASS-VARIABLE: MODULE_CRITICAL |
149 | # @VARIABLE: MODULE_CRITICAL |
| 136 | # @DESCRIPTION: |
150 | # @DESCRIPTION: |
| 137 | # This variable needs to be set in the ebuild and contains a space-separated |
151 | # This variable needs to be set in the ebuild and contains a space-separated |
| 138 | # list of modules critical for the default apache. A user may still |
152 | # list of modules critical for the default apache. A user may still |
| 139 | # disable these modules for custom minimal installation at their own risk. |
153 | # disable these modules for custom minimal installation at their own risk. |
| 140 | |
154 | |
| … | |
… | |
| 161 | ewarn |
175 | ewarn |
| 162 | ebeep 10 |
176 | ebeep 10 |
| 163 | fi |
177 | fi |
| 164 | } |
178 | } |
| 165 | |
179 | |
| 166 | # @ECLASS-VARIABLE: MODULE_DEPENDS |
180 | # @VARIABLE: MODULE_DEPENDS |
| 167 | # @DESCRIPTION: |
181 | # @DESCRIPTION: |
| 168 | # This variable needs to be set in the ebuild and contains a space-separated |
182 | # This variable needs to be set in the ebuild and contains a space-separated |
| 169 | # list of dependency tokens each with a module and the module it depends on |
183 | # list of dependency tokens each with a module and the module it depends on |
| 170 | # separated by a colon |
184 | # separated by a colon |
| 171 | |
185 | |
| … | |
… | |
| 176 | check_module_depends() { |
190 | check_module_depends() { |
| 177 | local err=0 |
191 | local err=0 |
| 178 | |
192 | |
| 179 | for m in ${MY_MODS} ; do |
193 | for m in ${MY_MODS} ; do |
| 180 | for dep in ${MODULE_DEPENDS} ; do |
194 | for dep in ${MODULE_DEPENDS} ; do |
| 181 | if [[ "${m}" == "${dep%:*}" ]]; then |
195 | if [[ "${m}" == "${dep%:*}" ]] ; then |
| 182 | if ! use apache2_modules_${dep#*:} ; then |
196 | if ! use apache2_modules_${dep#*:} ; then |
| 183 | eerror "Module '${m}' depends on '${dep#*:}'" |
197 | eerror "Module '${m}' depends on '${dep#*:}'" |
| 184 | err=1 |
198 | err=1 |
| 185 | fi |
199 | fi |
| 186 | fi |
200 | fi |
| … | |
… | |
| 191 | die "invalid use flag combination" |
205 | die "invalid use flag combination" |
| 192 | fi |
206 | fi |
| 193 | } |
207 | } |
| 194 | |
208 | |
| 195 | # @ECLASS-VARIABLE: MY_CONF |
209 | # @ECLASS-VARIABLE: MY_CONF |
| 196 | # DESCRIPTION: |
210 | # @DESCRIPTION: |
| 197 | # This internal variable contains the econf options for the current module |
211 | # This internal variable contains the econf options for the current module |
| 198 | # selection after a call to setup_modules() |
212 | # selection after a call to setup_modules() |
| 199 | |
213 | |
| 200 | # @ECLASS-VARIABLE: MY_MODS |
214 | # @ECLASS-VARIABLE: MY_MODS |
| 201 | # DESCRIPTION: |
215 | # @DESCRIPTION: |
| 202 | # This internal variable contains a sorted, space separated list of currently |
216 | # This internal variable contains a sorted, space separated list of currently |
| 203 | # selected modules after a call to setup_modules() |
217 | # selected modules after a call to setup_modules() |
| 204 | |
218 | |
| 205 | # @FUNCTION: setup_modules |
219 | # @FUNCTION: setup_modules |
| 206 | # @DESCRIPTION: |
220 | # @DESCRIPTION: |
| … | |
… | |
| 216 | fi |
230 | fi |
| 217 | |
231 | |
| 218 | MY_CONF="--enable-so=static" |
232 | MY_CONF="--enable-so=static" |
| 219 | |
233 | |
| 220 | if use ldap ; then |
234 | if use ldap ; then |
| 221 | if ! built_with_use 'dev-libs/apr-util' ldap ; then |
|
|
| 222 | eerror "dev-libs/apr-util is missing LDAP support. For apache to have" |
|
|
| 223 | eerror "ldap support, apr-util must be built with the ldap USE-flag" |
|
|
| 224 | eerror "enabled." |
|
|
| 225 | die "ldap USE-flag enabled while not supported in apr-util" |
|
|
| 226 | fi |
|
|
| 227 | MY_CONF="${MY_CONF} --enable-authnz_ldap=${mod_type} --enable-ldap=${mod_type}" |
235 | MY_CONF="${MY_CONF} --enable-authnz_ldap=${mod_type} --enable-ldap=${mod_type}" |
| 228 | MY_MODS="${MY_MODS} ldap authnz_ldap" |
236 | MY_MODS="${MY_MODS} ldap authnz_ldap" |
| 229 | else |
237 | else |
| 230 | MY_CONF="${MY_CONF} --disable-authnz_ldap --disable-ldap" |
238 | MY_CONF="${MY_CONF} --disable-authnz_ldap --disable-ldap" |
| 231 | fi |
239 | fi |
| … | |
… | |
| 287 | MY_MODS=$(echo ${MY_MODS} | tr ' ' '\n' | sort -u) |
295 | MY_MODS=$(echo ${MY_MODS} | tr ' ' '\n' | sort -u) |
| 288 | check_module_depends |
296 | check_module_depends |
| 289 | check_module_critical |
297 | check_module_critical |
| 290 | } |
298 | } |
| 291 | |
299 | |
| 292 | # @ECLASS-VARIABLE: MODULE_DEFINES |
300 | # @VARIABLE: MODULE_DEFINES |
| 293 | # @DESCRIPTION: |
301 | # @DESCRIPTION: |
| 294 | # This variable needs to be set in the ebuild and contains a space-separated |
302 | # This variable needs to be set in the ebuild and contains a space-separated |
| 295 | # list of tokens each mapping a module to a runtime define which can be |
303 | # list of tokens each mapping a module to a runtime define which can be |
| 296 | # specified in APACHE2_OPTS in /etc/conf.d/apache2 to enable this particular |
304 | # specified in APACHE2_OPTS in /etc/conf.d/apache2 to enable this particular |
| 297 | # module. |
305 | # module. |
| … | |
… | |
| 299 | # @FUNCTION: generate_load_module |
307 | # @FUNCTION: generate_load_module |
| 300 | # @DESCRIPTION: |
308 | # @DESCRIPTION: |
| 301 | # This internal function generates the LoadModule lines for httpd.conf based on |
309 | # This internal function generates the LoadModule lines for httpd.conf based on |
| 302 | # the current module selection and MODULE_DEFINES |
310 | # the current module selection and MODULE_DEFINES |
| 303 | generate_load_module() { |
311 | generate_load_module() { |
| 304 | local endit=0 mod_lines= mod_dir="${D}${APACHE2_MODULESDIR}" |
312 | local endit=0 mod_lines= mod_dir="${D}/usr/$(get_libdir)/apache2/modules" |
| 305 | |
313 | |
| 306 | if use static; then |
314 | if use static; then |
| 307 | sed -i -e "/%%LOAD_MODULE%%/d" \ |
315 | sed -i -e "/%%LOAD_MODULE%%/d" \ |
| 308 | "${GENTOO_PATCHDIR}"/conf/httpd.conf |
316 | "${GENTOO_PATCHDIR}"/conf/httpd.conf |
| 309 | return |
317 | return |
| … | |
… | |
| 361 | # creates the apache user and group and informs about CONFIG_SYSVIPC being |
369 | # creates the apache user and group and informs about CONFIG_SYSVIPC being |
| 362 | # needed (we don't depend on kernel sources and therefore cannot check). |
370 | # needed (we don't depend on kernel sources and therefore cannot check). |
| 363 | apache-2_pkg_setup() { |
371 | apache-2_pkg_setup() { |
| 364 | check_upgrade |
372 | check_upgrade |
| 365 | |
373 | |
| 366 | setup_mpm |
|
|
| 367 | setup_modules |
|
|
| 368 | |
|
|
| 369 | if use debug; then |
|
|
| 370 | MY_CONF="${MY_CONF} --enable-maintainer-mode --enable-exception-hook" |
|
|
| 371 | fi |
|
|
| 372 | |
|
|
| 373 | # setup apache user and group |
374 | # setup apache user and group |
| 374 | enewgroup apache 81 |
375 | enewgroup apache 81 |
| 375 | enewuser apache 81 -1 /var/www apache |
376 | enewuser apache 81 -1 /var/www apache |
| 376 | |
377 | |
|
|
378 | setup_mpm |
|
|
379 | setup_modules |
|
|
380 | |
|
|
381 | if use debug; then |
|
|
382 | MY_CONF="${MY_CONF} --enable-maintainer-mode --enable-exception-hook" |
|
|
383 | fi |
|
|
384 | |
| 377 | elog "Please note that you need SysV IPC support in your kernel." |
385 | elog "Please note that you need SysV IPC support in your kernel." |
| 378 | elog "Make sure CONFIG_SYSVIPC=y is set." |
386 | elog "Make sure CONFIG_SYSVIPC=y is set." |
| 379 | elog |
387 | elog |
| 380 | } |
|
|
| 381 | |
388 | |
|
|
389 | if use userland_BSD; then |
|
|
390 | elog "On BSD systems you need to add the following line to /boot/loader.conf:" |
|
|
391 | elog " accf_http_load=\"YES\"" |
|
|
392 | elog |
|
|
393 | fi |
|
|
394 | } |
|
|
395 | |
| 382 | # @FUNCTION: apache-2_src_unpack |
396 | # @FUNCTION: apache-2_src_prepare |
| 383 | # @DESCRIPTION: |
397 | # @DESCRIPTION: |
| 384 | # This function applies patches, configures a custom file-system layout and |
398 | # This function applies patches, configures a custom file-system layout and |
| 385 | # rebuilds the configure scripts. |
399 | # rebuilds the configure scripts. |
| 386 | apache-2_src_unpack() { |
400 | apache-2_src_prepare() { |
| 387 | unpack ${A} |
401 | # 03_all_gentoo-apache-tools.patch injects -Wl,-z,now, which is not a good |
| 388 | cd "${S}" |
402 | # idea for everyone |
|
|
403 | case ${CHOST} in |
|
|
404 | *-linux-gnu|*-solaris*|*-freebsd*) |
|
|
405 | # do nothing, these use GNU binutils |
|
|
406 | : |
|
|
407 | ;; |
|
|
408 | *-darwin*) |
|
|
409 | sed -i -e 's/-Wl,-z,now/-Wl,-bind_at_load/g' \ |
|
|
410 | "${GENTOO_PATCHDIR}"/patches/03_all_gentoo_apache-tools.patch |
|
|
411 | ;; |
|
|
412 | *) |
|
|
413 | # patch it out to be like upstream |
|
|
414 | sed -i -e 's/-Wl,-z,now//g' \ |
|
|
415 | "${GENTOO_PATCHDIR}"/patches/03_all_gentoo_apache-tools.patch |
|
|
416 | ;; |
|
|
417 | esac |
| 389 | |
418 | |
| 390 | # Use correct multilib libdir in gentoo patches |
419 | # Use correct multilib libdir in gentoo patches |
| 391 | sed -i -e "s:/usr/lib:/usr/$(get_libdir):g" \ |
420 | sed -i -e "s:/usr/lib:/usr/$(get_libdir):g" \ |
| 392 | "${GENTOO_PATCHDIR}"/{conf/httpd.conf,init/*,patches/config.layout} \ |
421 | "${GENTOO_PATCHDIR}"/{conf/httpd.conf,init/*,patches/config.layout} \ |
| 393 | || die "libdir sed failed" |
422 | || die "libdir sed failed" |
| … | |
… | |
| 406 | # patched-in MPMs need the build environment rebuilt |
435 | # patched-in MPMs need the build environment rebuilt |
| 407 | sed -i -e '/sinclude/d' configure.in |
436 | sed -i -e '/sinclude/d' configure.in |
| 408 | AT_GNUCONF_UPDATE=yes AT_M4DIR=build eautoreconf |
437 | AT_GNUCONF_UPDATE=yes AT_M4DIR=build eautoreconf |
| 409 | } |
438 | } |
| 410 | |
439 | |
| 411 | # @FUNCTION: apache-2_src_compile |
440 | # @FUNCTION: apache-2_src_configure |
| 412 | # @DESCRIPTION: |
441 | # @DESCRIPTION: |
| 413 | # This function adds compiler flags and runs econf and emake based on MY_MPM and |
442 | # This function adds compiler flags and runs econf and emake based on MY_MPM and |
| 414 | # MY_CONF |
443 | # MY_CONF |
| 415 | apache-2_src_compile() { |
444 | apache-2_src_configure() { |
| 416 | # Instead of filtering --as-needed (bug #128505), append --no-as-needed |
445 | # Instead of filtering --as-needed (bug #128505), append --no-as-needed |
| 417 | # Thanks to Harald van Dijk |
446 | # Thanks to Harald van Dijk |
|
|
447 | # ... but only on platforms that use a GNU linker! |
|
|
448 | case ${CHOST} in |
|
|
449 | *-solaris* | *-*bsd* | *-linux-gnu) |
| 418 | append-ldflags -Wl,--no-as-needed |
450 | append-ldflags -Wl,--no-as-needed |
|
|
451 | ;; |
|
|
452 | esac |
| 419 | |
453 | |
| 420 | # peruser MPM debugging with -X is nearly impossible |
454 | # peruser MPM debugging with -X is nearly impossible |
| 421 | if has peruser ${IUSE_MPMS} && use apache2_mpms_peruser ; then |
455 | if has peruser ${IUSE_MPMS} && use apache2_mpms_peruser ; then |
| 422 | use debug && append-flags -DMPM_PERUSER_DEBUG |
456 | use debug && append-flags -DMPM_PERUSER_DEBUG |
| 423 | fi |
457 | fi |
| … | |
… | |
| 429 | --libexecdir=/usr/$(get_libdir)/apache2/modules \ |
463 | --libexecdir=/usr/$(get_libdir)/apache2/modules \ |
| 430 | --datadir=/var/www/localhost \ |
464 | --datadir=/var/www/localhost \ |
| 431 | --sysconfdir=/etc/apache2 \ |
465 | --sysconfdir=/etc/apache2 \ |
| 432 | --localstatedir=/var \ |
466 | --localstatedir=/var \ |
| 433 | --with-mpm=${MY_MPM} \ |
467 | --with-mpm=${MY_MPM} \ |
| 434 | --with-perl=/usr/bin/perl \ |
|
|
| 435 | --with-apr=/usr \ |
468 | --with-apr=/usr \ |
| 436 | --with-apr-util=/usr \ |
469 | --with-apr-util=/usr \ |
| 437 | --with-pcre=/usr \ |
470 | --with-pcre=/usr \ |
| 438 | --with-z=/usr \ |
471 | --with-z=/usr \ |
| 439 | --with-port=80 \ |
472 | --with-port=80 \ |
| 440 | --with-program-name=apache2 \ |
473 | --with-program-name=apache2 \ |
| 441 | --enable-layout=Gentoo \ |
474 | --enable-layout=Gentoo \ |
| 442 | ${MY_CONF} || die "econf failed!" |
475 | ${MY_CONF} || die "econf failed!" |
| 443 | |
476 | |
| 444 | sed -i -e 's:apache2\.conf:httpd.conf:' include/ap_config_auto.h |
477 | sed -i -e 's:apache2\.conf:httpd.conf:' include/ap_config_auto.h |
| 445 | |
|
|
| 446 | emake || die "emake failed" |
|
|
| 447 | } |
478 | } |
| 448 | |
479 | |
| 449 | # @FUNCTION: apache-2_src_install |
480 | # @FUNCTION: apache-2_src_install |
| 450 | # @DESCRIPTION: |
481 | # @DESCRIPTION: |
| 451 | # This function runs emake install and generates, install and adapts the gentoo |
482 | # This function runs `emake install' and generates, installs and adapts the gentoo |
| 452 | # specific configuration files found in the tarball |
483 | # specific configuration files found in the tarball |
| 453 | apache-2_src_install() { |
484 | apache-2_src_install() { |
| 454 | emake DESTDIR="${D}" install || die "emake install failed" |
485 | make DESTDIR="${D}" install || die "make install failed" |
| 455 | |
486 | |
| 456 | # install our configuration files |
487 | # install our configuration files |
| 457 | keepdir /etc/apache2/vhosts.d |
488 | keepdir /etc/apache2/vhosts.d |
| 458 | keepdir /etc/apache2/modules.d |
489 | keepdir /etc/apache2/modules.d |
| 459 | |
490 | |
| … | |
… | |
| 464 | |
495 | |
| 465 | insinto /etc/logrotate.d |
496 | insinto /etc/logrotate.d |
| 466 | newins "${GENTOO_PATCHDIR}"/scripts/apache2-logrotate apache2 |
497 | newins "${GENTOO_PATCHDIR}"/scripts/apache2-logrotate apache2 |
| 467 | |
498 | |
| 468 | # generate a sane default APACHE2_OPTS |
499 | # generate a sane default APACHE2_OPTS |
| 469 | APACHE2_OPTS="-D DEFAULT_VHOST -D INFO -D LANGUAGE" |
500 | APACHE2_OPTS="-D DEFAULT_VHOST -D INFO" |
| 470 | use doc && APACHE2_OPTS="${APACHE2_OPTS} -D MANUAL" |
501 | use doc && APACHE2_OPTS="${APACHE2_OPTS} -D MANUAL" |
| 471 | use ssl && APACHE2_OPTS="${APACHE2_OPTS} -D SSL -D SSL_DEFAULT_VHOST" |
502 | use ssl && APACHE2_OPTS="${APACHE2_OPTS} -D SSL -D SSL_DEFAULT_VHOST" |
| 472 | use suexec && APACHE2_OPTS="${APACHE2_OPTS} -D SUEXEC" |
503 | use suexec && APACHE2_OPTS="${APACHE2_OPTS} -D SUEXEC" |
|
|
504 | if hasq negotiation ${APACHE2_MODULES} && use apache2_modules_negotiation; then |
|
|
505 | APACHE2_OPTS="${APACHE2_OPTS} -D LANGUAGE" |
|
|
506 | fi |
| 473 | |
507 | |
| 474 | sed -i -e "s:APACHE2_OPTS=\".*\":APACHE2_OPTS=\"${APACHE2_OPTS}\":" \ |
508 | sed -i -e "s:APACHE2_OPTS=\".*\":APACHE2_OPTS=\"${APACHE2_OPTS}\":" \ |
| 475 | "${GENTOO_PATCHDIR}"/init/apache2.confd || die "sed failed" |
509 | "${GENTOO_PATCHDIR}"/init/apache2.confd || die "sed failed" |
| 476 | |
510 | |
| 477 | newconfd "${GENTOO_PATCHDIR}"/init/apache2.confd apache2 |
511 | newconfd "${GENTOO_PATCHDIR}"/init/apache2.confd apache2 |
| 478 | newinitd "${GENTOO_PATCHDIR}"/init/apache2.initd apache2 |
512 | newinitd "${GENTOO_PATCHDIR}"/init/apache2.initd apache2 |
| 479 | |
513 | |
| 480 | # link apache2ctl to the init script |
514 | # install apache2ctl wrapper for our init script if available |
|
|
515 | if test -e "${GENTOO_PATCHDIR}"/scripts/apache2ctl; then |
|
|
516 | exeinto /usr/sbin |
|
|
517 | doexe "${GENTOO_PATCHDIR}"/scripts/apache2ctl |
|
|
518 | else |
| 481 | dosym /etc/init.d/apache2 /usr/sbin/apache2ctl |
519 | dosym /etc/init.d/apache2 /usr/sbin/apache2ctl |
|
|
520 | fi |
| 482 | |
521 | |
| 483 | # provide symlinks for all the stuff we no longer rename, bug 177697 |
522 | # provide legacy symlink for apxs, bug 177697 |
| 484 | for i in suexec apxs; do |
|
|
| 485 | dosym /usr/sbin/${i} /usr/sbin/${i}2 |
523 | dosym /usr/sbin/apxs /usr/sbin/apxs2 |
| 486 | done |
|
|
| 487 | |
|
|
| 488 | # install some thirdparty scripts |
|
|
| 489 | exeinto /usr/sbin |
|
|
| 490 | use ssl && doexe "${GENTOO_PATCHDIR}"/scripts/gentestcrt.sh |
|
|
| 491 | |
524 | |
| 492 | # install some documentation |
525 | # install some documentation |
| 493 | dodoc ABOUT_APACHE CHANGES LAYOUT README README.platforms VERSIONING |
526 | dodoc ABOUT_APACHE CHANGES LAYOUT README README.platforms VERSIONING |
| 494 | dodoc "${GENTOO_PATCHDIR}"/docs/* |
527 | dodoc "${GENTOO_PATCHDIR}"/docs/* |
| 495 | |
528 | |
| … | |
… | |
| 499 | else |
532 | else |
| 500 | rm -f "${D}/etc/apache2/modules.d/00_apache_manual.conf" |
533 | rm -f "${D}/etc/apache2/modules.d/00_apache_manual.conf" |
| 501 | rm -Rf "${D}/usr/share/doc/${PF}/manual" |
534 | rm -Rf "${D}/usr/share/doc/${PF}/manual" |
| 502 | fi |
535 | fi |
| 503 | |
536 | |
| 504 | # the default webroot gets stored in /usr/share/doc |
537 | # the default icons and error pages get stored in |
| 505 | ebegin "Installing default webroot to /usr/share/doc/${PF}" |
538 | # /usr/share/apache2/{error,icons} |
|
|
539 | dodir /usr/share/apache2 |
| 506 | mv -f "${D}/var/www/localhost" "${D}/usr/share/doc/${PF}/webroot" |
540 | mv -f "${D}/var/www/localhost/error" "${D}/usr/share/apache2/error" |
|
|
541 | mv -f "${D}/var/www/localhost/icons" "${D}/usr/share/apache2/icons" |
|
|
542 | rm -rf "${D}/var/www/localhost/" |
| 507 | eend $? |
543 | eend $? |
| 508 | keepdir /var/www/localhost/htdocs |
|
|
| 509 | |
544 | |
| 510 | # set some sane permissions for suexec |
545 | # set some sane permissions for suexec |
| 511 | if use suexec ; then |
546 | if use suexec ; then |
| 512 | fowners 0:apache /usr/sbin/suexec |
547 | fowners 0:${SUEXEC_CALLER:-apache} /usr/sbin/suexec |
| 513 | fperms 4710 /usr/sbin/suexec |
548 | fperms 4710 /usr/sbin/suexec |
|
|
549 | # provide legacy symlink for suexec, bug 177697 |
|
|
550 | dosym /usr/sbin/suexec /usr/sbin/suexec2 |
| 514 | fi |
551 | fi |
| 515 | |
552 | |
| 516 | # empty dirs |
553 | # empty dirs |
| 517 | for i in /var/lib/dav /var/log/apache2 /var/cache/apache2 ; do |
554 | for i in /var/lib/dav /var/log/apache2 /var/cache/apache2 ; do |
| 518 | keepdir ${i} |
555 | keepdir ${i} |
| 519 | fowners apache:apache ${i} |
556 | fowners apache:apache ${i} |
| 520 | fperms 0755 ${i} |
557 | fperms 0755 ${i} |
| 521 | done |
558 | done |
| 522 | |
|
|
| 523 | # we need /etc/apache2/ssl if USE=ssl |
|
|
| 524 | use ssl && keepdir /etc/apache2/ssl |
|
|
| 525 | } |
559 | } |
| 526 | |
560 | |
| 527 | # @FUNCTION: apache-2_pkg_postinst |
561 | # @FUNCTION: apache-2_pkg_postinst |
| 528 | # @DESCRIPTION: |
562 | # @DESCRIPTION: |
| 529 | # This function creates test certificates if SSL is enabled and installs the |
563 | # This function creates test certificates if SSL is enabled and installs the |
| 530 | # default webroot if /var/www/localhost does not exist. We do this here because |
564 | # default index.html to /var/www/localhost if it does not exist. We do this here |
| 531 | # the default webroot is a copy of the files that exist elsewhere and we don't |
565 | # because the default webroot is a copy of the files that exist elsewhere and we |
| 532 | # want them to be managed/removed by portage when apache is upgraded. |
566 | # don't want them to be managed/removed by portage when apache is upgraded. |
| 533 | apache-2_pkg_postinst() { |
567 | apache-2_pkg_postinst() { |
| 534 | if use ssl && [[ ! -e "${ROOT}/etc/apache2/ssl/server.crt" ]] ; then |
568 | if use ssl && [[ ! -e "${ROOT}/etc/ssl/apache2/server.pem" ]]; then |
| 535 | cd "${ROOT}"/etc/apache2/ssl |
569 | SSL_ORGANIZATION="${SSL_ORGANIZATION:-Apache HTTP Server}" |
| 536 | einfo |
570 | install_cert /etc/ssl/apache2/server |
| 537 | einfo "Generating self-signed test certificate in ${ROOT}etc/apache2/ssl ..." |
571 | ewarn |
| 538 | yes "" 2>/dev/null | \ |
572 | ewarn "The location of SSL certificates has changed. If you are" |
| 539 | "${ROOT}"/usr/sbin/gentestcrt.sh >/dev/null 2>&1 || \ |
573 | ewarn "upgrading from ${CATEGORY}/${PN}-2.2.13 or earlier (or remerged" |
| 540 | die "gentestcrt.sh failed" |
574 | ewarn "*any* apache version), you might want to move your old" |
| 541 | einfo |
575 | ewarn "certificates from /etc/apache2/ssl/ to /etc/ssl/apache2/ and" |
|
|
576 | ewarn "update your config files." |
|
|
577 | ewarn |
| 542 | fi |
578 | fi |
| 543 | |
579 | |
| 544 | if [[ -e "${ROOT}/var/www/localhost" ]] ; then |
580 | if [[ ! -e "${ROOT}/var/www/localhost" ]] ; then |
| 545 | elog "The default webroot has not been installed into" |
|
|
| 546 | elog "${ROOT}var/www/localhost because the directory already exists" |
|
|
| 547 | elog "and we do not want to overwrite any files you have put there." |
|
|
| 548 | elog |
|
|
| 549 | elog "If you would like to install the latest webroot, please run" |
|
|
| 550 | elog "emerge --config =${PF}" |
|
|
| 551 | elog |
|
|
| 552 | else |
|
|
| 553 | einfo "Installing default webroot to ${ROOT}var/www/localhost" |
|
|
| 554 | mkdir -p "${ROOT}"/var/www/localhost |
581 | mkdir -p "${ROOT}/var/www/localhost/htdocs" |
| 555 | cp -R "${ROOT}"/usr/share/doc/${PF}/webroot/* "${ROOT}"/var/www/localhost |
582 | echo "<html><body><h1>It works!</h1></body></html>" > "${ROOT}/var/www/localhost/htdocs/index.html" |
| 556 | chown -R apache:0 "${ROOT}"/var/www/localhost |
|
|
| 557 | fi |
583 | fi |
| 558 | } |
584 | } |
| 559 | |
585 | |
| 560 | # @FUNCTION: apache-2_pkg_config |
|
|
| 561 | # @DESCRIPTION: |
|
|
| 562 | # This function installs -- and removes a previously existing -- default webroot |
|
|
| 563 | # to /var/www/localhost |
|
|
| 564 | apache-2_pkg_config() { |
|
|
| 565 | einfo "Installing default webroot to ${ROOT}var/www/localhost" |
|
|
| 566 | mkdir "${ROOT}"var{,/www{,/localhost}} |
|
|
| 567 | cp -R "${ROOT}"usr/share/doc/${PF}/webroot/* "${ROOT}"var/www/localhost/ |
|
|
| 568 | } |
|
|
| 569 | |
|
|
| 570 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_config |
586 | EXPORT_FUNCTIONS pkg_setup src_prepare src_configure src_install pkg_postinst |