meson.eclass: Don't mix host *FLAGS with build *FLAGS
[gentoo.git] / eclass / php-pear-r1.eclass
1 # Copyright 1999-2018 Gentoo Foundation
2 # Distributed under the terms of the GNU General Public License v2
3
4 # @DEAD
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 case "${EAPI:-0}" in
23         0|1|2|3|4)
24                 PHP_DEPEND="dev-lang/php"
25                 ;;
26         5|6)
27                 # Repoman will complain about the missing slot in newer EAPIs.
28                 PHP_DEPEND="dev-lang/php:*"
29                 ;;
30         *)
31                 die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}"
32                 ;;
33 esac
34
35 DEPEND="${PHP_DEPEND}
36          >=dev-php/pear-1.8.1"
37 RDEPEND="${DEPEND}"
38
39 # @ECLASS-VARIABLE: PHP_PEAR_PKG_NAME
40 # @DESCRIPTION:
41 # Set this if the the PEAR package name differs from ${PN/PEAR-/}
42 # (generally shouldn't be the case).
43 [[ -z "${PHP_PEAR_PKG_NAME}" ]] && PHP_PEAR_PKG_NAME="${PN/PEAR-/}"
44
45 fix_PEAR_PV() {
46         local tmp="${PV}"
47         tmp="${tmp/_/}"
48         tmp="${tmp/rc/RC}"
49         tmp="${tmp/beta/b}"
50         tmp="${tmp/alpha/a}"
51         PEAR_PV="${tmp}"
52 }
53
54 # @ECLASS-VARIABLE: PEAR_PV
55 # @DESCRIPTION:
56 # Set in ebuild if the eclass ${PV} mangling breaks SRC_URI for alpha/beta/rc versions
57 [[ -z "${PEAR_PV}" ]] && fix_PEAR_PV
58
59 PEAR_PN="${PHP_PEAR_PKG_NAME}-${PEAR_PV}"
60 : ${PHP_PEAR_URI:=pear.php.net}
61 : ${PHP_PEAR_CHANNEL:=${FILESDIR}/channel.xml}
62
63 [[ -z "${SRC_URI}" ]] && SRC_URI="http://${PHP_PEAR_URI}/get/${PEAR_PN}.tgz"
64 [[ -z "${HOMEPAGE}" ]] && HOMEPAGE="http://${PHP_PEAR_URI}/${PHP_PEAR_PKG_NAME}"
65
66 S="${WORKDIR}/${PEAR_PN}"
67
68 # @FUNCTION: php-pear-lib-r1_pkg_setup
69 # @DESCRIPTION:
70 # Adds required PEAR channel if necessary
71 php-pear-r1_pkg_setup() {
72         if [[ -f $PHP_PEAR_CHANNEL ]]; then
73                 pear channel-add $PHP_PEAR_CHANNEL || einfo "Ignore any errors about existing channels"
74         fi
75 }
76
77 # @FUNCTION: php-pear-r1_src_install
78 # @DESCRIPTION:
79 # Takes care of standard install for PEAR packages.
80 php-pear-r1_src_install() {
81         # SNMP support
82         addpredict /usr/share/snmp/mibs/.index
83         addpredict /var/lib/net-snmp/
84         addpredict /var/lib/net-snmp/mib_indexes
85         addpredict /session_mm_cli0.sem
86
87         PHP_BIN="/usr/bin/php"
88
89         cd "${S}"
90
91         # metadata_dir needs to be set relative to ${D} for >=dev-php/PEAR-PEAR-1.10
92         if [[ -f "${WORKDIR}"/package2.xml ]] ; then
93                 mv -f "${WORKDIR}/package2.xml" "${S}"
94                 if has_version '>=dev-php/PEAR-PEAR-1.7.0' ; then
95                         local WWW_DIR="/usr/share/webapps/${PN}/${PVR}/htdocs"
96                         peardev -d php_bin="${PHP_BIN}" -d www_dir="${WWW_DIR}" -d metadata_dir="/usr/share/php" \
97                                 install --force --loose --nodeps --offline --packagingroot="${D}" \
98                                 "${S}/package2.xml" || die "Unable to install PEAR package"
99                 else
100                         peardev -d php_bin="${PHP_BIN}" install --force --loose --nodeps --offline --packagingroot="${D}" \
101                                 "${S}/package2.xml" || die "Unable to install PEAR package"
102                 fi
103         else
104                 mv -f "${WORKDIR}/package.xml" "${S}"
105                 if has_version '>=dev-php/PEAR-PEAR-1.7.0' ; then
106                         local WWW_DIR="/usr/share/webapps/${PN}/${PVR}/htdocs"
107                         peardev -d php_bin="${PHP_BIN}" -d www_dir="${WWW_DIR}" -d metadata_dir="/usr/share/php" \
108                                 install --force --loose --nodeps --offline --packagingroot="${D}" \
109                                 "${S}/package.xml" || die "Unable to install PEAR package"
110                 else
111                         peardev -d php_bin="${PHP_BIN}" install --force --loose --nodeps --offline --packagingroot="${D}" \
112                                 "${S}/package.xml" || die "Unable to install PEAR package"
113                 fi
114         fi
115
116         rm -Rf "${D}/usr/share/php/.channels" \
117         "${D}/usr/share/php/.depdblock" \
118         "${D}/usr/share/php/.depdb" \
119         "${D}/usr/share/php/.filemap" \
120         "${D}/usr/share/php/.lock" \
121         "${D}/usr/share/php/.registry"
122 }