| 1 | # Copyright 2004-2005 Gentoo Foundation |
1 | # Copyright 1999-2007 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 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/depend.apache.eclass,v 1.19 2005/08/02 23:26:14 vericgar Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/depend.apache.eclass,v 1.39 2008/02/03 14:12:44 hollow Exp $ |
| 4 | |
4 | |
| 5 | ###### |
5 | # @ECLASS: depend.apache.eclass |
| 6 | ## Apache Common Variables |
6 | # @MAINTAINER: apache-devs@gentoo.org |
| 7 | ## |
7 | # @BLURB: Functions to allow ebuilds to depend on apache |
| 8 | ## These are internal variables used by this, and other apache-related eclasses, |
8 | # @DESCRIPTION: |
| 9 | ## and thus should not need to be used by the ebuilds themselves (the ebuilds |
9 | # This eclass handles depending on apache in a sane way and providing |
| 10 | ## should know what version of Apache they are building against). |
10 | # information about where certain interfaces are located. |
| 11 | ###### |
11 | # |
|
|
12 | # @NOTE: If you use this, be sure you use the need_* call after you have defined |
|
|
13 | # DEPEND and RDEPEND. Also note that you can not rely on the automatic |
|
|
14 | # RDEPEND=DEPEND that portage does if you use this eclass. |
|
|
15 | # |
|
|
16 | # See bug 107127 for more information. |
| 12 | |
17 | |
| 13 | #### |
18 | inherit multilib |
| 14 | ## APACHE_VERSION |
|
|
| 15 | ## |
|
|
| 16 | ## Stores the version of apache we are going to be ebuilding. This variable is |
|
|
| 17 | ## set by the need_apache{|1|2} functions. |
|
|
| 18 | ## |
|
|
| 19 | ## This needs to stay as '1' until apache2 is on by default -- although it |
|
|
| 20 | ## doesn't matter much as it's set by the need_apache functions. |
|
|
| 21 | #### |
|
|
| 22 | APACHE_VERSION='1' |
|
|
| 23 | |
19 | |
| 24 | #### |
20 | # ============================================================================== |
| 25 | ## APXS1, APXS2 |
21 | # INTERNAL VARIABLES |
| 26 | ## |
22 | # ============================================================================== |
| 27 | ## Paths to the apxs tools |
|
|
| 28 | #### |
|
|
| 29 | APXS1="/usr/sbin/apxs" |
|
|
| 30 | APXS2="/usr/sbin/apxs2" |
|
|
| 31 | |
23 | |
| 32 | #### |
24 | # @ECLASS-VARIABLE: APACHE_VERSION |
| 33 | ## APACHECTL1, APACHECTL2 |
25 | # @DESCRIPTION: |
| 34 | ## |
26 | # Stores the version of apache we are going to be ebuilding. This variable is |
| 35 | ## Paths to the apachectl tools |
27 | # set by the need_apache functions. |
| 36 | #### |
|
|
| 37 | APACHECTL1="/usr/sbin/apachectl" |
|
|
| 38 | APACHECTL2="/usr/sbin/apache2ctl" |
|
|
| 39 | |
28 | |
| 40 | #### |
29 | # @ECLASS-VARIABLE: APXS |
| 41 | ## APACHE1_BASEDIR, APACHE2_BASEDIR |
30 | # @DESCRIPTION: |
| 42 | ## |
31 | # Paths to the apxs tool |
| 43 | ## Paths to the server root directories |
|
|
| 44 | #### |
|
|
| 45 | APACHE1_BASEDIR="/usr/lib/apache" |
|
|
| 46 | APACHE2_BASEDIR="/usr/lib/apache2" |
|
|
| 47 | |
32 | |
| 48 | #### |
33 | # @ECLASS-VARIABLE: APACHECTL |
| 49 | ## APACHE1_CONFDIR, APACHE2_CONFDIR |
34 | # @DESCRIPTION: |
| 50 | ## |
35 | # Path to the apachectl tool |
| 51 | ## Paths to the configuration file directories (usually under |
|
|
| 52 | ## $APACHE?_BASEDIR/conf) |
|
|
| 53 | #### |
|
|
| 54 | APACHE1_CONFDIR="/etc/apache" |
|
|
| 55 | APACHE2_CONFDIR="/etc/apache2" |
|
|
| 56 | |
36 | |
| 57 | #### |
37 | # @ECLASS-VARIABLE: APACHE_BASEDIR |
| 58 | ## APACHE1_MODULES_CONFDIR, APACHE2_MODULES_CONFDIR |
38 | # @DESCRIPTION: |
| 59 | ## |
39 | # Path to the server root directory |
| 60 | ## Paths where module configuration files are kept |
|
|
| 61 | #### |
|
|
| 62 | APACHE1_MODULES_CONFDIR="${APACHE1_CONFDIR}/modules.d" |
|
|
| 63 | APACHE2_MODULES_CONFDIR="${APACHE2_CONFDIR}/modules.d" |
|
|
| 64 | |
40 | |
| 65 | #### |
41 | # @ECLASS-VARIABLE: APACHE_CONFDIR |
| 66 | ## APACHE1_VHOSTDIR, APACHE2_VHOSTDIR |
42 | # @DESCRIPTION: |
| 67 | ## |
43 | # Path to the configuration file directory |
| 68 | ## Paths where virtual host configuration files are kept |
|
|
| 69 | #### |
|
|
| 70 | APACHE1_VHOSTDIR="${APACHE1_CONFDIR}/vhosts.d" |
|
|
| 71 | APACHE2_VHOSTDIR="${APACHE2_CONFDIR}/vhosts.d" |
|
|
| 72 | |
44 | |
| 73 | #### |
45 | # @ECLASS-VARIABLE: APACHE_MODULES_CONFDIR |
| 74 | ## APACHE1_MODULESDIR, APACHE2_MODULESDIR |
46 | # @DESCRIPTION: |
| 75 | ## |
47 | # Path where module configuration files are kept |
| 76 | ## Paths where we install modules |
|
|
| 77 | #### |
|
|
| 78 | APACHE1_MODULESDIR="${APACHE1_BASEDIR}/modules" |
|
|
| 79 | APACHE2_MODULESDIR="${APACHE2_BASEDIR}/modules" |
|
|
| 80 | |
48 | |
| 81 | #### |
49 | # @ECLASS-VARIABLE: APACHE_VHOSTS_CONFDIR |
| 82 | ## APACHE1_DEPEND, APACHE2_DEPEND |
50 | # @DESCRIPTION: |
| 83 | ## |
51 | # Path where virtual host configuration files are kept |
| 84 | ## Dependencies for apache 1.x and apache 2.x |
|
|
| 85 | ## - apache2 must be at least version 2.0.52-r3, this is lowest version |
|
|
| 86 | ## containing our new overall changes -- trapni (Jan 21 2005) |
|
|
| 87 | ## - apache1 must be at least version 1.3.33-r1, but how to |
|
|
| 88 | ## define the DEPEND here? (FIXME) -- trapni (Jan 21 2005) |
|
|
| 89 | ## - currently not possible - bug #4315 -- vericgar (Jan 21 2005) |
|
|
| 90 | #### |
|
|
| 91 | APACHE1_DEPEND="=net-www/apache-1*" |
|
|
| 92 | APACHE2_DEPEND=">=net-www/apache-2.0.54-r10" |
|
|
| 93 | |
52 | |
|
|
53 | # @ECLASS-VARIABLE: APACHE_MODULESDIR |
|
|
54 | # @DESCRIPTION: |
|
|
55 | # Path where we install modules |
| 94 | |
56 | |
| 95 | #### |
57 | # @ECLASS-VARIABLE: APACHE_DEPEND |
| 96 | ## APACHE_DEPEND |
58 | # @DESCRIPTION: |
| 97 | ## |
59 | # Dependencies for Apache |
| 98 | ## Dependency magic based on useflags to use the right DEPEND |
60 | APACHE_DEPEND="www-servers/apache" |
| 99 | #### |
|
|
| 100 | |
61 | |
| 101 | APACHE_DEPEND="apache2? ( ${APACHE2_DEPEND} ) !apache2? ( ${APACHE1_DEPEND} )" |
62 | # @ECLASS-VARIABLE: APACHE2_DEPEND |
|
|
63 | # @DESCRIPTION: |
|
|
64 | # Dependencies for Apache 2.x |
|
|
65 | APACHE2_DEPEND="=www-servers/apache-2*" |
| 102 | |
66 | |
| 103 | #### |
67 | # @ECLASS-VARIABLE: APACHE2_2_DEPEND |
| 104 | ## need_apache1 |
68 | # @DESCRIPTION: |
| 105 | ## |
69 | # Dependencies for Apache 2.2.x |
| 106 | ## An ebuild calls this to get the dependency information |
70 | APACHE2_2_DEPEND="=www-servers/apache-2.2*" |
| 107 | ## for apache-1.x. An ebuild should use this in order for |
|
|
| 108 | ## future changes to the build infrastructure to happen |
|
|
| 109 | ## seamlessly. All an ebuild needs to do is include the |
|
|
| 110 | ## line need_apache1 somewhere. |
|
|
| 111 | #### |
|
|
| 112 | need_apache1() { |
|
|
| 113 | debug-print-function need_apache1 |
|
|
| 114 | |
71 | |
| 115 | DEPEND="${DEPEND} ${APACHE1_DEPEND}" |
72 | # ============================================================================== |
| 116 | RDEPEND="${RDEPEND} ${APACHE1_DEPEND}" |
73 | # INTERNAL FUNCTIONS |
|
|
74 | # ============================================================================== |
|
|
75 | |
|
|
76 | _init_apache2() { |
|
|
77 | debug-print-function $FUNCNAME $* |
|
|
78 | |
|
|
79 | # WARNING: Do not use these variables with anything that is put |
|
|
80 | # into the dependency cache (DEPEND/RDEPEND/etc) |
| 117 | APACHE_VERSION='1' |
81 | APACHE_VERSION="2" |
|
|
82 | APXS="/usr/sbin/apxs2" |
|
|
83 | APACHE_BIN="/usr/sbin/apache2" |
|
|
84 | APACHE_CTL="/usr/sbin/apache2ctl" |
|
|
85 | # legacy alias |
|
|
86 | APACHECTL="${APACHE_CTL}" |
|
|
87 | APACHE_BASEDIR="/usr/$(get_libdir)/apache2" |
|
|
88 | APACHE_CONFDIR="/etc/apache2" |
|
|
89 | APACHE_MODULES_CONFDIR="${APACHE_CONFDIR}/modules.d" |
|
|
90 | APACHE_VHOSTS_CONFDIR="${APACHE_CONFDIR}/vhosts.d" |
|
|
91 | APACHE_MODULESDIR="${APACHE_BASEDIR}/modules" |
| 118 | } |
92 | } |
| 119 | |
93 | |
| 120 | #### |
94 | _init_no_apache() { |
| 121 | ## need_apache2 |
95 | debug-print-function $FUNCNAME $* |
| 122 | ## |
96 | APACHE_VERSION="0" |
|
|
97 | } |
|
|
98 | |
|
|
99 | # ============================================================================== |
|
|
100 | # PUBLIC FUNCTIONS |
|
|
101 | # ============================================================================== |
|
|
102 | |
|
|
103 | # @FUNCTION: want_apache |
|
|
104 | # @DESCRIPTION: |
|
|
105 | # An ebuild calls this to get the dependency information for optional apache-2.x |
|
|
106 | # support. |
|
|
107 | want_apache2() { |
|
|
108 | debug-print-function $FUNCNAME $* |
|
|
109 | |
|
|
110 | local myiuse=${1:-apache2} |
|
|
111 | IUSE="${IUSE} ${myiuse}" |
|
|
112 | DEPEND="${DEPEND} ${myiuse}? ( ${APACHE2_DEPEND} )" |
|
|
113 | RDEPEND="${RDEPEND} ${myiuse}? ( ${APACHE2_DEPEND} )" |
|
|
114 | |
|
|
115 | if use ${myiuse} ; then |
|
|
116 | _init_apache2 |
|
|
117 | else |
|
|
118 | _init_no_apache |
|
|
119 | fi |
|
|
120 | } |
|
|
121 | |
|
|
122 | # @FUNCTION: want_apache |
|
|
123 | # @DESCRIPTION: |
| 123 | ## An ebuild calls this to get the dependency information |
124 | # An ebuild calls this to get the dependency information for optional |
| 124 | ## for apache-2.x. An ebuild should use this in order for |
125 | # apache-2.2.x support. |
| 125 | ## future changes to the build infrastructure to happen |
126 | want_apache2_2() { |
| 126 | ## seamlessly. All an ebuild needs to do is include the |
127 | debug-print-function $FUNCNAME $* |
| 127 | ## line need_apache1 somewhere. |
128 | |
| 128 | #### |
129 | local myiuse=${1:-apache2} |
|
|
130 | IUSE="${IUSE} ${myiuse}" |
|
|
131 | DEPEND="${DEPEND} ${myiuse}? ( ${APACHE2_2_DEPEND} )" |
|
|
132 | RDEPEND="${RDEPEND} ${myiuse}? ( ${APACHE2_2_DEPEND} )" |
|
|
133 | |
|
|
134 | if use ${myiuse} ; then |
|
|
135 | _init_apache2 |
|
|
136 | else |
|
|
137 | _init_no_apache |
|
|
138 | fi |
|
|
139 | } |
|
|
140 | |
|
|
141 | # @FUNCTION: want_apache |
|
|
142 | # @DESCRIPTION: |
|
|
143 | # An ebuild calls this to get the dependency information for optional apache |
|
|
144 | # support. |
|
|
145 | want_apache() { |
|
|
146 | debug-print-function $FUNCNAME $* |
|
|
147 | want_apache2 "$@" |
|
|
148 | } |
|
|
149 | |
|
|
150 | # @FUNCTION: need_apache2 |
|
|
151 | # @DESCRIPTION: |
|
|
152 | # Works like need_apache, but its used by modules that only support |
|
|
153 | # apache 2.x and do not work with other versions. |
| 129 | need_apache2() { |
154 | need_apache2() { |
| 130 | debug-print-function need_apache2 |
155 | debug-print-function $FUNCNAME $* |
| 131 | |
156 | |
| 132 | DEPEND="${DEPEND} ${APACHE2_DEPEND}" |
157 | DEPEND="${DEPEND} ${APACHE2_DEPEND}" |
| 133 | RDEPEND="${RDEPEND} ${APACHE2_DEPEND}" |
158 | RDEPEND="${RDEPEND} ${APACHE2_DEPEND}" |
| 134 | APACHE_VERSION='2' |
159 | _init_apache2 |
| 135 | } |
160 | } |
| 136 | |
161 | |
| 137 | #### |
162 | # @FUNCTION: need_apache2_2 |
| 138 | ## DO NOT CHANGE THIS FUNCTION UNLESS YOU UNDERSTAND THE CONSEQUENCES IT |
163 | # @DESCRIPTION: |
| 139 | ## WILL HAVE ON THE CACHE! There MUST be a apache2? () block in DEPEND for |
164 | # Works like need_apache, but its used by modules that only support |
| 140 | ## things to work correct in the dependency calculation stage. |
165 | # apache 2.2.x and do not work with other versions. |
| 141 | #### |
166 | need_apache2_2() { |
|
|
167 | debug-print-function $FUNCNAME $* |
|
|
168 | |
|
|
169 | DEPEND="${DEPEND} ${APACHE2_2_DEPEND}" |
|
|
170 | RDEPEND="${RDEPEND} ${APACHE2_2_DEPEND}" |
|
|
171 | _init_apache2 |
|
|
172 | } |
|
|
173 | |
|
|
174 | # @FUNCTION: need_apache |
|
|
175 | # @DESCRIPTION: |
|
|
176 | # An ebuild calls this to get the dependency information for apache. An |
|
|
177 | # ebuild should use this in order for future changes to the build infrastructure |
|
|
178 | # to happen seamlessly. All an ebuild needs to do is include the line |
|
|
179 | # need_apache somewhere. |
| 142 | need_apache() { |
180 | need_apache() { |
| 143 | debug-print-function need_apache |
181 | debug-print-function $FUNCNAME $* |
| 144 | |
182 | need_apache2 |
| 145 | IUSE="${IUSE} apache2" |
|
|
| 146 | DEPEND="${DEPEND} ${APACHE_DEPEND}" |
|
|
| 147 | RDEPEND="${RDEPEND} ${APACHE_DEPEND}" |
|
|
| 148 | if useq apache2; then |
|
|
| 149 | APACHE_VERSION='2' |
|
|
| 150 | USE_APACHE2=2 |
|
|
| 151 | APXS="$APXS2" |
|
|
| 152 | APACHECTL="${APACHECTL2}" |
|
|
| 153 | APACHE_BASEDIR="${APACHE2_BASEDIR}" |
|
|
| 154 | APACHE_CONFDIR="${APACHE2_CONFDIR}" |
|
|
| 155 | APACHE_MODULES_CONFDIR="${APACHE2_MODULES_CONFDIR}" |
|
|
| 156 | APACHE_VHOSTSDIR="${APACHE2_VHOSTSDIR}" |
|
|
| 157 | APACHE_MODULESDIR="${APACHE2_MODULESDIR}" |
|
|
| 158 | else |
|
|
| 159 | APACHE_VERSION='1' |
|
|
| 160 | APXS="$APXS1" |
|
|
| 161 | USE_APACHE2= |
|
|
| 162 | APACHECTL="${APACHECTL1}" |
|
|
| 163 | APACHE_BASEDIR="${APACHE1_BASEDIR}" |
|
|
| 164 | APACHE_CONFDIR="${APACHE1_CONFDIR}" |
|
|
| 165 | APACHE_MODULES_CONFDIR="${APACHE1_MODULES_CONFDIR}" |
|
|
| 166 | APACHE_VHOSTSDIR="${APACHE1_VHOSTSDIR}" |
|
|
| 167 | APACHE_MODULESDIR="${APACHE1_MODULESDIR}" |
|
|
| 168 | fi |
|
|
| 169 | } |
183 | } |