| 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.13 2008/02/11 20:47:35 armin76 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/php-pear-lib-r1.eclass,v 1.14 2008/03/19 09:27:28 jokey 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: |
| … | |
… | |
| 42 | dev-php5) PHP_BIN="/usr/$(get_libdir)/php5/bin/php" ;; |
42 | dev-php5) PHP_BIN="/usr/$(get_libdir)/php5/bin/php" ;; |
| 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 | mv -f "${WORKDIR}/package.xml" "${S}" |
|
|
| 48 | |
47 | |
|
|
48 | if [[ -f "${WORKDIR}"/package2.xml ]] ; then |
|
|
49 | mv -f "${WORKDIR}/package2.xml" "${S}" |
|
|
50 | if has_version '>=dev-php/PEAR-PEAR-1.7.0' ; then |
|
|
51 | local WWW_DIR="/usr/share/webapps/${PN}/${PVR}/htdocs" |
|
|
52 | pear -d php_bin="${PHP_BIN}" -d www_dir="${WWW_DIR}" \ |
|
|
53 | install --force --loose --nodeps --offline --packagingroot="${D}" \ |
|
|
54 | "${S}/package2.xml" || die "Unable to install PEAR package" |
|
|
55 | else |
| 49 | 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" |
|
|
58 | fi |
|
|
59 | else |
|
|
60 | mv -f "${WORKDIR}/package.xml" "${S}" |
|
|
61 | if has_version '>=dev-php/PEAR-PEAR-1.7.0' ; then |
|
|
62 | local WWW_DIR="/usr/share/webapps/${PN}/${PVR}/htdocs" |
|
|
63 | pear -d php_bin="${PHP_BIN}" -d www_dir="${WWW_DIR}" \ |
|
|
64 | install --force --loose --nodeps --offline --packagingroot="${D}" \ |
| 50 | "${S}/package.xml" || die "Unable to install PEAR package" |
65 | "${S}/package.xml" || die "Unable to install PEAR package" |
|
|
66 | else |
|
|
67 | pear -d php_bin="${PHP_BIN}" install --force --loose --nodeps --offline --packagingroot="${D}" \ |
|
|
68 | "${S}/package.xml" || die "Unable to install PEAR package" |
|
|
69 | fi |
|
|
70 | fi |
| 51 | |
71 | |
| 52 | rm -Rf "${D}/usr/share/php/.channels" \ |
72 | rm -Rf "${D}/usr/share/php/.channels" \ |
| 53 | "${D}/usr/share/php/.depdblock" \ |
73 | "${D}/usr/share/php/.depdblock" \ |
| 54 | "${D}/usr/share/php/.depdb" \ |
74 | "${D}/usr/share/php/.depdb" \ |
| 55 | "${D}/usr/share/php/.filemap" \ |
75 | "${D}/usr/share/php/.filemap" \ |