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