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