diff options
author | Steve Dibb <beandog@gentoo.org> | 2009-10-05 18:25:33 +0000 |
---|---|---|
committer | Steve Dibb <beandog@gentoo.org> | 2009-10-05 18:25:33 +0000 |
commit | 7cc2e2d02a99ce1f38251782332b3f8e7fda68dd (patch) | |
tree | 1bc7644edf62d7cc20b0ad758781a29987bd589d /dev-php/pear | |
parent | Version bump (diff) | |
download | gentoo-2-7cc2e2d02a99ce1f38251782332b3f8e7fda68dd.tar.gz gentoo-2-7cc2e2d02a99ce1f38251782332b3f8e7fda68dd.tar.bz2 gentoo-2-7cc2e2d02a99ce1f38251782332b3f8e7fda68dd.zip |
Version bump
(Portage version: 2.2_rc42/cvs/Linux x86_64)
Diffstat (limited to 'dev-php/pear')
-rw-r--r-- | dev-php/pear/ChangeLog | 7 | ||||
-rw-r--r-- | dev-php/pear/pear-1.9.0.ebuild | 40 |
2 files changed, 46 insertions, 1 deletions
diff --git a/dev-php/pear/ChangeLog b/dev-php/pear/ChangeLog index 852a25ddbef4..6c952a242ac1 100644 --- a/dev-php/pear/ChangeLog +++ b/dev-php/pear/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-php/pear # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/pear/ChangeLog,v 1.1 2009/09/23 02:53:37 beandog Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/pear/ChangeLog,v 1.2 2009/10/05 18:25:33 beandog Exp $ + +*pear-1.9.0 (05 Oct 2009) + + 05 Oct 2009; Steve Dibb <beandog@gentoo.org> +pear-1.9.0.ebuild: + Version bump *pear-1.8.1 (23 Sep 2009) diff --git a/dev-php/pear/pear-1.9.0.ebuild b/dev-php/pear/pear-1.9.0.ebuild new file mode 100644 index 000000000000..49442f70a05f --- /dev/null +++ b/dev-php/pear/pear-1.9.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/pear/pear-1.9.0.ebuild,v 1.1 2009/10/05 18:25:33 beandog 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.3 + >=dev-php/PEAR-Console_Getopt-1.2.3 + >=dev-php/PEAR-Structures_Graph-1.0.2 + >=dev-php/PEAR-XML_Util-1.2.1" + +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.phpdb.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 +} |