# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ZendFramework-1.0.0.ebuild,v 1.1 2007/07/03 17:28:41 gurligebis Exp $ PHP_LIB_NAME="Zend" inherit php-lib-r1 KEYWORDS="~amd64 ~x86" MY_PV="1.0.0" DESCRIPTION="Zend Framework is a high quality and open source framework for developing Web Applications and Web Services with PHP 5." HOMEPAGE="http://framework.zend.com/" SRC_URI="http://framework.zend.com/releases/${PN}-${MY_PV}/${PN}-${MY_PV}.tar.gz doc? ( http://framework.zend.com/releases/${PN}-${MY_PV}/${PN}-${MY_PV}-apidoc.tar.gz http://framework.zend.com/releases/${PN}-${MY_PV}/${PN}-${MY_PV}-manual-en.tar.gz )" LICENSE="ZendFramework-1.1" SLOT="0" IUSE="doc examples" DEPEND="" RDEPEND="" S="${WORKDIR}/${PN}-${MY_PV}" need_php_by_category src_install() { php-lib-r1_src_install library/Zend `cd library/Zend ; find . -type f -print` php-lib-r1_src_install incubator/library/Zend `cd incubator/library/Zend ; find . -type f -print` if use examples ; then insinto /usr/share/doc/${P} doins -r demos fi if use doc ; then insinto /usr/share/doc/${P} dodoc *.txt dohtml -r documentation/* fi } pkg_postinst() { ewarn "As of version 0.9.3, the Zend.php class has been removed." ewarn "For more info, please take a look at the manual at:" ewarn "http://framework.zend.com/manual" ebeep }