1 | # Copyright 1999-2004 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2006 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/webapp.eclass,v 1.13 2004/04/30 08:25:38 stuart Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/webapp.eclass,v 1.43 2006/07/10 00:52:34 rl03 Exp $ |
4 | # |
4 | # |
5 | # eclass/webapp.eclass |
5 | # eclass/webapp.eclass |
6 | # Eclass for installing applications to run under a web server |
6 | # Eclass for installing applications to run under a web server |
7 | # |
7 | # |
8 | # Part of the implementation of GLEP #11 |
8 | # Part of the implementation of GLEP #11 |
9 | # |
9 | # |
10 | # Author(s) Stuart Herbert <stuart@gentoo.org> |
10 | # Author(s) Stuart Herbert <stuart@gentoo.org> |
|
|
11 | # Renat Lumpau <rl03@gentoo.org> |
|
|
12 | # Gunnar Wrobel <wrobel@gentoo.org> |
11 | # |
13 | # |
12 | # ------------------------------------------------------------------------ |
14 | # ------------------------------------------------------------------------ |
13 | # |
15 | # |
14 | # Please do not make modifications to this file without checking with a |
16 | # The master copy of this eclass is held in our subversion repository. |
15 | # member of the web-apps herd first! |
17 | # http://svn.gnqs.org/projects/vhost-tools/browser/ |
16 | # |
18 | # |
|
|
19 | # If you make changes to this file and don't tell us, chances are that |
|
|
20 | # your changes will be overwritten the next time we release a new version |
|
|
21 | # of webapp-config. |
|
|
22 | # |
17 | # ------------------------------------------------------------------------ |
23 | # ------------------------------------------------------------------------ |
18 | |
24 | |
19 | ECLASS=webapp |
|
|
20 | INHERITED="$INHERITED $ECLASS" |
|
|
21 | SLOT="${PVR}" |
25 | SLOT="${PVR}" |
22 | IUSE="$IUSE vhosts" |
26 | IUSE="vhosts" |
23 | DEPEND="$DEPEND >=net-www/webapp-config-1.6" |
27 | DEPEND="app-admin/webapp-config" |
|
|
28 | RDEPEND="${DEPEND}" |
24 | |
29 | |
25 | EXPORT_FUNCTIONS pkg_postinst pkg_setup src_install |
30 | EXPORT_FUNCTIONS pkg_postinst pkg_setup src_install pkg_prerm |
|
|
31 | |
|
|
32 | INSTALL_DIR="/${PN}" |
|
|
33 | IS_UPGRADE=0 |
|
|
34 | IS_REPLACE=0 |
|
|
35 | |
|
|
36 | INSTALL_CHECK_FILE="installed_by_webapp_eclass" |
|
|
37 | |
|
|
38 | ETC_CONFIG="${ROOT}/etc/vhosts/webapp-config" |
|
|
39 | WEBAPP_CONFIG="${ROOT}/usr/sbin/webapp-config" |
|
|
40 | |
|
|
41 | # ------------------------------------------------------------------------ |
|
|
42 | # INTERNAL FUNCTION - USED BY THIS ECLASS ONLY |
|
|
43 | # |
|
|
44 | # Load the config file /etc/vhosts/webapp-config |
|
|
45 | # |
|
|
46 | # Supports both the old bash version, and the new python version |
|
|
47 | # |
|
|
48 | # ------------------------------------------------------------------------ |
|
|
49 | |
|
|
50 | function webapp_read_config () |
|
|
51 | { |
|
|
52 | if has_version '>=app-admin/webapp-config-1.50'; then |
|
|
53 | ENVVAR=$(${WEBAPP_CONFIG} --query ${PN} ${PVR}) || die "Could not read settings from webapp-config!" |
|
|
54 | eval ${ENVVAR} |
|
|
55 | else |
|
|
56 | . ${ETC_CONFIG} || die "Unable to read ${ETC_CONFIG}" |
|
|
57 | fi |
|
|
58 | } |
26 | |
59 | |
27 | # ------------------------------------------------------------------------ |
60 | # ------------------------------------------------------------------------ |
28 | # INTERNAL FUNCTION - USED BY THIS ECLASS ONLY |
61 | # INTERNAL FUNCTION - USED BY THIS ECLASS ONLY |
29 | # |
62 | # |
30 | # Check whether a specified file exists within the image/ directory |
63 | # Check whether a specified file exists within the image/ directory |
… | |
… | |
37 | |
70 | |
38 | function webapp_checkfileexists () |
71 | function webapp_checkfileexists () |
39 | { |
72 | { |
40 | local my_prefix |
73 | local my_prefix |
41 | |
74 | |
42 | [ -n "$2" ] && my_prefix="$2/" || my_prefix= |
75 | [ -n "${2}" ] && my_prefix="${2}/" || my_prefix= |
43 | |
76 | |
44 | if [ ! -e ${my_prefix}$1 ]; then |
77 | if [ ! -e "${my_prefix}${1}" ]; then |
45 | msg="ebuild fault: file $1 not found" |
78 | msg="ebuild fault: file '${1}' not found" |
46 | eerror "$msg" |
79 | eerror "$msg" |
47 | eerror "Please report this as a bug at http://bugs.gentoo.org/" |
80 | eerror "Please report this as a bug at http://bugs.gentoo.org/" |
48 | die "$msg" |
81 | die "$msg" |
49 | fi |
82 | fi |
50 | } |
83 | } |
51 | |
84 | |
52 | # ------------------------------------------------------------------------ |
85 | # ------------------------------------------------------------------------ |
53 | # INTERNAL FUNCTION - USED BY THIS ECLASS ONLY |
86 | # INTERNAL FUNCTION - USED BY THIS ECLASS ONLY |
54 | # ------------------------------------------------------------------------ |
87 | # ------------------------------------------------------------------------ |
55 | |
88 | |
56 | function webapp_import_config () |
89 | function webapp_check_installedat |
57 | { |
90 | { |
58 | if [ -z "${MY_HTDOCSDIR}" ]; then |
91 | local my_output |
59 | . /etc/conf.d/webapp-config |
|
|
60 | fi |
|
|
61 | |
92 | |
62 | if [ -z "${MY_HTDOCSDIR}" ]; then |
93 | ${WEBAPP_CONFIG} --show-installed -h localhost -d "${INSTALL_DIR}" 2> /dev/null |
63 | libsh_edie "/etc/conf.d/webapp-config not imported" |
|
|
64 | fi |
|
|
65 | } |
94 | } |
66 | |
95 | |
67 | # ------------------------------------------------------------------------ |
96 | # ------------------------------------------------------------------------ |
68 | # INTERNAL FUNCTION - USED BY THIS ECLASS ONLY |
97 | # INTERNAL FUNCTION - USED BY THIS ECLASS ONLY |
69 | # |
98 | # |
70 | # ------------------------------------------------------------------------ |
99 | # ------------------------------------------------------------------------ |
71 | |
100 | |
72 | function webapp_strip_appdir () |
101 | function webapp_strip_appdir () |
73 | { |
102 | { |
|
|
103 | local my_stripped="${1}" |
74 | echo "$1" | sed -e "s|${MY_APPDIR}/||g;" |
104 | echo "${1}" | sed -e "s|${MY_APPDIR}/||g;" |
75 | } |
105 | } |
76 | |
106 | |
77 | function webapp_strip_d () |
107 | function webapp_strip_d () |
78 | { |
108 | { |
79 | echo "$1" | sed -e "s|${D}||g;" |
109 | echo "${1}" | sed -e "s|${D}||g;" |
80 | } |
110 | } |
81 | |
111 | |
82 | function webapp_strip_cwd () |
112 | function webapp_strip_cwd () |
83 | { |
113 | { |
|
|
114 | local my_stripped="${1}" |
84 | echo "$1" | sed -e 's|/./|/|g;' |
115 | echo "${1}" | sed -e 's|/./|/|g;' |
85 | } |
116 | } |
86 | |
117 | |
87 | # ------------------------------------------------------------------------ |
118 | # ------------------------------------------------------------------------ |
88 | # EXPORTED FUNCTION - FOR USE IN EBUILDS |
119 | # EXPORTED FUNCTION - FOR USE IN EBUILDS |
89 | # |
120 | # |
… | |
… | |
92 | # @param $1 - config file |
123 | # @param $1 - config file |
93 | # ------------------------------------------------------------------------ |
124 | # ------------------------------------------------------------------------ |
94 | |
125 | |
95 | function webapp_configfile () |
126 | function webapp_configfile () |
96 | { |
127 | { |
|
|
128 | local m="" |
|
|
129 | for m in "$@" ; do |
97 | webapp_checkfileexists "$1" "$D" |
130 | webapp_checkfileexists "${m}" "${D}" |
98 | echo $1 |
131 | |
99 | local MY_FILE="`webapp_strip_appdir $1`" |
132 | local MY_FILE="$(webapp_strip_appdir "${m}")" |
100 | echo $MY_FILE |
133 | MY_FILE="$(webapp_strip_cwd "${MY_FILE}")" |
101 | |
134 | |
102 | einfo "(config) $MY_FILE" |
135 | elog "(config) ${MY_FILE}" |
103 | echo "$MY_FILE" >> ${D}${WA_CONFIGLIST} |
136 | echo "${MY_FILE}" >> ${D}/${WA_CONFIGLIST} |
|
|
137 | done |
|
|
138 | } |
|
|
139 | |
|
|
140 | # ------------------------------------------------------------------------ |
|
|
141 | # EXPORTED FUNCTION - FOR USE IN EBUILDS |
|
|
142 | # |
|
|
143 | # Install a script that will run after a virtual copy is created, and |
|
|
144 | # before a virtual copy has been removed |
|
|
145 | # |
|
|
146 | # @param $1 - the script to run |
|
|
147 | # ------------------------------------------------------------------------ |
|
|
148 | |
|
|
149 | function webapp_hook_script () |
|
|
150 | { |
|
|
151 | webapp_checkfileexists "${1}" |
|
|
152 | |
|
|
153 | elog "(hook) ${1}" |
|
|
154 | cp "${1}" "${D}/${MY_HOOKSCRIPTSDIR}/$(basename "${1}")" || die "Unable to install ${1} into ${D}/${MY_HOOKSCRIPTSDIR}/" |
|
|
155 | chmod 555 "${D}/${MY_HOOKSCRIPTSDIR}/$(basename "${1}")" |
104 | } |
156 | } |
105 | |
157 | |
106 | # ------------------------------------------------------------------------ |
158 | # ------------------------------------------------------------------------ |
107 | # EXPORTED FUNCTION - FOR USE IN EBUILDS |
159 | # EXPORTED FUNCTION - FOR USE IN EBUILDS |
108 | # |
160 | # |
… | |
… | |
110 | # |
162 | # |
111 | # @param $1 - language code (use 'en' for now) |
163 | # @param $1 - language code (use 'en' for now) |
112 | # @param $2 - the file to install |
164 | # @param $2 - the file to install |
113 | # ------------------------------------------------------------------------ |
165 | # ------------------------------------------------------------------------ |
114 | |
166 | |
115 | function webapp_postinst_txt |
167 | function webapp_postinst_txt () |
116 | { |
168 | { |
117 | webapp_checkfileexists "$2" |
169 | webapp_checkfileexists "${2}" |
118 | |
170 | |
119 | einfo "(rtfm) $2 (lang: $1)" |
171 | elog "(info) ${2} (lang: ${1})" |
120 | cp "$2" "${D}${MY_APPDIR}/postinst-$1.txt" |
172 | cp "${2}" "${D}/${MY_APPDIR}/postinst-${1}.txt" |
121 | } |
173 | } |
122 | |
174 | |
123 | # ------------------------------------------------------------------------ |
175 | # ------------------------------------------------------------------------ |
124 | # EXPORTED FUNCTION - FOR USE IN EBUILDS |
176 | # EXPORTED FUNCTION - FOR USE IN EBUILDS |
125 | # |
177 | # |
126 | # Identify a script file (usually, but not always PHP or Perl) which is |
178 | # Install a text file containing post-upgrade instructions. |
127 | # |
179 | # |
128 | # Files in this list may be modified to #! the required CGI engine when |
180 | # @param $1 - language code (use 'en' for now) |
129 | # installed by webapp-config tool in the future. |
181 | # @param $2 - the file to install |
130 | # |
|
|
131 | # @param $1 - the cgi engine to use |
|
|
132 | # @param $2 - the script file that could run under a cgi-bin |
|
|
133 | # |
|
|
134 | # ------------------------------------------------------------------------ |
182 | # ------------------------------------------------------------------------ |
135 | |
183 | |
136 | function webapp_runbycgibin () |
184 | function webapp_postupgrade_txt () |
137 | { |
185 | { |
138 | webapp_checkfileexists "$2" "$D" |
186 | webapp_checkfileexists "${2}" |
139 | local MY_FILE="`webapp_strip_appdir $2`" |
|
|
140 | MY_FILE="`webapp_strip_cwd $MY_FILE`" |
|
|
141 | |
187 | |
142 | einfo "(cgi-bin) $1 - $MY_FILE" |
188 | elog "(info) ${2} (lang: ${1})" |
143 | echo "$1 $MY_FILE" >> ${D}${WA_RUNBYCGIBINLIST} |
189 | cp "${2}" "${D}/${MY_APPDIR}/postupgrade-${1}.txt" |
144 | } |
190 | } |
145 | |
191 | |
146 | # ------------------------------------------------------------------------ |
192 | # ------------------------------------------------------------------------ |
147 | # EXPORTED FUNCTION - FOR USE IN EBUILDS |
193 | # EXPORTED FUNCTION - FOR USE IN EBUILDS |
148 | # |
194 | # |
149 | # Identify a file which must be owned by the webserver's user:group |
195 | # Identify a file which must be owned by the webserver's user:group |
150 | # settings. |
196 | # settings. |
151 | # |
197 | # |
152 | # The ownership of the file is NOT set until the application is installed |
198 | # The ownership of the file is NOT set until the application is installed |
153 | # using the webapp-config tool. |
199 | # using the webapp-config tool. |
154 | # |
200 | # |
155 | # @param $1 - file to be owned by the webserver user:group combo |
201 | # @param $1 - file to be owned by the webserver user:group combo |
156 | # |
202 | # |
157 | # ------------------------------------------------------------------------ |
203 | # ------------------------------------------------------------------------ |
158 | |
204 | |
159 | function webapp_serverowned () |
205 | function webapp_serverowned () |
160 | { |
206 | { |
|
|
207 | local a="" |
|
|
208 | local m="" |
|
|
209 | if [ "${1}" = "-R" ]; then |
|
|
210 | shift |
|
|
211 | for m in "$@" ; do |
|
|
212 | for a in $(find ${D}/${m}); do |
|
|
213 | a=${a/${D}\/\///} |
|
|
214 | webapp_checkfileexists "${a}" "$D" |
|
|
215 | local MY_FILE="$(webapp_strip_appdir "${a}")" |
|
|
216 | MY_FILE="$(webapp_strip_cwd "${MY_FILE}")" |
|
|
217 | |
|
|
218 | elog "(server owned) ${MY_FILE}" |
|
|
219 | echo "${MY_FILE}" >> "${D}/${WA_SOLIST}" |
|
|
220 | done |
|
|
221 | done |
|
|
222 | else |
|
|
223 | for m in "$@" ; do |
161 | webapp_checkfileexists "$1" "$D" |
224 | webapp_checkfileexists "${m}" "$D" |
162 | local MY_FILE="`webapp_strip_appdir $1`" |
225 | local MY_FILE="$(webapp_strip_appdir "${m}")" |
163 | |
226 | MY_FILE="$(webapp_strip_cwd "${MY_FILE}")" |
|
|
227 | |
164 | einfo "(server owned) $MY_FILE" |
228 | elog "(server owned) ${MY_FILE}" |
165 | echo "$MY_FILE" >> ${D}${WA_SOLIST} |
229 | echo "${MY_FILE}" >> "${D}/${WA_SOLIST}" |
|
|
230 | done |
|
|
231 | fi |
166 | } |
232 | } |
167 | |
233 | |
168 | # ------------------------------------------------------------------------ |
234 | # ------------------------------------------------------------------------ |
169 | # EXPORTED FUNCTION - FOR USE IN EBUILDS |
235 | # EXPORTED FUNCTION - FOR USE IN EBUILDS |
170 | # |
236 | # |
|
|
237 | # @param $1 - the webserver to install the config file for |
|
|
238 | # (one of apache1, apache2, cherokee) |
|
|
239 | # @param $2 - the config file to install |
|
|
240 | # @param $3 - new name for the config file (default is `basename $2`) |
|
|
241 | # this is an optional parameter |
|
|
242 | # |
|
|
243 | # NOTE: |
|
|
244 | # this function will automagically prepend $1 to the front of your |
|
|
245 | # config file's name |
|
|
246 | # ------------------------------------------------------------------------ |
|
|
247 | |
|
|
248 | function webapp_server_configfile () |
|
|
249 | { |
|
|
250 | webapp_checkfileexists "${2}" |
|
|
251 | |
|
|
252 | # sort out what the name will be of the config file |
|
|
253 | |
|
|
254 | local my_file |
|
|
255 | |
|
|
256 | if [ -z "${3}" ]; then |
|
|
257 | my_file="${1}-$(basename "${2}")" |
|
|
258 | else |
|
|
259 | my_file="${1}-${3}" |
|
|
260 | fi |
|
|
261 | |
|
|
262 | # warning: |
|
|
263 | # |
|
|
264 | # do NOT change the naming convention used here without changing all |
|
|
265 | # the other scripts that also rely upon these names |
|
|
266 | |
|
|
267 | elog "(${1}) config file '${my_file}'" |
|
|
268 | cp "${2}" "${D}/${MY_SERVERCONFIGDIR}/${my_file}" |
|
|
269 | } |
|
|
270 | |
|
|
271 | # ------------------------------------------------------------------------ |
|
|
272 | # EXPORTED FUNCTION - FOR USE IN EBUILDS |
171 | # |
273 | # |
172 | # @param $1 - the db engine that the script is for |
274 | # @param $1 - the db engine that the script is for |
173 | # (one of: mysql|postgres) |
275 | # (one of: mysql|postgres) |
174 | # @param $2 - the sql script to be installed |
276 | # @param $2 - the sql script to be installed |
175 | # @param $3 - the older version of the app that this db script |
277 | # @param $3 - the older version of the app that this db script |
… | |
… | |
178 | # a new db from scratch) |
280 | # a new db from scratch) |
179 | # ------------------------------------------------------------------------ |
281 | # ------------------------------------------------------------------------ |
180 | |
282 | |
181 | function webapp_sqlscript () |
283 | function webapp_sqlscript () |
182 | { |
284 | { |
183 | webapp_checkfileexists "$2" |
285 | webapp_checkfileexists "${2}" |
184 | |
286 | |
185 | # create the directory where this script will go |
287 | # create the directory where this script will go |
186 | # |
288 | # |
187 | # scripts for specific database engines go into their own subdirectory |
289 | # scripts for specific database engines go into their own subdirectory |
188 | # just to keep things readable on the filesystem |
290 | # just to keep things readable on the filesystem |
189 | |
291 | |
190 | if [ ! -d "${D}${MY_SQLSCRIPTSDIR}/$1" ]; then |
292 | if [ ! -d "${D}/${MY_SQLSCRIPTSDIR}/${1}" ]; then |
191 | mkdir -p "${D}${MY_SQLSCRIPTSDIR}/$1" || libsh_die "unable to create directory ${D}${MY_SQLSCRIPTSDIR}/$1" |
293 | mkdir -p "${D}/${MY_SQLSCRIPTSDIR}/${1}" || die "unable to create directory ${D}/${MY_SQLSCRIPTSDIR}/${1}" |
192 | fi |
294 | fi |
193 | |
295 | |
194 | # warning: |
296 | # warning: |
195 | # |
297 | # |
196 | # do NOT change the naming convention used here without changing all |
298 | # do NOT change the naming convention used here without changing all |
197 | # the other scripts that also rely upon these names |
299 | # the other scripts that also rely upon these names |
198 | |
300 | |
199 | # are we dealing with an 'upgrade'-type script? |
301 | # are we dealing with an 'upgrade'-type script? |
200 | if [ -n "$3" ]; then |
302 | if [ -n "${3}" ]; then |
201 | # yes we are |
303 | # yes we are |
202 | einfo "($1) upgrade script from ${PN}-${PVR} to $3" |
304 | elog "(${1}) upgrade script from ${PN}-${PVR} to ${3}" |
203 | cp $2 ${D}${MY_SQLSCRIPTSDIR}/$1/${3}_to_${PVR}.sql |
305 | cp "${2}" "${D}${MY_SQLSCRIPTSDIR}/${1}/${3}_to_${PVR}.sql" |
|
|
306 | chmod 600 "${D}${MY_SQLSCRIPTSDIR}/${1}/${3}_to_${PVR}.sql" |
204 | else |
307 | else |
205 | # no, we are not |
308 | # no, we are not |
206 | einfo "($1) create script for ${PN}-${PVR}" |
309 | elog "(${1}) create script for ${PN}-${PVR}" |
207 | cp $2 ${D}${MY_SQLSCRIPTSDIR}/$1/${PVR}_create.sql |
310 | cp "${2}" "${D}/${MY_SQLSCRIPTSDIR}/${1}/${PVR}_create.sql" |
|
|
311 | chmod 600 "${D}/${MY_SQLSCRIPTSDIR}/${1}/${PVR}_create.sql" |
208 | fi |
312 | fi |
209 | } |
313 | } |
210 | |
314 | |
211 | # ------------------------------------------------------------------------ |
315 | # ------------------------------------------------------------------------ |
212 | # EXPORTED FUNCTION - call from inside your ebuild's src_install AFTER |
316 | # EXPORTED FUNCTION - call from inside your ebuild's src_install AFTER |
213 | # everything else has run |
317 | # everything else has run |
214 | # |
318 | # |
215 | # For now, we just make sure that root owns everything, and that there |
319 | # For now, we just make sure that root owns everything, and that there |
216 | # are no setuid files. I'm sure this will change significantly before |
320 | # are no setuid files. |
217 | # the final version! |
|
|
218 | # ------------------------------------------------------------------------ |
321 | # ------------------------------------------------------------------------ |
219 | |
322 | |
220 | function webapp_src_install () |
323 | function webapp_src_install () |
221 | { |
324 | { |
222 | chown -R root:root ${D}/ |
325 | chown -R "${VHOST_DEFAULT_UID}:${VHOST_DEFAULT_GID}" "${D}/" |
223 | chmod -R u-s ${D}/ |
326 | chmod -R u-s "${D}/" |
224 | chmod -R g-s ${D}/ |
327 | chmod -R g-s "${D}/" |
225 | |
328 | |
226 | keepdir ${MY_PERSISTDIR} |
329 | keepdir "${MY_PERSISTDIR}" |
227 | fowners root:root ${MY_PERSISTDIR} |
330 | fowners "root:0" "${MY_PERSISTDIR}" |
228 | fperms 755 ${MY_PERSISTDIR} |
331 | fperms 755 "${MY_PERSISTDIR}" |
|
|
332 | |
|
|
333 | # to test whether or not the ebuild has correctly called this function |
|
|
334 | # we add an empty file to the filesystem |
|
|
335 | # |
|
|
336 | # we used to just set a variable in the shell script, but we can |
|
|
337 | # no longer rely on Portage calling both webapp_src_install() and |
|
|
338 | # webapp_pkg_postinst() within the same shell process |
|
|
339 | |
|
|
340 | touch "${D}/${MY_APPDIR}/${INSTALL_CHECK_FILE}" |
229 | } |
341 | } |
230 | |
342 | |
231 | # ------------------------------------------------------------------------ |
343 | # ------------------------------------------------------------------------ |
232 | # EXPORTED FUNCTION - call from inside your ebuild's pkg_config AFTER |
344 | # EXPORTED FUNCTION - call from inside your ebuild's pkg_config AFTER |
233 | # everything else has run |
345 | # everything else has run |
… | |
… | |
236 | # |
348 | # |
237 | # ------------------------------------------------------------------------ |
349 | # ------------------------------------------------------------------------ |
238 | |
350 | |
239 | function webapp_pkg_setup () |
351 | function webapp_pkg_setup () |
240 | { |
352 | { |
|
|
353 | # add sanity checks here |
|
|
354 | |
|
|
355 | if [ "${SLOT}+" != "${PVR}+" ]; then |
|
|
356 | # special case - some ebuilds *do* need to overwride the SLOT |
|
|
357 | if [ "${WEBAPP_MANUAL_SLOT}" != "yes" ]; then |
|
|
358 | die "ebuild sets SLOT, overrides webapp.eclass" |
|
|
359 | else |
|
|
360 | ewarn |
|
|
361 | ewarn "This ebuild overrides the default SLOT behaviour for webapps" |
|
|
362 | ewarn "If this package installs files into the htdocs dir, this is" |
|
|
363 | ewarn "probably a bug in the ebuild." |
|
|
364 | ewarn |
|
|
365 | fi |
|
|
366 | fi |
|
|
367 | |
241 | # pull in the shared configuration file |
368 | # pull in the shared configuration file |
242 | |
369 | |
243 | . /etc/vhosts/webapp-config || die "Unable to open /etc/vhosts/webapp-config file" |
370 | G_HOSTNAME="localhost" |
|
|
371 | webapp_read_config |
244 | |
372 | |
245 | # are we emerging something that is already installed? |
373 | # are we installing a webapp-config solution over the top of a |
|
|
374 | # non-webapp-config solution? |
246 | |
375 | |
247 | if [ -d "${D}${MY_APPROOT}/${MY_APPSUFFIX}" ]; then |
|
|
248 | # yes we are |
|
|
249 | ewarn "Removing existing copy of ${PN}-${PVR}" |
|
|
250 | rm -rf "${D}${MY_APPROOT}/${MY_APPSUFFIX}" |
|
|
251 | fi |
|
|
252 | } |
|
|
253 | |
|
|
254 | function webapp_src_preinst () |
|
|
255 | { |
|
|
256 | # create the directories that we need |
|
|
257 | |
|
|
258 | dodir ${MY_HTDOCSDIR} |
|
|
259 | dodir ${MY_HOSTROOTDIR} |
|
|
260 | dodir ${MY_CGIBINDIR} |
|
|
261 | dodir ${MY_ICONSDIR} |
|
|
262 | dodir ${MY_ERRORSDIR} |
|
|
263 | dodir ${MY_SQLSCRIPTSDIR} |
|
|
264 | } |
|
|
265 | |
|
|
266 | function webapp_pkg_postinst () |
|
|
267 | { |
|
|
268 | einfo "webapp_pkg_postinst() called" |
|
|
269 | |
|
|
270 | # if 'vhosts' is not set in your USE flags, we install a copy of |
|
|
271 | # this application in /var/www/localhost/htdocs/${PN}/ for you |
|
|
272 | |
|
|
273 | |
|
|
274 | if ! use vhosts ; then |
376 | if ! use vhosts ; then |
275 | einfo "vhosts USE flag not set - auto-installing using webapp-config" |
377 | local my_dir="${ROOT}${VHOST_ROOT}/${MY_HTDOCSBASE}/${PN}" |
|
|
378 | local my_output |
276 | |
379 | |
277 | G_HOSTNAME="localhost" |
380 | if [ -d "${my_dir}" ] ; then |
278 | . /etc/vhosts/webapp-config |
381 | my_output="$(webapp_check_installedat)" |
279 | |
382 | |
280 | local my_mode=-I |
|
|
281 | local my_dir="/${PN}" |
|
|
282 | |
|
|
283 | # are we installing afresh - or are we upgrading? |
|
|
284 | # find out by looking to see what (if anything) is installed |
|
|
285 | # in there already |
|
|
286 | |
|
|
287 | my_cmd="/usr/sbin/webapp-config --show-installed -d $my_dir 2> /dev/null" |
|
|
288 | einfo "$my_cmd" |
|
|
289 | |
|
|
290 | my_output="`/usr/sbin/webapp-config --show-installed -d $my_dir 2> /dev/null`" |
|
|
291 | |
|
|
292 | # we can't use the exit status from webapp-config |
|
|
293 | |
|
|
294 | if [ "$?" = "0" ]; then |
383 | if [ "$?" != "0" ]; then |
295 | |
384 | # okay, whatever is there, it isn't webapp-config-compatible |
296 | # something is in there - but the question has to be ... what? |
385 | ewarn "You already have something installed in ${my_dir}" |
297 | |
386 | ewarn |
298 | ewarn "$my_output already installed" |
387 | ewarn "Whatever is in ${my_dir}, it's not" |
299 | |
388 | ewarn "compatible with webapp-config." |
|
|
389 | ewarn |
|
|
390 | ewarn "This ebuild may be overwriting important files." |
|
|
391 | ewarn |
300 | if [ "`echo $my_output | awk '{ print $1 }'`" = "${PN}" ]; then |
392 | elif [ "$(echo ${my_output} | awk '{ print $1 }')" != "${PN}" ]; then |
301 | einfo "$my_output is a copy of ${PN}" |
393 | eerror "${my_dir} contains ${my_output}" |
302 | if [ "`echo $my_output | awk '{ print $2 }'`" = "${PVR}" ]; then |
394 | eerror "I cannot upgrade that" |
303 | # this version is already installed |
395 | die "Cannot upgrade contents of ${my_dir}" |
304 | # we need to remove it first |
396 | fi |
|
|
397 | fi |
|
|
398 | fi |
|
|
399 | } |
305 | |
400 | |
306 | /usr/sbin/webapp-config -C -d $my_dir |
401 | function webapp_getinstalltype () |
|
|
402 | { |
|
|
403 | # or are we upgrading? |
|
|
404 | |
|
|
405 | if ! use vhosts ; then |
|
|
406 | # we only run webapp-config if vhosts USE flag is not set |
|
|
407 | |
|
|
408 | local my_output |
|
|
409 | |
|
|
410 | my_output="$(webapp_check_installedat)" |
|
|
411 | |
|
|
412 | if [ "${?}" = "0" ] ; then |
|
|
413 | # something is already installed there |
|
|
414 | # |
|
|
415 | # make sure it isn't the same version |
|
|
416 | |
|
|
417 | local my_pn="$(echo ${my_output} | awk '{ print $1 }')" |
|
|
418 | local my_pvr="$(echo ${my_output} | awk '{ print $2 }')" |
|
|
419 | |
|
|
420 | REMOVE_PKG="${my_pn}-${my_pvr}" |
|
|
421 | |
|
|
422 | if [ "${my_pn}" == "${PN}" ]; then |
|
|
423 | if [ "${my_pvr}" != "${PVR}" ]; then |
|
|
424 | elog "This is an upgrade" |
|
|
425 | IS_UPGRADE=1 |
307 | else |
426 | else |
308 | # we have an older version of whatever it is our ebuild is |
427 | elog "This is a re-installation" |
309 | # trying to install ;-) |
428 | IS_REPLACE=1 |
310 | # |
|
|
311 | # this is the situation we can deal with |
|
|
312 | |
|
|
313 | einfo "selecting upgrade mode" |
|
|
314 | my_mode=-U |
|
|
315 | fi |
429 | fi |
316 | else |
430 | else |
317 | # this should never happen - but just in case ... |
431 | elog "${my_output} is installed there" |
318 | # |
|
|
319 | # whatever is in that directory, it isn't the application |
|
|
320 | # that we are currently trying to install |
|
|
321 | # |
|
|
322 | # rather than overwrite the contents, we bail with an error |
|
|
323 | # instead |
|
|
324 | |
|
|
325 | die "$my_output is already installed in $my_dir" |
|
|
326 | fi |
432 | fi |
327 | else |
433 | else |
328 | einfo "${PN}-${PVR} is not installed - using install mode" |
434 | elog "This is an installation" |
329 | fi |
435 | fi |
330 | |
436 | fi |
331 | my_cmd="/usr/sbin/webapp-config $my_mode -h localhost -u root -d $my_dir ${PN} ${PVR}" |
437 | } |
|
|
438 | |
|
|
439 | function webapp_src_preinst () |
|
|
440 | { |
|
|
441 | # create the directories that we need |
|
|
442 | |
|
|
443 | dodir "${MY_HTDOCSDIR}" |
|
|
444 | dodir "${MY_HOSTROOTDIR}" |
|
|
445 | dodir "${MY_CGIBINDIR}" |
|
|
446 | dodir "${MY_ICONSDIR}" |
|
|
447 | dodir "${MY_ERRORSDIR}" |
|
|
448 | dodir "${MY_SQLSCRIPTSDIR}" |
|
|
449 | dodir "${MY_HOOKSCRIPTSDIR}" |
|
|
450 | dodir "${MY_SERVERCONFIGDIR}" |
|
|
451 | } |
|
|
452 | |
|
|
453 | function webapp_pkg_postinst () |
|
|
454 | { |
|
|
455 | webapp_read_config |
|
|
456 | |
|
|
457 | # sanity checks, to catch bugs in the ebuild |
|
|
458 | |
|
|
459 | if [ ! -f "${ROOT}${MY_APPDIR}/${INSTALL_CHECK_FILE}" ]; then |
|
|
460 | eerror |
|
|
461 | eerror "This ebuild did not call webapp_src_install() at the end" |
|
|
462 | eerror "of the src_install() function" |
|
|
463 | eerror |
|
|
464 | eerror "Please log a bug on http://bugs.gentoo.org" |
|
|
465 | eerror |
|
|
466 | eerror "You should use emerge -C to remove this package, as the" |
|
|
467 | eerror "installation is incomplete" |
|
|
468 | eerror |
|
|
469 | die "Ebuild did not call webapp_src_install() - report to http://bugs.gentoo.org" |
|
|
470 | fi |
|
|
471 | |
|
|
472 | # if 'vhosts' is not set in your USE flags, we install a copy of |
|
|
473 | # this application in ${ROOT}/var/www/localhost/htdocs/${PN}/ for you |
|
|
474 | |
|
|
475 | if ! use vhosts ; then |
|
|
476 | echo |
|
|
477 | elog "vhosts USE flag not set - auto-installing using webapp-config" |
|
|
478 | |
|
|
479 | webapp_getinstalltype |
|
|
480 | |
|
|
481 | G_HOSTNAME="localhost" |
|
|
482 | local my_mode=-I |
|
|
483 | webapp_read_config |
|
|
484 | |
|
|
485 | if [ "${IS_REPLACE}" = "1" ]; then |
|
|
486 | elog "${PN}-${PVR} is already installed - replacing" |
|
|
487 | my_mode=-I |
|
|
488 | elif [ "${IS_UPGRADE}" = "1" ]; then |
|
|
489 | elog "${REMOVE_PKG} is already installed - upgrading" |
|
|
490 | my_mode=-U |
|
|
491 | else |
|
|
492 | elog "${PN}-${PVR} is not installed - using install mode" |
|
|
493 | fi |
|
|
494 | |
|
|
495 | my_cmd="${WEBAPP_CONFIG} ${my_mode} -h localhost -u root -d ${INSTALL_DIR} ${PN} ${PVR}" |
332 | einfo "Running $my_cmd" |
496 | elog "Running ${my_cmd}" |
333 | $my_cmd |
497 | ${my_cmd} |
|
|
498 | |
|
|
499 | # remove the old version |
|
|
500 | # |
|
|
501 | # why do we do this? well ... |
|
|
502 | # |
|
|
503 | # normally, emerge -u installs a new version and then removes the |
|
|
504 | # old version. however, if the new version goes into a different |
|
|
505 | # slot to the old version, then the old version gets left behind |
|
|
506 | # |
|
|
507 | # if USE=-vhosts, then we want to remove the old version, because |
|
|
508 | # the user is relying on portage to do the magical thing for it |
|
|
509 | |
|
|
510 | if [ "${IS_UPGRADE}" = "1" ] ; then |
|
|
511 | elog "Removing old version ${REMOVE_PKG}" |
|
|
512 | |
|
|
513 | emerge -C "${REMOVE_PKG}" |
|
|
514 | fi |
|
|
515 | else |
|
|
516 | # vhosts flag is on |
|
|
517 | # |
|
|
518 | # let's tell the administrator what to do next |
|
|
519 | |
|
|
520 | elog |
|
|
521 | elog "The 'vhosts' USE flag is switched ON" |
|
|
522 | elog "This means that Portage will not automatically run webapp-config to" |
|
|
523 | elog "complete the installation." |
|
|
524 | elog |
|
|
525 | elog "To install ${PN}-${PVR} into a virtual host, run the following command:" |
|
|
526 | elog |
|
|
527 | elog " webapp-config -I -h <host> -d ${PN} ${PN} ${PVR}" |
|
|
528 | elog |
|
|
529 | elog "For more details, see the webapp-config(8) man page" |
334 | fi |
530 | fi |
335 | |
531 | |
336 | return 0 |
532 | return 0 |
337 | } |
533 | } |
|
|
534 | |
|
|
535 | function webapp_pkg_prerm () |
|
|
536 | { |
|
|
537 | # remove any virtual installs that there are |
|
|
538 | |
|
|
539 | local my_output |
|
|
540 | local x |
|
|
541 | |
|
|
542 | my_output="$(${WEBAPP_CONFIG} --list-installs ${PN} ${PVR})" |
|
|
543 | |
|
|
544 | if [ "${?}" != "0" ]; then |
|
|
545 | return |
|
|
546 | fi |
|
|
547 | |
|
|
548 | for x in ${my_output} ; do |
|
|
549 | [ -f ${x}/.webapp ] && . ${x}/.webapp || ewarn "Cannot find file ${x}/.webapp" |
|
|
550 | |
|
|
551 | if [ -z "${WEB_HOSTNAME}" -o -z "${WEB_INSTALLDIR}" ]; then |
|
|
552 | ewarn "Don't forget to use webapp-config to remove the copy of" |
|
|
553 | ewarn "${PN}-${PVR} installed in" |
|
|
554 | ewarn |
|
|
555 | ewarn " ${x}" |
|
|
556 | ewarn |
|
|
557 | else |
|
|
558 | # we have enough information to remove the virtual copy ourself |
|
|
559 | |
|
|
560 | ${WEBAPP_CONFIG} -C -h ${WEB_HOSTNAME} -d ${WEB_INSTALLDIR} |
|
|
561 | |
|
|
562 | # if the removal fails - we carry on anyway! |
|
|
563 | fi |
|
|
564 | done |
|
|
565 | } |