| 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.13 2008/10/25 14:46:00 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 | |
| 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 | # @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 |
| … | |
… | |
| 35 | # @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 YYYYMMDD format |
45 | # tarball was created at in YYYYMMDD format |
| 39 | |
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" |
|
|
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 | # @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 |
| … | |
… | |
| 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-0.9.8f ) |
88 | ssl? ( >=dev-libs/openssl-0.9.8f ) |
| 76 | !=www-servers/apache-1*" |
89 | !=www-servers/apache-1*" |
| … | |
… | |
| 217 | fi |
230 | fi |
| 218 | |
231 | |
| 219 | MY_CONF="--enable-so=static" |
232 | MY_CONF="--enable-so=static" |
| 220 | |
233 | |
| 221 | if use ldap ; then |
234 | if use ldap ; then |
| 222 | confutils_use_depend_built_with_all ldap dev-libs/apr-util ldap |
|
|
| 223 | 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}" |
| 224 | MY_MODS="${MY_MODS} ldap authnz_ldap" |
236 | MY_MODS="${MY_MODS} ldap authnz_ldap" |
| 225 | else |
237 | else |
| 226 | MY_CONF="${MY_CONF} --disable-authnz_ldap --disable-ldap" |
238 | MY_CONF="${MY_CONF} --disable-authnz_ldap --disable-ldap" |
| 227 | fi |
239 | fi |
| … | |
… | |
| 229 | if use ssl ; then |
241 | if use ssl ; then |
| 230 | MY_CONF="${MY_CONF} --with-ssl=/usr --enable-ssl=${mod_type}" |
242 | MY_CONF="${MY_CONF} --with-ssl=/usr --enable-ssl=${mod_type}" |
| 231 | MY_MODS="${MY_MODS} ssl" |
243 | MY_MODS="${MY_MODS} ssl" |
| 232 | else |
244 | else |
| 233 | MY_CONF="${MY_CONF} --without-ssl --disable-ssl" |
245 | MY_CONF="${MY_CONF} --without-ssl --disable-ssl" |
| 234 | fi |
|
|
| 235 | |
|
|
| 236 | if use threads || has ${MY_MPM} ${IUSE_MPMS_THREAD} ; then |
|
|
| 237 | MY_CONF="${MY_CONF} --enable-cgid=${mod_type}" |
|
|
| 238 | MY_MODS="${MY_MODS} cgid" |
|
|
| 239 | else |
|
|
| 240 | MY_CONF="${MY_CONF} --enable-cgi=${mod_type}" |
|
|
| 241 | MY_MODS="${MY_MODS} cgi" |
|
|
| 242 | fi |
246 | fi |
| 243 | |
247 | |
| 244 | if use suexec ; then |
248 | if use suexec ; then |
| 245 | elog "You can manipulate several configure options of suexec" |
249 | elog "You can manipulate several configure options of suexec" |
| 246 | elog "through the following environment variables:" |
250 | elog "through the following environment variables:" |
| … | |
… | |
| 379 | elog " accf_http_load=\"YES\"" |
383 | elog " accf_http_load=\"YES\"" |
| 380 | elog |
384 | elog |
| 381 | fi |
385 | fi |
| 382 | } |
386 | } |
| 383 | |
387 | |
| 384 | # @FUNCTION: apache-2_src_unpack |
388 | # @FUNCTION: apache-2_src_prepare |
| 385 | # @DESCRIPTION: |
389 | # @DESCRIPTION: |
| 386 | # This function applies patches, configures a custom file-system layout and |
390 | # This function applies patches, configures a custom file-system layout and |
| 387 | # rebuilds the configure scripts. |
391 | # rebuilds the configure scripts. |
| 388 | apache-2_src_unpack() { |
392 | apache-2_src_prepare() { |
| 389 | unpack ${A} |
393 | # 03_all_gentoo-apache-tools.patch injects -Wl,-z,now, which is not a good |
| 390 | cd "${S}" |
394 | # idea for everyone |
|
|
395 | case ${CHOST} in |
|
|
396 | *-linux-gnu|*-solaris*|*-freebsd*) |
|
|
397 | # do nothing, these use GNU binutils |
|
|
398 | : |
|
|
399 | ;; |
|
|
400 | *-darwin*) |
|
|
401 | sed -i -e 's/-Wl,-z,now/-Wl,-bind_at_load/g' \ |
|
|
402 | "${GENTOO_PATCHDIR}"/patches/03_all_gentoo_apache-tools.patch |
|
|
403 | ;; |
|
|
404 | *) |
|
|
405 | # patch it out to be like upstream |
|
|
406 | sed -i -e 's/-Wl,-z,now//g' \ |
|
|
407 | "${GENTOO_PATCHDIR}"/patches/03_all_gentoo_apache-tools.patch |
|
|
408 | ;; |
|
|
409 | esac |
| 391 | |
410 | |
| 392 | # Use correct multilib libdir in gentoo patches |
411 | # Use correct multilib libdir in gentoo patches |
| 393 | sed -i -e "s:/usr/lib:/usr/$(get_libdir):g" \ |
412 | sed -i -e "s:/usr/lib:/usr/$(get_libdir):g" \ |
| 394 | "${GENTOO_PATCHDIR}"/{conf/httpd.conf,init/*,patches/config.layout} \ |
413 | "${GENTOO_PATCHDIR}"/{conf/httpd.conf,init/*,patches/config.layout} \ |
| 395 | || die "libdir sed failed" |
414 | || die "libdir sed failed" |
| … | |
… | |
| 405 | mv docs/man/{httpd,apache2}.8 |
424 | mv docs/man/{httpd,apache2}.8 |
| 406 | sed -i -e 's/httpd\.8/apache2.8/g' Makefile.in |
425 | sed -i -e 's/httpd\.8/apache2.8/g' Makefile.in |
| 407 | |
426 | |
| 408 | # patched-in MPMs need the build environment rebuilt |
427 | # patched-in MPMs need the build environment rebuilt |
| 409 | sed -i -e '/sinclude/d' configure.in |
428 | sed -i -e '/sinclude/d' configure.in |
| 410 | AT_GNUCONF_UPDATE=yes AT_M4DIR=build eautoreconf |
429 | AT_M4DIR=build eautoreconf |
| 411 | } |
430 | } |
| 412 | |
431 | |
| 413 | # @FUNCTION: apache-2_src_compile |
432 | # @FUNCTION: apache-2_src_configure |
| 414 | # @DESCRIPTION: |
433 | # @DESCRIPTION: |
| 415 | # 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 |
| 416 | # MY_CONF |
435 | # MY_CONF |
| 417 | apache-2_src_compile() { |
436 | apache-2_src_configure() { |
| 418 | # Instead of filtering --as-needed (bug #128505), append --no-as-needed |
437 | # Instead of filtering --as-needed (bug #128505), append --no-as-needed |
| 419 | # Thanks to Harald van Dijk |
438 | # Thanks to Harald van Dijk |
| 420 | append-ldflags -Wl,--no-as-needed |
439 | append-ldflags $(no-as-needed) |
| 421 | |
440 | |
| 422 | # peruser MPM debugging with -X is nearly impossible |
441 | # peruser MPM debugging with -X is nearly impossible |
| 423 | if has peruser ${IUSE_MPMS} && use apache2_mpms_peruser ; then |
442 | if has peruser ${IUSE_MPMS} && use apache2_mpms_peruser ; then |
| 424 | use debug && append-flags -DMPM_PERUSER_DEBUG |
443 | use debug && append-flags -DMPM_PERUSER_DEBUG |
| 425 | fi |
444 | fi |
| … | |
… | |
| 441 | --with-program-name=apache2 \ |
460 | --with-program-name=apache2 \ |
| 442 | --enable-layout=Gentoo \ |
461 | --enable-layout=Gentoo \ |
| 443 | ${MY_CONF} || die "econf failed!" |
462 | ${MY_CONF} || die "econf failed!" |
| 444 | |
463 | |
| 445 | 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 |
| 446 | |
|
|
| 447 | emake || die "emake failed" |
|
|
| 448 | } |
465 | } |
| 449 | |
466 | |
| 450 | # @FUNCTION: apache-2_src_install |
467 | # @FUNCTION: apache-2_src_install |
| 451 | # @DESCRIPTION: |
468 | # @DESCRIPTION: |
| 452 | # 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 |
| … | |
… | |
| 459 | keepdir /etc/apache2/modules.d |
476 | keepdir /etc/apache2/modules.d |
| 460 | |
477 | |
| 461 | generate_load_module |
478 | generate_load_module |
| 462 | insinto /etc/apache2 |
479 | insinto /etc/apache2 |
| 463 | doins -r "${GENTOO_PATCHDIR}"/conf/* |
480 | doins -r "${GENTOO_PATCHDIR}"/conf/* |
| 464 | doins docs/conf/magic |
481 | use apache2_modules_mime_magic && doins docs/conf/magic |
| 465 | |
482 | |
| 466 | insinto /etc/logrotate.d |
483 | insinto /etc/logrotate.d |
| 467 | newins "${GENTOO_PATCHDIR}"/scripts/apache2-logrotate apache2 |
484 | newins "${GENTOO_PATCHDIR}"/scripts/apache2-logrotate apache2 |
| 468 | |
485 | |
| 469 | # generate a sane default APACHE2_OPTS |
486 | # generate a sane default APACHE2_OPTS |
| 470 | APACHE2_OPTS="-D DEFAULT_VHOST -D INFO -D LANGUAGE" |
487 | APACHE2_OPTS="-D DEFAULT_VHOST -D INFO" |
| 471 | use doc && APACHE2_OPTS="${APACHE2_OPTS} -D MANUAL" |
488 | use doc && APACHE2_OPTS="${APACHE2_OPTS} -D MANUAL" |
| 472 | 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" |
| 473 | 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 |
| 474 | |
494 | |
| 475 | sed -i -e "s:APACHE2_OPTS=\".*\":APACHE2_OPTS=\"${APACHE2_OPTS}\":" \ |
495 | sed -i -e "s:APACHE2_OPTS=\".*\":APACHE2_OPTS=\"${APACHE2_OPTS}\":" \ |
| 476 | "${GENTOO_PATCHDIR}"/init/apache2.confd || die "sed failed" |
496 | "${GENTOO_PATCHDIR}"/init/apache2.confd || die "sed failed" |
| 477 | |
497 | |
| 478 | newconfd "${GENTOO_PATCHDIR}"/init/apache2.confd apache2 |
498 | newconfd "${GENTOO_PATCHDIR}"/init/apache2.confd apache2 |
| … | |
… | |
| 487 | fi |
507 | fi |
| 488 | |
508 | |
| 489 | # provide legacy symlink for apxs, bug 177697 |
509 | # provide legacy symlink for apxs, bug 177697 |
| 490 | dosym /usr/sbin/apxs /usr/sbin/apxs2 |
510 | dosym /usr/sbin/apxs /usr/sbin/apxs2 |
| 491 | |
511 | |
| 492 | # install some thirdparty scripts |
|
|
| 493 | exeinto /usr/sbin |
|
|
| 494 | use ssl && doexe "${GENTOO_PATCHDIR}"/scripts/gentestcrt.sh |
|
|
| 495 | |
|
|
| 496 | # install some documentation |
512 | # install some documentation |
| 497 | dodoc ABOUT_APACHE CHANGES LAYOUT README README.platforms VERSIONING |
513 | dodoc ABOUT_APACHE CHANGES LAYOUT README README.platforms VERSIONING |
| 498 | dodoc "${GENTOO_PATCHDIR}"/docs/* |
514 | dodoc "${GENTOO_PATCHDIR}"/docs/* |
| 499 | |
515 | |
| 500 | # drop in a convenient link to the manual |
516 | # drop in a convenient link to the manual |
| … | |
… | |
| 503 | else |
519 | else |
| 504 | rm -f "${D}/etc/apache2/modules.d/00_apache_manual.conf" |
520 | rm -f "${D}/etc/apache2/modules.d/00_apache_manual.conf" |
| 505 | rm -Rf "${D}/usr/share/doc/${PF}/manual" |
521 | rm -Rf "${D}/usr/share/doc/${PF}/manual" |
| 506 | fi |
522 | fi |
| 507 | |
523 | |
| 508 | # the default webroot gets stored in /usr/share/${PF}/webroot |
524 | # the default icons and error pages get stored in |
| 509 | ebegin "Installing default webroot to /usr/share/${PF}/webroot" |
525 | # /usr/share/apache2/{error,icons} |
| 510 | dodir /usr/share/${PF} |
526 | dodir /usr/share/apache2 |
| 511 | 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/" |
| 512 | eend $? |
530 | eend $? |
| 513 | |
531 | |
| 514 | # set some sane permissions for suexec |
532 | # set some sane permissions for suexec |
| 515 | if use suexec ; then |
533 | if use suexec ; then |
| 516 | fowners 0:apache /usr/sbin/suexec |
534 | fowners 0:${SUEXEC_CALLER:-apache} /usr/sbin/suexec |
| 517 | fperms 4710 /usr/sbin/suexec |
535 | fperms 4710 /usr/sbin/suexec |
| 518 | # provide legacy symlink for suexec, bug 177697 |
536 | # provide legacy symlink for suexec, bug 177697 |
| 519 | dosym /usr/sbin/suexec /usr/sbin/suexec2 |
537 | dosym /usr/sbin/suexec /usr/sbin/suexec2 |
| 520 | fi |
538 | fi |
| 521 | |
539 | |
| … | |
… | |
| 523 | 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 |
| 524 | keepdir ${i} |
542 | keepdir ${i} |
| 525 | fowners apache:apache ${i} |
543 | fowners apache:apache ${i} |
| 526 | fperms 0755 ${i} |
544 | fperms 0755 ${i} |
| 527 | done |
545 | done |
| 528 | |
|
|
| 529 | # we need /etc/apache2/ssl if USE=ssl |
|
|
| 530 | use ssl && keepdir /etc/apache2/ssl |
|
|
| 531 | } |
546 | } |
| 532 | |
547 | |
| 533 | # @FUNCTION: apache-2_pkg_postinst |
548 | # @FUNCTION: apache-2_pkg_postinst |
| 534 | # @DESCRIPTION: |
549 | # @DESCRIPTION: |
| 535 | # 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 |
| 536 | # 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 |
| 537 | # 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 |
| 538 | # 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. |
| 539 | apache-2_pkg_postinst() { |
554 | apache-2_pkg_postinst() { |
| 540 | einfo |
|
|
| 541 | |
|
|
| 542 | if use ssl && [[ ! -e "${ROOT}/etc/apache2/ssl/server.crt" ]] ; then |
555 | if use ssl && [[ ! -e "${ROOT}/etc/ssl/apache2/server.pem" ]]; then |
| 543 | cd "${ROOT}"/etc/apache2/ssl |
556 | SSL_ORGANIZATION="${SSL_ORGANIZATION:-Apache HTTP Server}" |
| 544 | einfo "Generating self-signed test certificate in ${ROOT}etc/apache2/ssl ..." |
557 | install_cert /etc/ssl/apache2/server |
| 545 | yes "" 2>/dev/null | \ |
558 | ewarn |
| 546 | "${ROOT}"/usr/sbin/gentestcrt.sh >/dev/null 2>&1 || \ |
559 | ewarn "The location of SSL certificates has changed. If you are" |
| 547 | die "gentestcrt.sh failed" |
560 | ewarn "upgrading from ${CATEGORY}/${PN}-2.2.13 or earlier (or remerged" |
| 548 | 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 |
| 549 | fi |
565 | fi |
| 550 | |
566 | |
| 551 | if [[ -e "${ROOT}/var/www/localhost" ]] ; then |
567 | if [[ ! -e "${ROOT}/var/www/localhost" ]] ; then |
| 552 | elog "The default webroot has not been installed into" |
|
|
| 553 | elog "${ROOT}var/www/localhost because the directory already exists" |
|
|
| 554 | elog "and we do not want to overwrite any files you have put there." |
|
|
| 555 | elog |
|
|
| 556 | elog "If you would like to install the latest webroot, please run" |
|
|
| 557 | elog "emerge --config =${PF}" |
|
|
| 558 | elog |
|
|
| 559 | else |
|
|
| 560 | einfo "Installing default webroot to ${ROOT}var/www/localhost" |
|
|
| 561 | mkdir -p "${ROOT}"/var/www/localhost |
568 | mkdir -p "${ROOT}/var/www/localhost/htdocs" |
| 562 | 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" |
| 563 | einfo |
|
|
| 564 | fi |
570 | fi |
| 565 | } |
|
|
| 566 | |
571 | |
| 567 | # @FUNCTION: apache-2_pkg_config |
572 | echo |
| 568 | # @DESCRIPTION: |
573 | elog "Attention: cgi and cgid modules are now handled via APACHE2_MODULES flags" |
| 569 | # 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." |
| 570 | # /var/www/localhost |
575 | elog "In general, you should use 'cgid' with threaded MPMs and 'cgi' otherwise." |
| 571 | apache-2_pkg_config() { |
576 | echo |
| 572 | einfo "Installing default webroot to ${ROOT}var/www/localhost" |
|
|
| 573 | mkdir -p "${ROOT}"/var/www/localhost |
|
|
| 574 | cp -R "${ROOT}"/usr/share/${PF}/webroot/* "${ROOT}"/var/www/localhost/ |
|
|
| 575 | } |
|
|
| 576 | |
577 | |
|
|
578 | } |
|
|
579 | |
| 577 | 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 |