| 1 |
stuart |
1.1 |
# Copyright 1999-2005 Gentoo Foundation
|
| 2 |
|
|
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
chriswhite |
1.1.1.1 |
# $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 |
chriswhite |
1.1.1.1 |
# Maintained by the PHP Herd <php-bugs@gentoo.org>
|
| 7 |
stuart |
1.1 |
#
|
| 8 |
chriswhite |
1.1.1.1 |
# 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 |
chriswhite |
1.1.1.1 |
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 |
chriswhite |
1.1.1.1 |
|
| 40 |
stuart |
1.1 |
S="${WORKDIR}/${PEAR_PN}"
|
| 41 |
|
|
|
| 42 |
chriswhite |
1.1.1.1 |
php-pear-r1_src_install() {
|
| 43 |
|
|
# SNMP support
|
| 44 |
stuart |
1.1 |
addpredict /usr/share/snmp/mibs/.index
|
| 45 |
|
|
addpredict /var/lib/net-snmp/
|
| 46 |
|
|
|
| 47 |
chriswhite |
1.1.1.1 |
cd "${S}"
|
| 48 |
|
|
mv "${WORKDIR}/package.xml" "${S}"
|
| 49 |
|
|
pear install --nodeps --installroot="${D}" "${S}/package.xml" || die "Unable to install PEAR package"
|
| 50 |
|
|
rm -rf "${D}/usr/share/php/.filemap" \
|
| 51 |
|
|
"${D}/usr/share/php/.lock"
|
| 52 |
stuart |
1.1 |
}
|