Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php5/ZendFramework: ChangeLog ZendFramework-1.7.7.ebuild
Date: Sun, 29 Mar 2009 08:52:06
Message-Id: E1LnqkO-0002YI-G5@stork.gentoo.org
1 pva 09/03/29 08:52:04
2
3 Modified: ChangeLog
4 Added: ZendFramework-1.7.7.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc26/cvs/Linux i686)
8
9 Revision Changes Path
10 1.53 dev-php5/ZendFramework/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/ZendFramework/ChangeLog?rev=1.53&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/ZendFramework/ChangeLog?rev=1.53&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/ZendFramework/ChangeLog?r1=1.52&r2=1.53
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ChangeLog,v
19 retrieving revision 1.52
20 retrieving revision 1.53
21 diff -u -r1.52 -r1.53
22 --- ChangeLog 7 Mar 2009 11:47:31 -0000 1.52
23 +++ ChangeLog 29 Mar 2009 08:52:04 -0000 1.53
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-php5/ZendFramework
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ChangeLog,v 1.52 2009/03/07 11:47:31 gurligebis Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ChangeLog,v 1.53 2009/03/29 08:52:04 pva Exp $
29 +
30 +*ZendFramework-1.7.7 (29 Mar 2009)
31 +
32 + 29 Mar 2009; Peter Volkov <pva@g.o> +ZendFramework-1.7.7.ebuild:
33 + Version bump.
34
35 *ZendFramework-1.7.6 (07 Mar 2009)
36
37
38
39
40 1.1 dev-php5/ZendFramework/ZendFramework-1.7.7.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/ZendFramework/ZendFramework-1.7.7.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/ZendFramework/ZendFramework-1.7.7.ebuild?rev=1.1&content-type=text/plain
44
45 Index: ZendFramework-1.7.7.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ZendFramework-1.7.7.ebuild,v 1.1 2009/03/29 08:52:04 pva Exp $
50
51 PHP_LIB_NAME="Zend"
52
53 inherit php-lib-r1
54
55 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
56
57 DESCRIPTION="Zend Framework is a high quality and open source framework for developing Web Applications."
58 HOMEPAGE="http://framework.zend.com/"
59 SRC_URI="!minimal? ( http://framework.zend.com/releases/${P}/${P}.tar.gz )
60 minimal? ( http://framework.zend.com/releases/${P}/${P}-minimal.tar.gz )
61 doc? (
62 http://framework.zend.com/releases/${P}/${P}-apidoc.tar.gz
63 http://framework.zend.com/releases/${P}/${P}-manual-en.tar.gz )"
64 LICENSE="BSD"
65 SLOT="0"
66 IUSE="doc examples minimal"
67
68 DEPEND=""
69 RDEPEND=""
70 need_php_by_category
71
72 src_unpack() {
73 if use minimal ; then
74 S="${WORKDIR}/${P}-minimal"
75 fi
76
77 unpack ${A}
78
79 cd "${S}"
80 }
81
82 src_install() {
83 php-lib-r1_src_install library/Zend $(cd library/Zend ; find . -type f -print)
84
85 if use examples ; then
86 insinto /usr/share/doc/${PF}
87
88 if ! use minimal ; then
89 doins -r demos
90 fi
91 fi
92
93 dodoc README.txt
94 if use doc ; then
95 dohtml -r documentation/*
96 fi
97 }
98
99 pkg_postinst() {
100 elog "For more info, please take a look at the manual at:"
101 elog "http://framework.zend.com/manual"
102 elog ""
103
104 if use minimal; then
105 elog "You have installed the minimal version of ZendFramework,"
106 elog "so the Dojo toolkit, demos and tests have not been installed."
107 else
108 elog "You have installed the full version of ZendFramework, which"
109 elog "includes the Dojo toolkit, demos and tests."
110 elog "To install ZendFramework without there, enable the"
111 elog "minimal USE flag."
112 fi
113 }