| 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.10 2008/03/23 10:28:45 hollow Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/apache-2.eclass,v 1.17 2009/07/05 16:05:25 hollow 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.2* ebuilds |
8 | # @BLURB: Provides a common set of functions for apache-2.x ebuilds |
| 9 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
| 10 | # This eclass handles common apache ebuild functions in a sane way and providing |
10 | # This eclass handles apache-2.x ebuild functions such as LoadModule generation |
| 11 | # information about where certain interfaces are located such as LoadModule |
|
|
| 12 | # generation and inter-module dependency checking. |
11 | # and inter-module dependency checking. |
| 13 | |
12 | |
| 14 | inherit autotools confutils eutils flag-o-matic multilib |
13 | inherit autotools confutils eutils flag-o-matic multilib |
| 15 | |
14 | |
| 16 | # ============================================================================== |
15 | # ============================================================================== |
| 17 | # INTERNAL VARIABLES |
16 | # INTERNAL VARIABLES |
| 18 | # ============================================================================== |
17 | # ============================================================================== |
| 19 | |
18 | |
| 20 | # @ECLASS-VARIABLE: GENTOO_PATCHNAME |
19 | # @ECLASS-VARIABLE: GENTOO_PATCHNAME |
| 21 | # @DESCRIPTION: |
20 | # @DESCRIPTION: |
| 22 | # This internal variable contains the prefix for the patch tarball |
21 | # This internal variable contains the prefix for the patch tarball. |
| 23 | GENTOO_PATCHNAME="gentoo-${PF}" |
22 | # Defaults to the full name and version (including revision) of the package. |
|
|
23 | # If you want to override this in an ebuild, use: |
|
|
24 | # ORIG_PR="(revision of Gentoo stuff you want)" |
|
|
25 | # GENTOO_PATCHNAME="gentoo-${PN}-${PV}${ORIG_PR:+-${ORIG_PR}}" |
|
|
26 | [[ -n "$GENTOO_PATCHNAME" ]] || GENTOO_PATCHNAME="gentoo-${PF}" |
| 24 | |
27 | |
| 25 | # @ECLASS-VARIABLE: GENTOO_PATCHDIR |
28 | # @ECLASS-VARIABLE: GENTOO_PATCHDIR |
| 26 | # @DESCRIPTION: |
29 | # @DESCRIPTION: |
| 27 | # This internal variable contains the working directory where patches and config |
30 | # This internal variable contains the working directory where patches and config |
| 28 | # files are located |
31 | # files are located. |
|
|
32 | # Defaults to the patchset name appended to the working directory. |
| 29 | GENTOO_PATCHDIR="${WORKDIR}/${GENTOO_PATCHNAME}" |
33 | [[ -n "$GENTOO_PATCHDIR" ]] || GENTOO_PATCHDIR="${WORKDIR}/${GENTOO_PATCHNAME}" |
| 30 | |
34 | |
| 31 | # @VARIABLE: GENTOO_DEVELOPER |
35 | # @VARIABLE: GENTOO_DEVELOPER |
| 32 | # @DESCRIPTION: |
36 | # @DESCRIPTION: |
| 33 | # This variable needs to be set in the ebuild and contains the name of the |
37 | # This variable needs to be set in the ebuild and contains the name of the |
| 34 | # gentoo developer who created the patch tarball |
38 | # gentoo developer who created the patch tarball |
| … | |
… | |
| 36 | # @VARIABLE: GENTOO_PATCHSTAMP |
40 | # @VARIABLE: GENTOO_PATCHSTAMP |
| 37 | # @DESCRIPTION: |
41 | # @DESCRIPTION: |
| 38 | # This variable needs to be set in the ebuild and contains the date the patch |
42 | # This variable needs to be set in the ebuild and contains the date the patch |
| 39 | # tarball was created at in YYYYMMDD format |
43 | # tarball was created at in YYYYMMDD format |
| 40 | |
44 | |
|
|
45 | # @VARIABLE: GENTOO_PATCH_A |
|
|
46 | # @DESCRIPTION: |
|
|
47 | # This variable should contain the entire filename of patch tarball. |
|
|
48 | # Defaults to the name of the patchset, with a datestamp. |
|
|
49 | [[ -n "$GENTOO_PATCH_A" ]] || GENTOO_PATCH_A="${GENTOO_PATCHNAME}-${GENTOO_PATCHSTAMP}.tar.bz2" |
|
|
50 | |
| 41 | SRC_URI="mirror://apache/httpd/httpd-${PV}.tar.bz2 |
51 | SRC_URI="mirror://apache/httpd/httpd-${PV}.tar.bz2 |
| 42 | http://dev.gentoo.org/~${GENTOO_DEVELOPER}/dist/apache/${GENTOO_PATCHNAME}-${GENTOO_PATCHSTAMP}.tar.bz2" |
52 | http://dev.gentoo.org/~${GENTOO_DEVELOPER}/dist/apache/${GENTOO_PATCH_A}" |
| 43 | |
53 | |
| 44 | # @VARIABLE: IUSE_MPMS_FORK |
54 | # @VARIABLE: IUSE_MPMS_FORK |
| 45 | # @DESCRIPTION: |
55 | # @DESCRIPTION: |
| 46 | # This variable needs to be set in the ebuild and contains a list of forking |
56 | # This variable needs to be set in the ebuild and contains a list of forking |
| 47 | # (i.e. non-threaded) MPMS |
57 | # (i.e. non-threaded) MPMs |
| 48 | |
58 | |
| 49 | # @VARIABLE: IUSE_MPMS_THREAD |
59 | # @VARIABLE: IUSE_MPMS_THREAD |
| 50 | # @DESCRIPTION: |
60 | # @DESCRIPTION: |
| 51 | # This variable needs to be set in the ebuild and contains a list of threaded |
61 | # This variable needs to be set in the ebuild and contains a list of threaded |
| 52 | # MPMS |
62 | # MPMs |
| 53 | |
63 | |
| 54 | # @VARIABLE: IUSE_MODULES |
64 | # @VARIABLE: IUSE_MODULES |
| 55 | # @DESCRIPTION: |
65 | # @DESCRIPTION: |
| 56 | # This variable needs to be set in the ebuild and contains a list of available |
66 | # This variable needs to be set in the ebuild and contains a list of available |
| 57 | # built-in modules |
67 | # built-in modules |
| … | |
… | |
| 358 | # creates the apache user and group and informs about CONFIG_SYSVIPC being |
368 | # creates the apache user and group and informs about CONFIG_SYSVIPC being |
| 359 | # needed (we don't depend on kernel sources and therefore cannot check). |
369 | # needed (we don't depend on kernel sources and therefore cannot check). |
| 360 | apache-2_pkg_setup() { |
370 | apache-2_pkg_setup() { |
| 361 | check_upgrade |
371 | check_upgrade |
| 362 | |
372 | |
| 363 | setup_mpm |
|
|
| 364 | setup_modules |
|
|
| 365 | |
|
|
| 366 | if use debug; then |
|
|
| 367 | MY_CONF="${MY_CONF} --enable-maintainer-mode --enable-exception-hook" |
|
|
| 368 | fi |
|
|
| 369 | |
|
|
| 370 | # setup apache user and group |
373 | # setup apache user and group |
| 371 | enewgroup apache 81 |
374 | enewgroup apache 81 |
| 372 | enewuser apache 81 -1 /var/www apache |
375 | enewuser apache 81 -1 /var/www apache |
| 373 | |
376 | |
|
|
377 | setup_mpm |
|
|
378 | setup_modules |
|
|
379 | |
|
|
380 | if use debug; then |
|
|
381 | MY_CONF="${MY_CONF} --enable-maintainer-mode --enable-exception-hook" |
|
|
382 | fi |
|
|
383 | |
| 374 | elog "Please note that you need SysV IPC support in your kernel." |
384 | elog "Please note that you need SysV IPC support in your kernel." |
| 375 | elog "Make sure CONFIG_SYSVIPC=y is set." |
385 | elog "Make sure CONFIG_SYSVIPC=y is set." |
| 376 | elog |
386 | elog |
|
|
387 | |
|
|
388 | if use userland_BSD; then |
|
|
389 | elog "On BSD systems you need to add the following line to /boot/loader.conf:" |
|
|
390 | elog " accf_http_load=\"YES\"" |
|
|
391 | elog |
|
|
392 | fi |
| 377 | } |
393 | } |
| 378 | |
394 | |
| 379 | # @FUNCTION: apache-2_src_unpack |
395 | # @FUNCTION: apache-2_src_unpack |
| 380 | # @DESCRIPTION: |
396 | # @DESCRIPTION: |
| 381 | # This function applies patches, configures a custom file-system layout and |
397 | # This function applies patches, configures a custom file-system layout and |
| 382 | # rebuilds the configure scripts. |
398 | # rebuilds the configure scripts. |
| 383 | apache-2_src_unpack() { |
399 | apache-2_src_unpack() { |
| 384 | unpack ${A} |
400 | unpack ${A} |
| 385 | cd "${S}" |
401 | cd "${S}" |
| 386 | |
402 | |
|
|
403 | # 03_all_gentoo-apache-tools.patch injects -Wl,-z,now, which is not a good |
|
|
404 | # idea for everyone |
|
|
405 | case ${CHOST} in |
|
|
406 | *-linux-gnu|*-solaris*|*-freebsd*) |
|
|
407 | # do nothing, these use GNU binutils |
|
|
408 | : |
|
|
409 | ;; |
|
|
410 | *-darwin*) |
|
|
411 | sed -i -e 's/-Wl,-z,now/-Wl,-bind_at_load/g' \ |
|
|
412 | "${GENTOO_PATCHDIR}"/patches/03_all_gentoo_apache-tools.patch |
|
|
413 | ;; |
|
|
414 | *) |
|
|
415 | # patch it out to be like upstream |
|
|
416 | sed -i -e 's/-Wl,-z,now//g' \ |
|
|
417 | "${GENTOO_PATCHDIR}"/patches/03_all_gentoo_apache-tools.patch |
|
|
418 | ;; |
|
|
419 | esac |
|
|
420 | |
| 387 | # Use correct multilib libdir in gentoo patches |
421 | # Use correct multilib libdir in gentoo patches |
| 388 | sed -i -e "s:/usr/lib:/usr/$(get_libdir):g" \ |
422 | sed -i -e "s:/usr/lib:/usr/$(get_libdir):g" \ |
| 389 | "${GENTOO_PATCHDIR}"/{conf/httpd.conf,init/*,patches/config.layout} \ |
423 | "${GENTOO_PATCHDIR}"/{conf/httpd.conf,init/*,patches/config.layout} \ |
| 390 | || die "libdir sed failed" |
424 | || die "libdir sed failed" |
| 391 | |
425 | |
| … | |
… | |
| 410 | # This function adds compiler flags and runs econf and emake based on MY_MPM and |
444 | # This function adds compiler flags and runs econf and emake based on MY_MPM and |
| 411 | # MY_CONF |
445 | # MY_CONF |
| 412 | apache-2_src_compile() { |
446 | apache-2_src_compile() { |
| 413 | # Instead of filtering --as-needed (bug #128505), append --no-as-needed |
447 | # Instead of filtering --as-needed (bug #128505), append --no-as-needed |
| 414 | # Thanks to Harald van Dijk |
448 | # Thanks to Harald van Dijk |
|
|
449 | # ... but only on platforms that use a GNU linker! |
|
|
450 | case ${CHOST} in |
|
|
451 | *-solaris* | *-*bsd* | *-linux-gnu) |
| 415 | append-ldflags -Wl,--no-as-needed |
452 | append-ldflags -Wl,--no-as-needed |
|
|
453 | ;; |
|
|
454 | esac |
| 416 | |
455 | |
| 417 | # peruser MPM debugging with -X is nearly impossible |
456 | # peruser MPM debugging with -X is nearly impossible |
| 418 | if has peruser ${IUSE_MPMS} && use apache2_mpms_peruser ; then |
457 | if has peruser ${IUSE_MPMS} && use apache2_mpms_peruser ; then |
| 419 | use debug && append-flags -DMPM_PERUSER_DEBUG |
458 | use debug && append-flags -DMPM_PERUSER_DEBUG |
| 420 | fi |
459 | fi |
| … | |
… | |
| 426 | --libexecdir=/usr/$(get_libdir)/apache2/modules \ |
465 | --libexecdir=/usr/$(get_libdir)/apache2/modules \ |
| 427 | --datadir=/var/www/localhost \ |
466 | --datadir=/var/www/localhost \ |
| 428 | --sysconfdir=/etc/apache2 \ |
467 | --sysconfdir=/etc/apache2 \ |
| 429 | --localstatedir=/var \ |
468 | --localstatedir=/var \ |
| 430 | --with-mpm=${MY_MPM} \ |
469 | --with-mpm=${MY_MPM} \ |
| 431 | --with-perl=/usr/bin/perl \ |
|
|
| 432 | --with-apr=/usr \ |
470 | --with-apr=/usr \ |
| 433 | --with-apr-util=/usr \ |
471 | --with-apr-util=/usr \ |
| 434 | --with-pcre=/usr \ |
472 | --with-pcre=/usr \ |
| 435 | --with-z=/usr \ |
473 | --with-z=/usr \ |
| 436 | --with-port=80 \ |
474 | --with-port=80 \ |
| … | |
… | |
| 443 | emake || die "emake failed" |
481 | emake || die "emake failed" |
| 444 | } |
482 | } |
| 445 | |
483 | |
| 446 | # @FUNCTION: apache-2_src_install |
484 | # @FUNCTION: apache-2_src_install |
| 447 | # @DESCRIPTION: |
485 | # @DESCRIPTION: |
| 448 | # This function runs emake install and generates, installs and adapts the gentoo |
486 | # This function runs `emake install' and generates, installs and adapts the gentoo |
| 449 | # specific configuration files found in the tarball |
487 | # specific configuration files found in the tarball |
| 450 | apache-2_src_install() { |
488 | apache-2_src_install() { |
| 451 | make DESTDIR="${D}" install || die "make install failed" |
489 | make DESTDIR="${D}" install || die "make install failed" |
| 452 | |
490 | |
| 453 | # install our configuration files |
491 | # install our configuration files |
| … | |
… | |
| 472 | "${GENTOO_PATCHDIR}"/init/apache2.confd || die "sed failed" |
510 | "${GENTOO_PATCHDIR}"/init/apache2.confd || die "sed failed" |
| 473 | |
511 | |
| 474 | newconfd "${GENTOO_PATCHDIR}"/init/apache2.confd apache2 |
512 | newconfd "${GENTOO_PATCHDIR}"/init/apache2.confd apache2 |
| 475 | newinitd "${GENTOO_PATCHDIR}"/init/apache2.initd apache2 |
513 | newinitd "${GENTOO_PATCHDIR}"/init/apache2.initd apache2 |
| 476 | |
514 | |
| 477 | # link apache2ctl to the init script |
515 | # install apache2ctl wrapper for our init script if available |
|
|
516 | if test -e "${GENTOO_PATCHDIR}"/scripts/apache2ctl; then |
|
|
517 | exeinto /usr/sbin |
|
|
518 | doexe "${GENTOO_PATCHDIR}"/scripts/apache2ctl |
|
|
519 | else |
| 478 | dosym /etc/init.d/apache2 /usr/sbin/apache2ctl |
520 | dosym /etc/init.d/apache2 /usr/sbin/apache2ctl |
|
|
521 | fi |
| 479 | |
522 | |
| 480 | # provide legacy symlink for apxs, bug 177697 |
523 | # provide legacy symlink for apxs, bug 177697 |
| 481 | dosym /usr/sbin/apxs /usr/sbin/apxs2 |
524 | dosym /usr/sbin/apxs /usr/sbin/apxs2 |
| 482 | |
525 | |
| 483 | # install some thirdparty scripts |
526 | # install some thirdparty scripts |
| … | |
… | |
| 494 | else |
537 | else |
| 495 | rm -f "${D}/etc/apache2/modules.d/00_apache_manual.conf" |
538 | rm -f "${D}/etc/apache2/modules.d/00_apache_manual.conf" |
| 496 | rm -Rf "${D}/usr/share/doc/${PF}/manual" |
539 | rm -Rf "${D}/usr/share/doc/${PF}/manual" |
| 497 | fi |
540 | fi |
| 498 | |
541 | |
| 499 | # the default webroot gets stored in /usr/share/doc |
542 | # the default webroot gets stored in /usr/share/${PF}/webroot |
| 500 | ebegin "Installing default webroot to /usr/share/doc/${PF}" |
543 | ebegin "Installing default webroot to /usr/share/${PF}/webroot" |
|
|
544 | dodir /usr/share/${PF} |
| 501 | mv -f "${D}/var/www/localhost" "${D}/usr/share/doc/${PF}/webroot" |
545 | mv -f "${D}/var/www/localhost" "${D}/usr/share/${PF}/webroot" |
| 502 | eend $? |
546 | eend $? |
| 503 | keepdir /var/www/localhost/htdocs |
|
|
| 504 | |
547 | |
| 505 | # set some sane permissions for suexec |
548 | # set some sane permissions for suexec |
| 506 | if use suexec ; then |
549 | if use suexec ; then |
| 507 | fowners 0:apache /usr/sbin/suexec |
550 | fowners 0:${SUEXEC_CALLER:-apache} /usr/sbin/suexec |
| 508 | fperms 4710 /usr/sbin/suexec |
551 | fperms 4710 /usr/sbin/suexec |
| 509 | # provide legacy symlink for suexec, bug 177697 |
552 | # provide legacy symlink for suexec, bug 177697 |
| 510 | dosym /usr/sbin/suexec /usr/sbin/suexec2 |
553 | dosym /usr/sbin/suexec /usr/sbin/suexec2 |
| 511 | fi |
554 | fi |
| 512 | |
555 | |
| … | |
… | |
| 522 | } |
565 | } |
| 523 | |
566 | |
| 524 | # @FUNCTION: apache-2_pkg_postinst |
567 | # @FUNCTION: apache-2_pkg_postinst |
| 525 | # @DESCRIPTION: |
568 | # @DESCRIPTION: |
| 526 | # This function creates test certificates if SSL is enabled and installs the |
569 | # This function creates test certificates if SSL is enabled and installs the |
| 527 | # default webroot if /var/www/localhost does not exist. We do this here because |
570 | # default webroot to /var/www/localhost if it does not exist. We do this here |
| 528 | # the default webroot is a copy of the files that exist elsewhere and we don't |
571 | # because the default webroot is a copy of the files that exist elsewhere and we |
| 529 | # want them to be managed/removed by portage when apache is upgraded. |
572 | # don't want them to be managed/removed by portage when apache is upgraded. |
| 530 | apache-2_pkg_postinst() { |
573 | apache-2_pkg_postinst() { |
|
|
574 | einfo |
|
|
575 | |
| 531 | if use ssl && [[ ! -e "${ROOT}/etc/apache2/ssl/server.crt" ]] ; then |
576 | if use ssl && [[ ! -e "${ROOT}/etc/apache2/ssl/server.crt" ]] ; then |
| 532 | cd "${ROOT}"/etc/apache2/ssl |
577 | cd "${ROOT}"/etc/apache2/ssl |
| 533 | einfo |
|
|
| 534 | einfo "Generating self-signed test certificate in ${ROOT}etc/apache2/ssl ..." |
578 | einfo "Generating self-signed test certificate in ${ROOT}etc/apache2/ssl ..." |
| 535 | yes "" 2>/dev/null | \ |
579 | yes "" 2>/dev/null | \ |
| 536 | "${ROOT}"/usr/sbin/gentestcrt.sh >/dev/null 2>&1 || \ |
580 | "${ROOT}"/usr/sbin/gentestcrt.sh >/dev/null 2>&1 || \ |
| 537 | die "gentestcrt.sh failed" |
581 | die "gentestcrt.sh failed" |
| 538 | einfo |
582 | einfo |
| … | |
… | |
| 547 | elog "emerge --config =${PF}" |
591 | elog "emerge --config =${PF}" |
| 548 | elog |
592 | elog |
| 549 | else |
593 | else |
| 550 | einfo "Installing default webroot to ${ROOT}var/www/localhost" |
594 | einfo "Installing default webroot to ${ROOT}var/www/localhost" |
| 551 | mkdir -p "${ROOT}"/var/www/localhost |
595 | mkdir -p "${ROOT}"/var/www/localhost |
| 552 | cp -R "${ROOT}"/usr/share/doc/${PF}/webroot/* "${ROOT}"/var/www/localhost |
596 | cp -R "${ROOT}"/usr/share/${PF}/webroot/* "${ROOT}"/var/www/localhost/ |
| 553 | chown -R apache:0 "${ROOT}"/var/www/localhost |
597 | einfo |
| 554 | fi |
598 | fi |
| 555 | } |
599 | } |
| 556 | |
600 | |
| 557 | # @FUNCTION: apache-2_pkg_config |
601 | # @FUNCTION: apache-2_pkg_config |
| 558 | # @DESCRIPTION: |
602 | # @DESCRIPTION: |
| 559 | # This function installs -- and removes a previously existing -- default webroot |
603 | # This function installs -- and overwrites -- the default webroot to |
| 560 | # to /var/www/localhost |
604 | # /var/www/localhost |
| 561 | apache-2_pkg_config() { |
605 | apache-2_pkg_config() { |
| 562 | einfo "Installing default webroot to ${ROOT}var/www/localhost" |
606 | einfo "Installing default webroot to ${ROOT}var/www/localhost" |
| 563 | mkdir "${ROOT}"var{,/www{,/localhost}} |
607 | mkdir -p "${ROOT}"/var/www/localhost |
| 564 | cp -R "${ROOT}"usr/share/doc/${PF}/webroot/* "${ROOT}"var/www/localhost/ |
608 | cp -R "${ROOT}"/usr/share/${PF}/webroot/* "${ROOT}"/var/www/localhost/ |
| 565 | } |
609 | } |
| 566 | |
610 | |
| 567 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_config |
611 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_config |