blob: d58f5c01b29cbd91e0f789fbd299d83e76876db3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ZendFramework-1.0.4.ebuild,v 1.1 2008/03/04 19:35:56 jokey Exp $
PHP_LIB_NAME="Zend"
inherit php-lib-r1
KEYWORDS="~amd64 ~x86"
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/${P}/${P}.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"
DEPEND=""
RDEPEND=""
need_php_by_category
src_install() {
php-lib-r1_src_install library/Zend `cd library/Zend ; find . -type f -print`
# Incubator has been removed, keeping in case it comes back
#php-lib-r1_src_install incubator/library/Zend `cd incubator/library/Zend ; find . -type f -print`
if use examples ; then
insinto /usr/share/doc/${PF}
doins -r demos
fi
if use doc ; then
dodoc {NEWS,README,VERSION}.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
}
|