- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
Apache Developer Documentation
1. Apache Module Howto Overview
This chapter will guide a developer through creating an ebuild using one of our more complex packages, www-apache/mod_ldap_userdir as an example. All Apache modules need to use the apache-module.eclass in order to work with future changes to the apache core.
Apache Path Locations
In order to closely follow how upstream and other distributions install apache, the following paths must be used as specified by depend.apache.eclass:
Use
Server Root
Configuration
Directory
Variable
APACHE_BASEDIR
APACHE_CONFDIR
Path
/usr/lib/apache2/
/etc/apache2/
Vhosts Configuration APACHE_VHOSTS_CONFDIR /etc/apache2/vhosts.d/
Modules Configuration APACHE_MODULES_CONFDIR /etc/apache2/modules.d/
Module Binaries
Include Files
Directory
Apache Binary
APACHE_MODULESDIR
APACHE_INCLUDEDIR
APACHE_BIN
/usr/lib/apache2/modules/
/usr/include/apache2/
/usr/sbin/apache2
Apache Control Script APACHE_CTL /usr/sbin/apache2ctl
APXS Binary APXS /usr/sbin/apxs2
Note: If your package isnt actually a module but just needs to know the
paths Apache uses, just inherit depend.apache and use the variables made
available to you in the eclass. See the depend.apache.eclass
documentation.
Overview of apache-module ebuilds
Generally all functions can be removed from the ebuild
Check to see if the default src_compile in the eclass will work.
If not, set APXS2_ARGS to compile other files as required.
Replace any DEPEND on Apache with one of the need_apache* functions described in the depend.apache.eclass documentation.
Create the module configuration file to use IfDefines to load and configure the module
Add any documentation files to DOCFILES
Specify the configuration file src_install should install: APACHE2_MOD_CONF
Specify the IfDefine that the module uses in its configuration file so pkg_postinst can give user information on how to enable the module: APACHE2_MOD_DEFINE
Ebuild Globals
Code Listing 1.1: mod_ldap_userdir-1.1.12 (edited) inherit apache
文档评论(0)