| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2007 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-r1.eclass,v 1.22 2009/01/12 23:09:02 maekke Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/php-pear-r1.eclass,v 1.27 2010/10/30 17:01:25 olemarkus Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Tal Peer <coredumb@gentoo.org> |
5 | # Author: Tal Peer <coredumb@gentoo.org> |
| 6 | # Author: Luca Longinotti <chtekk@gentoo.org> |
6 | # Author: Luca Longinotti <chtekk@gentoo.org> |
| 7 | |
7 | |
| 8 | # @ECLASS: php-pear-r1.eclass |
8 | # @ECLASS: php-pear-r1.eclass |
| … | |
… | |
| 17 | |
17 | |
| 18 | inherit multilib |
18 | inherit multilib |
| 19 | |
19 | |
| 20 | EXPORT_FUNCTIONS src_install |
20 | EXPORT_FUNCTIONS src_install |
| 21 | |
21 | |
| 22 | DEPEND="dev-lang/php >=dev-php/PEAR-PEAR-1.6.1" |
22 | DEPEND="dev-lang/php |
|
|
23 | || ( ( >=dev-php/PEAR-PEAR-1.6.1 <dev-php/PEAR-PEAR-1.8.1 ) |
|
|
24 | >=dev-php/pear-1.8.1 )" |
| 23 | RDEPEND="${DEPEND}" |
25 | RDEPEND="${DEPEND}" |
| 24 | |
26 | |
| 25 | # @ECLASS-VARIABLE: PHP_PEAR_PKG_NAME |
27 | # @ECLASS-VARIABLE: PHP_PEAR_PKG_NAME |
| 26 | # @DESCRIPTION: |
28 | # @DESCRIPTION: |
| 27 | # Set this if the the PEAR package name differs from ${PN/PEAR-/} |
29 | # Set this if the the PEAR package name differs from ${PN/PEAR-/} |
| … | |
… | |
| 56 | # SNMP support |
58 | # SNMP support |
| 57 | addpredict /usr/share/snmp/mibs/.index |
59 | addpredict /usr/share/snmp/mibs/.index |
| 58 | addpredict /var/lib/net-snmp/ |
60 | addpredict /var/lib/net-snmp/ |
| 59 | addpredict /session_mm_cli0.sem |
61 | addpredict /session_mm_cli0.sem |
| 60 | |
62 | |
| 61 | case "${CATEGORY}" in |
63 | PHP_BIN="/usr/bin/php" |
| 62 | dev-php) |
|
|
| 63 | if has_version '=dev-lang/php-5*' ; then |
|
|
| 64 | PHP_BIN="/usr/$(get_libdir)/php5/bin/php" |
|
|
| 65 | else |
|
|
| 66 | PHP_BIN="/usr/$(get_libdir)/php4/bin/php" |
|
|
| 67 | fi ;; |
|
|
| 68 | dev-php4) PHP_BIN="/usr/$(get_libdir)/php4/bin/php" ;; |
|
|
| 69 | dev-php5) PHP_BIN="/usr/$(get_libdir)/php5/bin/php" ;; |
|
|
| 70 | *) die "Version of PHP required by packages in category ${CATEGORY} unknown" |
|
|
| 71 | esac |
|
|
| 72 | |
64 | |
| 73 | cd "${S}" |
65 | cd "${S}" |
| 74 | |
66 | |
| 75 | if [[ -f "${WORKDIR}"/package2.xml ]] ; then |
67 | if [[ -f "${WORKDIR}"/package2.xml ]] ; then |
| 76 | mv -f "${WORKDIR}/package2.xml" "${S}" |
68 | mv -f "${WORKDIR}/package2.xml" "${S}" |
| 77 | if has_version '>=dev-php/PEAR-PEAR-1.7.0' ; then |
69 | if has_version '>=dev-php/PEAR-PEAR-1.7.0' ; then |
| 78 | local WWW_DIR="/usr/share/webapps/${PN}/${PVR}/htdocs" |
70 | local WWW_DIR="/usr/share/webapps/${PN}/${PVR}/htdocs" |
| 79 | pear -d php_bin="${PHP_BIN}" -d www_dir="${WWW_DIR}" \ |
71 | peardev -d php_bin="${PHP_BIN}" -d www_dir="${WWW_DIR}" \ |
| 80 | install --force --loose --nodeps --offline --packagingroot="${D}" \ |
72 | install --force --loose --nodeps --offline --packagingroot="${D}" \ |
| 81 | "${S}/package2.xml" || die "Unable to install PEAR package" |
73 | "${S}/package2.xml" || die "Unable to install PEAR package" |
| 82 | else |
74 | else |
| 83 | pear -d php_bin="${PHP_BIN}" install --force --loose --nodeps --offline --packagingroot="${D}" \ |
75 | peardev -d php_bin="${PHP_BIN}" install --force --loose --nodeps --offline --packagingroot="${D}" \ |
| 84 | "${S}/package2.xml" || die "Unable to install PEAR package" |
76 | "${S}/package2.xml" || die "Unable to install PEAR package" |
| 85 | fi |
77 | fi |
| 86 | else |
78 | else |
| 87 | mv -f "${WORKDIR}/package.xml" "${S}" |
79 | mv -f "${WORKDIR}/package.xml" "${S}" |
| 88 | if has_version '>=dev-php/PEAR-PEAR-1.7.0' ; then |
80 | if has_version '>=dev-php/PEAR-PEAR-1.7.0' ; then |
| 89 | local WWW_DIR="/usr/share/webapps/${PN}/${PVR}/htdocs" |
81 | local WWW_DIR="/usr/share/webapps/${PN}/${PVR}/htdocs" |
| 90 | pear -d php_bin="${PHP_BIN}" -d www_dir="${WWW_DIR}" \ |
82 | peardev -d php_bin="${PHP_BIN}" -d www_dir="${WWW_DIR}" \ |
| 91 | install --force --loose --nodeps --offline --packagingroot="${D}" \ |
83 | install --force --loose --nodeps --offline --packagingroot="${D}" \ |
| 92 | "${S}/package.xml" || die "Unable to install PEAR package" |
84 | "${S}/package.xml" || die "Unable to install PEAR package" |
| 93 | else |
85 | else |
| 94 | pear -d php_bin="${PHP_BIN}" install --force --loose --nodeps --offline --packagingroot="${D}" \ |
86 | peardev -d php_bin="${PHP_BIN}" install --force --loose --nodeps --offline --packagingroot="${D}" \ |
| 95 | "${S}/package.xml" || die "Unable to install PEAR package" |
87 | "${S}/package.xml" || die "Unable to install PEAR package" |
| 96 | fi |
88 | fi |
| 97 | fi |
89 | fi |
| 98 | |
90 | |
| 99 | rm -Rf "${D}/usr/share/php/.channels" \ |
91 | rm -Rf "${D}/usr/share/php/.channels" \ |