| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 2004-2005 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 or later |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/depend.apache.eclass,v 1.1 2004/07/16 10:48:22 stuart Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/depend.apache.eclass,v 1.18 2005/07/11 15:08:06 swegener Exp $ |
| 4 | |
4 | |
| 5 | ECLASS="depend.apache" |
5 | ###### |
| 6 | INHERITED="$INHERITED $ECLASS" |
6 | ## Apache Common Variables |
| 7 | IUSE="apache apache2" |
7 | ## |
|
|
8 | ## These are internal variables used by this, and other apache-related eclasses, |
|
|
9 | ## and thus should not need to be used by the ebuilds themselves (the ebuilds |
|
|
10 | ## should know what version of Apache they are building against). |
|
|
11 | ###### |
| 8 | |
12 | |
| 9 | # call this function to work out which version of the apache web server |
13 | #### |
| 10 | # your ebuild should be installing itself to use |
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' |
| 11 | |
23 | |
| 12 | detect_apache_useflags() { |
24 | #### |
| 13 | USE_APACHE1= |
25 | ## APXS1, APXS2 |
| 14 | USE_APACHE2= |
26 | ## |
| 15 | USE_APACHE_MULTIPLE= |
27 | ## Paths to the apxs tools |
|
|
28 | #### |
|
|
29 | APXS1="/usr/sbin/apxs" |
|
|
30 | APXS2="/usr/sbin/apxs2" |
| 16 | |
31 | |
| 17 | useq apache2 && USE_APACHE2=1 |
32 | #### |
| 18 | useq apache && USE_APACHE1=1 |
33 | ## APACHECTL1, APACHECTL2 |
|
|
34 | ## |
|
|
35 | ## Paths to the apachectl tools |
|
|
36 | #### |
|
|
37 | APACHECTL1="/usr/sbin/apachectl" |
|
|
38 | APACHECTL2="/usr/sbin/apache2ctl" |
| 19 | |
39 | |
| 20 | [ -n "$USE_APACHE1" ] && [ -n "$USE_APACHE2" ] && USE_APACHE_MULTIPLE=1 |
40 | #### |
|
|
41 | ## APACHE1_BASEDIR, APACHE2_BASEDIR |
|
|
42 | ## |
|
|
43 | ## Paths to the server root directories |
|
|
44 | #### |
|
|
45 | APACHE1_BASEDIR="/usr/lib/apache" |
|
|
46 | APACHE2_BASEDIR="/usr/lib/apache2" |
|
|
47 | |
|
|
48 | #### |
|
|
49 | ## APACHE1_CONFDIR, APACHE2_CONFDIR |
|
|
50 | ## |
|
|
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 | |
|
|
57 | #### |
|
|
58 | ## APACHE1_MODULES_CONFDIR, APACHE2_MODULES_CONFDIR |
|
|
59 | ## |
|
|
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 | |
|
|
65 | #### |
|
|
66 | ## APACHE1_MODULES_VHOSTDIR, APACHE2_MODULES_VHOSTDIR |
|
|
67 | ## |
|
|
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 | |
|
|
73 | #### |
|
|
74 | ## APACHE1_MODULESDIR, APACHE2_MODULESDIR |
|
|
75 | ## |
|
|
76 | ## Paths where we install modules |
|
|
77 | #### |
|
|
78 | APACHE1_MODULESDIR="${APACHE1_BASEDIR}/modules" |
|
|
79 | APACHE2_MODULESDIR="${APACHE2_BASEDIR}/modules" |
|
|
80 | |
|
|
81 | #### |
|
|
82 | ## APACHE1_DEPEND, APACHE2_DEPEND |
|
|
83 | ## |
|
|
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 | |
|
|
94 | |
|
|
95 | #### |
|
|
96 | ## APACHE_DEPEND |
|
|
97 | ## |
|
|
98 | ## Dependency magic based on useflags to use the right DEPEND |
|
|
99 | #### |
|
|
100 | |
|
|
101 | APACHE_DEPEND="apache2? ( ${APACHE2_DEPEND} ) !apache2? ( ${APACHE1_DEPEND} )" |
|
|
102 | |
|
|
103 | #### |
|
|
104 | ## need_apache1 |
|
|
105 | ## |
|
|
106 | ## An ebuild calls this to get the dependency information |
|
|
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 | |
|
|
115 | DEPEND="${DEPEND} ${APACHE1_DEPEND}" |
|
|
116 | RDEPEND="${RDEPEND} ${APACHE1_DEPEND}" |
|
|
117 | APACHE_VERSION='1' |
| 21 | } |
118 | } |
| 22 | |
119 | |
| 23 | detect_apache_installed() { |
120 | #### |
| 24 | HAS_APACHE1= |
121 | ## need_apache2 |
| 25 | HAS_APACHE2= |
122 | ## |
| 26 | HAS_APACHE_MULTIPLE= |
123 | ## An ebuild calls this to get the dependency information |
| 27 | HAS_APACHE_ANY= |
124 | ## for apache-2.x. An ebuild should use this in order for |
|
|
125 | ## future changes to the build infrastructure to happen |
|
|
126 | ## seamlessly. All an ebuild needs to do is include the |
|
|
127 | ## line need_apache1 somewhere. |
|
|
128 | #### |
|
|
129 | need_apache2() { |
|
|
130 | debug-print-function need_apache2 |
| 28 | |
131 | |
| 29 | has_version '=net-www/apache-1*' && HAS_APACHE1=1 && HAS_APACHE_ANY=1 |
132 | DEPEND="${DEPEND} ${APACHE2_DEPEND}" |
| 30 | has_version '=net-www/apache-2*' && HAS_APACHE2=1 && HAS_APACHE_ANY=1 |
133 | RDEPEND="${RDEPEND} ${APACHE2_DEPEND}" |
| 31 | |
134 | APACHE_VERSION='2' |
| 32 | [ -n "${HAVE_APACHE1}" ] && [ -n "${HAVE_APACHE2}" && HAVE_APACHE_MULTIPLE=1 |
|
|
| 33 | } |
135 | } |
| 34 | |
136 | |
| 35 | # call this function from your pkg_setup |
137 | #### |
|
|
138 | ## DO NOT CHANGE THIS FUNCTION UNLESS YOU UNDERSTAND THE CONSEQUENCES IT |
|
|
139 | ## WILL HAVE ON THE CACHE! There MUST be a apache2? () block in DEPEND for |
|
|
140 | ## things to work correct in the dependency calculation stage. |
|
|
141 | #### |
|
|
142 | need_apache() { |
|
|
143 | debug-print-function need_apache |
| 36 | |
144 | |
| 37 | depend_apache() { |
145 | IUSE="${IUSE} apache2" |
| 38 | detect_apache_installed |
146 | DEPEND="${DEPEND} ${APACHE_DEPEND}" |
| 39 | detect_apache_useflags |
147 | RDEPEND="${RDEPEND} ${APACHE_DEPEND}" |
| 40 | |
148 | if useq apache2; then |
| 41 | # deal with the multiple cases first - much easier |
149 | APACHE_VERSION='2' |
| 42 | if [ -n "$USE_APACHE_MULTIPLE" ]; then |
150 | USE_APACHE2=2 |
| 43 | echo |
151 | APXS="$APXS2" |
| 44 | eerror "You have both the apache and apache2 USE flags set" |
152 | APACHECTL="${APACHECTL2}" |
| 45 | eerror |
153 | APACHE_BASEDIR="${APACHE2_BASEDIR}" |
| 46 | eerror "Please set only ONE of these USE flags, and try again" |
154 | APACHE_CONFDIR="${APACHE2_CONFDIR}" |
| 47 | echo |
155 | APACHE_MODULES_CONFDIR="${APACHE2_MODULES_CONFDIR}" |
| 48 | die "Multiple Apache USE flags set - you can only have one set at a time" |
156 | APACHE_VHOSTSDIR="${APACHE2_VHOSTSDIR}" |
| 49 | fi |
157 | APACHE_MODULESDIR="${APACHE2_MODULESDIR}" |
| 50 | |
|
|
| 51 | if [ -n "$USE_APACHE2" ] ; then |
|
|
| 52 | if [ -z "$HAS_APACHE2" -a -n "$HAS_APACHE_ANY" ] ; then |
|
|
| 53 | echo |
|
|
| 54 | eerror "You have the 'apache2' USE flag set, but only have Apache v1 installed" |
|
|
| 55 | eerror "If you really meant to upgrade to Apache v2, please install Apache v2" |
|
|
| 56 | eerror "before installing $CATEGORY/${PN}-${PVR}" |
|
|
| 57 | echo |
|
|
| 58 | die "Automatic upgrade of Apache would be forced; avoiding" |
|
|
| 59 | else |
158 | else |
| 60 | einfo "Apache 2 support enabled" |
159 | APACHE_VERSION='1' |
| 61 | DETECT_APACHE=2 |
160 | APXS="$APXS1" |
| 62 | return |
161 | USE_APACHE2= |
| 63 | fi |
162 | APACHECTL="${APACHECTL1}" |
| 64 | fi |
163 | APACHE_BASEDIR="${APACHE1_BASEDIR}" |
| 65 | |
164 | APACHE_CONFDIR="${APACHE1_CONFDIR}" |
| 66 | if [ -n "$USE_APACHE1" ]; then |
165 | APACHE_MODULES_CONFDIR="${APACHE1_MODULES_CONFDIR}" |
| 67 | if [ -z "$HAS_APACHE1" -a -n "$HAS_APACHE_ANY" ]; then |
166 | APACHE_VHOSTSDIR="${APACHE1_VHOSTSDIR}" |
| 68 | echo |
167 | APACHE_MODULESDIR="${APACHE1_MODULESDIR}" |
| 69 | eerror "You have the 'apache' USE flag set, but only have a later version of" |
|
|
| 70 | eerror "Apache installed on your computer. Please use the 'apache2' USE flag" |
|
|
| 71 | eerror "or downgrade to Apache v1 before installing $CATEGORY/${PN}-${PVR}" |
|
|
| 72 | echo |
|
|
| 73 | die "Avoiding installing older version of Apache" |
|
|
| 74 | else |
|
|
| 75 | einfo "Apache 1 support enabled" |
|
|
| 76 | DETECT_APACHE=1 |
|
|
| 77 | return |
|
|
| 78 | fi |
|
|
| 79 | fi |
168 | fi |
| 80 | } |
169 | } |
| 81 | |
|
|