| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2011 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.17 2009/07/05 16:05:25 hollow Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/apache-2.eclass,v 1.26 2011/12/27 17:55:12 fauli Exp $ |
|
|
4 | |
|
|
5 | EAPI="2" |
| 4 | |
6 | |
| 5 | # @ECLASS: apache-2.eclass |
7 | # @ECLASS: apache-2.eclass |
| 6 | # @MAINTAINER: |
8 | # @MAINTAINER: |
| 7 | # apache-devs@gentoo.org |
9 | # apache-devs@gentoo.org |
| 8 | # @BLURB: Provides a common set of functions for apache-2.x ebuilds |
10 | # @BLURB: Provides a common set of functions for apache-2.x ebuilds |
| 9 | # @DESCRIPTION: |
11 | # @DESCRIPTION: |
| 10 | # This eclass handles apache-2.x ebuild functions such as LoadModule generation |
12 | # This eclass handles apache-2.x ebuild functions such as LoadModule generation |
| 11 | # and inter-module dependency checking. |
13 | # and inter-module dependency checking. |
| 12 | |
14 | |
| 13 | inherit autotools confutils eutils flag-o-matic multilib |
15 | inherit autotools eutils flag-o-matic multilib ssl-cert |
| 14 | |
16 | |
| 15 | # ============================================================================== |
17 | # ============================================================================== |
| 16 | # INTERNAL VARIABLES |
18 | # INTERNAL VARIABLES |
| 17 | # ============================================================================== |
19 | # ============================================================================== |
| 18 | |
20 | |
| … | |
… | |
| 77 | IUSE="${IUSE} apache2_mpms_${mpm}" |
79 | IUSE="${IUSE} apache2_mpms_${mpm}" |
| 78 | done |
80 | done |
| 79 | |
81 | |
| 80 | DEPEND="dev-lang/perl |
82 | DEPEND="dev-lang/perl |
| 81 | =dev-libs/apr-1* |
83 | =dev-libs/apr-1* |
| 82 | =dev-libs/apr-util-1* |
84 | =dev-libs/apr-util-1*[ldap?] |
| 83 | dev-libs/libpcre |
85 | dev-libs/libpcre |
| 84 | ldap? ( =net-nds/openldap-2* ) |
86 | ldap? ( =net-nds/openldap-2* ) |
| 85 | selinux? ( sec-policy/selinux-apache ) |
87 | selinux? ( sec-policy/selinux-apache ) |
| 86 | ssl? ( >=dev-libs/openssl-0.9.8f ) |
88 | ssl? ( >=dev-libs/openssl-0.9.8f ) |
| 87 | !=www-servers/apache-1*" |
89 | !=www-servers/apache-1*" |
| … | |
… | |
| 228 | fi |
230 | fi |
| 229 | |
231 | |
| 230 | MY_CONF="--enable-so=static" |
232 | MY_CONF="--enable-so=static" |
| 231 | |
233 | |
| 232 | if use ldap ; then |
234 | if use ldap ; then |
| 233 | confutils_use_depend_built_with_all ldap dev-libs/apr-util ldap |
|
|
| 234 | 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}" |
| 235 | MY_MODS="${MY_MODS} ldap authnz_ldap" |
236 | MY_MODS="${MY_MODS} ldap authnz_ldap" |
| 236 | else |
237 | else |
| 237 | MY_CONF="${MY_CONF} --disable-authnz_ldap --disable-ldap" |
238 | MY_CONF="${MY_CONF} --disable-authnz_ldap --disable-ldap" |
| 238 | fi |
239 | fi |
| … | |
… | |
| 240 | if use ssl ; then |
241 | if use ssl ; then |
| 241 | MY_CONF="${MY_CONF} --with-ssl=/usr --enable-ssl=${mod_type}" |
242 | MY_CONF="${MY_CONF} --with-ssl=/usr --enable-ssl=${mod_type}" |
| 242 | MY_MODS="${MY_MODS} ssl" |
243 | MY_MODS="${MY_MODS} ssl" |
| 243 | else |
244 | else |
| 244 | MY_CONF="${MY_CONF} --without-ssl --disable-ssl" |
245 | MY_CONF="${MY_CONF} --without-ssl --disable-ssl" |
| 245 | fi |
|
|
| 246 | |
|
|
| 247 | if use threads || has ${MY_MPM} ${IUSE_MPMS_THREAD} ; then |
|
|
| 248 | MY_CONF="${MY_CONF} --enable-cgid=${mod_type}" |
|
|
| 249 | MY_MODS="${MY_MODS} cgid" |
|
|
| 250 | else |
|
|
| 251 | MY_CONF="${MY_CONF} --enable-cgi=${mod_type}" |
|
|
| 252 | MY_MODS="${MY_MODS} cgi" |
|
|
| 253 | fi |
246 | fi |
| 254 | |
247 | |
| 255 | if use suexec ; then |
248 | if use suexec ; then |
| 256 | elog "You can manipulate several configure options of suexec" |
249 | elog "You can manipulate several configure options of suexec" |
| 257 | elog "through the following environment variables:" |
250 | elog "through the following environment variables:" |
| … | |
… | |
| 390 | elog " accf_http_load=\"YES\"" |
383 | elog " accf_http_load=\"YES\"" |
| 391 | elog |
384 | elog |
| 392 | fi |
385 | fi |
| 393 | } |
386 | } |
| 394 | |
387 | |
| 395 | # @FUNCTION: apache-2_src_unpack |
388 | # @FUNCTION: apache-2_src_prepare |
| 396 | # @DESCRIPTION: |
389 | # @DESCRIPTION: |
| 397 | # This function applies patches, configures a custom file-system layout and |
390 | # This function applies patches, configures a custom file-system layout and |
| 398 | # rebuilds the configure scripts. |
391 | # rebuilds the configure scripts. |
| 399 | apache-2_src_unpack() { |
392 | apache-2_src_prepare() { |
| 400 | unpack ${A} |
|
|
| 401 | cd "${S}" |
|
|
| 402 | |
|
|
| 403 | # 03_all_gentoo-apache-tools.patch injects -Wl,-z,now, which is not a good |
393 | # 03_all_gentoo-apache-tools.patch injects -Wl,-z,now, which is not a good |
| 404 | # idea for everyone |
394 | # idea for everyone |
| 405 | case ${CHOST} in |
395 | case ${CHOST} in |
| 406 | *-linux-gnu|*-solaris*|*-freebsd*) |
396 | *-linux-gnu|*-solaris*|*-freebsd*) |
| 407 | # do nothing, these use GNU binutils |
397 | # do nothing, these use GNU binutils |
| … | |
… | |
| 434 | mv docs/man/{httpd,apache2}.8 |
424 | mv docs/man/{httpd,apache2}.8 |
| 435 | sed -i -e 's/httpd\.8/apache2.8/g' Makefile.in |
425 | sed -i -e 's/httpd\.8/apache2.8/g' Makefile.in |
| 436 | |
426 | |
| 437 | # patched-in MPMs need the build environment rebuilt |
427 | # patched-in MPMs need the build environment rebuilt |
| 438 | sed -i -e '/sinclude/d' configure.in |
428 | sed -i -e '/sinclude/d' configure.in |
| 439 | AT_GNUCONF_UPDATE=yes AT_M4DIR=build eautoreconf |
429 | AT_M4DIR=build eautoreconf |
| 440 | } |
430 | } |
| 441 | |
431 | |
| 442 | # @FUNCTION: apache-2_src_compile |
432 | # @FUNCTION: apache-2_src_configure |
| 443 | # @DESCRIPTION: |
433 | # @DESCRIPTION: |
| 444 | # This function adds compiler flags and runs econf and emake based on MY_MPM and |
434 | # This function adds compiler flags and runs econf and emake based on MY_MPM and |
| 445 | # MY_CONF |
435 | # MY_CONF |
| 446 | apache-2_src_compile() { |
436 | apache-2_src_configure() { |
| 447 | # Instead of filtering --as-needed (bug #128505), append --no-as-needed |
437 | # Instead of filtering --as-needed (bug #128505), append --no-as-needed |
| 448 | # Thanks to Harald van Dijk |
438 | # Thanks to Harald van Dijk |
| 449 | # ... but only on platforms that use a GNU linker! |
|
|
| 450 | case ${CHOST} in |
|
|
| 451 | *-solaris* | *-*bsd* | *-linux-gnu) |
|
|
| 452 | append-ldflags -Wl,--no-as-needed |
439 | append-ldflags $(no-as-needed) |
| 453 | ;; |
|
|
| 454 | esac |
|
|
| 455 | |
440 | |
| 456 | # peruser MPM debugging with -X is nearly impossible |
441 | # peruser MPM debugging with -X is nearly impossible |
| 457 | if has peruser ${IUSE_MPMS} && use apache2_mpms_peruser ; then |
442 | if has peruser ${IUSE_MPMS} && use apache2_mpms_peruser ; then |
| 458 | use debug && append-flags -DMPM_PERUSER_DEBUG |
443 | use debug && append-flags -DMPM_PERUSER_DEBUG |
| 459 | fi |
444 | fi |
| … | |
… | |
| 475 | --with-program-name=apache2 \ |
460 | --with-program-name=apache2 \ |
| 476 | --enable-layout=Gentoo \ |
461 | --enable-layout=Gentoo \ |
| 477 | ${MY_CONF} || die "econf failed!" |
462 | ${MY_CONF} || die "econf failed!" |
| 478 | |
463 | |
| 479 | sed -i -e 's:apache2\.conf:httpd.conf:' include/ap_config_auto.h |
464 | sed -i -e 's:apache2\.conf:httpd.conf:' include/ap_config_auto.h |
| 480 | |
|
|
| 481 | emake || die "emake failed" |
|
|
| 482 | } |
465 | } |
| 483 | |
466 | |
| 484 | # @FUNCTION: apache-2_src_install |
467 | # @FUNCTION: apache-2_src_install |
| 485 | # @DESCRIPTION: |
468 | # @DESCRIPTION: |
| 486 | # This function runs `emake install' and generates, installs and adapts the gentoo |
469 | # This function runs `emake install' and generates, installs and adapts the gentoo |
| … | |
… | |
| 493 | keepdir /etc/apache2/modules.d |
476 | keepdir /etc/apache2/modules.d |
| 494 | |
477 | |
| 495 | generate_load_module |
478 | generate_load_module |
| 496 | insinto /etc/apache2 |
479 | insinto /etc/apache2 |
| 497 | doins -r "${GENTOO_PATCHDIR}"/conf/* |
480 | doins -r "${GENTOO_PATCHDIR}"/conf/* |
| 498 | doins docs/conf/magic |
481 | use apache2_modules_mime_magic && doins docs/conf/magic |
| 499 | |
482 | |
| 500 | insinto /etc/logrotate.d |
483 | insinto /etc/logrotate.d |
| 501 | newins "${GENTOO_PATCHDIR}"/scripts/apache2-logrotate apache2 |
484 | newins "${GENTOO_PATCHDIR}"/scripts/apache2-logrotate apache2 |
| 502 | |
485 | |
| 503 | # generate a sane default APACHE2_OPTS |
486 | # generate a sane default APACHE2_OPTS |
| 504 | APACHE2_OPTS="-D DEFAULT_VHOST -D INFO -D LANGUAGE" |
487 | APACHE2_OPTS="-D DEFAULT_VHOST -D INFO" |
| 505 | use doc && APACHE2_OPTS="${APACHE2_OPTS} -D MANUAL" |
488 | use doc && APACHE2_OPTS="${APACHE2_OPTS} -D MANUAL" |
| 506 | use ssl && APACHE2_OPTS="${APACHE2_OPTS} -D SSL -D SSL_DEFAULT_VHOST" |
489 | use ssl && APACHE2_OPTS="${APACHE2_OPTS} -D SSL -D SSL_DEFAULT_VHOST" |
| 507 | use suexec && APACHE2_OPTS="${APACHE2_OPTS} -D SUEXEC" |
490 | use suexec && APACHE2_OPTS="${APACHE2_OPTS} -D SUEXEC" |
|
|
491 | if has negotiation ${APACHE2_MODULES} && use apache2_modules_negotiation; then |
|
|
492 | APACHE2_OPTS="${APACHE2_OPTS} -D LANGUAGE" |
|
|
493 | fi |
| 508 | |
494 | |
| 509 | sed -i -e "s:APACHE2_OPTS=\".*\":APACHE2_OPTS=\"${APACHE2_OPTS}\":" \ |
495 | sed -i -e "s:APACHE2_OPTS=\".*\":APACHE2_OPTS=\"${APACHE2_OPTS}\":" \ |
| 510 | "${GENTOO_PATCHDIR}"/init/apache2.confd || die "sed failed" |
496 | "${GENTOO_PATCHDIR}"/init/apache2.confd || die "sed failed" |
| 511 | |
497 | |
| 512 | newconfd "${GENTOO_PATCHDIR}"/init/apache2.confd apache2 |
498 | newconfd "${GENTOO_PATCHDIR}"/init/apache2.confd apache2 |
| … | |
… | |
| 521 | fi |
507 | fi |
| 522 | |
508 | |
| 523 | # provide legacy symlink for apxs, bug 177697 |
509 | # provide legacy symlink for apxs, bug 177697 |
| 524 | dosym /usr/sbin/apxs /usr/sbin/apxs2 |
510 | dosym /usr/sbin/apxs /usr/sbin/apxs2 |
| 525 | |
511 | |
| 526 | # install some thirdparty scripts |
|
|
| 527 | exeinto /usr/sbin |
|
|
| 528 | use ssl && doexe "${GENTOO_PATCHDIR}"/scripts/gentestcrt.sh |
|
|
| 529 | |
|
|
| 530 | # install some documentation |
512 | # install some documentation |
| 531 | dodoc ABOUT_APACHE CHANGES LAYOUT README README.platforms VERSIONING |
513 | dodoc ABOUT_APACHE CHANGES LAYOUT README README.platforms VERSIONING |
| 532 | dodoc "${GENTOO_PATCHDIR}"/docs/* |
514 | dodoc "${GENTOO_PATCHDIR}"/docs/* |
| 533 | |
515 | |
| 534 | # drop in a convenient link to the manual |
516 | # drop in a convenient link to the manual |
| … | |
… | |
| 537 | else |
519 | else |
| 538 | rm -f "${D}/etc/apache2/modules.d/00_apache_manual.conf" |
520 | rm -f "${D}/etc/apache2/modules.d/00_apache_manual.conf" |
| 539 | rm -Rf "${D}/usr/share/doc/${PF}/manual" |
521 | rm -Rf "${D}/usr/share/doc/${PF}/manual" |
| 540 | fi |
522 | fi |
| 541 | |
523 | |
| 542 | # the default webroot gets stored in /usr/share/${PF}/webroot |
524 | # the default icons and error pages get stored in |
| 543 | ebegin "Installing default webroot to /usr/share/${PF}/webroot" |
525 | # /usr/share/apache2/{error,icons} |
| 544 | dodir /usr/share/${PF} |
526 | dodir /usr/share/apache2 |
| 545 | mv -f "${D}/var/www/localhost" "${D}/usr/share/${PF}/webroot" |
527 | mv -f "${D}/var/www/localhost/error" "${D}/usr/share/apache2/error" |
|
|
528 | mv -f "${D}/var/www/localhost/icons" "${D}/usr/share/apache2/icons" |
|
|
529 | rm -rf "${D}/var/www/localhost/" |
| 546 | eend $? |
530 | eend $? |
| 547 | |
531 | |
| 548 | # set some sane permissions for suexec |
532 | # set some sane permissions for suexec |
| 549 | if use suexec ; then |
533 | if use suexec ; then |
| 550 | fowners 0:${SUEXEC_CALLER:-apache} /usr/sbin/suexec |
534 | fowners 0:${SUEXEC_CALLER:-apache} /usr/sbin/suexec |
| … | |
… | |
| 557 | for i in /var/lib/dav /var/log/apache2 /var/cache/apache2 ; do |
541 | for i in /var/lib/dav /var/log/apache2 /var/cache/apache2 ; do |
| 558 | keepdir ${i} |
542 | keepdir ${i} |
| 559 | fowners apache:apache ${i} |
543 | fowners apache:apache ${i} |
| 560 | fperms 0755 ${i} |
544 | fperms 0755 ${i} |
| 561 | done |
545 | done |
| 562 | |
|
|
| 563 | # we need /etc/apache2/ssl if USE=ssl |
|
|
| 564 | use ssl && keepdir /etc/apache2/ssl |
|
|
| 565 | } |
546 | } |
| 566 | |
547 | |
| 567 | # @FUNCTION: apache-2_pkg_postinst |
548 | # @FUNCTION: apache-2_pkg_postinst |
| 568 | # @DESCRIPTION: |
549 | # @DESCRIPTION: |
| 569 | # This function creates test certificates if SSL is enabled and installs the |
550 | # This function creates test certificates if SSL is enabled and installs the |
| 570 | # default webroot to /var/www/localhost if it does not exist. We do this here |
551 | # default index.html to /var/www/localhost if it does not exist. We do this here |
| 571 | # because the default webroot is a copy of the files that exist elsewhere and we |
552 | # because the default webroot is a copy of the files that exist elsewhere and we |
| 572 | # don't want them to be managed/removed by portage when apache is upgraded. |
553 | # don't want them to be managed/removed by portage when apache is upgraded. |
| 573 | apache-2_pkg_postinst() { |
554 | apache-2_pkg_postinst() { |
| 574 | einfo |
|
|
| 575 | |
|
|
| 576 | if use ssl && [[ ! -e "${ROOT}/etc/apache2/ssl/server.crt" ]] ; then |
555 | if use ssl && [[ ! -e "${ROOT}/etc/ssl/apache2/server.pem" ]]; then |
| 577 | cd "${ROOT}"/etc/apache2/ssl |
556 | SSL_ORGANIZATION="${SSL_ORGANIZATION:-Apache HTTP Server}" |
| 578 | einfo "Generating self-signed test certificate in ${ROOT}etc/apache2/ssl ..." |
557 | install_cert /etc/ssl/apache2/server |
| 579 | yes "" 2>/dev/null | \ |
558 | ewarn |
| 580 | "${ROOT}"/usr/sbin/gentestcrt.sh >/dev/null 2>&1 || \ |
559 | ewarn "The location of SSL certificates has changed. If you are" |
| 581 | die "gentestcrt.sh failed" |
560 | ewarn "upgrading from ${CATEGORY}/${PN}-2.2.13 or earlier (or remerged" |
| 582 | einfo |
561 | ewarn "*any* apache version), you might want to move your old" |
|
|
562 | ewarn "certificates from /etc/apache2/ssl/ to /etc/ssl/apache2/ and" |
|
|
563 | ewarn "update your config files." |
|
|
564 | ewarn |
| 583 | fi |
565 | fi |
| 584 | |
566 | |
| 585 | if [[ -e "${ROOT}/var/www/localhost" ]] ; then |
567 | if [[ ! -e "${ROOT}/var/www/localhost" ]] ; then |
| 586 | elog "The default webroot has not been installed into" |
|
|
| 587 | elog "${ROOT}var/www/localhost because the directory already exists" |
|
|
| 588 | elog "and we do not want to overwrite any files you have put there." |
|
|
| 589 | elog |
|
|
| 590 | elog "If you would like to install the latest webroot, please run" |
|
|
| 591 | elog "emerge --config =${PF}" |
|
|
| 592 | elog |
|
|
| 593 | else |
|
|
| 594 | einfo "Installing default webroot to ${ROOT}var/www/localhost" |
|
|
| 595 | mkdir -p "${ROOT}"/var/www/localhost |
568 | mkdir -p "${ROOT}/var/www/localhost/htdocs" |
| 596 | cp -R "${ROOT}"/usr/share/${PF}/webroot/* "${ROOT}"/var/www/localhost/ |
569 | echo "<html><body><h1>It works!</h1></body></html>" > "${ROOT}/var/www/localhost/htdocs/index.html" |
| 597 | einfo |
|
|
| 598 | fi |
570 | fi |
| 599 | } |
|
|
| 600 | |
571 | |
| 601 | # @FUNCTION: apache-2_pkg_config |
572 | echo |
| 602 | # @DESCRIPTION: |
573 | elog "Attention: cgi and cgid modules are now handled via APACHE2_MODULES flags" |
| 603 | # This function installs -- and overwrites -- the default webroot to |
574 | elog "in /etc/make.conf. Make sure to enable those in order to compile them." |
| 604 | # /var/www/localhost |
575 | elog "In general, you should use 'cgid' with threaded MPMs and 'cgi' otherwise." |
| 605 | apache-2_pkg_config() { |
576 | echo |
| 606 | einfo "Installing default webroot to ${ROOT}var/www/localhost" |
|
|
| 607 | mkdir -p "${ROOT}"/var/www/localhost |
|
|
| 608 | cp -R "${ROOT}"/usr/share/${PF}/webroot/* "${ROOT}"/var/www/localhost/ |
|
|
| 609 | } |
|
|
| 610 | |
577 | |
|
|
578 | } |
|
|
579 | |
| 611 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_config |
580 | EXPORT_FUNCTIONS pkg_setup src_prepare src_configure src_install pkg_postinst |