diff options
author | Ole Markus With <olemarkus@gentoo.org> | 2011-04-08 11:53:05 +0000 |
---|---|---|
committer | Ole Markus With <olemarkus@gentoo.org> | 2011-04-08 11:53:05 +0000 |
commit | e9ddbdc847223effd96995f2b0e50c201d0a81ac (patch) | |
tree | a38e1e0d0883ab1dade2673feeac654a51b458ee /dev-php/ZendFramework | |
parent | Do not let the package regen gtk icon cache by itself. (diff) | |
download | gentoo-2-e9ddbdc847223effd96995f2b0e50c201d0a81ac.tar.gz gentoo-2-e9ddbdc847223effd96995f2b0e50c201d0a81ac.tar.bz2 gentoo-2-e9ddbdc847223effd96995f2b0e50c201d0a81ac.zip |
Version bump
(Portage version: 2.1.9.42/cvs/Linux i686)
Diffstat (limited to 'dev-php/ZendFramework')
-rw-r--r-- | dev-php/ZendFramework/ChangeLog | 8 | ||||
-rw-r--r-- | dev-php/ZendFramework/ZendFramework-1.11.5.ebuild | 79 |
2 files changed, 86 insertions, 1 deletions
diff --git a/dev-php/ZendFramework/ChangeLog b/dev-php/ZendFramework/ChangeLog index 3038d7ecedbe..0c717d8a79e9 100644 --- a/dev-php/ZendFramework/ChangeLog +++ b/dev-php/ZendFramework/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-php/ZendFramework # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/ZendFramework/ChangeLog,v 1.2 2011/03/03 21:08:46 olemarkus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/ZendFramework/ChangeLog,v 1.3 2011/04/08 11:53:05 olemarkus Exp $ + +*ZendFramework-1.11.5 (08 Apr 2011) + + 08 Apr 2011; Ole Markus With <olemarkus@gentoo.org> + +ZendFramework-1.11.5.ebuild: + Version bump *ZendFramework-1.11.4 (03 Mar 2011) diff --git a/dev-php/ZendFramework/ZendFramework-1.11.5.ebuild b/dev-php/ZendFramework/ZendFramework-1.11.5.ebuild new file mode 100644 index 000000000000..d570a9ffba09 --- /dev/null +++ b/dev-php/ZendFramework/ZendFramework-1.11.5.ebuild @@ -0,0 +1,79 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/ZendFramework/ZendFramework-1.11.5.ebuild,v 1.1 2011/04/08 11:53:05 olemarkus Exp $ + +EAPI="2" + +PHP_LIB_NAME="Zend" + +inherit php-lib-r1 + +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86" + +DESCRIPTION="Zend Framework is a high quality and open source framework for developing Web Applications." +HOMEPAGE="http://framework.zend.com/" +SRC_URI="!minimal? ( http://framework.zend.com/releases/${P}/${P}.tar.gz ) + minimal? ( http://framework.zend.com/releases/${P}/${P}-minimal.tar.gz ) + doc? ( + http://framework.zend.com/releases/${P}/${P}-apidoc.tar.gz + http://framework.zend.com/releases/${P}/${P}-manual-en.tar.gz )" +LICENSE="BSD" +SLOT="0" +IUSE="doc examples minimal cli" + +DEPEND="cli? ( dev-lang/php[simplexml,tokenizer] )" +RDEPEND="${DEPEND}" +need_php_by_category + +src_prepare() { + if use minimal ; then + S="${WORKDIR}/${P}-minimal" + if use doc ; then + mv "${WORKDIR}/${P}/documentation" "${S}" + fi + fi +} + +src_install() { + if use cli ; then + insinto /usr/bin + doins bin/zf.php + dobin bin/zf.sh + dosym /usr/bin/zf.sh /usr/bin/zf + fi + php-lib-r1_src_install library/Zend $(cd library/Zend ; find . -type f -print) + + if ! use minimal ; then + insinto /usr/share/php5 + doins -r externals/dojo + fi + + if use examples ; then + insinto /usr/share/doc/${PF} + + if ! use minimal ; then + doins -r demos + fi + fi + + dodoc README.txt + if use doc ; then + dohtml -r documentation/* + fi +} + +pkg_postinst() { + elog "For more info, please take a look at the manual at:" + elog "http://framework.zend.com/manual" + elog "" + + if use minimal; then + elog "You have installed the minimal version of ZendFramework," + elog "so the Dojo toolkit, demos and tests have not been installed." + else + elog "You have installed the full version of ZendFramework, which" + elog "includes the Dojo toolkit, demos and tests." + elog "To install ZendFramework without these, enable the" + elog "minimal USE flag." + fi +} |