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