| 1 |
# Copyright 1999-2007 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/php-pear-r1.eclass,v 1.15 2007/03/22 20:12:56 chtekk Exp $
|
| 4 |
#
|
| 5 |
# Author: Tal Peer <coredumb@gentoo.org>
|
| 6 |
# Author: Luca Longinotti <chtekk@gentoo.org>
|
| 7 |
# Maintained by the PHP Team <php-bugs@gentoo.org>
|
| 8 |
#
|
| 9 |
# The php-pear-r1 eclass provides means for an easy installation of PEAR
|
| 10 |
# packages, see http://pear.php.net/
|
| 11 |
|
| 12 |
# Note that this eclass doesn't handle PEAR packages' dependencies on
|
| 13 |
# purpose, please use (R)DEPEND to define them correctly!
|
| 14 |
|
| 15 |
EXPORT_FUNCTIONS src_install
|
| 16 |
|
| 17 |
DEPEND="dev-lang/php >=dev-php/PEAR-PEAR-1.4.6"
|
| 18 |
RDEPEND="${DEPEND}"
|
| 19 |
|
| 20 |
# Set this if the the PEAR package name is different than the one in
|
| 21 |
# Portage (generally shouldn't be the case).
|
| 22 |
[[ -z "${PHP_PEAR_PKG_NAME}" ]] && PHP_PEAR_PKG_NAME="${PN/PEAR-/}"
|
| 23 |
|
| 24 |
fix_PEAR_PV() {
|
| 25 |
tmp="${PV}"
|
| 26 |
tmp="${tmp/_/}"
|
| 27 |
tmp="${tmp/rc/RC}"
|
| 28 |
tmp="${tmp/beta/b}"
|
| 29 |
PEAR_PV="${tmp}"
|
| 30 |
}
|
| 31 |
|
| 32 |
# Set PEAR_PV in ebuilds if the PV mangling for beta/rc versions breaks SRC_URI
|
| 33 |
[[ -z "${PEAR_PV}" ]] && fix_PEAR_PV
|
| 34 |
|
| 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 |
|
| 40 |
S="${WORKDIR}/${PEAR_PN}"
|
| 41 |
|
| 42 |
php-pear-r1_src_install() {
|
| 43 |
# SNMP support
|
| 44 |
addpredict /usr/share/snmp/mibs/.index
|
| 45 |
addpredict /var/lib/net-snmp/
|
| 46 |
addpredict /session_mm_cli0.sem
|
| 47 |
|
| 48 |
case "${CATEGORY}" in
|
| 49 |
dev-php)
|
| 50 |
if has_version '=dev-lang/php-5*' ; then
|
| 51 |
PHP_BIN="/usr/lib/php5/bin/php"
|
| 52 |
else
|
| 53 |
PHP_BIN="/usr/lib/php4/bin/php"
|
| 54 |
fi ;;
|
| 55 |
dev-php4) PHP_BIN="/usr/lib/php4/bin/php" ;;
|
| 56 |
dev-php5) PHP_BIN="/usr/lib/php5/bin/php" ;;
|
| 57 |
*) die "Version of PHP required by packages in category ${CATEGORY} unknown"
|
| 58 |
esac
|
| 59 |
|
| 60 |
cd "${S}"
|
| 61 |
mv -f "${WORKDIR}/package.xml" "${S}"
|
| 62 |
|
| 63 |
if has_version '>=dev-php/PEAR-PEAR-1.4.8' ; then
|
| 64 |
pear -d php_bin="${PHP_BIN}" install --force --loose --nodeps --offline --packagingroot="${D}" "${S}/package.xml" > /dev/null || die "Unable to install PEAR package"
|
| 65 |
else
|
| 66 |
pear -d php_bin="${PHP_BIN}" install --nodeps --packagingroot="${D}" "${S}/package.xml" > /dev/null || die "Unable to install PEAR package"
|
| 67 |
fi
|
| 68 |
|
| 69 |
rm -Rf "${D}/usr/share/php/.channels" \
|
| 70 |
"${D}/usr/share/php/.depdblock" \
|
| 71 |
"${D}/usr/share/php/.depdb" \
|
| 72 |
"${D}/usr/share/php/.filemap" \
|
| 73 |
"${D}/usr/share/php/.lock" \
|
| 74 |
"${D}/usr/share/php/.registry"
|
| 75 |
}
|