blob: dd0b4f1f2a051bac6102d9603045c5ab624b0797 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ZendFramework-0.1.4.ebuild,v 1.1 2006/06/30 20:22:55 sebastian Exp $
inherit php-lib-r1
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}.tar.gz"
LICENSE="ZendFramework-1.0"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc examples"
PHP_LIB_NAME="Zend"
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`
insinto /usr/share/${PHP_SHARED_CAT}
doins library/Zend.php
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
}
|