blob: 0638453df891fd2d8231e47c3d80844cb43089f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/webapp-apache.eclass,v 1.29 2007/07/29 16:37:20 phreak Exp $
#
# Author: Stuart Herbert <stuart@gentoo.org>
#
# Based on discussions held on gentoo-dev mailing list, and a bug report
# contributed by Ian Leitch <port001@w0r.mine.nu> in bug #14870,
# and robbat2's mod_php ebuild
#
# This package will be offically deprecated when vhost-config and
# webapp-config from GLEP11 are released.
IUSE="apache2"
DEPEND="${DEPEND} www-servers/apache"
EXPORT_FUNCTIONS pkg_setup
# NOTE:
#
# It is deliberate that the functions in this eclass are called
# 'webapp-xxx' rather than 'webapp-apache-xxx'. This ensures
# that we can drop in eclasses for other web servers without
# having to change the ebuilds!
function webapp-apache-detect ()
{
APACHEVER=
has_version '=www-servers/apache-2*' && APACHEVER=2 && CONFVER=2
[ -z "${APACHEVER}" ] && has_version '=www-servers/apache-2*' && APACHEVER=2 && CONFVER=2
if [ "${APACHEVER}+" = "+" ]; then
# no apache version detected
return 1
fi
APACHECONF="/etc/apache${CONFVER}/conf/apache${CONFVER}.conf"
APACHECONF_COMMON="/etc/apache${CONFVER}/conf/commonapache${CONFVER}.conf"
APACHECONF_DIR="/etc/apache${CONFVER}/conf/"
WEBAPP_SERVER="Apache v${APACHEVER}"
}
# run the function, so we know which version of apache we are using
function webapp-detect () {
webapp-apache-detect || return 1
webapp-determine-installowner
webapp-determine-htdocsdir
webapp-determine-cgibindir
# explicit return here to ensure the return code
# from webapp-determine-cgibindir above isn't returned instead
return 0
}
function webapp-mkdirs () {
webapp-determine-htdocsdir
webapp-determine-cgibindir
keepdir "$HTTPD_ROOT"
fowners "$HTTPD_USER":"$HTTPD_GROUP" "$HTTPD_ROOT"
fperms 755 "$HTTPD_ROOT"
# explicit return here to ensure the return code
# from above isn't returned instead
return 0
}
function webapp-determine-htdocsdir ()
{
webapp-determine-installowner
# HTTPD_ROOT="`grep '^DocumentRoot' ${APACHECONF} | cut -d ' ' -f 2`"
# [ -z "${HTTPD_ROOT}" ] && HTTPD_ROOT="/home/httpd/htdocs/"
# temporary fix for webapps
HTTPD_ROOT="/var/www/localhost/htdocs/"
}
function webapp-determine-cgibindir ()
{
#HTTPD_CGIBIN="`grep 'ScriptAlias /cgi-bin/' ${APACHECONF_COMMON} | cut -d ' ' -f 7`"
#[ -z "${HTTPD_CGIBIN}" ] && HTTPD_CGIBIN="/home/httpd/cgi-bin/"
# temporary fix for webapps
HTTPD_CGIBIN="/var/www/localhost/cgi-bin/"
}
function webapp-determine-installowner ()
{
HTTPD_USER="apache"
HTTPD_GROUP="apache"
}
function webapp-pkg_setup ()
{
if [ "$1" == "1" ]; then
msg="I couldn't find an installation of Apache"
eerror "${msg}"
die "${msg}"
fi
ewarn "Ebuilds (like this one) that use the webapp-apache.eclass need to"
ewarn "be converted to use the new webapp.eclass, to be compatible with"
ewarn "webapp-config."
ewarn
ewarn "Please file a bug on http://bugs.gentoo.org/, stating that this"
ewarn "ebuild needs converting to use the new approach."
}
|