grknight 14/10/07 18:40:07 Modified: ChangeLog Added: ZendFramework-1.12.9.ebuild Removed: ZendFramework-1.11.6.ebuild Log: Version bump for wrt bug 448576 and security bugs 451060, 505276 and 523198 (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key 67C78E1D)
Revision Changes Path 1.21 dev-php/ZendFramework/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/ZendFramework/ChangeLog?rev=1.21&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/ZendFramework/ChangeLog?rev=1.21&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/ZendFramework/ChangeLog?r1=1.20&r2=1.21 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-php/ZendFramework/ChangeLog,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- ChangeLog 10 Aug 2014 20:58:54 -0000 1.20 +++ ChangeLog 7 Oct 2014 18:40:07 -0000 1.21 @@ -1,6 +1,12 @@ # ChangeLog for dev-php/ZendFramework # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/ZendFramework/ChangeLog,v 1.20 2014/08/10 20:58:54 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/ZendFramework/ChangeLog,v 1.21 2014/10/07 18:40:07 grknight Exp $ + +*ZendFramework-1.12.9 (07 Oct 2014) + + 07 Oct 2014; <[email protected]> +ZendFramework-1.12.9.ebuild, + -ZendFramework-1.11.6.ebuild: + Version bump for wrt bug 448576 and security bugs 451060, 505276 and 523198 10 Aug 2014; Sergei Trofimovich <[email protected]> ZendFramework-1.11.12.ebuild, ZendFramework-1.11.6.ebuild: 1.1 dev-php/ZendFramework/ZendFramework-1.12.9.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/ZendFramework/ZendFramework-1.12.9.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/ZendFramework/ZendFramework-1.12.9.ebuild?rev=1.1&content-type=text/plain Index: ZendFramework-1.12.9.ebuild =================================================================== # 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.12.9.ebuild,v 1.1 2014/10/07 18:40:07 grknight Exp $ EAPI=5 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="cli doc examples minimal" DEPEND="cli? ( dev-lang/php[simplexml,tokenizer] )" RDEPEND="${DEPEND}" 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 if use examples ; then insinto /usr/share/doc/${PF} doins -r demos fi fi dodoc README.md 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 }
