| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2011 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
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.10 2007/03/05 01:50:47 chtekk Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/php-pear-lib-r1.eclass,v 1.25 2012/06/23 14:58:17 olemarkus Exp $ |
| 4 | # |
4 | |
|
|
5 | # @ECLASS: php-pear-lib-r1.eclass |
|
|
6 | # @MAINTAINER: |
|
|
7 | # Gentoo PHP team <php-bugs@gentoo.org> |
|
|
8 | # @AUTHOR: |
| 5 | # Author: Luca Longinotti <chtekk@gentoo.org> |
9 | # Author: Luca Longinotti <chtekk@gentoo.org> |
| 6 | # Maintained by the PHP Team <php-bugs@gentoo.org> |
10 | # @BLURB: Provides means for an easy installation of PEAR-based libraries. |
| 7 | # |
11 | # @DESCRIPTION: |
| 8 | # The php-pear-lib-r1 eclass provides means for an easy installation of PEAR |
12 | # This class provides means for an easy installation of PEAR-based libraries, |
| 9 | # based libraries, such as Creole, Jargon, Phing etc., while retaining |
13 | # such as Creole, Jargon, Phing etc., while retaining the functionality to put |
| 10 | # the functionality to put the libraries into version-dependant directories. |
14 | # the libraries into version-dependant directories. |
| 11 | |
15 | |
| 12 | inherit depend.php |
16 | inherit depend.php multilib |
| 13 | |
17 | |
| 14 | EXPORT_FUNCTIONS src_install |
18 | EXPORT_FUNCTIONS pkg_setup src_install |
| 15 | |
19 | |
| 16 | DEPEND="dev-lang/php >=dev-php/PEAR-PEAR-1.4.6" |
20 | DEPEND="dev-lang/php |
|
|
21 | >=dev-php/pear-1.9.0" |
| 17 | RDEPEND="${DEPEND}" |
22 | RDEPEND="${DEPEND}" |
| 18 | |
23 | |
|
|
24 | 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 | S=${WORKDIR}/${PHP_PEAR_P} |
|
|
30 | |
|
|
31 | SRC_URI="http://${PHP_PEAR_URI}/get/${PHP_PEAR_P}.tgz" |
|
|
32 | fi |
|
|
33 | |
|
|
34 | |
|
|
35 | # @FUNCTION: php-pear-lib-r1_pkg_setup |
|
|
36 | # @DESCRIPTION: |
|
|
37 | # Adds required PEAR channel if necessary |
|
|
38 | php-pear-lib-r1_pkg_setup() { |
|
|
39 | if [[ -n $PHP_PEAR_CHANNEL ]] ; then |
|
|
40 | if [[ -f $PHP_PEAR_CHANNEL ]]; then |
|
|
41 | pear channel-add $PHP_PEAR_CHANNEL || einfo "Ignore any errors about existing channels" |
|
|
42 | else |
|
|
43 | die "Could not find channel file $PHP_PEAR_CHANNEL" |
|
|
44 | fi |
|
|
45 | fi |
|
|
46 | } |
|
|
47 | |
|
|
48 | |
|
|
49 | # @FUNCTION: php-pear-lib-r1_src_install |
|
|
50 | # @DESCRIPTION: |
|
|
51 | # Takes care of standard install for PEAR-based libraries. |
| 19 | php-pear-lib-r1_src_install() { |
52 | php-pear-lib-r1_src_install() { |
| 20 | has_php |
53 | has_php |
| 21 | |
54 | |
| 22 | # SNMP support |
55 | # SNMP support |
| 23 | addpredict /usr/share/snmp/mibs/.index |
56 | addpredict /usr/share/snmp/mibs/.index |
| 24 | addpredict /var/lib/net-snmp/ |
57 | addpredict /var/lib/net-snmp/ |
|
|
58 | addpredict /session_mm_cli0.sem |
| 25 | |
59 | |
| 26 | case "${CATEGORY}" in |
|
|
| 27 | dev-php) |
|
|
| 28 | if has_version '=dev-lang/php-5*' ; then |
|
|
| 29 | PHP_BIN="/usr/lib/php5/bin/php" |
60 | PHP_BIN="/usr/bin/php" |
| 30 | else |
|
|
| 31 | PHP_BIN="/usr/lib/php4/bin/php" |
|
|
| 32 | fi ;; |
|
|
| 33 | dev-php4) PHP_BIN="/usr/lib/php4/bin/php" ;; |
|
|
| 34 | dev-php5) PHP_BIN="/usr/lib/php5/bin/php" ;; |
|
|
| 35 | *) die "Version of PHP required by packages in category ${CATEGORY} unknown" |
|
|
| 36 | esac |
|
|
| 37 | |
61 | |
| 38 | cd "${S}" |
62 | cd "${S}" |
| 39 | mv -f "${WORKDIR}/package.xml" "${S}" |
|
|
| 40 | |
63 | |
| 41 | if has_version '>=dev-php/PEAR-PEAR-1.4.8' ; then |
64 | if [[ -f "${WORKDIR}"/package2.xml ]] ; then |
| 42 | 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 | mv -f "${WORKDIR}/package2.xml" "${S}" |
|
|
66 | local WWW_DIR="/usr/share/webapps/${PN}/${PVR}/htdocs" |
|
|
67 | peardev -d php_bin="${PHP_BIN}" -d www_dir="${WWW_DIR}" \ |
|
|
68 | install --force --loose --nodeps --offline --packagingroot="${D}" \ |
|
|
69 | "${S}/package2.xml" || die "Unable to install PEAR package" |
| 43 | else |
70 | else |
| 44 | pear -d php_bin="${PHP_BIN}" install --nodeps --packagingroot="${D}" "${S}/package.xml" > /dev/null || die "Unable to install PEAR package" |
71 | mv -f "${WORKDIR}/package.xml" "${S}" |
|
|
72 | local WWW_DIR="/usr/share/webapps/${PN}/${PVR}/htdocs" |
|
|
73 | peardev -d php_bin="${PHP_BIN}" -d www_dir="${WWW_DIR}" \ |
|
|
74 | install --force --loose --nodeps --offline --packagingroot="${D}" \ |
|
|
75 | "${S}/package.xml" || die "Unable to install PEAR package" |
| 45 | fi |
76 | fi |
| 46 | |
77 | |
| 47 | rm -Rf "${D}/usr/share/php/.channels" \ |
78 | rm -Rf "${D}/usr/share/php/.channels" \ |
| 48 | "${D}/usr/share/php/.depdblock" \ |
79 | "${D}/usr/share/php/.depdblock" \ |
| 49 | "${D}/usr/share/php/.depdb" \ |
80 | "${D}/usr/share/php/.depdb" \ |
| … | |
… | |
| 54 | # install to the correct phpX folder, if not specified |
85 | # install to the correct phpX folder, if not specified |
| 55 | # /usr/share/php will be kept, also sedding to substitute |
86 | # /usr/share/php will be kept, also sedding to substitute |
| 56 | # the path, many files can specify it wrongly |
87 | # the path, many files can specify it wrongly |
| 57 | if [[ -n "${PHP_SHARED_CAT}" ]] && [[ "${PHP_SHARED_CAT}" != "php" ]] ; then |
88 | if [[ -n "${PHP_SHARED_CAT}" ]] && [[ "${PHP_SHARED_CAT}" != "php" ]] ; then |
| 58 | mv -f "${D}/usr/share/php" "${D}/usr/share/${PHP_SHARED_CAT}" || die "Unable to move files" |
89 | mv -f "${D}/usr/share/php" "${D}/usr/share/${PHP_SHARED_CAT}" || die "Unable to move files" |
| 59 | find "${D}/" -type f -exec sed -e "s|/usr/share/php|/usr/share/${PHP_SHARED_CAT}|g" -i {} \; || die "Unable to change PHP path" |
90 | find "${D}/" -type f -exec sed -e "s|/usr/share/php|/usr/share/${PHP_SHARED_CAT}|g" -i {} \; \ |
|
|
91 | || die "Unable to change PHP path" |
| 60 | einfo |
92 | einfo |
| 61 | einfo "Installing to /usr/share/${PHP_SHARED_CAT} ..." |
93 | einfo "Installing to /usr/share/${PHP_SHARED_CAT} ..." |
| 62 | einfo |
94 | einfo |
| 63 | else |
95 | else |
| 64 | einfo |
96 | einfo |