blob: cc71798f82f5cd3686868b46a05c976a62f7dee9 (
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
120
121
122
123
124
125
126
127
128
129
130
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/php-ext.eclass,v 1.7 2004/09/05 20:57:19 robbat2 Exp $
#
# Author: Tal Peer <coredumb@gentoo.org>
#
# The php-ext eclass provides a unified interface for compiling and
# installing standalone PHP extensions ('modules').
ECLASS=php-ext
INHERITED="$INHERITED $ECLASS"
EXPORT_FUNCTIONS src_compile src_install pkg_postinst
# ---begin ebuild configurable settings
# The extension name, this must be set, otherwise we die.
[ -z "$PHP_EXT_NAME" ] && die "No module name specified for the php-ext eclass."
# Wether the extensions is a Zend Engine extension
#(defaults to "no" and if you don't know what is it, you don't need it.)
[ -z "$PHP_EXT_ZENDEXT" ] && PHP_EXT_ZENDEXT="no"
# Wether or not to add a line in the php.ini for the extension
# (defaults to "yes" and shouldn't be changed in most cases)
[ -z "$PHP_EXT_INI" ] && PHP_EXT_INI="yes"
# ---end ebuild configurable settings
DEPEND="${DEPEND}
virtual/php
>=sys-devel/m4-1.4
>=sys-devel/libtool-1.4.3"
RDEPEND="${RDEPEND}
virtual/php"
php-ext_buildinilist () {
# work out the list of .ini files to edit/add to
if [ -z "${PHPSAPILIST}" ]; then
PHPSAPILIST="apache1 apache2 cli"
fi
PHPINIFILELIST=""
for x in ${PHPSAPILIST} ; do
if [ -f /etc/php/${x}-php4/php.ini ]; then
PHPINIFILELIST="${PHPINIFILELIST} /etc/php/${x}-php4/php.ini"
fi
done
if [[ ${PHPINIFILELIST} = "" ]]; then
msg="No PHP ini files found for this extension"
eerror ${msg}
die ${msg}
fi
# einfo "php.ini files found in $PHPINIFILELIST"
}
php-ext_src_compile() {
addpredict /usr/share/snmp/mibs/.index
#phpize creates configure out of config.m4
phpize
econf $myconf
emake || die
}
php-ext_src_install() {
chmod +x build/shtool
#this will usually be /usr/lib/php/extensions/no-debug-no-zts-20020409/
#but i prefer not taking this risk
EXT_DIR="`php-config --extension-dir 2>/dev/null`"
insinto $EXT_DIR
doins modules/$PHP_EXT_NAME.so
}
php-ext_pkg_postinst() {
if [ "$PHP_EXT_INI" = "yes" ] ; then
php-ext_buildinilist
php-ext_addextension "${EXT_DIR}/${PHP_EXT_NAME}.so"
fi
}
php-ext_extension_is_present () {
grep "^$1=$2" $3 > /dev/null 2>&1
}
php-ext_addextensiontoinifile () {
php-ext_extension_is_present $1 $2 $3 && return
einfo "Extension added to $3"
echo "$1=$2" >> $3
}
php-ext_addextension () {
if [ "${PHP_EXT_ZENDEXT}" = "yes" ]; then
ext="zend_extension"
else
ext="extension"
fi
for x in ${PHPINIFILELIST} ; do
php-ext_addextensiontoinifile "$ext" "$1" "$x"
done
}
php-ext_setting_is_present () {
grep "^$1=" $2 > /dev/null 2>&1
}
# $1 - setting name
# $2 - setting value
# $3 - file to add to
php-ext_addtoinifile () {
php-ext_setting_is_present $1 $3 && return
einfo "Added '$1=$2' to $3"
echo "$1=$2" >> $3
}
php-ext_addtoinifiles () {
for x in ${PHPINIFILELIST} ; do
php-ext_addtoinifile $1 $2 $x
done
}
|