1 |
stuart |
1.1 |
# Copyright 1999-2005 Gentoo Foundation |
2 |
|
|
# Distributed under the terms of the GNU General Public License v2 |
3 |
sebastian |
1.8 |
# $Header: /var/cvsroot/gentoo-x86/eclass/php-pear-r1.eclass,v 1.7 2005/11/20 01:35:05 chtekk Exp $ |
4 |
stuart |
1.1 |
# |
5 |
|
|
# Author: Tal Peer <coredumb@gentoo.org> |
6 |
chtekk |
1.7 |
# Maintained by the PHP Herd <php-bugs@gentoo.org> |
7 |
stuart |
1.1 |
# |
8 |
chtekk |
1.7 |
# The php-pear-r1 eclass provides means for an easy installation of PEAR |
9 |
stuart |
1.1 |
# packages, see http://pear.php.net |
10 |
|
|
|
11 |
|
|
# Note that this eclass doesn't handle PEAR packages' dependencies on |
12 |
|
|
# purpose, please use (R)DEPEND to define them. |
13 |
|
|
|
14 |
|
|
EXPORT_FUNCTIONS src_install |
15 |
|
|
|
16 |
|
|
# Set this is the the package name on PEAR is different than the one in |
17 |
|
|
# portage (generally shouldn't be the case). |
18 |
|
|
[ -z "${PHP_PEAR_PKG_NAME}" ] && PHP_PEAR_PKG_NAME=${PN/PEAR-/} |
19 |
|
|
|
20 |
|
|
# We must depend on the base package as we need it to do |
21 |
|
|
# install tasks (it provides the pear binary). |
22 |
hollow |
1.4 |
DEPEND="${DEPEND} dev-lang/php >=dev-php/PEAR-PEAR-1.3.6" |
23 |
stuart |
1.1 |
RDEPEND="${RDEPEND} ${DEPEND}" |
24 |
|
|
|
25 |
|
|
fix_PEAR_PV() { |
26 |
|
|
tmp=${PV} |
27 |
|
|
tmp=${tmp/_/} |
28 |
|
|
tmp=${tmp/rc/RC} |
29 |
|
|
tmp=${tmp/beta/b} |
30 |
|
|
PEAR_PV=${tmp} |
31 |
|
|
} |
32 |
|
|
|
33 |
|
|
PEAR_PV="" |
34 |
|
|
fix_PEAR_PV |
35 |
|
|
PEAR_PN=${PHP_PEAR_PKG_NAME}-${PEAR_PV} |
36 |
|
|
|
37 |
|
|
[ -z "${SRC_URI}" ] && SRC_URI="http://pear.php.net/get/${PEAR_PN}.tgz" |
38 |
|
|
[ -z "${HOMEPAGE}" ] && HOMEPAGE="http://pear.php.net/${PHP_PEAR_PKG_NAME}" |
39 |
chtekk |
1.7 |
|
40 |
stuart |
1.1 |
S="${WORKDIR}/${PEAR_PN}" |
41 |
|
|
|
42 |
beu |
1.3 |
php-pear-r1_src_install() { |
43 |
chtekk |
1.6 |
# SNMP support |
44 |
stuart |
1.1 |
addpredict /usr/share/snmp/mibs/.index |
45 |
|
|
addpredict /var/lib/net-snmp/ |
46 |
|
|
|
47 |
sebastian |
1.8 |
case "${CATEGORY}" in |
48 |
|
|
dev-php) |
49 |
|
|
if has_version '=dev-lang/php-5*' ; then |
50 |
|
|
PHP_BIN="/usr/lib/php5/bin/php" |
51 |
|
|
else |
52 |
|
|
PHP_BIN="/usr/lib/php4/bin/php" |
53 |
|
|
fi ;; |
54 |
|
|
dev-php4) PHP_BIN="/usr/lib/php4/bin/php" ;; |
55 |
|
|
dev-php5) PHP_BIN="/usr/lib/php5/bin/php" ;; |
56 |
|
|
*) die "I don't know which version of PHP packages in ${CATEGORY} require" |
57 |
|
|
esac |
58 |
|
|
|
59 |
chtekk |
1.6 |
cd "${S}" |
60 |
|
|
mv "${WORKDIR}/package.xml" "${S}" |
61 |
sebastian |
1.8 |
pear -d php_bin="${PHP_BIN}" install --nodeps --installroot="${D}" "${S}/package.xml" || die "Unable to install PEAR package" |
62 |
chtekk |
1.6 |
rm -rf "${D}/usr/share/php/.filemap" \ |
63 |
|
|
"${D}/usr/share/php/.lock" |
64 |
stuart |
1.1 |
} |