| 1 | # Copyright 2004 Gentoo Foundation |
1 | # Copyright 2004 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License, v2 or later |
2 | # Distributed under the terms of the GNU General Public License, v2 or later |
| 3 | # Author Michael Tindal <urilith@gentoo.org> |
3 | # Author Michael Tindal <urilith@gentoo.org> |
| 4 | # $Header: /var/cvsroot/gentoo-x86/eclass/apache-module.eclass,v 1.11 2005/07/06 20:23:20 agriffis Exp $ |
4 | # $Header: /var/cvsroot/gentoo-x86/eclass/apache-module.eclass,v 1.12 2005/07/11 15:08:06 swegener Exp $ |
| 5 | |
5 | |
| 6 | inherit depend.apache |
6 | inherit depend.apache |
| 7 | |
7 | |
| 8 | # This eclass provides a common set of functions for Apache modules. |
8 | # This eclass provides a common set of functions for Apache modules. |
| 9 | |
9 | |
| … | |
… | |
| 160 | ## This installs the files into apache's directories. The module is installed |
160 | ## This installs the files into apache's directories. The module is installed |
| 161 | ## from a directory chosen as above (APXS2_S or ${S}/src). In addition, |
161 | ## from a directory chosen as above (APXS2_S or ${S}/src). In addition, |
| 162 | ## this function can also set the executable permission on files listed in EXECFILES. |
162 | ## this function can also set the executable permission on files listed in EXECFILES. |
| 163 | ## The configuration file name is listed in APACHE1_MOD_CONF without the .conf extensions, |
163 | ## The configuration file name is listed in APACHE1_MOD_CONF without the .conf extensions, |
| 164 | ## so if you configuration is 55_mod_foo.conf, APACHE1_MOD_CONF would be 55_mod_foo. |
164 | ## so if you configuration is 55_mod_foo.conf, APACHE1_MOD_CONF would be 55_mod_foo. |
| 165 | ## DOCFILES contains the list of files you want filed as documentation. The name of the |
165 | ## DOCFILES contains the list of files you want filed as documentation. The name of the |
| 166 | ## module can also be specified using the APACHE1_MOD_FILE or defaults to |
166 | ## module can also be specified using the APACHE1_MOD_FILE or defaults to |
| 167 | ## .libs/${PN}.so. |
167 | ## .libs/${PN}.so. |
| 168 | #### |
168 | #### |
| 169 | apache1_src_install() { |
169 | apache1_src_install() { |
| 170 | debug-print-function apache1_src_install |
170 | debug-print-function apache1_src_install |
| 171 | |
171 | |
| 172 | CD_DIR=$(apache_cd_dir) |
172 | CD_DIR=$(apache_cd_dir) |
| … | |
… | |
| 180 | |
180 | |
| 181 | if [ -n "${APACHE1_MOD_CONF}" ] ; then |
181 | if [ -n "${APACHE1_MOD_CONF}" ] ; then |
| 182 | insinto ${APACHE1_MODULES_CONFDIR} |
182 | insinto ${APACHE1_MODULES_CONFDIR} |
| 183 | doins ${FILESDIR}/${APACHE1_MOD_CONF}.conf || die "internal ebuild error: '${FILESDIR}/${APACHE1_MOD_CONF}.conf' not found." |
183 | doins ${FILESDIR}/${APACHE1_MOD_CONF}.conf || die "internal ebuild error: '${FILESDIR}/${APACHE1_MOD_CONF}.conf' not found." |
| 184 | fi |
184 | fi |
| 185 | |
185 | |
| 186 | cd ${S} |
186 | cd ${S} |
| 187 | |
187 | |
| 188 | if [ -n "${DOCFILES}" ] ; then |
188 | if [ -n "${DOCFILES}" ] ; then |
| 189 | OTHER_DOCS=$(apache_doc_magic) |
189 | OTHER_DOCS=$(apache_doc_magic) |
| 190 | HTML_DOCS=$(apache_doc_magic html) |
190 | HTML_DOCS=$(apache_doc_magic html) |
| … | |
… | |
| 249 | fi |
249 | fi |
| 250 | |
250 | |
| 251 | fi |
251 | fi |
| 252 | |
252 | |
| 253 | } |
253 | } |
| 254 | |
254 | |
| 255 | #### |
255 | #### |
| 256 | ## apache2_src_compile |
256 | ## apache2_src_compile |
| 257 | ## |
257 | ## |
| 258 | ## The default action is to call ${APXS2} with the value of |
258 | ## The default action is to call ${APXS2} with the value of |
| 259 | ## ${APXS2_ARGS}. If a module requires a different build setup |
259 | ## ${APXS2_ARGS}. If a module requires a different build setup |
| … | |
… | |
| 335 | if ! hasq ${INSTALLED_MPM} ${APACHE2_SAFE_MPMS} ; then |
335 | if ! hasq ${INSTALLED_MPM} ${APACHE2_SAFE_MPMS} ; then |
| 336 | INSTALLED_MPM_UNSAFE="${INSTALLED_MPM_UNSAFE} ${mpm}" |
336 | INSTALLED_MPM_UNSAFE="${INSTALLED_MPM_UNSAFE} ${mpm}" |
| 337 | else |
337 | else |
| 338 | INSTALLED_MPM_SAFE="${INSTALLED_MPM_SAFE} ${mpm}" |
338 | INSTALLED_MPM_SAFE="${INSTALLED_MPM_SAFE} ${mpm}" |
| 339 | fi |
339 | fi |
| 340 | |
340 | |
| 341 | if [ -n "${INSTALLED_MPM_UNSAFE}" ] ; then |
341 | if [ -n "${INSTALLED_MPM_UNSAFE}" ] ; then |
| 342 | ewarn "You have one or more MPMs installed that will not work with" |
342 | ewarn "You have one or more MPMs installed that will not work with" |
| 343 | ewarn "this module (${PN}). Please make sure that you only enable" |
343 | ewarn "this module (${PN}). Please make sure that you only enable" |
| 344 | ewarn "this module if you are using one of the following MPMs:" |
344 | ewarn "this module if you are using one of the following MPMs:" |
| 345 | ewarn " ${INSTALLED_MPM_SAFE}" |
345 | ewarn " ${INSTALLED_MPM_SAFE}" |
| 346 | fi |
346 | fi |
| 347 | |
347 | |
| 348 | fi |
348 | fi |
| 349 | |
349 | |
| 350 | |
|
|
| 351 | } |
350 | } |
| 352 | |
351 | |
| 353 | ###### |
352 | ###### |
| 354 | ## Apache dual (1.x or 2.x) ebuild functions |
353 | ## Apache dual (1.x or 2.x) ebuild functions |
| 355 | ## |
354 | ## |