diff options
author | Ole Markus With <olemarkus@gentoo.org> | 2011-06-05 10:04:03 +0000 |
---|---|---|
committer | Ole Markus With <olemarkus@gentoo.org> | 2011-06-05 10:04:03 +0000 |
commit | e6dd6bc7f0acea9e22726ff114620207b15bab75 (patch) | |
tree | a960aceb6df065d4639afb62a08d31b3371761f1 /dev-php | |
parent | Stable on amd64 wrt bug #235227 (diff) | |
download | historical-e6dd6bc7f0acea9e22726ff114620207b15bab75.tar.gz historical-e6dd6bc7f0acea9e22726ff114620207b15bab75.tar.bz2 historical-e6dd6bc7f0acea9e22726ff114620207b15bab75.zip |
Version bump
Package-Manager: portage-2.1.9.49/cvs/Linux x86_64
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/PEAR-PEAR/ChangeLog | 7 | ||||
-rw-r--r-- | dev-php/PEAR-PEAR/PEAR-PEAR-1.9.3.ebuild | 109 | ||||
-rw-r--r-- | dev-php/pear/ChangeLog | 7 | ||||
-rw-r--r-- | dev-php/pear/pear-1.9.3.ebuild | 41 |
4 files changed, 162 insertions, 2 deletions
diff --git a/dev-php/PEAR-PEAR/ChangeLog b/dev-php/PEAR-PEAR/ChangeLog index 519b2871a15b..d6fa71ab8eb7 100644 --- a/dev-php/PEAR-PEAR/ChangeLog +++ b/dev-php/PEAR-PEAR/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-php/PEAR-PEAR # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-PEAR/ChangeLog,v 1.143 2011/05/21 16:14:13 olemarkus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-PEAR/ChangeLog,v 1.144 2011/06/05 10:03:14 olemarkus Exp $ + +*PEAR-PEAR-1.9.3 (05 Jun 2011) + + 05 Jun 2011; <olemarkus@gentoo.org> +PEAR-PEAR-1.9.3.ebuild: + Version bump *PEAR-PEAR-1.9.2-r2 (21 May 2011) diff --git a/dev-php/PEAR-PEAR/PEAR-PEAR-1.9.3.ebuild b/dev-php/PEAR-PEAR/PEAR-PEAR-1.9.3.ebuild new file mode 100644 index 000000000000..52edd51d606d --- /dev/null +++ b/dev-php/PEAR-PEAR/PEAR-PEAR-1.9.3.ebuild @@ -0,0 +1,109 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-PEAR/PEAR-PEAR-1.9.3.ebuild,v 1.1 2011/06/05 10:03:14 olemarkus Exp $ + +EAPI="3" + +inherit depend.php + +PEAR="${PV}" + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos" + +DESCRIPTION="PEAR Base System" +HOMEPAGE="http://pear.php.net/package/PEAR" +SRC_URI="http://pear.php.net/get/PEAR-${PEAR}.tgz" +LICENSE="MIT" +SLOT="0" +IUSE="" + +DEPEND="|| ( <dev-lang/php-5.3[pcre] >=dev-lang/php-5.3 ) + dev-lang/php[cli,xml,zlib]" + +RDEPEND="${DEPEND}" + +S="${WORKDIR}" + +pkg_setup() { + has_php + + [[ -z "${PEAR_CACHEDIR}" ]] && PEAR_CACHEDIR="${EPREFIX}/var/cache/pear" + [[ -z "${PEAR_DOWNLOADDIR}" ]] && PEAR_DOWNLOADDIR="${EPREFIX}/var/tmp/pear" + [[ -z "${PEAR_TEMPDIR}" ]] && PEAR_TEMPDIR="${EPREFIX}/tmp" + + elog + elog "cache_dir is set to: ${PEAR_CACHEDIR}" + elog "download_dir is set to: ${PEAR_DOWNLOADDIR}" + elog "temp_dir is set to: ${PEAR_TEMPDIR}" + elog + elog "If you want to change the above values, you need to set" + elog "PEAR_CACHEDIR, PEAR_DOWNLOADDIR and PEAR_TEMPDIR variable(s)" + elog "accordingly in /etc/make.conf and re-emerge ${PN}." + elog +} + +src_prepare() { + cd PEAR-${PV} + epatch "${FILESDIR}/gentoo-libtool-mismatch-fix.patch" + +} + +src_install() { + # Prevent SNMP related sandbox violoation. + addpredict /usr/share/snmp/mibs/.index + addpredict /var/lib/net-snmp/ + + # install PEAR package + cd "${S}"/PEAR-${PEAR} + + insinto /usr/share/php + doins -r PEAR/ + doins -r OS/ + doins PEAR.php PEAR5.php System.php + doins scripts/pearcmd.php + doins scripts/peclcmd.php + + newbin scripts/pear.sh pear + newbin scripts/peardev.sh peardev + newbin scripts/pecl.sh pecl + + # adjust some scripts for current version + for i in pearcmd.php peclcmd.php ; do + dosed "s:@pear_version@:${PEAR}:g" /usr/share/php/${i} + done + + for i in pear peardev pecl ; do + dosed "s:@bin_dir@:${EPREFIX}/usr/bin:g" /usr/bin/${i} + dosed "s:@php_dir@:${EPREFIX}/usr/share/php:g" /usr/bin/${i} + done + dosed "s:-d output_buffering=1:-d output_buffering=1 -d memory_limit=32M:g" /usr/bin/pear + + dosed "s:@package_version@:${PEAR}:g" /usr/share/php/PEAR/Command/Package.php + dosed "s:@PEAR-VER@:${PEAR}:g" /usr/share/php/PEAR/Dependency2.php + dosed "s:@PEAR-VER@:${PEAR}:g" /usr/share/php/PEAR/PackageFile/Parser/v1.php + dosed "s:@PEAR-VER@:${PEAR}:g" /usr/share/php/PEAR/PackageFile/Parser/v2.php + + # finalize install + insinto /etc + newins "${FILESDIR}"/pear.conf-r2 pear.conf + dosed "s|s:PHPCLILEN:\"PHPCLI\"|s:${#PHPCLI}:\"${PHPCLI}\"|g" /etc/pear.conf + dosed "s|s:CACHEDIRLEN:\"CACHEDIR\"|s:${#PEAR_CACHEDIR}:\"${PEAR_CACHEDIR}\"|g" /etc/pear.conf + dosed "s|s:DOWNLOADDIRLEN:\"DOWNLOADDIR\"|s:${#PEAR_DOWNLOADDIR}:\"${PEAR_DOWNLOADDIR}\"|g" /etc/pear.conf + dosed "s|s:TEMPDIRLEN:\"TEMPDIR\"|s:${#PEAR_TEMPDIR}:\"${PEAR_TEMPDIR}\"|g" /etc/pear.conf + + # Change the paths for eprefix! + dosed "s|s:19:\"/usr/share/php/docs\"|s:$(( ${#EPREFIX}+19 )):\"${EPREFIX}/usr/share/php/docs\"|g" /etc/pear.conf + dosed "s|s:19:\"/usr/share/php/data\"|s:$(( ${#EPREFIX}+19 )):\"${EPREFIX}/usr/share/php/data\"|g" /etc/pear.conf + dosed "s|s:20:\"/usr/share/php/tests\"|s:$(( ${#EPREFIX}+20 )):\"${EPREFIX}/usr/share/php/tests\"|g" /etc/pear.conf + dosed "s|s:14:\"/usr/share/php\"|s:$(( ${#EPREFIX}+14 )):\"${EPREFIX}/usr/share/php\"|g" /etc/pear.conf + dosed "s|s:8:\"/usr/bin\"|s:$(( ${#EPREFIX}+8 )):\"${EPREFIX}/usr/bin\"|g" /etc/pear.conf + + [[ "${PEAR_TEMPDIR}" != "/tmp" ]] && keepdir "${PEAR_TEMPDIR#${EPREFIX}}" + keepdir "${PEAR_CACHEDIR#${EPREFIX}}" + diropts -m1777 + keepdir "${PEAR_DOWNLOADDIR#${EPREFIX}}" +} + +pkg_preinst() { + rm -f "${EROOT}/etc/pear.conf" +} diff --git a/dev-php/pear/ChangeLog b/dev-php/pear/ChangeLog index c0e0163b088d..b21292ec472e 100644 --- a/dev-php/pear/ChangeLog +++ b/dev-php/pear/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-php/pear # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/pear/ChangeLog,v 1.23 2011/03/07 15:32:18 olemarkus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/pear/ChangeLog,v 1.24 2011/06/05 10:04:03 olemarkus Exp $ + +*pear-1.9.3 (05 Jun 2011) + + 05 Jun 2011; <olemarkus@gentoo.org> +pear-1.9.3.ebuild: + Version bump 07 Mar 2011; <olemarkus@gentoo.org> -pear-1.9.0.ebuild, -pear-1.9.1.ebuild: Removed older versions diff --git a/dev-php/pear/pear-1.9.3.ebuild b/dev-php/pear/pear-1.9.3.ebuild new file mode 100644 index 000000000000..1c3c18e5cb3c --- /dev/null +++ b/dev-php/pear/pear-1.9.3.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/pear/pear-1.9.3.ebuild,v 1.1 2011/06/05 10:04:03 olemarkus Exp $ + +inherit depend.php + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" + +DESCRIPTION="PEAR - PHP Extension and Application Repository" +HOMEPAGE="http://pear.php.net/" +SRC_URI="" +LICENSE="MIT" +SLOT="0" +IUSE="" + +DEPEND="!<dev-php/PEAR-PEAR-1.8.1 + ~dev-php/PEAR-PEAR-${PV} + >=dev-php/PEAR-Archive_Tar-1.3.7 + >=dev-php/PEAR-Console_Getopt-1.2.3 + >=dev-php/PEAR-Structures_Graph-1.0.2 + >=dev-php/PEAR-XML_Util-1.2.1" +RDEPEND="${DEPEND}" + +src_install() { + :; +} + +pkg_postinst() { + pear clear-cache + + # Update PEAR/PECL channels as needed, add new ones to the list if needed + elog "Updating PEAR/PECL channels" + local pearchans="pear.php.net pecl.php.net components.ez.no + pear.propelorm.org pear.phing.info pear.symfony-project.com pear.phpunit.de + pear.php-baustelle.de pear.phpontrax.com pear.agavi.org" + + for chan in ${pearchans} ; do + pear channel-discover ${chan} + pear channel-update ${chan} + done +} |