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