| 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-lib-r1.eclass,v 1.14 2008/03/19 09:27:28 jokey Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/php-pear-lib-r1.eclass,v 1.15 2009/01/12 22:48:06 maekke Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Luca Longinotti <chtekk@gentoo.org> |
5 | # Author: Luca Longinotti <chtekk@gentoo.org> |
| 6 | |
6 | |
| 7 | # @ECLASS: php-pear-lib-r1.eclass |
7 | # @ECLASS: php-pear-lib-r1.eclass |
| 8 | # @MAINTAINER: |
8 | # @MAINTAINER: |
| … | |
… | |
| 43 | *) die "Version of PHP required by packages in category ${CATEGORY} unknown" |
43 | *) die "Version of PHP required by packages in category ${CATEGORY} unknown" |
| 44 | esac |
44 | esac |
| 45 | |
45 | |
| 46 | cd "${S}" |
46 | cd "${S}" |
| 47 | |
47 | |
| 48 | if [[ -f "${WORKDIR}"/package2.xml ]] ; then |
48 | if [[ -f "${WORKDIR}"/package2.xml ]] ; then |
| 49 | mv -f "${WORKDIR}/package2.xml" "${S}" |
49 | mv -f "${WORKDIR}/package2.xml" "${S}" |
| 50 | if has_version '>=dev-php/PEAR-PEAR-1.7.0' ; then |
50 | if has_version '>=dev-php/PEAR-PEAR-1.7.0' ; then |
| 51 | local WWW_DIR="/usr/share/webapps/${PN}/${PVR}/htdocs" |
51 | local WWW_DIR="/usr/share/webapps/${PN}/${PVR}/htdocs" |
| 52 | pear -d php_bin="${PHP_BIN}" -d www_dir="${WWW_DIR}" \ |
52 | pear -d php_bin="${PHP_BIN}" -d www_dir="${WWW_DIR}" \ |
| 53 | install --force --loose --nodeps --offline --packagingroot="${D}" \ |
53 | install --force --loose --nodeps --offline --packagingroot="${D}" \ |
| 54 | "${S}/package2.xml" || die "Unable to install PEAR package" |
54 | "${S}/package2.xml" || die "Unable to install PEAR package" |
| 55 | else |
55 | else |
| 56 | pear -d php_bin="${PHP_BIN}" install --force --loose --nodeps --offline --packagingroot="${D}" \ |
56 | pear -d php_bin="${PHP_BIN}" install --force --loose --nodeps --offline --packagingroot="${D}" \ |
| 57 | "${S}/package2.xml" || die "Unable to install PEAR package" |
57 | "${S}/package2.xml" || die "Unable to install PEAR package" |
| 58 | fi |
58 | fi |
| 59 | else |
59 | else |
| 60 | mv -f "${WORKDIR}/package.xml" "${S}" |
60 | mv -f "${WORKDIR}/package.xml" "${S}" |
| 61 | if has_version '>=dev-php/PEAR-PEAR-1.7.0' ; then |
61 | if has_version '>=dev-php/PEAR-PEAR-1.7.0' ; then |
| 62 | local WWW_DIR="/usr/share/webapps/${PN}/${PVR}/htdocs" |
62 | local WWW_DIR="/usr/share/webapps/${PN}/${PVR}/htdocs" |
| 63 | pear -d php_bin="${PHP_BIN}" -d www_dir="${WWW_DIR}" \ |
63 | pear -d php_bin="${PHP_BIN}" -d www_dir="${WWW_DIR}" \ |
| 64 | install --force --loose --nodeps --offline --packagingroot="${D}" \ |
64 | install --force --loose --nodeps --offline --packagingroot="${D}" \ |
| 65 | "${S}/package.xml" || die "Unable to install PEAR package" |
65 | "${S}/package.xml" || die "Unable to install PEAR package" |
| 66 | else |
66 | else |
| 67 | pear -d php_bin="${PHP_BIN}" install --force --loose --nodeps --offline --packagingroot="${D}" \ |
67 | pear -d php_bin="${PHP_BIN}" install --force --loose --nodeps --offline --packagingroot="${D}" \ |
| 68 | "${S}/package.xml" || die "Unable to install PEAR package" |
68 | "${S}/package.xml" || die "Unable to install PEAR package" |
| 69 | fi |
69 | fi |
| 70 | fi |
70 | fi |
| 71 | |
71 | |
| 72 | rm -Rf "${D}/usr/share/php/.channels" \ |
72 | rm -Rf "${D}/usr/share/php/.channels" \ |
| 73 | "${D}/usr/share/php/.depdblock" \ |
73 | "${D}/usr/share/php/.depdblock" \ |
| 74 | "${D}/usr/share/php/.depdb" \ |
74 | "${D}/usr/share/php/.depdb" \ |
| 75 | "${D}/usr/share/php/.filemap" \ |
75 | "${D}/usr/share/php/.filemap" \ |