| 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.20 2010/03/05 09:01:07 hollow Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/apache-2.eclass,v 1.21 2010/07/11 08:22:40 lxnay Exp $ |
| 4 | |
4 | |
| 5 | EAPI="2" |
5 | EAPI="2" |
| 6 | |
6 | |
| 7 | # @ECLASS: apache-2.eclass |
7 | # @ECLASS: apache-2.eclass |
| 8 | # @MAINTAINER: |
8 | # @MAINTAINER: |
| … | |
… | |
| 241 | if use ssl ; then |
241 | if use ssl ; then |
| 242 | MY_CONF="${MY_CONF} --with-ssl=/usr --enable-ssl=${mod_type}" |
242 | MY_CONF="${MY_CONF} --with-ssl=/usr --enable-ssl=${mod_type}" |
| 243 | MY_MODS="${MY_MODS} ssl" |
243 | MY_MODS="${MY_MODS} ssl" |
| 244 | else |
244 | else |
| 245 | MY_CONF="${MY_CONF} --without-ssl --disable-ssl" |
245 | MY_CONF="${MY_CONF} --without-ssl --disable-ssl" |
| 246 | fi |
|
|
| 247 | |
|
|
| 248 | if use threads || has ${MY_MPM} ${IUSE_MPMS_THREAD} ; then |
|
|
| 249 | MY_CONF="${MY_CONF} --enable-cgid=${mod_type}" |
|
|
| 250 | MY_MODS="${MY_MODS} cgid" |
|
|
| 251 | else |
|
|
| 252 | MY_CONF="${MY_CONF} --enable-cgi=${mod_type}" |
|
|
| 253 | MY_MODS="${MY_MODS} cgi" |
|
|
| 254 | fi |
246 | fi |
| 255 | |
247 | |
| 256 | if use suexec ; then |
248 | if use suexec ; then |
| 257 | elog "You can manipulate several configure options of suexec" |
249 | elog "You can manipulate several configure options of suexec" |
| 258 | elog "through the following environment variables:" |
250 | elog "through the following environment variables:" |
| … | |
… | |
| 574 | |
566 | |
| 575 | if [[ ! -e "${ROOT}/var/www/localhost" ]] ; then |
567 | if [[ ! -e "${ROOT}/var/www/localhost" ]] ; then |
| 576 | mkdir -p "${ROOT}/var/www/localhost/htdocs" |
568 | mkdir -p "${ROOT}/var/www/localhost/htdocs" |
| 577 | echo "<html><body><h1>It works!</h1></body></html>" > "${ROOT}/var/www/localhost/htdocs/index.html" |
569 | echo "<html><body><h1>It works!</h1></body></html>" > "${ROOT}/var/www/localhost/htdocs/index.html" |
| 578 | fi |
570 | fi |
|
|
571 | |
|
|
572 | echo |
|
|
573 | elog "Attention: cgi and cgid modules are now handled via APACHE2_MODULES flags" |
|
|
574 | elog "make sure to enable those in order to compile them. In general, you should" |
|
|
575 | elog "use 'cgi' with non-multithreaded MPMs (such as prefork) and 'cgid' with" |
|
|
576 | elog "multithreaded ones (such as worker)" |
|
|
577 | echo |
|
|
578 | |
| 579 | } |
579 | } |
| 580 | |
580 | |
| 581 | EXPORT_FUNCTIONS pkg_setup src_prepare src_configure src_install pkg_postinst |
581 | EXPORT_FUNCTIONS pkg_setup src_prepare src_configure src_install pkg_postinst |