| 1 |
# Copyright 1999-2005 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/php-pear-lib-r1.eclass,v 1.6 2006/01/23 22:53:31 chtekk Exp $
|
| 4 |
#
|
| 5 |
# Author: Luca Longinotti <chtekk@gentoo.org>
|
| 6 |
# Maintained by the PHP Herd <php-bugs@gentoo.org>
|
| 7 |
#
|
| 8 |
# Based on Tal Peer's <coredumb@gentoo.org> work on php-pear.eclass.
|
| 9 |
#
|
| 10 |
# The php-pear-lib-r1 eclass provides means for an easy installation of PEAR
|
| 11 |
# based libraries, such as Creole, Jargon, Phing etc., while retaining
|
| 12 |
# the functionality to put the libraries into version-dependant dirs.
|
| 13 |
|
| 14 |
inherit depend.php
|
| 15 |
|
| 16 |
EXPORT_FUNCTIONS src_install
|
| 17 |
|
| 18 |
# We must depend on the base package as we need it to let
|
| 19 |
# PEAR work, as well as PEAR itself.
|
| 20 |
DEPEND="${DEPEND} dev-lang/php >=dev-php/PEAR-PEAR-1.3.6"
|
| 21 |
RDEPEND="${RDEPEND} ${DEPEND}"
|
| 22 |
|
| 23 |
php-pear-lib-r1_src_install() {
|
| 24 |
has_php
|
| 25 |
|
| 26 |
# SNMP support
|
| 27 |
addpredict /usr/share/snmp/mibs/.index
|
| 28 |
addpredict /var/lib/net-snmp/
|
| 29 |
|
| 30 |
case "${CATEGORY}" in
|
| 31 |
dev-php)
|
| 32 |
if has_version '=dev-lang/php-5*' ; then
|
| 33 |
PHP_BIN="/usr/lib/php5/bin/php"
|
| 34 |
else
|
| 35 |
PHP_BIN="/usr/lib/php4/bin/php"
|
| 36 |
fi ;;
|
| 37 |
dev-php4) PHP_BIN="/usr/lib/php4/bin/php" ;;
|
| 38 |
dev-php5) PHP_BIN="/usr/lib/php5/bin/php" ;;
|
| 39 |
*) die "I don't know which version of PHP packages in ${CATEGORY} require"
|
| 40 |
esac
|
| 41 |
|
| 42 |
cd "${S}"
|
| 43 |
mv "${WORKDIR}/package.xml" "${S}"
|
| 44 |
if has_version '=dev-php/PEAR-PEAR-1.3*' ; then
|
| 45 |
pear -d php_bin="${PHP_BIN}" install --nodeps --installroot="${D}" "${S}/package.xml" || die "Unable to install PEAR package"
|
| 46 |
else
|
| 47 |
pear -d php_bin="${PHP_BIN}" install --offline --nodeps --packagingroot="${D}" "${S}/package.xml" || die "Unable to install PEAR package"
|
| 48 |
fi
|
| 49 |
rm -rf "${D}/usr/share/php/.channels" \
|
| 50 |
"${D}/usr/share/php/.depdblock" \
|
| 51 |
"${D}/usr/share/php/.depdb" \
|
| 52 |
"${D}/usr/share/php/.filemap" \
|
| 53 |
"${D}/usr/share/php/.lock" \
|
| 54 |
"${D}/usr/share/php/.registry"
|
| 55 |
|
| 56 |
# install to the correct phpX folder, if not specified
|
| 57 |
# /usr/share/php will be kept, also sedding to substitute
|
| 58 |
# the path, many files can specify it wrongly
|
| 59 |
if [ -n "${PHP_SHARED_CAT}" ] && [ "${PHP_SHARED_CAT}" != "php" ] ; then
|
| 60 |
mv -f "${D}/usr/share/php" "${D}/usr/share/${PHP_SHARED_CAT}" || die "Unable to move files"
|
| 61 |
find "${D}/" -type f -exec sed -e "s|/usr/share/php|/usr/share/${PHP_SHARED_CAT}|g" -i {} \; || die "Unable to change PHP path"
|
| 62 |
einfo
|
| 63 |
einfo "Installing to /usr/share/${PHP_SHARED_CAT} ..."
|
| 64 |
einfo
|
| 65 |
else
|
| 66 |
einfo
|
| 67 |
einfo "Installing to /usr/share/php ..."
|
| 68 |
einfo
|
| 69 |
fi
|
| 70 |
}
|