1 |
vapier |
1.24 |
# Copyright 1999-2011 Gentoo Foundation |
2 |
chtekk |
1.1 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
mabi |
1.26 |
# $Header: /var/cvsroot/gentoo-x86/eclass/php-pear-lib-r1.eclass,v 1.25 2012/06/23 14:58:17 olemarkus Exp $ |
4 |
jokey |
1.12 |
|
5 |
|
|
# @ECLASS: php-pear-lib-r1.eclass |
6 |
|
|
# @MAINTAINER: |
7 |
|
|
# Gentoo PHP team <php-bugs@gentoo.org> |
8 |
vapier |
1.24 |
# @AUTHOR: |
9 |
|
|
# Author: Luca Longinotti <chtekk@gentoo.org> |
10 |
jokey |
1.12 |
# @BLURB: Provides means for an easy installation of PEAR-based libraries. |
11 |
|
|
# @DESCRIPTION: |
12 |
|
|
# This class provides means for an easy installation of PEAR-based libraries, |
13 |
|
|
# such as Creole, Jargon, Phing etc., while retaining the functionality to put |
14 |
|
|
# the libraries into version-dependant directories. |
15 |
chtekk |
1.1 |
|
16 |
mabi |
1.26 |
inherit multilib |
17 |
chtekk |
1.1 |
|
18 |
olemarkus |
1.20 |
EXPORT_FUNCTIONS pkg_setup src_install |
19 |
chtekk |
1.1 |
|
20 |
mabi |
1.16 |
DEPEND="dev-lang/php |
21 |
olemarkus |
1.20 |
>=dev-php/pear-1.9.0" |
22 |
chtekk |
1.10 |
RDEPEND="${DEPEND}" |
23 |
chtekk |
1.1 |
|
24 |
olemarkus |
1.20 |
if [[ -n $PHP_PEAR_CHANNEL ]] ; then |
25 |
|
|
PHP_PEAR_PV=${PV/_rc/RC} |
26 |
|
|
[[ -z ${PHP_PEAR_PN} ]] && die "Missing PHP_PEAR_PN. Please notify the maintainer" |
27 |
|
|
PHP_PEAR_P=${PHP_PEAR_PN}-${PHP_PEAR_PV} |
28 |
|
|
|
29 |
mabi |
1.26 |
S="${WORKDIR}/${PHP_PEAR_P}" |
30 |
olemarkus |
1.20 |
|
31 |
olemarkus |
1.23 |
SRC_URI="http://${PHP_PEAR_URI}/get/${PHP_PEAR_P}.tgz" |
32 |
olemarkus |
1.20 |
fi |
33 |
|
|
|
34 |
|
|
|
35 |
|
|
# @FUNCTION: php-pear-lib-r1_pkg_setup |
36 |
vapier |
1.24 |
# @DESCRIPTION: |
37 |
olemarkus |
1.20 |
# Adds required PEAR channel if necessary |
38 |
|
|
php-pear-lib-r1_pkg_setup() { |
39 |
|
|
if [[ -n $PHP_PEAR_CHANNEL ]] ; then |
40 |
olemarkus |
1.22 |
if [[ -f $PHP_PEAR_CHANNEL ]]; then |
41 |
olemarkus |
1.25 |
pear channel-add $PHP_PEAR_CHANNEL || einfo "Ignore any errors about existing channels" |
42 |
vapier |
1.24 |
else |
43 |
olemarkus |
1.25 |
die "Could not find channel file $PHP_PEAR_CHANNEL" |
44 |
olemarkus |
1.22 |
fi |
45 |
olemarkus |
1.20 |
fi |
46 |
|
|
} |
47 |
|
|
|
48 |
|
|
|
49 |
jokey |
1.12 |
# @FUNCTION: php-pear-lib-r1_src_install |
50 |
|
|
# @DESCRIPTION: |
51 |
|
|
# Takes care of standard install for PEAR-based libraries. |
52 |
chtekk |
1.1 |
php-pear-lib-r1_src_install() { |
53 |
|
|
# SNMP support |
54 |
|
|
addpredict /usr/share/snmp/mibs/.index |
55 |
|
|
addpredict /var/lib/net-snmp/ |
56 |
chtekk |
1.11 |
addpredict /session_mm_cli0.sem |
57 |
chtekk |
1.1 |
|
58 |
olemarkus |
1.19 |
PHP_BIN="/usr/bin/php" |
59 |
sebastian |
1.3 |
|
60 |
chtekk |
1.1 |
cd "${S}" |
61 |
sebastian |
1.9 |
|
62 |
maekke |
1.15 |
if [[ -f "${WORKDIR}"/package2.xml ]] ; then |
63 |
|
|
mv -f "${WORKDIR}/package2.xml" "${S}" |
64 |
olemarkus |
1.20 |
local WWW_DIR="/usr/share/webapps/${PN}/${PVR}/htdocs" |
65 |
|
|
peardev -d php_bin="${PHP_BIN}" -d www_dir="${WWW_DIR}" \ |
66 |
|
|
install --force --loose --nodeps --offline --packagingroot="${D}" \ |
67 |
|
|
"${S}/package2.xml" || die "Unable to install PEAR package" |
68 |
maekke |
1.15 |
else |
69 |
|
|
mv -f "${WORKDIR}/package.xml" "${S}" |
70 |
olemarkus |
1.20 |
local WWW_DIR="/usr/share/webapps/${PN}/${PVR}/htdocs" |
71 |
|
|
peardev -d php_bin="${PHP_BIN}" -d www_dir="${WWW_DIR}" \ |
72 |
|
|
install --force --loose --nodeps --offline --packagingroot="${D}" \ |
73 |
|
|
"${S}/package.xml" || die "Unable to install PEAR package" |
74 |
maekke |
1.15 |
fi |
75 |
sebastian |
1.9 |
|
76 |
chtekk |
1.10 |
rm -Rf "${D}/usr/share/php/.channels" \ |
77 |
sebastian |
1.5 |
"${D}/usr/share/php/.depdblock" \ |
78 |
|
|
"${D}/usr/share/php/.depdb" \ |
79 |
|
|
"${D}/usr/share/php/.filemap" \ |
80 |
chtekk |
1.1 |
"${D}/usr/share/php/.lock" \ |
81 |
|
|
"${D}/usr/share/php/.registry" |
82 |
|
|
|
83 |
mabi |
1.26 |
einfo |
84 |
|
|
einfo "Installing to /usr/share/php ..." |
85 |
|
|
einfo |
86 |
chtekk |
1.1 |
} |