| 1 |
vapier |
1.28 |
# Copyright 1999-2011 Gentoo Foundation |
| 2 |
stuart |
1.1 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
olemarkus |
1.30 |
# $Header: /var/cvsroot/gentoo-x86/eclass/php-pear-r1.eclass,v 1.29 2012/01/18 17:50:58 mabi Exp $ |
| 4 |
stuart |
1.1 |
|
| 5 |
jokey |
1.17 |
# @ECLASS: php-pear-r1.eclass |
| 6 |
|
|
# @MAINTAINER: |
| 7 |
|
|
# Gentoo PHP Team <php-bugs@gentoo.org> |
| 8 |
vapier |
1.28 |
# @AUTHOR: |
| 9 |
|
|
# Author: Tal Peer <coredumb@gentoo.org> |
| 10 |
|
|
# Author: Luca Longinotti <chtekk@gentoo.org> |
| 11 |
jokey |
1.17 |
# @BLURB: Provides means for an easy installation of PEAR packages. |
| 12 |
|
|
# @DESCRIPTION: |
| 13 |
|
|
# This eclass provides means for an easy installation of PEAR packages. |
| 14 |
|
|
# For more information on PEAR, see http://pear.php.net/ |
| 15 |
|
|
# Note that this eclass doesn't handle dependencies of PEAR packages |
| 16 |
|
|
# on purpose; please use (R)DEPEND to define them correctly! |
| 17 |
stuart |
1.1 |
|
| 18 |
armin76 |
1.20 |
inherit multilib |
| 19 |
|
|
|
| 20 |
stuart |
1.1 |
EXPORT_FUNCTIONS src_install |
| 21 |
|
|
|
| 22 |
beandog |
1.23 |
DEPEND="dev-lang/php |
| 23 |
mabi |
1.29 |
>=dev-php/pear-1.8.1" |
| 24 |
chtekk |
1.14 |
RDEPEND="${DEPEND}" |
| 25 |
|
|
|
| 26 |
jokey |
1.17 |
# @ECLASS-VARIABLE: PHP_PEAR_PKG_NAME |
| 27 |
|
|
# @DESCRIPTION: |
| 28 |
|
|
# Set this if the the PEAR package name differs from ${PN/PEAR-/} |
| 29 |
|
|
# (generally shouldn't be the case). |
| 30 |
chtekk |
1.14 |
[[ -z "${PHP_PEAR_PKG_NAME}" ]] && PHP_PEAR_PKG_NAME="${PN/PEAR-/}" |
| 31 |
stuart |
1.1 |
|
| 32 |
|
|
fix_PEAR_PV() { |
| 33 |
chtekk |
1.14 |
tmp="${PV}" |
| 34 |
|
|
tmp="${tmp/_/}" |
| 35 |
|
|
tmp="${tmp/rc/RC}" |
| 36 |
|
|
tmp="${tmp/beta/b}" |
| 37 |
jokey |
1.19 |
tmp="${tmp/alpha/a}" |
| 38 |
chtekk |
1.14 |
PEAR_PV="${tmp}" |
| 39 |
stuart |
1.1 |
} |
| 40 |
|
|
|
| 41 |
jokey |
1.17 |
# @ECLASS-VARIABLE: PEAR_PV |
| 42 |
|
|
# @DESCRIPTION: |
| 43 |
jokey |
1.19 |
# Set in ebuild if the eclass ${PV} mangling breaks SRC_URI for alpha/beta/rc versions |
| 44 |
jokey |
1.16 |
[[ -z "${PEAR_PV}" ]] && fix_PEAR_PV |
| 45 |
|
|
|
| 46 |
chtekk |
1.14 |
PEAR_PN="${PHP_PEAR_PKG_NAME}-${PEAR_PV}" |
| 47 |
stuart |
1.1 |
|
| 48 |
chtekk |
1.14 |
[[ -z "${SRC_URI}" ]] && SRC_URI="http://pear.php.net/get/${PEAR_PN}.tgz" |
| 49 |
|
|
[[ -z "${HOMEPAGE}" ]] && HOMEPAGE="http://pear.php.net/${PHP_PEAR_PKG_NAME}" |
| 50 |
chtekk |
1.7 |
|
| 51 |
stuart |
1.1 |
S="${WORKDIR}/${PEAR_PN}" |
| 52 |
|
|
|
| 53 |
jokey |
1.17 |
# @FUNCTION: php-pear-r1_src_install |
| 54 |
|
|
# @DESCRIPTION: |
| 55 |
|
|
# Takes care of standard install for PEAR packages. |
| 56 |
beu |
1.3 |
php-pear-r1_src_install() { |
| 57 |
chtekk |
1.6 |
# SNMP support |
| 58 |
stuart |
1.1 |
addpredict /usr/share/snmp/mibs/.index |
| 59 |
|
|
addpredict /var/lib/net-snmp/ |
| 60 |
olemarkus |
1.30 |
addpredict /var/lib/net-snmp/mib_indexes |
| 61 |
chtekk |
1.15 |
addpredict /session_mm_cli0.sem |
| 62 |
stuart |
1.1 |
|
| 63 |
olemarkus |
1.27 |
PHP_BIN="/usr/bin/php" |
| 64 |
sebastian |
1.8 |
|
| 65 |
chtekk |
1.6 |
cd "${S}" |
| 66 |
maekke |
1.22 |
|
| 67 |
armin76 |
1.20 |
if [[ -f "${WORKDIR}"/package2.xml ]] ; then |
| 68 |
|
|
mv -f "${WORKDIR}/package2.xml" "${S}" |
| 69 |
jokey |
1.21 |
if has_version '>=dev-php/PEAR-PEAR-1.7.0' ; then |
| 70 |
|
|
local WWW_DIR="/usr/share/webapps/${PN}/${PVR}/htdocs" |
| 71 |
mabi |
1.24 |
peardev -d php_bin="${PHP_BIN}" -d www_dir="${WWW_DIR}" \ |
| 72 |
jokey |
1.21 |
install --force --loose --nodeps --offline --packagingroot="${D}" \ |
| 73 |
|
|
"${S}/package2.xml" || die "Unable to install PEAR package" |
| 74 |
|
|
else |
| 75 |
mabi |
1.24 |
peardev -d php_bin="${PHP_BIN}" install --force --loose --nodeps --offline --packagingroot="${D}" \ |
| 76 |
jokey |
1.21 |
"${S}/package2.xml" || die "Unable to install PEAR package" |
| 77 |
|
|
fi |
| 78 |
jokey |
1.18 |
else |
| 79 |
armin76 |
1.20 |
mv -f "${WORKDIR}/package.xml" "${S}" |
| 80 |
jokey |
1.21 |
if has_version '>=dev-php/PEAR-PEAR-1.7.0' ; then |
| 81 |
|
|
local WWW_DIR="/usr/share/webapps/${PN}/${PVR}/htdocs" |
| 82 |
mabi |
1.24 |
peardev -d php_bin="${PHP_BIN}" -d www_dir="${WWW_DIR}" \ |
| 83 |
jokey |
1.21 |
install --force --loose --nodeps --offline --packagingroot="${D}" \ |
| 84 |
|
|
"${S}/package.xml" || die "Unable to install PEAR package" |
| 85 |
|
|
else |
| 86 |
mabi |
1.24 |
peardev -d php_bin="${PHP_BIN}" install --force --loose --nodeps --offline --packagingroot="${D}" \ |
| 87 |
jokey |
1.21 |
"${S}/package.xml" || die "Unable to install PEAR package" |
| 88 |
|
|
fi |
| 89 |
sebastian |
1.10 |
fi |
| 90 |
sebastian |
1.13 |
|
| 91 |
chtekk |
1.14 |
rm -Rf "${D}/usr/share/php/.channels" \ |
| 92 |
sebastian |
1.10 |
"${D}/usr/share/php/.depdblock" \ |
| 93 |
|
|
"${D}/usr/share/php/.depdb" \ |
| 94 |
|
|
"${D}/usr/share/php/.filemap" \ |
| 95 |
sebastian |
1.9 |
"${D}/usr/share/php/.lock" \ |
| 96 |
|
|
"${D}/usr/share/php/.registry" |
| 97 |
stuart |
1.1 |
} |