| 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.9 2008/03/23 00:14:13 hollow Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/apache-2.eclass,v 1.14 2008/12/10 01:06:12 robbat2 Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: apache-2 |
5 | # @ECLASS: apache-2.eclass |
|
|
6 | # @MAINTAINER: |
| 6 | # @MAINTAINER: apache-devs@gentoo.org |
7 | # apache-devs@gentoo.org |
| 7 | # @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 |
| 8 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
| 9 | # 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 |
| 10 | # information about where certain interfaces are located such as LoadModule |
|
|
| 11 | # generation 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 confutils eutils flag-o-matic multilib |
| 14 | |
14 | |
| 15 | # ============================================================================== |
15 | # ============================================================================== |
| 16 | # INTERNAL VARIABLES |
16 | # INTERNAL VARIABLES |
| 17 | # ============================================================================== |
17 | # ============================================================================== |
| 18 | |
18 | |
| 19 | # @ECLASS-VARIABLE: GENTOO_PATCHNAME |
19 | # @ECLASS-VARIABLE: GENTOO_PATCHNAME |
| 20 | # @DESCRIPTION: |
20 | # @DESCRIPTION: |
| 21 | # This internal variable contains the prefix for the patch tarball |
21 | # This internal variable contains the prefix for the patch tarball. |
| 22 | GENTOO_PATCHNAME="gentoo-${PF}" |
22 | # Defaults to the full version (including revision) of the package. |
|
|
23 | [[ -n "$GENTOO_PATCHNAME" ]] || GENTOO_PATCHNAME="gentoo-${PF}" |
| 23 | |
24 | |
| 24 | # @ECLASS-VARIABLE: GENTOO_PATCHDIR |
25 | # @ECLASS-VARIABLE: GENTOO_PATCHDIR |
| 25 | # @DESCRIPTION: |
26 | # @DESCRIPTION: |
| 26 | # This internal variable contains the working directory where patches and config |
27 | # This internal variable contains the working directory where patches and config |
| 27 | # files are located |
28 | # files are located. |
|
|
29 | # Defaults to the patchset name appended to the working directory. |
| 28 | GENTOO_PATCHDIR="${WORKDIR}/${GENTOO_PATCHNAME}" |
30 | [[ -n "$GENTOO_PATCHDIR" ]] || GENTOO_PATCHDIR="${WORKDIR}/${GENTOO_PATCHNAME}" |
| 29 | |
31 | |
| 30 | # @VARIABLE: GENTOO_DEVELOPER |
32 | # @VARIABLE: GENTOO_DEVELOPER |
| 31 | # @DESCRIPTION: |
33 | # @DESCRIPTION: |
| 32 | # This variable needs to be set in the ebuild and contains the name of the |
34 | # This variable needs to be set in the ebuild and contains the name of the |
| 33 | # gentoo developer who created the patch tarball |
35 | # gentoo developer who created the patch tarball |
| … | |
… | |
| 35 | # @VARIABLE: GENTOO_PATCHSTAMP |
37 | # @VARIABLE: GENTOO_PATCHSTAMP |
| 36 | # @DESCRIPTION: |
38 | # @DESCRIPTION: |
| 37 | # This variable needs to be set in the ebuild and contains the date the patch |
39 | # This variable needs to be set in the ebuild and contains the date the patch |
| 38 | # tarball was created at in YYYYMMDD format |
40 | # tarball was created at in YYYYMMDD format |
| 39 | |
41 | |
|
|
42 | # @VARIABLE: GENTOO_PATCH_A |
|
|
43 | # @DESCRIPTION: |
|
|
44 | # This variable should contain the entire filename of patch tarball. |
|
|
45 | # Defaults to the name of the patchset, with a datestamp. |
|
|
46 | [[ -n "$GENTOO_PATCH_A" ]] || GENTOO_PATCH_A="${GENTOO_PATCHNAME}-${GENTOO_PATCHSTAMP}.tar.bz2" |
|
|
47 | |
| 40 | SRC_URI="mirror://apache/httpd/httpd-${PV}.tar.bz2 |
48 | SRC_URI="mirror://apache/httpd/httpd-${PV}.tar.bz2 |
| 41 | http://dev.gentoo.org/~${GENTOO_DEVELOPER}/dist/apache/${GENTOO_PATCHNAME}-${GENTOO_PATCHSTAMP}.tar.bz2" |
49 | http://dev.gentoo.org/~${GENTOO_DEVELOPER}/dist/apache/${GENTOO_PATCH_A}" |
| 42 | |
50 | |
| 43 | # @VARIABLE: IUSE_MPMS_FORK |
51 | # @VARIABLE: IUSE_MPMS_FORK |
| 44 | # @DESCRIPTION: |
52 | # @DESCRIPTION: |
| 45 | # This variable needs to be set in the ebuild and contains a list of forking |
53 | # This variable needs to be set in the ebuild and contains a list of forking |
| 46 | # (i.e. non-threaded) MPMS |
54 | # (i.e. non-threaded) MPMs |
| 47 | |
55 | |
| 48 | # @VARIABLE: IUSE_MPMS_THREAD |
56 | # @VARIABLE: IUSE_MPMS_THREAD |
| 49 | # @DESCRIPTION: |
57 | # @DESCRIPTION: |
| 50 | # This variable needs to be set in the ebuild and contains a list of threaded |
58 | # This variable needs to be set in the ebuild and contains a list of threaded |
| 51 | # MPMS |
59 | # MPMs |
| 52 | |
60 | |
| 53 | # @VARIABLE: IUSE_MODULES |
61 | # @VARIABLE: IUSE_MODULES |
| 54 | # @DESCRIPTION: |
62 | # @DESCRIPTION: |
| 55 | # This variable needs to be set in the ebuild and contains a list of available |
63 | # This variable needs to be set in the ebuild and contains a list of available |
| 56 | # built-in modules |
64 | # built-in modules |
| … | |
… | |
| 357 | # creates the apache user and group and informs about CONFIG_SYSVIPC being |
365 | # creates the apache user and group and informs about CONFIG_SYSVIPC being |
| 358 | # needed (we don't depend on kernel sources and therefore cannot check). |
366 | # needed (we don't depend on kernel sources and therefore cannot check). |
| 359 | apache-2_pkg_setup() { |
367 | apache-2_pkg_setup() { |
| 360 | check_upgrade |
368 | check_upgrade |
| 361 | |
369 | |
| 362 | setup_mpm |
|
|
| 363 | setup_modules |
|
|
| 364 | |
|
|
| 365 | if use debug; then |
|
|
| 366 | MY_CONF="${MY_CONF} --enable-maintainer-mode --enable-exception-hook" |
|
|
| 367 | fi |
|
|
| 368 | |
|
|
| 369 | # setup apache user and group |
370 | # setup apache user and group |
| 370 | enewgroup apache 81 |
371 | enewgroup apache 81 |
| 371 | enewuser apache 81 -1 /var/www apache |
372 | enewuser apache 81 -1 /var/www apache |
| 372 | |
373 | |
|
|
374 | setup_mpm |
|
|
375 | setup_modules |
|
|
376 | |
|
|
377 | if use debug; then |
|
|
378 | MY_CONF="${MY_CONF} --enable-maintainer-mode --enable-exception-hook" |
|
|
379 | fi |
|
|
380 | |
| 373 | elog "Please note that you need SysV IPC support in your kernel." |
381 | elog "Please note that you need SysV IPC support in your kernel." |
| 374 | elog "Make sure CONFIG_SYSVIPC=y is set." |
382 | elog "Make sure CONFIG_SYSVIPC=y is set." |
| 375 | elog |
383 | elog |
|
|
384 | |
|
|
385 | if use userland_BSD; then |
|
|
386 | elog "On BSD systems you need to add the following line to /boot/loader.conf:" |
|
|
387 | elog " accf_http_load=\"YES\"" |
|
|
388 | elog |
|
|
389 | fi |
| 376 | } |
390 | } |
| 377 | |
391 | |
| 378 | # @FUNCTION: apache-2_src_unpack |
392 | # @FUNCTION: apache-2_src_unpack |
| 379 | # @DESCRIPTION: |
393 | # @DESCRIPTION: |
| 380 | # This function applies patches, configures a custom file-system layout and |
394 | # This function applies patches, configures a custom file-system layout and |
| … | |
… | |
| 425 | --libexecdir=/usr/$(get_libdir)/apache2/modules \ |
439 | --libexecdir=/usr/$(get_libdir)/apache2/modules \ |
| 426 | --datadir=/var/www/localhost \ |
440 | --datadir=/var/www/localhost \ |
| 427 | --sysconfdir=/etc/apache2 \ |
441 | --sysconfdir=/etc/apache2 \ |
| 428 | --localstatedir=/var \ |
442 | --localstatedir=/var \ |
| 429 | --with-mpm=${MY_MPM} \ |
443 | --with-mpm=${MY_MPM} \ |
| 430 | --with-perl=/usr/bin/perl \ |
|
|
| 431 | --with-apr=/usr \ |
444 | --with-apr=/usr \ |
| 432 | --with-apr-util=/usr \ |
445 | --with-apr-util=/usr \ |
| 433 | --with-pcre=/usr \ |
446 | --with-pcre=/usr \ |
| 434 | --with-z=/usr \ |
447 | --with-z=/usr \ |
| 435 | --with-port=80 \ |
448 | --with-port=80 \ |
| … | |
… | |
| 442 | emake || die "emake failed" |
455 | emake || die "emake failed" |
| 443 | } |
456 | } |
| 444 | |
457 | |
| 445 | # @FUNCTION: apache-2_src_install |
458 | # @FUNCTION: apache-2_src_install |
| 446 | # @DESCRIPTION: |
459 | # @DESCRIPTION: |
| 447 | # This function runs emake install and generates, installs and adapts the gentoo |
460 | # This function runs `emake install' and generates, installs and adapts the gentoo |
| 448 | # specific configuration files found in the tarball |
461 | # specific configuration files found in the tarball |
| 449 | apache-2_src_install() { |
462 | apache-2_src_install() { |
| 450 | make DESTDIR="${D}" install || die "make install failed" |
463 | make DESTDIR="${D}" install || die "make install failed" |
| 451 | |
464 | |
| 452 | # install our configuration files |
465 | # install our configuration files |
| … | |
… | |
| 471 | "${GENTOO_PATCHDIR}"/init/apache2.confd || die "sed failed" |
484 | "${GENTOO_PATCHDIR}"/init/apache2.confd || die "sed failed" |
| 472 | |
485 | |
| 473 | newconfd "${GENTOO_PATCHDIR}"/init/apache2.confd apache2 |
486 | newconfd "${GENTOO_PATCHDIR}"/init/apache2.confd apache2 |
| 474 | newinitd "${GENTOO_PATCHDIR}"/init/apache2.initd apache2 |
487 | newinitd "${GENTOO_PATCHDIR}"/init/apache2.initd apache2 |
| 475 | |
488 | |
| 476 | # link apache2ctl to the init script |
489 | # install apache2ctl wrapper for our init script if available |
|
|
490 | if test -e "${GENTOO_PATCHDIR}"/scripts/apache2ctl; then |
|
|
491 | exeinto /usr/sbin |
|
|
492 | doexe "${GENTOO_PATCHDIR}"/scripts/apache2ctl |
|
|
493 | else |
| 477 | dosym /etc/init.d/apache2 /usr/sbin/apache2ctl |
494 | dosym /etc/init.d/apache2 /usr/sbin/apache2ctl |
|
|
495 | fi |
| 478 | |
496 | |
| 479 | # provide legacy symlink for apxs, bug 177697 |
497 | # provide legacy symlink for apxs, bug 177697 |
| 480 | dosym /usr/sbin/apxs /usr/sbin/apxs2 |
498 | dosym /usr/sbin/apxs /usr/sbin/apxs2 |
| 481 | |
499 | |
| 482 | # install some thirdparty scripts |
500 | # install some thirdparty scripts |
| … | |
… | |
| 493 | else |
511 | else |
| 494 | rm -f "${D}/etc/apache2/modules.d/00_apache_manual.conf" |
512 | rm -f "${D}/etc/apache2/modules.d/00_apache_manual.conf" |
| 495 | rm -Rf "${D}/usr/share/doc/${PF}/manual" |
513 | rm -Rf "${D}/usr/share/doc/${PF}/manual" |
| 496 | fi |
514 | fi |
| 497 | |
515 | |
| 498 | # the default webroot gets stored in /usr/share/doc |
516 | # the default webroot gets stored in /usr/share/${PF}/webroot |
| 499 | ebegin "Installing default webroot to /usr/share/doc/${PF}" |
517 | ebegin "Installing default webroot to /usr/share/${PF}/webroot" |
|
|
518 | dodir /usr/share/${PF} |
| 500 | mv -f "${D}/var/www/localhost" "${D}/usr/share/doc/${PF}/webroot" |
519 | mv -f "${D}/var/www/localhost" "${D}/usr/share/${PF}/webroot" |
| 501 | eend $? |
520 | eend $? |
| 502 | keepdir /var/www/localhost/htdocs |
|
|
| 503 | |
521 | |
| 504 | # set some sane permissions for suexec |
522 | # set some sane permissions for suexec |
| 505 | if use suexec ; then |
523 | if use suexec ; then |
| 506 | fowners 0:apache /usr/sbin/suexec |
524 | fowners 0:apache /usr/sbin/suexec |
| 507 | fperms 4710 /usr/sbin/suexec |
525 | fperms 4710 /usr/sbin/suexec |
| … | |
… | |
| 521 | } |
539 | } |
| 522 | |
540 | |
| 523 | # @FUNCTION: apache-2_pkg_postinst |
541 | # @FUNCTION: apache-2_pkg_postinst |
| 524 | # @DESCRIPTION: |
542 | # @DESCRIPTION: |
| 525 | # This function creates test certificates if SSL is enabled and installs the |
543 | # This function creates test certificates if SSL is enabled and installs the |
| 526 | # default webroot if /var/www/localhost does not exist. We do this here because |
544 | # default webroot to /var/www/localhost if it does not exist. We do this here |
| 527 | # the default webroot is a copy of the files that exist elsewhere and we don't |
545 | # because the default webroot is a copy of the files that exist elsewhere and we |
| 528 | # want them to be managed/removed by portage when apache is upgraded. |
546 | # don't want them to be managed/removed by portage when apache is upgraded. |
| 529 | apache-2_pkg_postinst() { |
547 | apache-2_pkg_postinst() { |
|
|
548 | einfo |
|
|
549 | |
| 530 | if use ssl && [[ ! -e "${ROOT}/etc/apache2/ssl/server.crt" ]] ; then |
550 | if use ssl && [[ ! -e "${ROOT}/etc/apache2/ssl/server.crt" ]] ; then |
| 531 | cd "${ROOT}"/etc/apache2/ssl |
551 | cd "${ROOT}"/etc/apache2/ssl |
| 532 | einfo |
|
|
| 533 | einfo "Generating self-signed test certificate in ${ROOT}etc/apache2/ssl ..." |
552 | einfo "Generating self-signed test certificate in ${ROOT}etc/apache2/ssl ..." |
| 534 | yes "" 2>/dev/null | \ |
553 | yes "" 2>/dev/null | \ |
| 535 | "${ROOT}"/usr/sbin/gentestcrt.sh >/dev/null 2>&1 || \ |
554 | "${ROOT}"/usr/sbin/gentestcrt.sh >/dev/null 2>&1 || \ |
| 536 | die "gentestcrt.sh failed" |
555 | die "gentestcrt.sh failed" |
| 537 | einfo |
556 | einfo |
| … | |
… | |
| 546 | elog "emerge --config =${PF}" |
565 | elog "emerge --config =${PF}" |
| 547 | elog |
566 | elog |
| 548 | else |
567 | else |
| 549 | einfo "Installing default webroot to ${ROOT}var/www/localhost" |
568 | einfo "Installing default webroot to ${ROOT}var/www/localhost" |
| 550 | mkdir -p "${ROOT}"/var/www/localhost |
569 | mkdir -p "${ROOT}"/var/www/localhost |
| 551 | cp -R "${ROOT}"/usr/share/doc/${PF}/webroot/* "${ROOT}"/var/www/localhost |
570 | cp -R "${ROOT}"/usr/share/${PF}/webroot/* "${ROOT}"/var/www/localhost/ |
| 552 | chown -R apache:0 "${ROOT}"/var/www/localhost |
571 | einfo |
| 553 | fi |
572 | fi |
| 554 | } |
573 | } |
| 555 | |
574 | |
| 556 | # @FUNCTION: apache-2_pkg_config |
575 | # @FUNCTION: apache-2_pkg_config |
| 557 | # @DESCRIPTION: |
576 | # @DESCRIPTION: |
| 558 | # This function installs -- and removes a previously existing -- default webroot |
577 | # This function installs -- and overwrites -- the default webroot to |
| 559 | # to /var/www/localhost |
578 | # /var/www/localhost |
| 560 | apache-2_pkg_config() { |
579 | apache-2_pkg_config() { |
| 561 | einfo "Installing default webroot to ${ROOT}var/www/localhost" |
580 | einfo "Installing default webroot to ${ROOT}var/www/localhost" |
| 562 | mkdir "${ROOT}"var{,/www{,/localhost}} |
581 | mkdir -p "${ROOT}"/var/www/localhost |
| 563 | cp -R "${ROOT}"usr/share/doc/${PF}/webroot/* "${ROOT}"var/www/localhost/ |
582 | cp -R "${ROOT}"/usr/share/${PF}/webroot/* "${ROOT}"/var/www/localhost/ |
| 564 | } |
583 | } |
| 565 | |
584 | |
| 566 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_config |
585 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_config |