Gentoo Archives: gentoo-commits

From: "Tobias Scherbaum (dertobi123)" <dertobi123@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php5/ZendFramework: ZendFramework-1.7.5.ebuild ChangeLog ZendFramework-1.7.3.ebuild ZendFramework-1.7.0.ebuild
Date: Fri, 20 Feb 2009 15:37:54
Message-Id: E1LaXOT-0005jx-6Q@stork.gentoo.org
1 dertobi123 09/02/20 15:34:25
2
3 Modified: ChangeLog
4 Added: ZendFramework-1.7.5.ebuild
5 Removed: ZendFramework-1.7.3.ebuild
6 ZendFramework-1.7.0.ebuild
7 Log:
8 Version bump, security bug #259512
9 (Portage version: 2.2_rc23/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.46 dev-php5/ZendFramework/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/ZendFramework/ChangeLog?rev=1.46&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/ZendFramework/ChangeLog?rev=1.46&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/ZendFramework/ChangeLog?r1=1.45&r2=1.46
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ChangeLog,v
21 retrieving revision 1.45
22 retrieving revision 1.46
23 diff -u -r1.45 -r1.46
24 --- ChangeLog 6 Feb 2009 03:10:24 -0000 1.45
25 +++ ChangeLog 20 Feb 2009 15:34:25 -0000 1.46
26 @@ -1,6 +1,13 @@
27 # ChangeLog for dev-php5/ZendFramework
28 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ChangeLog,v 1.45 2009/02/06 03:10:24 jer Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ChangeLog,v 1.46 2009/02/20 15:34:25 dertobi123 Exp $
31 +
32 +*ZendFramework-1.7.5 (20 Feb 2009)
33 +
34 + 20 Feb 2009; Tobias Scherbaum <dertobi123@g.o>
35 + -ZendFramework-1.7.0.ebuild, -ZendFramework-1.7.3.ebuild,
36 + +ZendFramework-1.7.5.ebuild:
37 + Version bump, security bug #259512
38
39 06 Feb 2009; Jeroen Roovers <jer@g.o> ZendFramework-1.7.2.ebuild:
40 Stable for HPPA (bug #256860).
41
42
43
44 1.1 dev-php5/ZendFramework/ZendFramework-1.7.5.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/ZendFramework/ZendFramework-1.7.5.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/ZendFramework/ZendFramework-1.7.5.ebuild?rev=1.1&content-type=text/plain
48
49 Index: ZendFramework-1.7.5.ebuild
50 ===================================================================
51 # Copyright 1999-2009 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.5.ebuild,v 1.1 2009/02/20 15:34:25 dertobi123 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 }