| 1 | # Copyright 1999-2004 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/depend.apache.eclass,v 1.2 2004/07/16 11:22:57 stuart 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 | ECLASS="depend.apache" |
5 | # @ECLASS: depend.apache.eclass |
| 6 | INHERITED="$INHERITED $ECLASS" |
6 | # @MAINTAINER: apache-devs@gentoo.org |
| 7 | IUSE="apache apache2" |
7 | # @BLURB: Functions to allow ebuilds to depend on apache |
|
|
8 | # @DESCRIPTION: |
|
|
9 | # This eclass handles depending on apache in a sane way and providing |
|
|
10 | # information about where certain interfaces are located. |
|
|
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. |
| 8 | |
17 | |
| 9 | DEPEND="$DEPEND apache? ( =net-www/apache-1* ) apache2? ( =net-www/apache-2* )" |
18 | inherit multilib |
| 10 | |
19 | |
| 11 | # call this function to work out which version of the apache web server |
20 | # ============================================================================== |
| 12 | # your ebuild should be installing itself to use |
21 | # INTERNAL VARIABLES |
|
|
22 | # ============================================================================== |
| 13 | |
23 | |
| 14 | detect_apache_useflags() { |
24 | # @ECLASS-VARIABLE: APACHE_VERSION |
| 15 | USE_APACHE1= |
25 | # @DESCRIPTION: |
| 16 | USE_APACHE2= |
26 | # Stores the version of apache we are going to be ebuilding. This variable is |
| 17 | USE_APACHE_MULTIPLE= |
27 | # set by the need_apache functions. |
| 18 | |
28 | |
| 19 | useq apache2 && USE_APACHE2=1 |
29 | # @ECLASS-VARIABLE: APXS |
| 20 | useq apache && USE_APACHE1=1 |
30 | # @DESCRIPTION: |
|
|
31 | # Paths to the apxs tool |
| 21 | |
32 | |
| 22 | [ -n "$USE_APACHE1" ] && [ -n "$USE_APACHE2" ] && USE_APACHE_MULTIPLE=1 |
33 | # @ECLASS-VARIABLE: APACHECTL |
|
|
34 | # @DESCRIPTION: |
|
|
35 | # Path to the apachectl tool |
|
|
36 | |
|
|
37 | # @ECLASS-VARIABLE: APACHE_BASEDIR |
|
|
38 | # @DESCRIPTION: |
|
|
39 | # Path to the server root directory |
|
|
40 | |
|
|
41 | # @ECLASS-VARIABLE: APACHE_CONFDIR |
|
|
42 | # @DESCRIPTION: |
|
|
43 | # Path to the configuration file directory |
|
|
44 | |
|
|
45 | # @ECLASS-VARIABLE: APACHE_MODULES_CONFDIR |
|
|
46 | # @DESCRIPTION: |
|
|
47 | # Path where module configuration files are kept |
|
|
48 | |
|
|
49 | # @ECLASS-VARIABLE: APACHE_VHOSTS_CONFDIR |
|
|
50 | # @DESCRIPTION: |
|
|
51 | # Path where virtual host configuration files are kept |
|
|
52 | |
|
|
53 | # @ECLASS-VARIABLE: APACHE_MODULESDIR |
|
|
54 | # @DESCRIPTION: |
|
|
55 | # Path where we install modules |
|
|
56 | |
|
|
57 | # @ECLASS-VARIABLE: APACHE_DEPEND |
|
|
58 | # @DESCRIPTION: |
|
|
59 | # Dependencies for Apache |
|
|
60 | APACHE_DEPEND="www-servers/apache" |
|
|
61 | |
|
|
62 | # @ECLASS-VARIABLE: APACHE2_DEPEND |
|
|
63 | # @DESCRIPTION: |
|
|
64 | # Dependencies for Apache 2.x |
|
|
65 | APACHE2_DEPEND="=www-servers/apache-2*" |
|
|
66 | |
|
|
67 | # @ECLASS-VARIABLE: APACHE2_2_DEPEND |
|
|
68 | # @DESCRIPTION: |
|
|
69 | # Dependencies for Apache 2.2.x |
|
|
70 | APACHE2_2_DEPEND="=www-servers/apache-2.2*" |
|
|
71 | |
|
|
72 | # ============================================================================== |
|
|
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) |
|
|
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" |
| 23 | } |
92 | } |
| 24 | |
93 | |
| 25 | detect_apache_installed() { |
94 | _init_no_apache() { |
| 26 | HAS_APACHE1= |
95 | debug-print-function $FUNCNAME $* |
| 27 | HAS_APACHE2= |
96 | APACHE_VERSION="0" |
| 28 | HAS_APACHE_MULTIPLE= |
|
|
| 29 | HAS_APACHE_ANY= |
|
|
| 30 | |
|
|
| 31 | has_version '=net-www/apache-1*' && HAS_APACHE1=1 && HAS_APACHE_ANY=1 |
|
|
| 32 | has_version '=net-www/apache-2*' && HAS_APACHE2=1 && HAS_APACHE_ANY=1 |
|
|
| 33 | |
|
|
| 34 | [ -n "${HAVE_APACHE1}" ] && [ -n "${HAVE_APACHE2}" && HAVE_APACHE_MULTIPLE=1 |
|
|
| 35 | } |
97 | } |
| 36 | |
98 | |
| 37 | # call this function from your pkg_setup |
99 | # ============================================================================== |
|
|
100 | # PUBLIC FUNCTIONS |
|
|
101 | # ============================================================================== |
| 38 | |
102 | |
| 39 | depend_apache() { |
103 | # @FUNCTION: want_apache |
| 40 | detect_apache_installed |
104 | # @DESCRIPTION: |
| 41 | detect_apache_useflags |
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 $* |
| 42 | |
109 | |
| 43 | # deal with the multiple cases first - much easier |
110 | local myiuse=${1:-apache2} |
| 44 | if [ -n "$USE_APACHE_MULTIPLE" ]; then |
111 | IUSE="${IUSE} ${myiuse}" |
| 45 | echo |
112 | DEPEND="${DEPEND} ${myiuse}? ( ${APACHE2_DEPEND} )" |
| 46 | eerror "You have both the apache and apache2 USE flags set" |
113 | RDEPEND="${RDEPEND} ${myiuse}? ( ${APACHE2_DEPEND} )" |
| 47 | eerror |
|
|
| 48 | eerror "Please set only ONE of these USE flags, and try again" |
|
|
| 49 | echo |
|
|
| 50 | die "Multiple Apache USE flags set - you can only have one set at a time" |
|
|
| 51 | fi |
|
|
| 52 | |
114 | |
| 53 | if [ -n "$USE_APACHE2" ] ; then |
115 | if use ${myiuse} ; then |
| 54 | if [ -z "$HAS_APACHE2" -a -n "$HAS_APACHE_ANY" ] ; then |
116 | _init_apache2 |
| 55 | echo |
|
|
| 56 | eerror "You have the 'apache2' USE flag set, but only have Apache v1 installed" |
|
|
| 57 | eerror "If you really meant to upgrade to Apache v2, please install Apache v2" |
|
|
| 58 | eerror "before installing $CATEGORY/${PN}-${PVR}" |
|
|
| 59 | echo |
|
|
| 60 | die "Automatic upgrade of Apache would be forced; avoiding" |
|
|
| 61 | else |
117 | else |
| 62 | einfo "Apache 2 support enabled" |
118 | _init_no_apache |
| 63 | DETECT_APACHE=2 |
|
|
| 64 | return |
|
|
| 65 | fi |
|
|
| 66 | fi |
|
|
| 67 | |
|
|
| 68 | if [ -n "$USE_APACHE1" ]; then |
|
|
| 69 | if [ -z "$HAS_APACHE1" -a -n "$HAS_APACHE_ANY" ]; then |
|
|
| 70 | echo |
|
|
| 71 | eerror "You have the 'apache' USE flag set, but only have a later version of" |
|
|
| 72 | eerror "Apache installed on your computer. Please use the 'apache2' USE flag" |
|
|
| 73 | eerror "or downgrade to Apache v1 before installing $CATEGORY/${PN}-${PVR}" |
|
|
| 74 | echo |
|
|
| 75 | die "Avoiding installing older version of Apache" |
|
|
| 76 | else |
|
|
| 77 | einfo "Apache 1 support enabled" |
|
|
| 78 | DETECT_APACHE=1 |
|
|
| 79 | return |
|
|
| 80 | fi |
|
|
| 81 | fi |
119 | fi |
| 82 | } |
120 | } |
| 83 | |
121 | |
|
|
122 | # @FUNCTION: want_apache |
|
|
123 | # @DESCRIPTION: |
|
|
124 | # An ebuild calls this to get the dependency information for optional |
|
|
125 | # apache-2.2.x support. |
|
|
126 | want_apache2_2() { |
|
|
127 | debug-print-function $FUNCNAME $* |
|
|
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. |
|
|
154 | need_apache2() { |
|
|
155 | debug-print-function $FUNCNAME $* |
|
|
156 | |
|
|
157 | DEPEND="${DEPEND} ${APACHE2_DEPEND}" |
|
|
158 | RDEPEND="${RDEPEND} ${APACHE2_DEPEND}" |
|
|
159 | _init_apache2 |
|
|
160 | } |
|
|
161 | |
|
|
162 | # @FUNCTION: need_apache2_2 |
|
|
163 | # @DESCRIPTION: |
|
|
164 | # Works like need_apache, but its used by modules that only support |
|
|
165 | # apache 2.2.x and do not work with other versions. |
|
|
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. |
|
|
180 | need_apache() { |
|
|
181 | debug-print-function $FUNCNAME $* |
|
|
182 | need_apache2 |
|
|
183 | } |