blob: 58a34733707f2b2977de347461464091fe50885c (
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
111
112
113
114
115
116
117
118
119
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/mod_php/mod_php-4.3.2.ebuild,v 1.9 2003/09/08 04:45:56 msterret Exp $
use apache2 && PHPSAPI="apache2" || PHPSAPI="apache1"
inherit php eutils
IUSE="${IUSE} apache2"
DESCRIPTION="Apache module for PHP"
KEYWORDS="x86 sparc ppc alpha hppa ~arm"
SLOT="0"
EXCLUDE_DB4_FIX=1
EXCLUDE_PEAR_FIX=1
DEPEND="${DEPEND}
|| (
>=net-www/apache-1.3.26-r2
apache2? ( >=net-www/apache-2.0.43-r1 )
)"
src_compile() {
#no readline on server SAPI
myconf="${myconf} --without-readline"
# Every Apache2 MPM EXCEPT prefork needs Zend Thread Safety
if [ "`use apache2`" ]; then
APACHE2_MPM="`apache2 -l |egrep 'worker|perchild|leader|threadpool|prefork'|xargs|cut -d. -f1`"
case "${APACHE2_MPM}" in
prefork) ;;
*) myconf="${myconf} --enable-experimental-zts" ;;
esac;
fi
# optional support for apache2
#&& myconf="${myconf} --with-apxs2=/usr/sbin/apxs2" \
#|| myconf="${myconf} --with-apxs=/usr/sbin/apxs"
#use apache2 \
has_version '>=net-www/apache-2' \
&& myconf="${myconf} --with-apxs2=/usr/sbin/apxs2" \
|| myconf="${myconf} --with-apxs=/usr/sbin/apxs"
#php CGI stuff
#--enable-discard-path --enable-force-cgi-redirect
php_src_compile
}
src_install() {
php_src_install
cp php.ini-dist php.ini
insinto /etc/php4
doins php.ini
if [ "`use apache2`" ] ; then
dosym /usr/lib/apache2-extramodules /etc/php4/lib
exeinto /usr/lib/apache2-extramodules
doexe .libs/libphp4.so
insinto /etc/apache2/conf/modules.d
doins ${FILESDIR}/70_mod_php.conf
dosym /etc/php4/php.ini /etc/apache2/conf/php.ini
else
dosym /usr/lib/apache-extramodules /etc/php4/lib
exeinto /usr/lib/apache-extramodules
doexe .libs/libphp4.so
insinto /etc/apache/conf/addon-modules
doins ${FILESDIR}/mod_php.conf
dosym /etc/php4/php.ini /etc/apache/conf/php.ini
dosym /etc/php4/php.ini /etc/apache/conf/addon-modules/php.ini
fi
}
apache2msg() {
ewarn "Edit /etc/conf.d/apache2 and add \"-D PHP4\""
ewarn "This is a CHANGE from previous behavior, which was \"-D PHP\""
ewarn "This is for the upcoming PHP5 support. The ebuild will attempt"
ewarn "to make this update between PHP and PHP4 automatically"
}
apache2fix() {
einfo "Attemping to update /etc/conf.d/apache2 automatically for the PHP/PHP4 change."
local oldfile="/etc/conf.d/apache2.old.`date +%Y%m%d%H%M%S`"
cp /etc/conf.d/apache2 ${oldfile}
sed -e 's,-D PHP,-D PHP4,g' ${oldfile} <${oldfile} >/etc/conf.d/apache2
}
pkg_preinst() {
[ "${APACHEVER}" -eq '2' ] && apache2fix
php_pkg_preinst
}
pkg_postinst() {
einfo "To have Apache run php programs, please do the following:"
if [ "`use apache2`" ] ; then
apache2msg
else
einfo "1. Execute the command:"
einfo " \"ebuild /var/db/pkg/dev-php/${PF}/${PF}.ebuild config\""
einfo "2. Edit /etc/conf.d/apache and add \"-D PHP4\""
einfo "That will include the php mime types in your configuration"
einfo "automagically and setup Apache to load php when it starts."
fi
}
pkg_config() {
if [ "`use apache2`" ] ; then
apache2msg
else
${ROOT}/usr/sbin/apacheaddmod \
${ROOT}/etc/apache/conf/apache.conf \
extramodules/libphp4.so mod_php4.c php4_module \
before=perl define=PHP4 addconf=conf/addon-modules/mod_php.conf
:;
fi
}
|