Gentoo Archives: gentoo-commits

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