kde-plasma: Allow to build with kde-frameworks/{baloo,kfilemetadata}
[gentoo.git] / eclass / php-pear-r1.eclass
1 # Copyright 1999-2015 Gentoo Foundation
2 # Distributed under the terms of the GNU General Public License v2
3 # $Id$
4
5 # @ECLASS: php-pear-r1.eclass
6 # @MAINTAINER:
7 # Gentoo PHP Team <php-bugs@gentoo.org>
8 # @AUTHOR:
9 # Author: Tal Peer <coredumb@gentoo.org>
10 # Author: Luca Longinotti <chtekk@gentoo.org>
11 # @BLURB: Provides means for an easy installation of PEAR packages.
12 # @DESCRIPTION:
13 # This eclass provides means for an easy installation of PEAR packages.
14 # For more information on PEAR, see http://pear.php.net/
15 # Note that this eclass doesn't handle dependencies of PEAR packages
16 # on purpose; please use (R)DEPEND to define them correctly!
17
18 inherit multilib
19
20 EXPORT_FUNCTIONS pkg_setup src_install
21
22 # Silence repoman warnings
23 case "${EAPI:-0}" in
24         5)
25                 PHP_DEPEND="dev-lang/php:*"
26                 ;;
27         *)
28                 PHP_DEPEND="dev-lang/php"
29                 ;;
30 esac
31
32 DEPEND="${PHP_DEPEND}
33          >=dev-php/pear-1.8.1"
34 RDEPEND="${DEPEND}"
35
36 # @ECLASS-VARIABLE: PHP_PEAR_PKG_NAME
37 # @DESCRIPTION:
38 # Set this if the the PEAR package name differs from ${PN/PEAR-/}
39 # (generally shouldn't be the case).
40 [[ -z "${PHP_PEAR_PKG_NAME}" ]] && PHP_PEAR_PKG_NAME="${PN/PEAR-/}"
41
42 fix_PEAR_PV() {
43         tmp="${PV}"
44         tmp="${tmp/_/}"
45         tmp="${tmp/rc/RC}"
46         tmp="${tmp/beta/b}"
47         tmp="${tmp/alpha/a}"
48         PEAR_PV="${tmp}"
49 }
50
51 # @ECLASS-VARIABLE: PEAR_PV
52 # @DESCRIPTION:
53 # Set in ebuild if the eclass ${PV} mangling breaks SRC_URI for alpha/beta/rc versions
54 [[ -z "${PEAR_PV}" ]] && fix_PEAR_PV
55
56 PEAR_PN="${PHP_PEAR_PKG_NAME}-${PEAR_PV}"
57 : ${PHP_PEAR_URI:=pear.php.net}
58 : ${PHP_PEAR_CHANNEL:=${FILESDIR}/channel.xml}
59
60 [[ -z "${SRC_URI}" ]] && SRC_URI="http://${PHP_PEAR_URI}/get/${PEAR_PN}.tgz"
61 [[ -z "${HOMEPAGE}" ]] && HOMEPAGE="http://${PHP_PEAR_URI}/${PHP_PEAR_PKG_NAME}"
62
63 S="${WORKDIR}/${PEAR_PN}"
64
65 # @FUNCTION: php-pear-lib-r1_pkg_setup
66 # @DESCRIPTION:
67 # Adds required PEAR channel if necessary
68 php-pear-r1_pkg_setup() {
69         if [[ -f $PHP_PEAR_CHANNEL ]]; then
70                 pear channel-add $PHP_PEAR_CHANNEL || einfo "Ignore any errors about existing channels"
71         fi
72 }
73
74 # @FUNCTION: php-pear-r1_src_install
75 # @DESCRIPTION:
76 # Takes care of standard install for PEAR packages.
77 php-pear-r1_src_install() {
78         # SNMP support
79         addpredict /usr/share/snmp/mibs/.index
80         addpredict /var/lib/net-snmp/
81         addpredict /var/lib/net-snmp/mib_indexes
82         addpredict /session_mm_cli0.sem
83
84         PHP_BIN="/usr/bin/php"
85
86         cd "${S}"
87
88         if [[ -f "${WORKDIR}"/package2.xml ]] ; then
89                 mv -f "${WORKDIR}/package2.xml" "${S}"
90                 if has_version '>=dev-php/PEAR-PEAR-1.7.0' ; then
91                         local WWW_DIR="/usr/share/webapps/${PN}/${PVR}/htdocs"
92                         peardev -d php_bin="${PHP_BIN}" -d www_dir="${WWW_DIR}" \
93                                 install --force --loose --nodeps --offline --packagingroot="${D}" \
94                                 "${S}/package2.xml" || die "Unable to install PEAR package"
95                 else
96                         peardev -d php_bin="${PHP_BIN}" install --force --loose --nodeps --offline --packagingroot="${D}" \
97                                 "${S}/package2.xml" || die "Unable to install PEAR package"
98                 fi
99         else
100                 mv -f "${WORKDIR}/package.xml" "${S}"
101                 if has_version '>=dev-php/PEAR-PEAR-1.7.0' ; then
102                         local WWW_DIR="/usr/share/webapps/${PN}/${PVR}/htdocs"
103                         peardev -d php_bin="${PHP_BIN}" -d www_dir="${WWW_DIR}" \
104                                 install --force --loose --nodeps --offline --packagingroot="${D}" \
105                                 "${S}/package.xml" || die "Unable to install PEAR package"
106                 else
107                         peardev -d php_bin="${PHP_BIN}" install --force --loose --nodeps --offline --packagingroot="${D}" \
108                                 "${S}/package.xml" || die "Unable to install PEAR package"
109                 fi
110         fi
111
112         rm -Rf "${D}/usr/share/php/.channels" \
113         "${D}/usr/share/php/.depdblock" \
114         "${D}/usr/share/php/.depdb" \
115         "${D}/usr/share/php/.filemap" \
116         "${D}/usr/share/php/.lock" \
117         "${D}/usr/share/php/.registry"
118 }