diff options
author | Brian Evans <grknight@gentoo.org> | 2015-01-21 21:14:14 +0000 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2015-01-21 21:14:14 +0000 |
commit | cfd18596b7f5c4c470b1505927416ccddeafc271 (patch) | |
tree | af7468a49d8852ad4891edb93c4499e0d6849def | |
parent | Dev channel bump. Remove old. (diff) | |
download | gentoo-2-cfd18596b7f5c4c470b1505927416ccddeafc271.tar.gz gentoo-2-cfd18596b7f5c4c470b1505927416ccddeafc271.tar.bz2 gentoo-2-cfd18596b7f5c4c470b1505927416ccddeafc271.zip |
Drop old for security bug
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key D1F781EFF9F4A3B6)
-rw-r--r-- | dev-php/ZendFramework/ChangeLog | 5 | ||||
-rw-r--r-- | dev-php/ZendFramework/ZendFramework-1.11.12.ebuild | 79 |
2 files changed, 4 insertions, 80 deletions
diff --git a/dev-php/ZendFramework/ChangeLog b/dev-php/ZendFramework/ChangeLog index 9405c8e4419f..6d2198aba89a 100644 --- a/dev-php/ZendFramework/ChangeLog +++ b/dev-php/ZendFramework/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-php/ZendFramework # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/ZendFramework/ChangeLog,v 1.25 2015/01/21 10:20:22 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/ZendFramework/ChangeLog,v 1.26 2015/01/21 21:14:14 grknight Exp $ + + 21 Jan 2015; Brian Evans <grknight@gentoo.org> -ZendFramework-1.11.12.ebuild: + Drop old for security bug 21 Jan 2015; Agostino Sarubbo <ago@gentoo.org> ZendFramework-1.12.9.ebuild: Stable for x86, wrt bug #523198 diff --git a/dev-php/ZendFramework/ZendFramework-1.11.12.ebuild b/dev-php/ZendFramework/ZendFramework-1.11.12.ebuild deleted file mode 100644 index a39fcc9730d8..000000000000 --- a/dev-php/ZendFramework/ZendFramework-1.11.12.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/ZendFramework/ZendFramework-1.11.12.ebuild,v 1.8 2014/08/10 20:58:54 slyfox Exp $ - -EAPI="2" - -PHP_LIB_NAME="Zend" - -inherit php-lib-r1 - -KEYWORDS="amd64 hppa ~ppc 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/php - 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 -} |